chore(test): use consistent tabs for indention in behat tests

Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
pull/51591/head
Ferdinand Thiessen 7 months ago
parent f85154f1e1
commit 92795b2091
No known key found for this signature in database
GPG Key ID: 45FAE7268762B400
  1. 4
      .editorconfig
  2. 56
      build/integration/dav_features/dav-v2.feature
  3. 20
      build/integration/dav_features/webdav-related.feature

@ -13,10 +13,6 @@ indent_style = tab
insert_final_newline = true insert_final_newline = true
trim_trailing_whitespace = true trim_trailing_whitespace = true
[*.feature]
indent_size = 2
indent_style = space
[*.yml] [*.yml]
indent_size = 2 indent_size = 2
indent_style = space indent_style = space

@ -12,15 +12,15 @@ Feature: dav-v2
When User "user0" moves file "/textfile0.txt" to "/FOLDER/textfile0.txt" When User "user0" moves file "/textfile0.txt" to "/FOLDER/textfile0.txt"
Then the HTTP status code should be "201" Then the HTTP status code should be "201"
Scenario: Moving and overwriting it's parent Scenario: Moving and overwriting it's parent
Given using new dav path Given using new dav path
And As an "admin" And As an "admin"
And user "user0" exists And user "user0" exists
And As an "user0" And As an "user0"
And user "user0" created a folder "/test" And user "user0" created a folder "/test"
And user "user0" created a folder "/test/test" And user "user0" created a folder "/test/test"
When User "user0" moves file "/test/test" to "/test" When User "user0" moves file "/test/test" to "/test"
Then the HTTP status code should be "403" Then the HTTP status code should be "403"
Scenario: download a file with range using new endpoint Scenario: download a file with range using new endpoint
Given using new dav path Given using new dav path
@ -103,7 +103,7 @@ Feature: dav-v2
| shareType | 0 | | shareType | 0 |
| permissions | 31 | | permissions | 31 |
| shareWith | user0 | | shareWith | user0 |
And user "user0" accepts last share And user "user0" accepts last share
And As an "user0" And As an "user0"
When User "user0" uploads file "data/textfile.txt" to "/testquota/asdf.txt" When User "user0" uploads file "data/textfile.txt" to "/testquota/asdf.txt"
Then the HTTP status code should be "201" Then the HTTP status code should be "201"
@ -111,24 +111,24 @@ Feature: dav-v2
Scenario: Create a search query on image Scenario: Create a search query on image
Given using new dav path Given using new dav path
And As an "admin" And As an "admin"
And user "user0" exists And user "user0" exists
And As an "user0" And As an "user0"
When User "user0" uploads file "data/textfile.txt" to "/testquota/asdf.txt" When User "user0" uploads file "data/textfile.txt" to "/testquota/asdf.txt"
Then Image search should work Then Image search should work
And the response should be empty And the response should be empty
When User "user0" uploads file "data/green-square-256.png" to "/image.png" When User "user0" uploads file "data/green-square-256.png" to "/image.png"
Then Image search should work Then Image search should work
And the single response should contain a property "{DAV:}getcontenttype" with value "image/png" And the single response should contain a property "{DAV:}getcontenttype" with value "image/png"
Scenario: Create a search query on favorite Scenario: Create a search query on favorite
Given using new dav path Given using new dav path
And As an "admin" And As an "admin"
And user "user0" exists And user "user0" exists
And As an "user0" And As an "user0"
When User "user0" uploads file "data/green-square-256.png" to "/fav_image.png" When User "user0" uploads file "data/green-square-256.png" to "/fav_image.png"
Then Favorite search should work Then Favorite search should work
And the response should be empty And the response should be empty
When user "user0" favorites element "/fav_image.png" When user "user0" favorites element "/fav_image.png"
Then Favorite search should work Then Favorite search should work
And the single response should contain a property "{http://owncloud.org/ns}favorite" with value "1" And the single response should contain a property "{http://owncloud.org/ns}favorite" with value "1"

@ -38,15 +38,15 @@ Feature: webdav-related
Then the HTTP status code should be "204" Then the HTTP status code should be "204"
And Downloaded content when downloading file "/textfile0.txt" with range "bytes=0-6" should be "Welcome" And Downloaded content when downloading file "/textfile0.txt" with range "bytes=0-6" should be "Welcome"
Scenario: Moving and overwriting it's parent Scenario: Moving and overwriting it's parent
Given using old dav path Given using old dav path
And As an "admin" And As an "admin"
And user "user0" exists And user "user0" exists
And As an "user0" And As an "user0"
And user "user0" created a folder "/test" And user "user0" created a folder "/test"
And user "user0" created a folder "/test/test" And user "user0" created a folder "/test/test"
When User "user0" moves file "/test/test" to "/test" When User "user0" moves file "/test/test" to "/test"
Then the HTTP status code should be "403" Then the HTTP status code should be "403"
Scenario: Moving a file from shared folder to root folder Scenario: Moving a file from shared folder to root folder
Given using old dav path Given using old dav path
@ -706,7 +706,7 @@ Feature: webdav-related
And user "user0" uploads new chunk v2 file "2" to id "chunking-random" And user "user0" uploads new chunk v2 file "2" to id "chunking-random"
And user "user0" uploads new chunk v2 file "4" to id "chunking-random" And user "user0" uploads new chunk v2 file "4" to id "chunking-random"
And user "user0" moves new chunk v2 file with id "chunking-random" And user "user0" moves new chunk v2 file with id "chunking-random"
Then the upload should fail on object storage Then the upload should fail on object storage
@s3-multipart @s3-multipart
Scenario: Upload chunked file with special characters with new chunking v2 Scenario: Upload chunked file with special characters with new chunking v2

Loading…
Cancel
Save