client = <FlaskClient <Flask 'swh.graphql.tests.conftest'>>
def test_get_content_with_invalid_hashes(client):
content = get_contents()[0]
query_str = """
query getContent($checksums: [ContentHash]!) {
contentByHash(checksums: $checksums) {
swhid
}
}
"""
errors = utils.get_error_response(
client,
query_str,
checksums=[
"invalid", # Only one hash is invalid
f"sha1:{content.sha1.hex()}",
f"sha1_git:{content.sha1_git.hex()}",
> f"sha256:{content.sha256.hex()}",
],
)
.tox/py3/lib/python3.7/site-packages/swh/graphql/tests/functional/test_content.py:117:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox/py3/lib/python3.7/site-packages/swh/graphql/tests/functional/utils.py:29: in get_error_response
data, errors = get_query_response(client, query_str, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
client = <FlaskClient <Flask 'swh.graphql.tests.conftest'>>
query_str = '\n query getContent($checksums: [ContentHash]!) {\n contentByHash(checksums: $checksums) {\n swhid\n }\n }\n '
kwargs = {'checksums': ['invalid', 'sha1:4fb76b6b9fd94175a35581ff7ae5e44d6cb8aabb', 'sha1_git:86bc6b377e9d25f9d26777a4a28d08e63e7c5779', 'sha256:42bfe54175d35ee13c15abe2a9da64c7c2fd01a8dc0afd42ec9f06c4f640f53e']}
query = '\n query getContent($checksums: [ContentHash]!) {\n contentByHash(checksums: $checksums) {\n swhid\n }\n }\n '
response = <WrapperTestResponse 348 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 \\\'checksums\\\' of required type \\\'[ContentHash]!\\\' was provided the variabl...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 \'checksums\' of required type \'[ContentHash]!\' was provided the variable \'$check... {\
E 3 | contentByHash(checksums: $checksums) {\
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