diff --git a/.drone.star b/.drone.star index 19157a3dc62..047551fc241 100644 --- a/.drone.star +++ b/.drone.star @@ -109,7 +109,6 @@ config = { "webUIDeleteFilesFolders", ], "oCISFiles2": [ - "webUIFilesList", "webUIFilesDetails", ], "oCISFiles3": [ @@ -177,7 +176,6 @@ basicTestSuites = [ "webUIFiles", "webUIFilesCopy", "webUIFilesDetails", - "webUIFilesList", "webUILogin", "webUIMoveFilesFolders", "webUIPreview", diff --git a/tests/acceptance/features/webUIFilesList/fileList.feature b/tests/acceptance/features/webUIFilesList/fileList.feature deleted file mode 100644 index 305ec5a3455..00000000000 --- a/tests/acceptance/features/webUIFilesList/fileList.feature +++ /dev/null @@ -1,48 +0,0 @@ -Feature: User can view files inside a folder - As a user - I want to be able to view folder contents - So that I can work with files and folders inside it - - Background: - Given user "Alice" has been created with default attributes and without skeleton files in the server - And user "Alice" has created folder "simple-folder" in the server - And user "Alice" has created folder "simple-empty-folder" in the server - And user "Alice" has uploaded file "lorem.txt" to "lorem.txt" in the server - And user "Alice" has uploaded file "lorem.txt" to "textfile0.txt" in the server - And user "Alice" has uploaded file "data.zip" to "data.zip" in the server - And user "Alice" has logged in using the webUI - - - Scenario: Resources are listed and files list displays quicklink quick action - When the user browses to the files page - Then quick action "quicklink" should be displayed on the webUI - Then folder "simple-folder" should be listed on the webUI - And file "textfile0.txt" should be listed on the webUI - - @issue-1910 - Scenario: Empty folders display no resources in the list - When the user creates a folder with the name "empty-thing" using the webUI - And the user opens folder "empty-thing" directly on the webUI - Then there should be no resources listed on the webUI - - - Scenario: files are not selected when the user logs in - When the user browses to the files page - Then these files should not be selected on the webUI - | name | - | lorem.txt | - | simple-empty-folder | - | data.zip | - - @disablePreviews - Scenario: select files - When the user marks these files for batch action using the webUI - | name | - | lorem.txt | - | simple-empty-folder | - | data.zip | - Then these files should be selected on the webUI - | name | - | lorem.txt | - | simple-empty-folder | - | data.zip | diff --git a/tests/acceptance/features/webUIFilesList/sort.feature b/tests/acceptance/features/webUIFilesList/sort.feature deleted file mode 100644 index 92c874d3636..00000000000 --- a/tests/acceptance/features/webUIFilesList/sort.feature +++ /dev/null @@ -1,85 +0,0 @@ -Feature: Sort files/folders - - As a user - I would like to sort files/folders - So that I can make the file/folder list more clear - - Background: - Given user "Alice" has been created with default attributes and without skeleton files in the server - And user "Alice" has logged in using the webUI - And user "Alice" has created folder "test_sort" in the server - And user "Alice" has created the following folders in the server - | entry_name | - | test_sort/a | - | test_sort/a 文件 | - | test_sort/10 | - | test_sort/1 | - | test_sort/2 | - | test_sort/z | - And user "Alice" has created the following files in the server - | entry_name | - | test_sort/a.txt | - | test_sort/a space.txt | - | test_sort/a space (2).txt | - | test_sort/a space 文件 | - | test_sort/a space 文件夹 | - | test_sort/b1.txt | - | test_sort/b2.txt | - | test_sort/b10.txt | - | test_sort/z.txt | - - - Scenario: Folders are listed before files alphabetically by default and sorted using natural sort - When the user has browsed to the personal page - Then these resources should be listed in the folder "test_sort" on the webUI - | entry_name | - | a | - | a 文件 | - | 1 | - | 2 | - | 10 | - | z | - | a.txt | - | a space.txt | - | a space (2).txt | - | a space 文件 | - | a space 文件夹 | - | b1.txt | - | b2.txt | - | b10.txt | - | z.txt | - - - Scenario: Resources can be sorted in reverse alphabetical order - When the user has browsed to the personal page - And the user has set the sort order of the "Name" column to descending order - Then these resources should be listed in the folder "test_sort" on the webUI - | entry_name | - | z.txt | - | b10.txt | - | b2.txt | - | b1.txt | - | a space 文件夹 | - | a space 文件 | - | a space (2).txt | - | a space.txt | - | a.txt | - | z | - | 10 | - | 2 | - | 1 | - | a 文件 | - | a | - - - Scenario: Resources can be sorted by updated time - When the user has browsed to the personal page - And the user has set the sort order of the "Modified" column to ascending order - Then these resources should be listed in the folder "test_sort" on the webUI - | entry_name | - | a | - | a 文件 | - | 10 | - | 1 | - | 2 | - | z |