mirror of
https://github.com/langgenius/dify.git
synced 2026-07-21 10:38:32 +08:00
Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: zyssyz123 <916125788@qq.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: 林玮 (Jade Lin) <linw1995@icloud.com> Co-authored-by: 盐粒 Yanli <mail@yanli.one>
181 lines
6.9 KiB
TypeScript
181 lines
6.9 KiB
TypeScript
import type { DifyWorld } from '../../support/world'
|
|
import { Given, Then, When } from '@cucumber/cucumber'
|
|
import { expect } from '@playwright/test'
|
|
import { skipBlockedPrecondition } from '../../agent-v2/support/preflight/common'
|
|
import { agentBuilderTestMaterials } from '../../agent-v2/support/test-materials'
|
|
import {
|
|
expectAgentConfigFileHidden,
|
|
expectAgentConfigFileSaved,
|
|
expectAgentConfigFileVisible,
|
|
uploadAgentConfigFile,
|
|
} from './configure-helpers'
|
|
|
|
When('I upload the small Agent v2 file from the Files section', async function (this: DifyWorld) {
|
|
await uploadAgentConfigFile(this, 'smallFile')
|
|
})
|
|
|
|
When('I upload the empty Agent v2 file from the Files section', async function (this: DifyWorld) {
|
|
await uploadAgentConfigFile(this, 'emptyFile')
|
|
})
|
|
|
|
When('I upload the special-name Agent v2 file from the Files section', async function (this: DifyWorld) {
|
|
await uploadAgentConfigFile(this, 'specialFilename')
|
|
})
|
|
|
|
When('I drop multiple Agent v2 files into the Files upload dialog', async function (this: DifyWorld) {
|
|
const page = this.getPage()
|
|
|
|
await page.getByRole('button', { name: 'Add file' }).click()
|
|
const dialog = page.getByRole('dialog', { name: 'Upload file' })
|
|
await expect(dialog).toBeVisible()
|
|
|
|
const dropZone = dialog.getByRole('group', { name: 'Upload file' })
|
|
await expect(dropZone).toBeVisible()
|
|
|
|
const droppedFileNames: [string, string] = [
|
|
agentBuilderTestMaterials.smallFile,
|
|
agentBuilderTestMaterials.emptyFile,
|
|
]
|
|
const dataTransfer = await page.evaluateHandle(([smallFileName, emptyFileName]: [string, string]) => {
|
|
const transfer = new DataTransfer()
|
|
transfer.items.add(new File(['small agent file'], smallFileName, { type: 'text/plain' }))
|
|
transfer.items.add(new File([''], emptyFileName, { type: 'text/plain' }))
|
|
return transfer
|
|
}, droppedFileNames)
|
|
|
|
await dropZone.dispatchEvent('dragenter', { dataTransfer })
|
|
await dropZone.dispatchEvent('dragover', { dataTransfer })
|
|
await dropZone.dispatchEvent('drop', { dataTransfer })
|
|
await dataTransfer.dispose()
|
|
})
|
|
|
|
Then(
|
|
'the Agent v2 Files upload dialog should reject the multiple-file drop',
|
|
async function (this: DifyWorld) {
|
|
const page = this.getPage()
|
|
const dialog = page.getByRole('dialog', { name: 'Upload file' })
|
|
|
|
await expect(page.getByText('Upload one file.')).toBeVisible()
|
|
await expect(dialog.getByRole('button', { name: 'Upload' })).toBeDisabled()
|
|
await expect(dialog.getByText(agentBuilderTestMaterials.smallFile, { exact: true })).not.toBeVisible()
|
|
await expect(dialog.getByText(agentBuilderTestMaterials.emptyFile, { exact: true })).not.toBeVisible()
|
|
},
|
|
)
|
|
|
|
Then('I should not see the dropped Agent v2 files in the Files section', async function (this: DifyWorld) {
|
|
await expectAgentConfigFileHidden(this, 'smallFile')
|
|
await expectAgentConfigFileHidden(this, 'emptyFile')
|
|
})
|
|
|
|
Then('I should see the small Agent v2 file in the Files section', async function (this: DifyWorld) {
|
|
await expectAgentConfigFileVisible(this, 'smallFile')
|
|
})
|
|
|
|
Then('I should see the empty Agent v2 file in the Files section', async function (this: DifyWorld) {
|
|
await expectAgentConfigFileVisible(this, 'emptyFile')
|
|
})
|
|
|
|
Then('I should not see the small Agent v2 file in the Files section', async function (this: DifyWorld) {
|
|
await expectAgentConfigFileHidden(this, 'smallFile')
|
|
})
|
|
|
|
Then('I should see the special-name Agent v2 file in the Files section', async function (this: DifyWorld) {
|
|
await expectAgentConfigFileVisible(this, 'specialFilename')
|
|
})
|
|
Then(
|
|
'the small Agent v2 file should be saved in the Agent v2 draft',
|
|
async function (this: DifyWorld) {
|
|
await expectAgentConfigFileSaved(this, 'smallFile')
|
|
},
|
|
)
|
|
|
|
Then(
|
|
'the empty Agent v2 file should be saved as a zero-byte file in the Agent v2 draft',
|
|
async function (this: DifyWorld) {
|
|
await expectAgentConfigFileSaved(this, 'emptyFile', { size: 0 })
|
|
},
|
|
)
|
|
|
|
Then(
|
|
'the special-name Agent v2 file should be saved in the Agent v2 draft',
|
|
async function (this: DifyWorld) {
|
|
await expectAgentConfigFileSaved(this, 'specialFilename')
|
|
},
|
|
)
|
|
|
|
async function skipUnsupportedFileFormatRejection(world: DifyWorld) {
|
|
return skipBlockedPrecondition(
|
|
world,
|
|
'Agent v2 unsupported file format rejection is not stable: default upload configuration allows arbitrary extensions unless UPLOAD_FILE_EXTENSION_BLACKLIST is seeded.',
|
|
{
|
|
owner: 'product/seed',
|
|
remediation: 'Define Agent config file type restrictions or seed UPLOAD_FILE_EXTENSION_BLACKLIST before enabling this scenario.',
|
|
},
|
|
)
|
|
}
|
|
|
|
Given('Agent v2 unsupported file format rejection is available', async function (this: DifyWorld) {
|
|
return skipUnsupportedFileFormatRejection(this)
|
|
})
|
|
|
|
Then('Agent v2 unsupported file format rejection should be available', async function (this: DifyWorld) {
|
|
return skipUnsupportedFileFormatRejection(this)
|
|
})
|
|
|
|
async function skipOversizedFileRejection(world: DifyWorld) {
|
|
return skipBlockedPrecondition(
|
|
world,
|
|
'Agent v2 oversized file rejection lacks a clear user-visible reason: the current upload dialog collapses upload and commit failures into a generic failure toast.',
|
|
{
|
|
owner: 'product',
|
|
remediation: 'Expose a stable user-visible file-size error before enabling this scenario.',
|
|
},
|
|
)
|
|
}
|
|
|
|
Given('Agent v2 oversized file rejection is available', async function (this: DifyWorld) {
|
|
return skipOversizedFileRejection(this)
|
|
})
|
|
|
|
Then('Agent v2 oversized file rejection should be available', async function (this: DifyWorld) {
|
|
return skipOversizedFileRejection(this)
|
|
})
|
|
|
|
async function skipTotalFileCountLimits(world: DifyWorld) {
|
|
return skipBlockedPrecondition(
|
|
world,
|
|
'Agent v2 total file count limits are not defined for Agent config files in the current product contract.',
|
|
{
|
|
owner: 'product',
|
|
remediation: 'Define the Agent config file total-count limit and user-visible error before enabling this scenario.',
|
|
},
|
|
)
|
|
}
|
|
|
|
Given('Agent v2 total file count limits are available', async function (this: DifyWorld) {
|
|
return skipTotalFileCountLimits(this)
|
|
})
|
|
|
|
Then('Agent v2 total file count limits should be available', async function (this: DifyWorld) {
|
|
return skipTotalFileCountLimits(this)
|
|
})
|
|
|
|
async function skipInProgressFileUploadRecovery(world: DifyWorld) {
|
|
return skipBlockedPrecondition(
|
|
world,
|
|
'Agent v2 in-progress file upload recovery is not stable: the current dialog has no deterministic slow-upload fixture or user-visible navigation guard contract.',
|
|
{
|
|
owner: 'product/test-infra',
|
|
remediation: 'Define upload-in-progress navigation behavior and provide a deterministic slow upload fixture before enabling this scenario.',
|
|
},
|
|
)
|
|
}
|
|
|
|
Given('Agent v2 in-progress file upload recovery is available', async function (this: DifyWorld) {
|
|
return skipInProgressFileUploadRecovery(this)
|
|
})
|
|
|
|
Then('Agent v2 in-progress file upload recovery should be available', async function (this: DifyWorld) {
|
|
return skipInProgressFileUploadRecovery(this)
|
|
})
|