client = <FlaskClient <Flask 'swh.graphql.tests.conftest'>>
storage = <swh.storage.in_memory.InMemoryStorage object at 0x7f5693e61d68>
origin = Origin(url='https://somewhere.org/den/fox', id=b'\xc7\x00\xbc\x13\xd5plN$\xe7\xb0U6\xda\xce\x0c\xd8\xe1v\x19')
@pytest.mark.parametrize("origin", get_origins())
def test_get(client, storage, origin):
query_str = """
query getOrigin($url: String!) {
origin(url: $url) {
url
id
visits(first: 10) {
nodes {
id
}
}
latestVisit {
visitId
}
snapshots(first: 2) {
nodes {
id
}
}
}
}
"""
> response, _ = utils.get_query_response(client, query_str, url=origin.url)
.tox/py3/lib/python3.7/site-packages/swh/graphql/tests/functional/test_origin_node.py:47:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
client = <FlaskClient <Flask 'swh.graphql.tests.conftest'>>
query_str = '\n query getOrigin($url: String!) {\n origin(url: $url) {\n url\n id\n visits(first: 10)... }\n snapshots(first: 2) {\n nodes {\n id\n }\n }\n }\n }\n '
kwargs = {'url': 'https://somewhere.org/den/fox'}
query = '\n query getOrigin($url: String!) {\n origin(url: $url) {\n url\n id\n visits(first: 10)... }\n snapshots(first: 2) {\n nodes {\n id\n }\n }\n }\n }\n '
response = <WrapperTestResponse 281 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 \\\'url\\\' of required type \\\'String!\\\' was provided the variable \\\'$url\\\...n~4 | url"}]}\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 \'url\' of required type \'String!\' was provided the variable \'$url\' which was no... query getOrigin($url: String!) {\
E 3 | origin(url: $url) {\
E | ^\
E 4 | url"}]}
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