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: 林玮 (Jade Lin) <linw1995@icloud.com> Co-authored-by: 盐粒 Yanli <mail@yanli.one> Co-authored-by: Asuka Minato <i@asukaminato.eu.org> Co-authored-by: Jashwanth Reddy Gummula <gmrnlg1971@gmail.com> Co-authored-by: WH-2099 <wh2099@pm.me> Co-authored-by: 非法操作 <hjlarry@163.com> Co-authored-by: wangxiaolei <fatelei@gmail.com> Co-authored-by: FFXN <31929997+FFXN@users.noreply.github.com> Co-authored-by: Yansong Zhang <916125788@qq.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
63 lines
3.2 KiB
Gherkin
63 lines
3.2 KiB
Gherkin
@agent-v2 @authenticated @files
|
|
Feature: Agent v2 files
|
|
@core
|
|
Scenario: Uploading a small file keeps it in the Agent configuration
|
|
Given I am signed in as the default E2E admin
|
|
And a basic configured Agent v2 test agent has been created via API
|
|
When I open the Agent v2 configure page
|
|
And I upload the small Agent v2 file from the Files section
|
|
Then I should see the small Agent v2 file in the Files section
|
|
And the small Agent v2 file should be saved in the Agent v2 draft
|
|
And the Agent v2 configuration should be saved automatically
|
|
When I refresh the current page
|
|
Then I should see the small Agent v2 file in the Files section
|
|
|
|
@core
|
|
Scenario: Uploading an empty file keeps a zero-byte file in the Agent configuration
|
|
Given I am signed in as the default E2E admin
|
|
And a basic configured Agent v2 test agent has been created via API
|
|
When I open the Agent v2 configure page
|
|
And I upload the empty Agent v2 file from the Files section
|
|
Then I should see the empty Agent v2 file in the Files section
|
|
And the empty Agent v2 file should be saved as a zero-byte file in the Agent v2 draft
|
|
And the Agent v2 configuration should be saved automatically
|
|
When I refresh the current page
|
|
Then I should see the empty Agent v2 file in the Files section
|
|
|
|
@core
|
|
Scenario: Uploading a special-name file keeps the filename readable
|
|
Given I am signed in as the default E2E admin
|
|
And a basic configured Agent v2 test agent has been created via API
|
|
When I open the Agent v2 configure page
|
|
And I upload the special-name Agent v2 file from the Files section
|
|
Then I should see the special-name Agent v2 file in the Files section
|
|
And the special-name Agent v2 file should be saved in the Agent v2 draft
|
|
And the Agent v2 configuration should be saved automatically
|
|
When I refresh the current page
|
|
Then I should see the special-name Agent v2 file in the Files section
|
|
|
|
@files-limits @feature-gated
|
|
Scenario: Unsupported Agent v2 file formats show a clear rejection reason
|
|
Given I am signed in as the default E2E admin
|
|
And Agent v2 unsupported file format rejection is available
|
|
And a basic configured Agent v2 test agent has been created via API
|
|
When I open the Agent v2 configure page
|
|
Then Agent v2 unsupported file format rejection should be available
|
|
|
|
@files-limits @feature-gated
|
|
Scenario: Oversized Agent v2 files show a clear rejection reason
|
|
Given I am signed in as the default E2E admin
|
|
And Agent v2 oversized file rejection is available
|
|
And a basic configured Agent v2 test agent has been created via API
|
|
When I open the Agent v2 configure page
|
|
Then Agent v2 oversized file rejection should be available
|
|
|
|
@core @files-limits
|
|
Scenario: Dropping multiple Agent v2 files at once is rejected
|
|
Given I am signed in as the default E2E admin
|
|
And a basic configured Agent v2 test agent has been created via API
|
|
When I open the Agent v2 configure page
|
|
And I drop multiple Agent v2 files into the Files upload dialog
|
|
Then the Agent v2 Files upload dialog should reject the multiple-file drop
|
|
And I should not see the dropped Agent v2 files in the Files section
|