Page MenuHomeSoftware Heritage

Jenkins > .tox.py3.lib.python3.7.site-packages.swh.graphql.tests.functional.test_release_node::test_get_release_target_unknown
Failed

TEST RESULT

Run At
Oct 25 2022, 11:49 AM
Details
client = <FlaskClient <Flask 'swh.graphql.tests.conftest'>> def test_get_release_target_unknown(client): # Clinet can request all the possible options if the target type # is unknown. The data under the right type will be returned # The target is of type Revision in this case # ie: both swhid and message will be available in the response swhid = get_releases_with_target()[0].swhid() query_str = """ query getRelease($swhid: SWHID!) { release(swhid: $swhid) { targetType target { ...on Revision { swhid message { text } } ...on Release { swhid } ...on Directory { swhid } ...on Content { swhid } } } } """ > data, _ = utils.get_query_response(client, query_str, swhid=str(swhid)) .tox/py3/lib/python3.7/site-packages/swh/graphql/tests/functional/test_release_node.py:158: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ client = <FlaskClient <Flask 'swh.graphql.tests.conftest'>> query_str = '\n query getRelease($swhid: SWHID!) {\n release(swhid: $swhid) {\n targetType\n target {\n ... swhid\n }\n ...on Content {\n swhid\n }\n }\n }\n }\n ' kwargs = {'swhid': 'swh:1:rel:a8e3412a33b854178f25bf6c57d6c3302040dd7c'} query = '\n query getRelease($swhid: SWHID!) {\n release(swhid: $swhid) {\n targetType\n target {\n ... swhid\n }\n ...on Content {\n swhid\n }\n }\n }\n }\n ' response = <WrapperTestResponse 301 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... targetType"}]}\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...ase($swhid: SWHID!) {\ E 3 | release(swhid: $swhid) {\ E | ^\ E 4 | targetType"}]} 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