Page MenuHomeSoftware Heritage

Jenkins > .tox.py3.lib.python3.7.site-packages.swh.web.tests.api.views.test_identifiers::Tests / Python tests / test_api_known_swhid_same_hash
Failed

TEST RESULT

Run At
May 7 2022, 7:43 PM
Details
api_client = <rest_framework.test.APIClient object at 0x7f86911e4fd0> content = {'blake2s256': '20eb4518a27c398e33454ecb12587fc011ece0e56cd7073f82ef110e32cf80c7', 'data': '/*\r\n** SGI FREE SOFTWARE...r\n\t\tv->t = Interpolate( z1, o2->t, z2, d2->t );\r\n\t}\r\n}\r\n', 'encoding': 'us-ascii', 'hljs_language': 'c', ...} def test_api_known_swhid_same_hash(api_client, content): content_ = gen_swhid(ObjectType.CONTENT, content["sha1_git"]) # Reuse hash to make invalid directory SHWID directory_ = gen_swhid(ObjectType.DIRECTORY, content["sha1_git"]) input_swhids = [ content_, directory_, ] url = reverse("api-1-known") > resp = check_api_post_responses(api_client, url, data=input_swhids, status_code=200) .tox/py3/lib/python3.7/site-packages/swh/web/tests/api/views/test_identifiers.py:155: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ .tox/py3/lib/python3.7/site-packages/swh/web/tests/utils.py:186: in check_api_post_responses api_client, url, status_code, content_type="application/json", data=data .tox/py3/lib/python3.7/site-packages/swh/web/tests/utils.py:163: in check_api_post_response content_type=content_type, _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ response = <Response status_code=500, "application/json">, status_code = 200 content_type = 'application/json' def _assert_http_response( response: HttpResponse, status_code: int, content_type: str ) -> HttpResponse: if isinstance(response, Response): drf_response = cast(Response, response) error_context = ( drf_response.data.pop("traceback") if isinstance(drf_response.data, dict) and "traceback" in drf_response.data else drf_response.data ) elif isinstance(response, StreamingHttpResponse): error_context = getattr(response, "traceback", response.streaming_content) else: error_context = getattr(response, "traceback", response.content) > assert response.status_code == status_code, error_context E AssertionError: Traceback (most recent call last): E File "/var/lib/jenkins/workspace/DWAPPS/tests-on-diff@2/.tox/py3/lib/python3.7/site-packages/rest_framework/views.py", line 506, in dispatch E response = handler(request, *args, **kwargs) E File "/var/lib/jenkins/workspace/DWAPPS/tests-on-diff@2/.tox/py3/lib/python3.7/site-packages/rest_framework/decorators.py", line 50, in handler E return func(*args, **kwargs) E File "/var/lib/jenkins/workspace/DWAPPS/tests-on-diff@2/.tox/py3/lib/python3.7/site-packages/swh/web/api/apiurls.py", line 96, in api_view_f E response = f(request, **kwargs) E File "/var/lib/jenkins/workspace/DWAPPS/tests-on-diff@2/.tox/py3/lib/python3.7/site-packages/swh/web/api/apidoc.py", line 380, in documented_view E raise exc E File "/var/lib/jenkins/workspace/DWAPPS/tests-on-diff@2/.tox/py3/lib/python3.7/site-packages/swh/web/api/apidoc.py", line 377, in documented_view E return {"data": f(request, **kwargs), "doc_data": doc_data} E File "/var/lib/jenkins/workspace/DWAPPS/tests-on-diff@2/.tox/py3/lib/python3.7/site-packages/swh/web/api/views/identifiers.py", line 116, in api_swhid_known E for hash in missing_hashes.iter(): E AttributeError: 'set' object has no attribute 'iter' E E assert 500 == 200 E + where 500 = <Response status_code=500, "application/json">.status_code .tox/py3/lib/python3.7/site-packages/swh/web/tests/utils.py:34: AssertionError