Page MenuHomeSoftware Heritage

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

TEST RESULT

Run At
Oct 25 2022, 11:49 AM
Details
client = <FlaskClient <Flask 'swh.graphql.tests.conftest'>> def test_pagination(client): # requesting the max number of nodes available # endCursor must be None > data, _ = get_origin_nodes(client, first=len(get_origins())) .tox/py3/lib/python3.7/site-packages/swh/graphql/tests/functional/test_pagination.py:31: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ .tox/py3/lib/python3.7/site-packages/swh/graphql/tests/functional/test_pagination.py:25: in get_origin_nodes return utils.get_query_response(client, query_str, first=first, after=after) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ client = <FlaskClient <Flask 'swh.graphql.tests.conftest'>> query_str = '\n query getOrigins($first: Int!, $after: String) {\n origins(first: $first, after: $after) {\n nodes ... id\n }\n pageInfo {\n hasNextPage\n endCursor\n }\n }\n }\n ' kwargs = {'after': '', 'first': 2} query = '\n query getOrigins($first: Int!, $after: String) {\n origins(first: $first, after: $after) {\n nodes ... id\n }\n pageInfo {\n hasNextPage\n endCursor\n }\n }\n }\n ' response = <WrapperTestResponse 325 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 \\\'first\\\' of required type \\\'Int!\\\' was provided the variable \\\'$first\\...| 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 \'first\' of required type \'Int!\' was provided the variable \'$first\' which was n...String) {\ E 3 | origins(first: $first, after: $after) {\ 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