diff --git a/.drone.env b/.drone.env index a5764e80a6..f9810cd6c7 100644 --- a/.drone.env +++ b/.drone.env @@ -1,6 +1,6 @@ # The test runner source for API tests -CORE_COMMITID=cb5fdb6c031dcd4fa118eaa1d44ca206e9feeeae -CORE_BRANCH=removeSharesSpaceRelatedFromCore +CORE_COMMITID=751c7d92b189cdc30b2a39bc08f31336a0ec2c41 +CORE_BRANCH=master # The test runner source for UI tests WEB_COMMITID=0bb33e791f10f1afebfde4ea4da356e46ecdc201 diff --git a/tests/acceptance/expected-failures-localAPI-on-OCIS-storage.md b/tests/acceptance/expected-failures-localAPI-on-OCIS-storage.md index e8bd36f5ff..2fe0ae8d12 100644 --- a/tests/acceptance/expected-failures-localAPI-on-OCIS-storage.md +++ b/tests/acceptance/expected-failures-localAPI-on-OCIS-storage.md @@ -45,7 +45,3 @@ The expected failures in this file are from features in the owncloud/ocis repo. ### [A space manager cannot see the public links of another manager](https://github.com/owncloud/ocis/issues/4260) - [apiSpaces/editPublicLinkOfSpace.feature:67](https://github.com/owncloud/ocis/blob/master/tests/acceptance/features/apiSpaces/editPublicLinkOfSpace.feature#L67) - -### [Shares named (file | folder) can be created in Personal space with spaces webdav](https://github.com/owncloud/ocis/issues/4286) -- [apiSpaces/createFileFolderWhenSharesSpaceExist.feature:43](https://github.com/owncloud/ocis/blob/master/tests/acceptance/features/apiSpaces/createFileFolderWhenSharesSpaceExist.feature#L43) -- [apiSpaces/createFileFolderWhenSharesSpaceExist.feature:50](https://github.com/owncloud/ocis/blob/master/tests/acceptance/features/apiSpaces/createFileFolderWhenSharesSpaceExist.feature#L50) diff --git a/tests/acceptance/features/apiSpaces/createFileFolderWhenSharesSpaceExist.feature b/tests/acceptance/features/apiSpaces/createFileFolderWhenSharesSpaceExist.feature index 232ceeacbf..912225f6ad 100644 --- a/tests/acceptance/features/apiSpaces/createFileFolderWhenSharesSpaceExist.feature +++ b/tests/acceptance/features/apiSpaces/createFileFolderWhenSharesSpaceExist.feature @@ -43,13 +43,13 @@ Feature: create file or folder named similar to Shares folder Scenario: try to create a folder named Shares Given using spaces DAV path When user "Brian" creates folder "/Shares" using the WebDAV API - Then the HTTP status code should be "405" + Then the HTTP status code should be "201" And for user "Brian" the space "Shares Jail" should contain these entries: | /FOLDER | Scenario: try to create a file named Shares Given using spaces DAV path When user "Brian" uploads file with content "some text" to "/Shares" using the WebDAV API - Then the HTTP status code should be "409" + Then the HTTP status code should be "201" And for user "Brian" the space "Shares Jail" should contain these entries: | /FOLDER |