dify/e2e/features/step-definitions/apps/duplicate-app.steps.ts
yyh acb5ee29e1
test(e2e): validate generated console contracts (#39400)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2026-07-22 07:48:37 +00:00

49 lines
2.1 KiB
TypeScript

import type { DifyWorld } from '../../support/world'
import { Given, When } from '@cucumber/cucumber'
import { zPostAppsByAppIdCopyResponse } from '@dify/contracts/api/console/apps/zod.gen'
import { expect } from '@playwright/test'
import { createTestApp } from '../../../support/api/apps'
import { createE2EResourceName } from '../../../support/naming'
Given('there is an existing E2E app available for testing', async function (this: DifyWorld) {
const name = createE2EResourceName('App', 'Test')
const app = await createTestApp(this.getConsoleClient(), name, 'completion')
this.lastCreatedAppName = app.name
this.createdAppIds.push(app.id)
})
When('I open the options menu for the last created E2E app', async function (this: DifyWorld) {
const appName = this.lastCreatedAppName
if (!appName) throw new Error('No app name stored. Run "I enter a unique E2E app name" first.')
const page = this.getPage()
const appLink = page.getByRole('link', { name: appName, exact: true })
await expect(appLink).toBeVisible()
await appLink.hover()
await page.getByRole('button', { name: `More actions for ${appName}`, exact: true }).click()
})
When('I click {string} in the app options menu', async function (this: DifyWorld, label: string) {
await this.getPage().getByRole('menuitem', { name: label }).click()
})
When('I confirm the app duplication', async function (this: DifyWorld) {
const sourceAppId = this.createdAppIds.at(-1)
if (!sourceAppId) throw new Error('No source app ID was recorded before duplication.')
const page = this.getPage()
const responsePromise = page.waitForResponse(
(response) =>
response.request().method() === 'POST' &&
new URL(response.url()).pathname.endsWith(`/console/api/apps/${sourceAppId}/copy`),
)
await page.getByRole('button', { exact: true, name: 'Duplicate' }).click()
const response = await responsePromise
expect(response.ok()).toBe(true)
const copiedApp = zPostAppsByAppIdCopyResponse.parse(await response.json())
if (!copiedApp.id) throw new Error('Duplicate app response did not include an app ID.')
expect(copiedApp.id).not.toBe(sourceAppId)
this.createdAppIds.push(copiedApp.id)
})