Page Menu
Home
Software Heritage
Search
Configure Global Search
Log In
Files
F7163492
D7833.id.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
D7833.id.diff
View Options
diff --git a/swh/loader/core/loader.py b/swh/loader/core/loader.py
--- a/swh/loader/core/loader.py
+++ b/swh/loader/core/loader.py
@@ -397,6 +397,7 @@
):
self.post_load()
except BaseException as e:
+ success = False
if isinstance(e, NotFound):
status = "not_found"
task_status = "uneventful"
diff --git a/swh/loader/core/tests/test_loader.py b/swh/loader/core/tests/test_loader.py
--- a/swh/loader/core/tests/test_loader.py
+++ b/swh/loader/core/tests/test_loader.py
@@ -241,6 +241,25 @@
assert loader.statsd.constant_tags == {"visit_type": "git"}
+def test_base_loader_post_load_raise(swh_storage, mocker):
+ loader = DummyBaseLoader(swh_storage)
+ post_load = mocker.patch.object(loader, "post_load")
+
+ # raise exception in post_load when success is True
+ def post_load_method(*args, success=True):
+ if success:
+ raise Exception("Error in post_load")
+
+ post_load.side_effect = post_load_method
+
+ result = loader.load()
+ assert result == {"status": "failed"}
+
+ # ensure post_load has been called twice, once with success to True and
+ # once with success to False as the first post_load call raised exception
+ assert post_load.call_args_list == [mocker.call(), mocker.call(success=False)]
+
+
def test_dvcs_loader(swh_storage):
loader = DummyDVCSLoader(swh_storage)
result = loader.load()
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Jan 30, 9:15 AM (19 h, 57 m ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3220082
Attached To
D7833: loader: Ensure success is False when entering exception handler
Event Timeline
Log In to Comment