Skip to content
Snippets Groups Projects
Commit 10fcd44f authored by Antoine Lambert's avatar Antoine Lambert
Browse files

loader: Ensure to search in a string when processing GitProtocolError

First argument of the exception is not always a string so force its text
representation before searching in it.
parent f84ee4f9
Branches fix-text-search-in-exception-message
No related tags found
No related merge requests found
Pipeline #1479 passed
......@@ -329,7 +329,7 @@ class GitLoader(BaseGitLoader):
" not found",
"unexpected http resp 401",
]:
if msg in e.args[0]:
if msg in str(e.args[0]):
raise NotFound(e)
# otherwise transmit the error
raise
......
......@@ -73,11 +73,12 @@ class CommonGitLoaderNotFound:
@pytest.mark.parametrize(
"failure_exception",
[
IOError,
ObjectFormatException,
OSError,
ValueError,
GitProtocolError,
IOError("failure"),
ObjectFormatException("failure"),
OSError("failure"),
ValueError("failure"),
GitProtocolError("failure"),
GitProtocolError(ConnectionResetError("Connection reset by peer")),
],
)
def test_load_visit_failure(self, failure_exception):
......@@ -88,7 +89,7 @@ class CommonGitLoaderNotFound:
"swh.loader.git.loader.GitLoader.fetch_pack_from_origin"
)
mock.side_effect = failure_exception("failure")
mock.side_effect = failure_exception
res = self.loader.load()
assert res == {"status": "failed"}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment