Page MenuHomeSoftware Heritage

Jenkins > .tox.py3.lib.python3.7.site-packages.swh.graphql.tests.functional.test_content::test_get_content_with_swhid[content7]
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('2e53609cdac08d06e1f05299976d8864be21fceb'), sha1_git=hash_to_bytes('e45ade5585db618f9c070e...07b3ec1900e60fa7431b48baabb49e61d4bc09f383a15d085edd86f8673327'), length=4, status='visible', data=b'foo7', ctime=None) @pytest.mark.parametrize("content", get_contents()) def test_get_content_with_swhid(client, content): query_str = """ query getContent($swhid: SWHID!) { content(swhid: $swhid) { swhid id checksum { blake2s256 sha1 sha1_git sha256 } length status data { url } fileType { encoding } language { lang } license { licenses } } } """ > data, _ = utils.get_query_response(client, query_str, swhid=str(content.swhid())) .tox/py3/lib/python3.7/site-packages/swh/graphql/tests/functional/test_content.py:42: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ client = <FlaskClient <Flask 'swh.graphql.tests.conftest'>> query_str = '\n query getContent($swhid: SWHID!) {\n content(swhid: $swhid) {\n swhid\n id\n checksum...n language {\n lang\n }\n license {\n licenses\n }\n }\n }\n ' kwargs = {'swhid': 'swh:1:cnt:e45ade5585db618f9c070e53740557e1e04e0583'} query = '\n query getContent($swhid: SWHID!) {\n content(swhid: $swhid) {\n swhid\n id\n checksum...n language {\n lang\n }\n license {\n licenses\n }\n }\n }\n ' response = <WrapperTestResponse 296 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...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 \'swhid\' of required type \'SWHID!\' was provided the variable \'$swhid\' which was...tContent($swhid: SWHID!) {\ E 3 | content(swhid: $swhid) {\ 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