From 5df8726da5ace8634fc0ea618d0992872ff9b30f Mon Sep 17 00:00:00 2001 From: Valentin Lorentz <vlorentz@softwareheritage.org> Date: Thu, 7 Apr 2022 16:47:32 +0200 Subject: [PATCH] Increase max_upload_size to fix test_deposit_invalid_tarball[tar.xz] failure on Sid Looks like .tar.xz files just got slightly larger in Sid (Python 3.10 upgrade?), which makes it go over the limit. --- swh/deposit/tests/api/test_collection_post_binary.py | 2 +- swh/deposit/tests/api/test_collection_post_multipart.py | 2 +- swh/deposit/tests/api/test_service_document.py | 2 +- swh/deposit/tests/conftest.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/swh/deposit/tests/api/test_collection_post_binary.py b/swh/deposit/tests/api/test_collection_post_binary.py index 1b632778..5e39aeb9 100644 --- a/swh/deposit/tests/api/test_collection_post_binary.py +++ b/swh/deposit/tests/api/test_collection_post_binary.py @@ -246,7 +246,7 @@ def test_post_deposit_binary_upload_fail_if_upload_size_limit_exceeded( url = reverse(COL_IRI, args=[deposit_collection.name]) archive = create_arborescence_archive( - tmp_path, "archive2", "file2", b"some content in file", up_to_size=500 + tmp_path, "archive2", "file2", b"some content in file", up_to_size=5000 ) external_id = "some-external-id" diff --git a/swh/deposit/tests/api/test_collection_post_multipart.py b/swh/deposit/tests/api/test_collection_post_multipart.py index f8ad950a..aa0759e8 100644 --- a/swh/deposit/tests/api/test_collection_post_multipart.py +++ b/swh/deposit/tests/api/test_collection_post_multipart.py @@ -368,7 +368,7 @@ def test_post_deposit_multipart_if_upload_size_limit_exceeded( archive = { **sample_archive, - "data": sample_archive["data"] * 8, + "data": sample_archive["data"] * 100, } data_atom_entry = atom_dataset["entry-data-deposit-binary"] diff --git a/swh/deposit/tests/api/test_service_document.py b/swh/deposit/tests/api/test_service_document.py index 0ee77b75..0c5d69cb 100644 --- a/swh/deposit/tests/api/test_service_document.py +++ b/swh/deposit/tests/api/test_service_document.py @@ -78,5 +78,5 @@ def check_response(response, username): </workspace> </service> """ - % (500, username, username, username, username) + % (5000, username, username, username, username) ) # noqa diff --git a/swh/deposit/tests/conftest.py b/swh/deposit/tests/conftest.py index 92b035ee..04fae35e 100644 --- a/swh/deposit/tests/conftest.py +++ b/swh/deposit/tests/conftest.py @@ -130,7 +130,7 @@ def requests_mock_datadir(datadir, requests_mock_datadir): @pytest.fixture def common_deposit_config(swh_scheduler_config, swh_storage_backend_config): return { - "max_upload_size": 500, + "max_upload_size": 5000, "extraction_dir": "/tmp/swh-deposit/test/extraction-dir", "checks": False, "scheduler": {"cls": "local", **swh_scheduler_config,}, -- GitLab