From 1054f0d6cde2d065f1876c750da1ce5abbf15a47 Mon Sep 17 00:00:00 2001 From: Nalem7 <61624650+nabim777@users.noreply.github.com> Date: Mon, 9 Oct 2023 09:14:39 +0545 Subject: [PATCH] add test for copy with fileID (#7398) --- .../copyByFileId.feature | 76 +++++++++++++++++++ 1 file changed, 76 insertions(+) diff --git a/tests/acceptance/features/apiSpacesDavOperation/copyByFileId.feature b/tests/acceptance/features/apiSpacesDavOperation/copyByFileId.feature index d6981bc06b..b0d1aed3ee 100644 --- a/tests/acceptance/features/apiSpacesDavOperation/copyByFileId.feature +++ b/tests/acceptance/features/apiSpacesDavOperation/copyByFileId.feature @@ -72,3 +72,79 @@ Feature: copying file using file id | dav-path | | /remote.php/dav/spaces/<> | | /dav/spaces/<> | + + + Scenario Outline: copy a file into a folder in project space + Given using spaces DAV path + And the administrator has assigned the role "Space Admin" to user "Alice" using the Graph API + And user "Alice" has created a space "project-space" with the default quota using the GraphApi + And user "Alice" has created a folder "/folder" in space "project-space" + And user "Alice" has uploaded a file inside space "project-space" with content "some data" to "textfile.txt" + And we save it into "FILEID" + When user "Alice" copies a file "/textfile.txt" into "/folder" inside space "project-space" using file-id path "" + Then the HTTP status code should be "201" + And for user "Alice" folder "/" of the space "project-space" should contain these files: + | textfile.txt | + And for user "Alice" folder "folder" of the space "project-space" should contain these files: + | textfile.txt | + Examples: + | dav-path | + | /remote.php/dav/spaces/<> | + | /dav/spaces/<> | + + + Scenario Outline: copy a file into a sub-folder in project space + Given using spaces DAV path + And the administrator has assigned the role "Space Admin" to user "Alice" using the Graph API + And user "Alice" has created a space "project-space" with the default quota using the GraphApi + And user "Alice" has created a folder "folder/sub-folder" in space "project-space" + And user "Alice" has uploaded a file inside space "project-space" with content "some data" to "textfile.txt" + And we save it into "FILEID" + When user "Alice" copies a file "/textfile.txt" into "/folder/sub-folder" inside space "project-space" using file-id path "" + Then the HTTP status code should be "201" + And for user "Alice" folder "/" of the space "project-space" should contain these files: + | textfile.txt | + And for user "Alice" folder "folder/sub-folder" of the space "project-space" should contain these files: + | textfile.txt | + Examples: + | dav-path | + | /remote.php/dav/spaces/<> | + | /dav/spaces/<> | + + + Scenario Outline: copy a file from a folder into root of project space + Given using spaces DAV path + And the administrator has assigned the role "Space Admin" to user "Alice" using the Graph API + And user "Alice" has created a space "project-space" with the default quota using the GraphApi + And user "Alice" has created a folder "folder" in space "project-space" + And user "Alice" has uploaded a file inside space "project-space" with content "some data" to "folder/textfile.txt" + And we save it into "FILEID" + When user "Alice" copies a file "folder/textfile.txt" into "/" inside space "project-space" using file-id path "" + Then the HTTP status code should be "201" + And for user "Alice" folder "/" of the space "project-space" should contain these files: + | textfile.txt | + And for user "Alice" folder "folder" of the space "project-space" should contain these files: + | textfile.txt | + Examples: + | dav-path | + | /remote.php/dav/spaces/<> | + | /dav/spaces/<> | + + + Scenario Outline: copy a file from sub-folder into root of project space + Given using spaces DAV path + And the administrator has assigned the role "Space Admin" to user "Alice" using the Graph API + And user "Alice" has created a space "project-space" with the default quota using the GraphApi + And user "Alice" has created a folder "folder/sub-folder" in space "project-space" + And user "Alice" has uploaded a file inside space "project-space" with content "some data" to "folder/sub-folder/textfile.txt" + And we save it into "FILEID" + When user "Alice" copies a file "folder/sub-folder/textfile.txt" into "/" inside space "project-space" using file-id path "" + Then the HTTP status code should be "201" + And for user "Alice" folder "/" of the space "project-space" should contain these files: + | textfile.txt | + And for user "Alice" folder "folder/sub-folder" of the space "project-space" should contain these files: + | textfile.txt | + Examples: + | dav-path | + | /remote.php/dav/spaces/<> | + | /dav/spaces/<> |