client = <FlaskClient <Flask 'swh.graphql.tests.conftest'>>
visit = OriginVisit(origin='https://somewhere.org/den/fox', date=datetime.datetime(2018, 11, 27, 17, 20, 39, tzinfo=datetime.timezone.utc), type='git', visit=2)
visit_status = OriginVisitStatus(origin='https://somewhere.org/den/fox', visit=2, date=datetime.datetime(2018, 11, 27, 17, 20, 59, tzinfo=datetime.timezone.utc), status='ongoing', snapshot=None, type='git', 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://somewhere.org/den/fox', '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
TEST RESULT
TEST RESULT
- Run At
- Oct 17 2022, 12:32 PM