Page MenuHomeSoftware Heritage

Jenkins > .tox.py3.lib.python3.7.site-packages.swh.graphql.tests.functional.test_content::test_get_content_with_hash[content10]
Failed

TEST RESULT

Run At
Oct 25 2022, 11:49 AM
Details
client = <FlaskClient <Flask 'swh.graphql.tests.conftest'>> content = Content(sha1=hash_to_bytes('48a6cbcf1f24b2efdda4c8bf7d25491be67da6f6'), sha1_git=hash_to_bytes('0b5752ad208d0621b7fa39...748edcdb962a9cb6151985fb3d8c9fb948281b52332f75ad0257'), length=14, status='hidden', data=b'forbidden foo0', ctime=None) @pytest.mark.parametrize("content", get_contents()) def test_get_content_with_hash(client, content): query_str = """ query getContent($checksums: [ContentHash]!) { contentByHash(checksums: $checksums) { swhid } } """ data, _ = utils.get_query_response( client, query_str, checksums=[ f"blake2s256:{content.blake2s256.hex()}", f"sha1:{content.sha1.hex()}", f"sha1_git:{content.sha1_git.hex()}", > f"sha256:{content.sha256.hex()}", ], ) .tox/py3/lib/python3.7/site-packages/swh/graphql/tests/functional/test_content.py:81: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ client = <FlaskClient <Flask 'swh.graphql.tests.conftest'>> query_str = '\n query getContent($checksums: [ContentHash]!) {\n contentByHash(checksums: $checksums) {\n swhid\n }\n }\n ' kwargs = {'checksums': ['blake2s256:ee26f8dcb896748edcdb962a9cb6151985fb3d8c9fb948281b52332f75ad0257', 'sha1:48a6cbcf1f24b2efdd...:0b5752ad208d0621b7fa390755b15ba0112afac1', 'sha256:9c63be0d94f34f64d11e2ed26dafb1017c8ce7355be2a1428fa3f5ddf76c3f4d']} query = '\n query getContent($checksums: [ContentHash]!) {\n contentByHash(checksums: $checksums) {\n swhid\n }\n }\n ' response = <WrapperTestResponse 348 bytes [400 BAD REQUEST]>, @py_assert1 = 400 @py_assert4 = 200, @py_assert3 = False @py_format6 = '400\n{400 = <WrapperTestResponse streamed [400 BAD REQUEST]>.status_code\n} == 200' @py_format8 = 'b\'{"errors":[{"message":"Argument \\\'checksums\\\' of required type \\\'[ContentHash]!\\\' was provided the variabl...4 | swhid"}]}\n~\'\n>assert 400\n{400 = <WrapperTestResponse streamed [400 BAD REQUEST]>.status_code\n} == 200' def get_query_response(client, query_str: str, **kwargs) -> Tuple[Dict, Dict]: query = gql(query_str) response = client.post("/", json={"query": query, "variables": kwargs}) > assert response.status_code == 200, response.data E AssertionError: b'{"errors":[{"message":"Argument \'checksums\' of required type \'[ContentHash]!\' was provided the variable \'$check... {\ E 3 | contentByHash(checksums: $checksums) {\ E | ^\ E 4 | swhid"}]} E ' E assert 400 == 200 E + where 400 = <WrapperTestResponse streamed [400 BAD REQUEST]>.status_code .tox/py3/lib/python3.7/site-packages/swh/graphql/tests/functional/utils.py:15: AssertionError