mirror of
https://github.com/graphql-python/graphene-django.git
synced 2024-11-26 03:24:07 +03:00
Improved GraphQL batch view errors.
This commit is contained in:
parent
0ec8d2c828
commit
f217731066
|
@ -183,6 +183,15 @@ def test_batch_allows_post_with_json_encoding(client):
|
||||||
}]
|
}]
|
||||||
|
|
||||||
|
|
||||||
|
def test_batch_fails_if_is_empty(client):
|
||||||
|
response = client.post(batch_url_string(), j([]), 'application/json')
|
||||||
|
|
||||||
|
assert response.status_code == 200
|
||||||
|
assert response_json(response) == {
|
||||||
|
'errors': [{'message': 'Received an empty list in the batch request.'}]
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
def test_allows_sending_a_mutation_via_post(client):
|
def test_allows_sending_a_mutation_via_post(client):
|
||||||
response = client.post(url_string(), j(query='mutation TestMutation { writeTest { test } }'), 'application/json')
|
response = client.post(url_string(), j(query='mutation TestMutation { writeTest { test } }'), 'application/json')
|
||||||
|
|
||||||
|
|
|
@ -193,10 +193,19 @@ class GraphQLView(View):
|
||||||
try:
|
try:
|
||||||
request_json = json.loads(request.body.decode('utf-8'))
|
request_json = json.loads(request.body.decode('utf-8'))
|
||||||
if self.batch:
|
if self.batch:
|
||||||
assert isinstance(request_json, list)
|
assert isinstance(request_json, list), (
|
||||||
|
'Batch requests should receive a list, but received {}.'
|
||||||
|
).format(repr(request_json))
|
||||||
|
assert len(request_json) > 0, (
|
||||||
|
'Received an empty list in the batch request.'
|
||||||
|
)
|
||||||
else:
|
else:
|
||||||
assert isinstance(request_json, dict)
|
assert isinstance(request_json, dict), (
|
||||||
|
'The received data is not a valid JSON query.'
|
||||||
|
)
|
||||||
return request_json
|
return request_json
|
||||||
|
except AssertionError as e:
|
||||||
|
raise HttpError(HttpResponseBadRequest(str(e)))
|
||||||
except:
|
except:
|
||||||
raise HttpError(HttpResponseBadRequest('POST body sent invalid JSON.'))
|
raise HttpError(HttpResponseBadRequest('POST body sent invalid JSON.'))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user