From b5754eb4e8237b0adba5450df0fb92a19c1146f4 Mon Sep 17 00:00:00 2001 From: jkoberg Date: Tue, 16 Jul 2024 15:52:16 +0200 Subject: [PATCH] fix(tests): default archive format is now zip Signed-off-by: jkoberg --- .../acceptance/features/apiArchiver/downloadById.feature | 8 ++++---- .../features/apiDownloads/spaceDownload.feature | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/acceptance/features/apiArchiver/downloadById.feature b/tests/acceptance/features/apiArchiver/downloadById.feature index 4f708131bb6..635f191d016 100644 --- a/tests/acceptance/features/apiArchiver/downloadById.feature +++ b/tests/acceptance/features/apiArchiver/downloadById.feature @@ -22,7 +22,7 @@ Feature: download multiple resources bundled into an archive | textfile0.txt | some data | Examples: | user-agent | archive-type | - | Linux | tar | + | Linux | zip | | Windows NT | zip | @@ -40,7 +40,7 @@ Feature: download multiple resources bundled into an archive | my_data/an_other_file.txt | more data | Examples: | user-agent | archive-type | - | Linux | tar | + | Linux | zip | | Windows NT | zip | @@ -57,7 +57,7 @@ Feature: download multiple resources bundled into an archive | my_data | | more_data | Then the HTTP status code should be "200" - And the downloaded tar archive should contain these files: + And the downloaded zip archive should contain these files: | name | content | | textfile0.txt | some data | | textfile1.txt | other data | @@ -110,7 +110,7 @@ Feature: download multiple resources bundled into an archive | /Shares/my_data | | /Shares/more_data | Then the HTTP status code should be "200" - And the downloaded tar archive should contain these files: + And the downloaded zip archive should contain these files: | name | content | | textfile0.txt | some data | | textfile1.txt | other data | diff --git a/tests/acceptance/features/apiDownloads/spaceDownload.feature b/tests/acceptance/features/apiDownloads/spaceDownload.feature index 861a20669a2..2be3a62dc6c 100644 --- a/tests/acceptance/features/apiDownloads/spaceDownload.feature +++ b/tests/acceptance/features/apiDownloads/spaceDownload.feature @@ -21,7 +21,7 @@ Feature: Download space Given user "Alice" has uploaded a file inside space "Project-space" with content "other data" to "file2.txt" When user "Alice" downloads the space "Project-space" using the WebDAV API Then the HTTP status code should be "200" - And the downloaded "tar" archive should contain these files: + And the downloaded "zip" archive should contain these files: | name | content | | file1.txt | some data | | file2.txt | other data | @@ -36,7 +36,7 @@ Feature: Download space | permissionsRole | | When user "Brian" downloads the space "Project-space" using the WebDAV API Then the HTTP status code should be "200" - And the downloaded "tar" archive should contain these files: + And the downloaded "zip" archive should contain these files: | name | content | | file1.txt | some data | | .space/readme.md | space description |