Merge pull request #10044 from nextcloud/stable13-10040-fix-filenames-in-sharing-integration-tests

[stable13] Fix filenames in sharing integration tests
This commit is contained in:
Morris Jobke 2018-06-29 09:03:20 +02:00 committed by GitHub
commit 42de484162
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 4 deletions

View File

@ -69,7 +69,7 @@ Feature: sharing
And group "group1" exists And group "group1" exists
And user "user1" belongs to group "group1" And user "user1" belongs to group "group1"
And file "textfile0.txt" of user "user0" is shared with group "group1" And file "textfile0.txt" of user "user0" is shared with group "group1"
And User "user1" moved file "/textfile0.txt" to "/FOLDER/textfile0.txt" And User "user1" moved file "/textfile0 (2).txt" to "/FOLDER/textfile0.txt"
And As an "user0" And As an "user0"
When Updating last share with When Updating last share with
| permissions | 1 | | permissions | 1 |
@ -199,8 +199,14 @@ Feature: sharing
Then user "user1" should see following elements Then user "user1" should see following elements
| /FOLDER/ | | /FOLDER/ |
| /PARENT/ | | /PARENT/ |
| /CHILD/ | | /PARENT/CHILD/ |
| /PARENT/parent.txt | | /PARENT/parent.txt |
| /PARENT/CHILD/child.txt |
| /PARENT%20(2)/ |
| /PARENT%20(2)/CHILD/ |
| /PARENT%20(2)/parent.txt |
| /PARENT%20(2)/CHILD/child.txt |
| /CHILD/ |
| /CHILD/child.txt | | /CHILD/child.txt |
And the HTTP status code should be "200" And the HTTP status code should be "200"
@ -240,7 +246,7 @@ Feature: sharing
And User "user1" moved file "/textfile0.txt" to "/common/textfile0.txt" And User "user1" moved file "/textfile0.txt" to "/common/textfile0.txt"
And User "user1" moved file "/common/textfile0.txt" to "/common/sub/textfile0.txt" And User "user1" moved file "/common/textfile0.txt" to "/common/sub/textfile0.txt"
And As an "user2" And As an "user2"
When Downloading file "/textfile0.txt" with range "bytes=10-18" When Downloading file "/textfile0 (2).txt" with range "bytes=10-18"
Then Downloaded content should be "test text" Then Downloaded content should be "test text"
And user "user2" should see following elements And user "user2" should see following elements
| /common/sub/textfile0.txt | | /common/sub/textfile0.txt |
@ -252,7 +258,7 @@ Feature: sharing
And group "group1" exists And group "group1" exists
And user "user1" belongs to group "group1" And user "user1" belongs to group "group1"
And file "textfile0.txt" of user "user0" is shared with group "group1" And file "textfile0.txt" of user "user0" is shared with group "group1"
And User "user1" moved file "/textfile0.txt" to "/FOLDER/textfile0.txt" And User "user1" moved file "/textfile0 (2).txt" to "/FOLDER/textfile0.txt"
And As an "user0" And As an "user0"
And Deleting last share And Deleting last share
And As an "user1" And As an "user1"