Page Menu
Home
Software Heritage
Search
Configure Global Search
Log In
Files
F7163514
D4800.id17023.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Subscribers
None
D4800.id17023.diff
View Options
diff --git a/swh/deposit/api/common.py b/swh/deposit/api/common.py
--- a/swh/deposit/api/common.py
+++ b/swh/deposit/api/common.py
@@ -582,6 +582,8 @@
"Please ensure your metadata file is correctly formatted.",
)
+ self._set_deposit_origin_from_metadata(deposit, metadata, headers)
+
# actual storage of data
self._deposit_put(
deposit=deposit, in_progress=headers.in_progress,
diff --git a/swh/deposit/tests/api/test_collection_post_multipart.py b/swh/deposit/tests/api/test_collection_post_multipart.py
--- a/swh/deposit/tests/api/test_collection_post_multipart.py
+++ b/swh/deposit/tests/api/test_collection_post_multipart.py
@@ -19,7 +19,41 @@
from swh.deposit.tests.common import check_archive, post_multipart
-def test_post_deposit_multipart_without_slug_header(
+def test_post_deposit_multipart(
+ authenticated_client,
+ deposit_collection,
+ atom_dataset,
+ mocker,
+ deposit_user,
+ sample_archive,
+):
+ # given
+ external_id = "foobar"
+ origin_url = deposit_user.provider_url + external_id
+ url = reverse(COL_IRI, args=[deposit_collection.name])
+ data_atom_entry = atom_dataset["entry-data0"] % origin_url
+
+ # when
+ response = post_multipart(
+ authenticated_client,
+ url,
+ sample_archive,
+ data_atom_entry,
+ HTTP_IN_PROGRESS="false",
+ )
+
+ print(response.content.decode())
+ assert response.status_code == status.HTTP_201_CREATED
+ response_content = parse_xml(BytesIO(response.content))
+ deposit_id = response_content["swh:deposit_id"]
+
+ deposit = Deposit.objects.get(pk=deposit_id)
+ assert deposit.collection == deposit_collection
+ assert deposit.origin_url == origin_url
+ assert deposit.status == DEPOSIT_STATUS_DEPOSITED
+
+
+def test_post_deposit_multipart_without_origin_url(
authenticated_client,
deposit_collection,
atom_dataset,
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Jan 30, 9:44 AM (19 h, 19 m ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3215936
Attached To
D4800: Handle <swh:create_origin> / <swh:add_to_origin> in multipart uploads
Event Timeline
Log In to Comment