Page MenuHomeSoftware Heritage

Jenkins > .tox.py3.lib.python3.7.site-packages.swh.graphql.tests.functional.test_visit_status::test_get_visit_status[visit4-visit_status4]
Failed

TEST RESULT

Run At
Oct 25 2022, 11:49 AM
Details
client = <FlaskClient <Flask 'swh.graphql.tests.conftest'>> visit = OriginVisit(origin='https://overtherainbow.org/fox/den', date=datetime.datetime(2015, 11, 27, 17, 20, 39, tzinfo=datetime.timezone.utc), type='hg', visit=2) visit_status = OriginVisitStatus(origin='https://overtherainbow.org/fox/den', visit=2, date=datetime.datetime(2015, 11, 27, 17, 22, 1...e.utc), status='partial', snapshot=hash_to_bytes('0e7f84ede9a254f2cd55649ad5240783f557e65f'), type='hg', metadata=None) @pytest.mark.parametrize( "visit, visit_status", list(zip(get_visits(), get_visit_status())) ) def test_get_visit_status(client, visit, visit_status): query_str = """ query getVisit($origin: String!, $visitId: Int!) { visit(originUrl: $origin, visitId: $visitId) { statuses(first: 3) { nodes { status date type snapshot { swhid } } } } } """ data, _ = utils.get_query_response( > client, query_str, origin=visit.origin, visitId=visit.visit ) .tox/py3/lib/python3.7/site-packages/swh/graphql/tests/functional/test_visit_status.py:33: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ client = <FlaskClient <Flask 'swh.graphql.tests.conftest'>> query_str = '\n query getVisit($origin: String!, $visitId: Int!) {\n visit(originUrl: $origin, visitId: $visitId) {\n ... type\n snapshot {\n swhid\n }\n }\n }\n }\n }\n ' kwargs = {'origin': 'https://overtherainbow.org/fox/den', 'visitId': 2} query = '\n query getVisit($origin: String!, $visitId: Int!) {\n visit(originUrl: $origin, visitId: $visitId) {\n ... type\n snapshot {\n swhid\n }\n }\n }\n }\n }\n ' response = <WrapperTestResponse 357 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 \\\'originUrl\\\' of required type \\\'String!\\\' was provided the variable \\\'$...tuses(first: 3) {"}]}\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 \'originUrl\' of required type \'String!\' was provided the variable \'$origin\' whi...visit(originUrl: $origin, visitId: $visitId) {\ E | ^\ E 4 | statuses(first: 3) {"}]} 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