client = <FlaskClient <Flask 'swh.graphql.tests.conftest'>>
def test_query_cost_simple(client):
query_str = """
{
origins(first: 1000) {
nodes {
url
}
}
}
"""
> errors = utils.get_error_response(client, query_str)
.tox/py3/lib/python3.7/site-packages/swh/graphql/tests/functional/test_query_cost.py:34:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.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 {\n origins(first: 1000) {\n nodes {\n url\n }\n }\n }\n '
kwargs = {}
query = '\n {\n origins(first: 1000) {\n nodes {\n url\n }\n }\n }\n '
response = <WrapperTestResponse 163 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":[{"extensions":{"cost":{"maximumAvailable":100,"requestedQueryCost":1000}},"message":"The query exceeds ...tual cost is 1000"}]}\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":[{"extensions":{"cost":{"maximumAvailable":100,"requestedQueryCost":1000}},"message":"The query exceeds the maximum cost of 100. Actual cost is 1000"}]}
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 25 2022, 11:49 AM