mirror of
https://github.com/langgenius/dify.git
synced 2026-05-07 02:46:32 +08:00
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: jyong <718720800@qq.com> Co-authored-by: Yansong Zhang <916125788@qq.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: hj24 <mambahj24@gmail.com> Co-authored-by: hj24 <huangjian@dify.ai> Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: Stephen Zhou <38493346+hyoban@users.noreply.github.com> Co-authored-by: CodingOnStar <hanxujiang@dify.com> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: 非法操作 <hjlarry@163.com> Co-authored-by: Ayush Baluni <73417844+aayushbaluni@users.noreply.github.com> Co-authored-by: yyh <92089059+lyzno1@users.noreply.github.com> Co-authored-by: jimcody1995 <jjimcody@gmail.com> Co-authored-by: James <63717587+jamesrayammons@users.noreply.github.com> Co-authored-by: Yunlu Wen <yunlu.wen@dify.ai> Co-authored-by: Stephen Zhou <hi@hyoban.cc> Co-authored-by: Coding On Star <447357187@qq.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: jerryzai <jerryzh8710@protonmail.com> Co-authored-by: NVIDIAN <speedy.hpc@hotmail.com> Co-authored-by: ai-hpc <ai-hpc@users.noreply.github.com> Co-authored-by: Asuka Minato <i@asukaminato.eu.org> Co-authored-by: Junghwan <70629228+shaun0927@users.noreply.github.com> Co-authored-by: HeYinKazune <70251095+HeYin-OS@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: yyh <yuanyouhuilyz@gmail.com> Co-authored-by: Jingyi <jingyi.qi@dify.ai> Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com> Co-authored-by: sxxtony <166789813+sxxtony@users.noreply.github.com>
86 lines
2.4 KiB
TypeScript
86 lines
2.4 KiB
TypeScript
import type { IWorldOptions } from '@cucumber/cucumber'
|
|
import type { Browser, BrowserContext, ConsoleMessage, Download, Page } from '@playwright/test'
|
|
import type { AuthSessionMetadata } from '../../fixtures/auth'
|
|
import { setWorldConstructor, World } from '@cucumber/cucumber'
|
|
import { authStatePath, readAuthSessionMetadata } from '../../fixtures/auth'
|
|
import { baseURL, defaultLocale } from '../../test-env'
|
|
|
|
export class DifyWorld extends World {
|
|
context: BrowserContext | undefined
|
|
page: Page | undefined
|
|
consoleErrors: string[] = []
|
|
pageErrors: string[] = []
|
|
scenarioStartedAt: number | undefined
|
|
session: AuthSessionMetadata | undefined
|
|
lastCreatedAppName: string | undefined
|
|
createdAppIds: string[] = []
|
|
capturedDownloads: Download[] = []
|
|
|
|
constructor(options: IWorldOptions) {
|
|
super(options)
|
|
this.resetScenarioState()
|
|
}
|
|
|
|
resetScenarioState() {
|
|
this.consoleErrors = []
|
|
this.pageErrors = []
|
|
this.lastCreatedAppName = undefined
|
|
this.createdAppIds = []
|
|
this.capturedDownloads = []
|
|
}
|
|
|
|
async startSession(browser: Browser, authenticated: boolean) {
|
|
this.resetScenarioState()
|
|
this.context = await browser.newContext({
|
|
baseURL,
|
|
locale: defaultLocale,
|
|
...(authenticated ? { storageState: authStatePath } : {}),
|
|
})
|
|
this.context.setDefaultTimeout(30_000)
|
|
this.page = await this.context.newPage()
|
|
this.page.setDefaultTimeout(30_000)
|
|
|
|
this.page.on('console', (message: ConsoleMessage) => {
|
|
if (message.type() === 'error')
|
|
this.consoleErrors.push(message.text())
|
|
})
|
|
this.page.on('pageerror', (error) => {
|
|
this.pageErrors.push(error.message)
|
|
})
|
|
this.page.on('download', (dl) => {
|
|
this.capturedDownloads.push(dl)
|
|
})
|
|
}
|
|
|
|
async startAuthenticatedSession(browser: Browser) {
|
|
await this.startSession(browser, true)
|
|
}
|
|
|
|
async startUnauthenticatedSession(browser: Browser) {
|
|
await this.startSession(browser, false)
|
|
}
|
|
|
|
getPage() {
|
|
if (!this.page)
|
|
throw new Error('Playwright page has not been initialized for this scenario.')
|
|
|
|
return this.page
|
|
}
|
|
|
|
async getAuthSession() {
|
|
this.session ??= await readAuthSessionMetadata()
|
|
return this.session
|
|
}
|
|
|
|
async closeSession() {
|
|
await this.context?.close()
|
|
this.context = undefined
|
|
this.page = undefined
|
|
this.session = undefined
|
|
this.scenarioStartedAt = undefined
|
|
this.resetScenarioState()
|
|
}
|
|
}
|
|
|
|
setWorldConstructor(DifyWorld)
|