]> source.dussan.org Git - nextcloud-server.git/commitdiff
Fix forbidden backslash DAV integration tests
authorVincent Petry <pvince81@owncloud.com>
Thu, 30 Mar 2017 09:31:24 +0000 (11:31 +0200)
committerJoas Schilling <coding@schilljs.com>
Wed, 26 Apr 2017 13:47:59 +0000 (15:47 +0200)
build/integration/features/webdav-related.feature

index d0eb3fb4bf4f27ce7b3746f059b840eff8931c8e..b8ed1c4a77872fd28fbf75648816f0bb8bbfaa5a 100644 (file)
@@ -541,40 +541,40 @@ Feature: webdav-related
                Given using old dav path
                And user "user0" exists
                And user "user0" created a folder "/testshare"
-               When User "user0" moves folder "/testshare" to "/%2F"
-               Then the HTTP status code should be "403"
+               When User "user0" moves folder "/testshare" to "/%5C"
+               Then the HTTP status code should be "400"
 
        Scenario: Renaming a folder beginning with a backslash encoded should return an error using old endpoint
                Given using old dav path
                And user "user0" exists
                And user "user0" created a folder "/testshare"
-               When User "user0" moves folder "/testshare" to "/%2Ftestshare"
-               Then the HTTP status code should be "403"
+               When User "user0" moves folder "/testshare" to "/%5Ctestshare"
+               Then the HTTP status code should be "400"
 
        Scenario: Renaming a folder including a backslash encoded should return an error using old endpoint
                Given using old dav path
                And user "user0" exists
                And user "user0" created a folder "/testshare"
-               When User "user0" moves folder "/testshare" to "/hola%2Fhola"
-               Then the HTTP status code should be "403"
+               When User "user0" moves folder "/testshare" to "/hola%5Chola"
+               Then the HTTP status code should be "400"
 
        Scenario: Renaming a folder to a backslash encoded should return an error using new endpoint
                Given using new dav path
                And user "user0" exists
                And user "user0" created a folder "/testshare"
-               When User "user0" moves folder "/testshare" to "/%2F"
-               Then the HTTP status code should be "403"
+               When User "user0" moves folder "/testshare" to "/%5C"
+               Then the HTTP status code should be "400"
 
        Scenario: Renaming a folder beginning with a backslash encoded should return an error using new endpoint
                Given using new dav path
                And user "user0" exists
                And user "user0" created a folder "/testshare"
-               When User "user0" moves folder "/testshare" to "/%2Ftestshare"
-               Then the HTTP status code should be "403"
+               When User "user0" moves folder "/testshare" to "/%5Ctestshare"
+               Then the HTTP status code should be "400"
 
        Scenario: Renaming a folder including a backslash encoded should return an error using new endpoint
                Given using new dav path
                And user "user0" exists
                And user "user0" created a folder "/testshare"
-               When User "user0" moves folder "/testshare" to "/hola%2Fhola"
-               Then the HTTP status code should be "403"
+               When User "user0" moves folder "/testshare" to "/hola%5Chola"
+               Then the HTTP status code should be "400"