client = <FlaskClient <Flask 'swh.graphql.tests.conftest'>>
revision = Revision(message=b'hello again', author=Person(fullname=b'bar', name=b'bar', email=b''), committer=Person(fullname=b'b...(), id=hash_to_bytes('c7f96242d73c267adc77c2908e64e0c1cb6a4431'), extra_headers=((b'foo', b'bar'),), raw_manifest=None)
@pytest.mark.parametrize("revision", get_revisions())
def test_get_revision(client, revision):
query_str = """
query getRevision($swhid: SWHID!) {
revision(swhid: $swhid) {
swhid
message {
text
}
author {
fullname {
text
}
name {
text
}
email {
text
}
}
committer {
fullname {
text
}
name {
text
}
email {
text
}
}
date
type
directory {
swhid
}
}
}
"""
> data, _ = utils.get_query_response(client, query_str, swhid=str(revision.swhid()))
.tox/py3/lib/python3.7/site-packages/swh/graphql/tests/functional/test_revision.py:53:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
client = <FlaskClient <Flask 'swh.graphql.tests.conftest'>>
query_str = '\n query getRevision($swhid: SWHID!) {\n revision(swhid: $swhid) {\n swhid\n message {\n ... }\n }\n date\n type\n directory {\n swhid\n }\n }\n }\n '
kwargs = {'swhid': 'swh:1:rev:c7f96242d73c267adc77c2908e64e0c1cb6a4431'}
query = '\n query getRevision($swhid: SWHID!) {\n revision(swhid: $swhid) {\n swhid\n message {\n ... }\n }\n date\n type\n directory {\n swhid\n }\n }\n }\n '
response = <WrapperTestResponse 299 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...vision($swhid: SWHID!) {\
E 3 | revision(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
TEST RESULT
TEST RESULT
- Run At
- Oct 17 2022, 12:32 PM