Initial QSfera import
This commit is contained in:
@@ -0,0 +1,90 @@
|
||||
Feature: move file and folder
|
||||
As a user
|
||||
I want to be able to move a folder and a file
|
||||
So that I can organize my files and folders
|
||||
|
||||
Background:
|
||||
Given user "Alice" has been created in the server with default attributes
|
||||
And user "Alice" has created folder "folder1" in the server
|
||||
And user "Alice" has created folder "folder1/folder2" in the server
|
||||
And user "Alice" has created folder "folder1/folder2/folder3" in the server
|
||||
And user "Alice" has created folder "folder1/folder2/folder3/folder4" in the server
|
||||
And user "Alice" has created folder "folder1/folder2/folder3/folder4/folder5" in the server
|
||||
|
||||
|
||||
Scenario: Move folder and file from level 5 sub-folder to sync root
|
||||
Given user "Alice" has created folder "folder1/folder2/folder3/folder4/folder5/test-folder" in the server
|
||||
And user "Alice" has uploaded file with content "openCloud" to "folder1/folder2/folder3/folder4/folder5/lorem.txt" in the server
|
||||
And user "Alice" has set up a client with default settings
|
||||
When user "Alice" moves file "folder1/folder2/folder3/folder4/folder5/lorem.txt" to "/" in the sync folder
|
||||
And user "Alice" moves folder "folder1/folder2/folder3/folder4/folder5/test-folder" to "/" in the sync folder
|
||||
And the user waits for the files to sync
|
||||
Then as "Alice" the file "lorem.txt" should have the content "openCloud" in the server
|
||||
And as "Alice" folder "test-folder" should exist in the server
|
||||
And as "Alice" file "folder1/folder2/folder3/folder4/folder5/lorem.txt" should not exist in the server
|
||||
And as "Alice" folder "folder1/folder2/folder3/folder4/folder5/test-folder" should not exist in the server
|
||||
|
||||
|
||||
Scenario: Move two folders and a file down to the level 5 sub-folder
|
||||
And user "Alice" has created folder "test-folder1" in the server
|
||||
And user "Alice" has created folder "test-folder2" in the server
|
||||
And user "Alice" has uploaded file with content "openCloud test" to "testFile.txt" in the server
|
||||
And user "Alice" has set up a client with default settings
|
||||
When user "Alice" moves folder "test-folder1" to "folder1/folder2/folder3/folder4/folder5" in the sync folder
|
||||
And user "Alice" moves folder "test-folder2" to "folder1/folder2/folder3/folder4/folder5" in the sync folder
|
||||
And user "Alice" moves file "testFile.txt" to "folder1/folder2/folder3/folder4/folder5" in the sync folder
|
||||
And the user waits for the files to sync
|
||||
Then as "Alice" the file "folder1/folder2/folder3/folder4/folder5/testFile.txt" should have the content "openCloud test" in the server
|
||||
And as "Alice" folder "folder1/folder2/folder3/folder4/folder5/test-folder1" should exist in the server
|
||||
And as "Alice" folder "folder1/folder2/folder3/folder4/folder5/test-folder2" should exist in the server
|
||||
And as "Alice" file "testFile.txt" should not exist in the server
|
||||
And as "Alice" folder "test-folder1" should not exist in the server
|
||||
And as "Alice" folder "test-folder2" should not exist in the server
|
||||
|
||||
@smoke
|
||||
Scenario: Rename a file and a folder
|
||||
Given user "Alice" has uploaded file with content "test file 1" to "textfile.txt" in the server
|
||||
And user "Alice" has set up a client with default settings
|
||||
When the user renames a file "textfile.txt" to "lorem.txt"
|
||||
And the user renames a folder "folder1" to "FOLDER"
|
||||
And the user waits for the files to sync
|
||||
Then as "Alice" the file "lorem.txt" should have the content "test file 1" in the server
|
||||
And as "Alice" folder "FOLDER" should exist in the server
|
||||
But as "Alice" file "textfile.txt" should not exist in the server
|
||||
And as "Alice" folder "folder1" should not exist in the server
|
||||
|
||||
@smoke
|
||||
Scenario: Move files from one folder to another
|
||||
Given user "Alice" has uploaded file with content "test file 1" to "folder1/file1.txt" in the server
|
||||
And user "Alice" has uploaded file with content "test file 2" to "folder1/file2.txt" in the server
|
||||
And user "Alice" has set up a client with default settings
|
||||
When user "Alice" moves file "folder1/file1.txt" to "folder1/folder2" in the sync folder
|
||||
And user "Alice" moves file "folder1/file2.txt" to "folder1/folder2" in the sync folder
|
||||
And the user waits for the files to sync
|
||||
Then as "Alice" the file "folder1/folder2/file1.txt" should have the content "test file 1" in the server
|
||||
And as "Alice" the file "folder1/folder2/file2.txt" should have the content "test file 2" in the server
|
||||
And as "Alice" file "folder1/file1.txt" should not exist in the server
|
||||
And as "Alice" file "folder1/file2.txt" should not exist in the server
|
||||
|
||||
|
||||
|
||||
Scenario: Move resources from different sub-levels to sync root
|
||||
Given user "Alice" has created folder "folder1/folder2/folder3/folder4/test-folder" in the server
|
||||
And user "Alice" has uploaded file with content "openCloud" to "folder1/folder2/lorem.txt" in the server
|
||||
And user "Alice" has set up a client with default settings
|
||||
When user "Alice" moves file "folder1/folder2/lorem.txt" to "/" in the sync folder
|
||||
And user "Alice" moves folder "folder1/folder2/folder3/folder4/test-folder" to "/" in the sync folder
|
||||
And the user waits for the files to sync
|
||||
Then as "Alice" the file "lorem.txt" should have the content "openCloud" in the server
|
||||
And as "Alice" folder "test-folder" should exist in the server
|
||||
And as "Alice" file "folder1/folder2/lorem.txt" should not exist in the server
|
||||
And as "Alice" folder "folder1/folder2/folder3/folder4/test-folder" should not exist in the server
|
||||
|
||||
|
||||
Scenario: Syncing a 50MB file moved into the local sync folder
|
||||
Given user "Alice" has set up a client with default settings
|
||||
And user "Alice" has created a folder "NewFolder" inside the sync folder
|
||||
And user "Alice" has created a file "newfile.txt" with size "50MB" in the sync folder
|
||||
When user "Alice" moves file "newfile.txt" to "NewFolder" in the sync folder
|
||||
And the user waits for file "NewFolder/newfile.txt" to be synced
|
||||
Then as "Alice" file "NewFolder/newfile.txt" should exist in the server
|
||||
Reference in New Issue
Block a user