Page MenuHomeSoftware Heritage

Jenkins > .tox.py3.lib.python3.7.site-packages.swh.graphql.tests.functional.test_swhid_resolve::test_content_swhid_resolve[content5]
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('3af845c4ff54c1112f633e3d6ce36bf938b126f4'), sha1_git=hash_to_bytes('14aa17459417c63cda5e45...2e7ac8ce9d889cbce9188143e5f0283cc70a81982ae1e5b71faa635044d93b'), length=4, status='visible', data=b'foo5', ctime=None) @pytest.mark.parametrize("content", get_contents()) def test_content_swhid_resolve(client, content): query_str = """ query resolve($swhid: SWHID!) { resolveSwhid(swhid: $swhid) { nodes { targetType target { __typename ... on Content { swhid } } } } } """ > data, _ = utils.get_query_response(client, query_str, swhid=str(content.swhid())) .tox/py3/lib/python3.7/site-packages/swh/graphql/tests/functional/test_swhid_resolve.py:208: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ client = <FlaskClient <Flask 'swh.graphql.tests.conftest'>> query_str = '\n query resolve($swhid: SWHID!) {\n resolveSwhid(swhid: $swhid) {\n nodes {\n targetType\n ...pename\n ... on Content {\n swhid\n }\n }\n }\n }\n }\n ' kwargs = {'swhid': 'swh:1:cnt:14aa17459417c63cda5e4531e99401092d7d81f0'} query = '\n query resolve($swhid: SWHID!) {\n resolveSwhid(swhid: $swhid) {\n nodes {\n targetType\n ...pename\n ... on Content {\n swhid\n }\n }\n }\n }\n }\n ' response = <WrapperTestResponse 305 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 \\\'swhid\\\' of required type \\\'SWHID!\\\' was provided the variable \\\'$swhid...| nodes {"}]}\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 \'swhid\' of required type \'SWHID!\' was provided the variable \'$swhid\' which was...hid: SWHID!) {\ E 3 | resolveSwhid(swhid: $swhid) {\ E | ^\ E 4 | nodes {"}]} 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