Skip to content

Commit

Permalink
delete accepting share steps from acceptance UI tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ScharfViktor committed Oct 6, 2023
1 parent eed1938 commit c5063e9
Show file tree
Hide file tree
Showing 29 changed files with 2 additions and 345 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Other free text and markdown formatting can be used elsewhere in the document if
- [webUIFavorites/unfavoriteFile.feature:70](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIFavorites/unfavoriteFile.feature#L70)
- [webUIFavorites/unfavoriteFile.feature:86](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIFavorites/unfavoriteFile.feature#L86)
- [webUIFavorites/unfavoriteFile.feature:101](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIFavorites/unfavoriteFile.feature#L101)
- [webUIResharing1/reshareUsers.feature:177](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIResharing1/reshareUsers.feature#L177)
- [webUIResharing1/reshareUsers.feature:69](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIResharing1/reshareUsers.feature#L69)

### [when sharer renames the shared resource, sharee get the updated name](https://github.com/owncloud/ocis/issues/2256)
- [webUIRenameFiles/renameFiles.feature:227](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIRenameFiles/renameFiles.feature#L227)
Expand Down Expand Up @@ -108,4 +108,4 @@ Other free text and markdown formatting can be used elsewhere in the document if
- [webUIRenameFiles/renameFiles.feature:250](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUIRenameFiles/renameFiles.feature#L250)

### [PROPFIND to sub-folder of a shared resources with same name gives 404](https://github.com/owncloud/ocis/issues/3859)
- [webUISharingAcceptShares/acceptShares.feature:240](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUISharingAcceptShares/acceptShares.feature#L240)
- [webUISharingAcceptShares/acceptShares.feature:232](https://github.com/owncloud/web/blob/master/tests/acceptance/features/webUISharingAcceptShares/acceptShares.feature#L232)
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ Feature: Versions of a file
And user "Brian" has created folder "simple-folder" in the server
And user "Brian" has uploaded file with content "a text file" to "simple-folder/lorem.txt" in the server
And user "Brian" has shared folder "simple-folder" with user "Alice" with "all" permissions in the server
And user "Alice" has accepted the share "simple-folder" offered by user "Brian" in the server
And user "Alice" has logged in using the webUI
And the user has opened folder "Shares"
And the user has opened folder "simple-folder"
Expand Down
2 changes: 0 additions & 2 deletions tests/acceptance/features/webUIFilesCopy/copy.feature
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ Feature: copy files and folders
And user "Brian" has been created with default attributes and without skeleton files in the server
And user "Brian" has created folder "simple-folder" in the server
And user "Brian" has shared folder "simple-folder" with user "Alice" with "read" permissions in the server
And user "Alice" has accepted the share "Shares/simple-folder" offered by user "Brian" in the server
And user "Alice" has logged in using the webUI
When the user tries to copy file "lorem.txt" into folder "Shares/simple-folder" using the webUI
Then as "Alice" file "Shares/simple-folder/lorem.txt" should not exist in the server
Expand All @@ -103,7 +102,6 @@ Feature: copy files and folders
And user "Brian" has been created with default attributes and without skeleton files in the server
And user "Brian" has created folder "simple-folder" in the server
And user "Brian" has shared folder "simple-folder" with user "Alice" with "read" permissions in the server
And user "Alice" has accepted the share "Shares/simple-folder" offered by user "Brian" in the server
And user "Alice" has logged in using the webUI
When the user tries to copy folder "simple-empty-folder" into folder "Shares/simple-folder" using the webUI
Then as "Alice" file "Shares/simple-folder/simple-empty-folder" should not exist in the server
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@ Feature: move files
And user "Brian" has been created with default attributes and without skeleton files in the server
And user "Alice" has uploaded file with content "test content" to "simple-folder/testFile.txt" in the server
And user "Alice" has shared folder "/simple-folder" with user "Brian" in the server
And user "Brian" has accepted the share "Shares/simple-folder" offered by user "Alice" in the server
And user "Brian" has logged in using the webUI
And user "Brian" has created folder "/Shares/testFolder" in the server
And the user has opened folder "Shares"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,13 @@ Feature: Upload into a folder Shares
Scenario: the Shares folder exists after accepting the first shared file
Given user "Brian" has created file "lorem.txt" in the server
And user "Brian" has shared file "lorem.txt" with user "Alice" with "all" permissions in the server
And user "Alice" has accepted the share "Shares/lorem.txt" offered by user "Brian" in the server
When user "Alice" logs in using the webUI
Then folder "Shares" should be listed on the webUI

@issue-ocis-2322 @notToImplementOnOCIS
Scenario: upload of a file into a folder Shares in oc10
Given user "Brian" has created file "lorem.txt" in the server
And user "Brian" has shared file "lorem.txt" with user "Alice" with "all" permissions in the server
And user "Alice" has accepted the share "Shares/lorem.txt" offered by user "Brian" in the server
And user "Alice" has logged in using the webUI
And the user has opened folder "Shares"
When the user uploads file "new-lorem.txt" using the webUI
Expand All @@ -39,7 +37,6 @@ Feature: Upload into a folder Shares
Scenario: upload of a folder into a folder Shares in oc 10
Given user "Brian" has created file "lorem.txt" in the server
And user "Brian" has shared file "lorem.txt" with user "Alice" with "all" permissions in the server
And user "Alice" has accepted the share "Shares/lorem.txt" offered by user "Brian" in the server
And user "Alice" has logged in using the webUI
And the user has opened folder "Shares"
When the user uploads folder "PARENT" using the webUI
Expand All @@ -51,7 +48,6 @@ Feature: Upload into a folder Shares
Given user "Brian" has been created with default attributes and without skeleton files in the server
And user "Brian" has created file "lorem.txt" in the server
And user "Brian" has shared file "lorem.txt" with user "Alice" with "all" permissions in the server
And user "Alice" has accepted the share "Shares/lorem.txt" offered by user "Brian" in the server
And user "Alice" has logged in using the webUI
And the user has opened folder "Shares"
When the user creates a folder with the name "New folder" using the webUI
Expand All @@ -61,7 +57,6 @@ Feature: Upload into a folder Shares
Scenario: move a file or a folder into a folder Shares in oc10
Given user "Brian" has created file "lorem.txt" in the server
And user "Brian" has shared file "lorem.txt" with user "Alice" with "read" permissions in the server
And user "Alice" has accepted the share "Shares/lorem.txt" offered by user "Brian" in the server
And user "Alice" has created folder "NewFolder" in the server
And user "Alice" has logged in using the webUI
When the user moves folder "NewFolder" into folder "Shares" using the webUI
Expand All @@ -71,7 +66,6 @@ Feature: Upload into a folder Shares
Scenario: the user can delete files that they wrote into the folder Shares
Given user "Brian" has created file "lorem.txt" in the server
And user "Brian" has shared file "lorem.txt" with user "Alice" with "all" permissions in the server
And user "Alice" has accepted the share "Shares/lorem.txt" offered by user "Brian" in the server
And user "Alice" has logged in using the webUI
And user "Alice" has created folder "Shares/NewFolder" in the server
And user "Alice" has uploaded file with content "some data" to "Shares/textfile.txt" in the server
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,6 @@ Feature: display image in preview app on the webUI
And user "Brian" has been created with default attributes and without skeleton files in the server
And user "Brian" has uploaded file "testavatar.jpeg" to "testavatar.jpeg" in the server
And user "Brian" has shared file "testavatar.jpeg" with user "Alice" with "all" permissions in the server
And user "Alice" has accepted the share "testavatar.jpeg" offered by user "Brian" in the server
And user "Alice" has logged in using the webUI
And the user browses to the shared-with-me page
When the user views the file "testavatar.jpeg" in the preview app by clicking on the file name using the webUI
Expand Down
Loading

0 comments on commit c5063e9

Please sign in to comment.