Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLouis Chemineau <louis@chmn.me>2021-10-15 12:57:39 +0300
committerJulius Härtl <jus@bitgrid.net>2021-10-16 10:42:07 +0300
commitdef983dc7ea11b9f8e449d56019f934ce89d9490 (patch)
tree4b99dfe4c8b29e5d234d27a1b15867f45650619b /build/integration
parentdd938dadefcbfa09fece30efcdaf09538f01d9e3 (diff)
Clean BulkUpload plugin
Signed-off-by: Louis Chemineau <louis@chmn.me>
Diffstat (limited to 'build/integration')
-rw-r--r--build/integration/features/bootstrap/WebDav.php51
-rw-r--r--build/integration/features/webdav-related.feature11
2 files changed, 62 insertions, 0 deletions
diff --git a/build/integration/features/bootstrap/WebDav.php b/build/integration/features/bootstrap/WebDav.php
index 31ca68ba92b..9f5e79a3ac6 100644
--- a/build/integration/features/bootstrap/WebDav.php
+++ b/build/integration/features/bootstrap/WebDav.php
@@ -538,6 +538,57 @@ trait WebDav {
}
/**
+ * @Given user :user uploads bulked files :name1 with :content1 and :name2 with :content2 and :name3 with :content3
+ * @param string $user
+ * @param string $name1
+ * @param string $content1
+ * @param string $name2
+ * @param string $content2
+ * @param string $name3
+ * @param string $content3
+ */
+ public function userUploadsChunkedFiles($user, $name1, $content1, $name2, $content2, $name3, $content3) {
+ $boundary = "boundary_azertyuiop";
+
+ $body = "";
+ $body .= '--'.$boundary."\r\n";
+ $body .= "X-File-Path: ".$name1."\r\n";
+ $body .= "X-File-MD5: f6a6263167c92de8644ac998b3c4e4d1\r\n";
+ $body .= "Content-Length: ".strlen($content1)."\r\n";
+ $body .= "\r\n";
+ $body .= $content1."\r\n";
+ $body .= '--'.$boundary."\r\n";
+ $body .= "X-File-Path: ".$name2."\r\n";
+ $body .= "X-File-MD5: 87c7d4068be07d390a1fffd21bf1e944\r\n";
+ $body .= "Content-Length: ".strlen($content2)."\r\n";
+ $body .= "\r\n";
+ $body .= $content2."\r\n";
+ $body .= '--'.$boundary."\r\n";
+ $body .= "X-File-Path: ".$name3."\r\n";
+ $body .= "X-File-MD5: e86a1cf0678099986a901c79086f5617\r\n";
+ $body .= "Content-Length: ".strlen($content3)."\r\n";
+ $body .= "\r\n";
+ $body .= $content3."\r\n";
+ $body .= '--'.$boundary."--\r\n";
+
+ $stream = fopen('php://temp','r+');
+ fwrite($stream, $body);
+ rewind($stream);
+
+ $client = new GClient();
+ $options = [
+ 'auth' => [$user, $this->regularUser],
+ 'headers' => [
+ 'Content-Type' => 'multipart/related; boundary='.$boundary,
+ 'Content-Length' => (string)strlen($body),
+ ],
+ 'body' => $body
+ ];
+
+ return $client->request("POST", substr($this->baseUrl, 0, -4) . "remote.php/dav/bulk", $options);
+ }
+
+ /**
* @Given user :user creates a new chunking upload with id :id
*/
public function userCreatesANewChunkingUploadWithId($user, $id) {
diff --git a/build/integration/features/webdav-related.feature b/build/integration/features/webdav-related.feature
index 66652e6fa26..c98ecc56ec7 100644
--- a/build/integration/features/webdav-related.feature
+++ b/build/integration/features/webdav-related.feature
@@ -608,3 +608,14 @@ Feature: webdav-related
And user "user0" uploads new chunk file "3" with "CCCCC" to id "chunking-42"
When user "user0" moves new chunk file with id "chunking-42" to "/myChunkedFile.txt" with size 15
Then the HTTP status code should be "201"
+
+ Scenario: Upload bulked files
+ Given user "user0" exists
+ And user "user0" uploads bulked files "A.txt" with "AAAAA" and "B.txt" with "BBBBB" and "C.txt" with "CCCCC"
+ When As an "user0"
+ Then Downloading file "/A.txt"
+ And Downloaded content should be "AAAAA"
+ And Downloading file "/B.txt"
+ And Downloaded content should be "BBBBB"
+ And Downloading file "/C.txt"
+ And Downloaded content should be "CCCCC"