Skip to content

Better batch view error reporting #117

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 21, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 19 additions & 1 deletion graphene_django/tests/test_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(), '[]', 'application/json')

assert response.status_code == 400
assert response_json(response) == {
'errors': [{'message': 'Received an empty list in the batch request.'}]
}


def test_allows_sending_a_mutation_via_post(client):
response = client.post(url_string(), j(query='mutation TestMutation { writeTest { test } }'), 'application/json')

Expand Down Expand Up @@ -432,9 +441,18 @@ def test_handles_errors_caused_by_a_lack_of_query(client):
}


def test_handles_invalid_json_bodies(client):
def test_handles_not_expected_json_bodies(client):
response = client.post(url_string(), '[]', 'application/json')

assert response.status_code == 400
assert response_json(response) == {
'errors': [{'message': 'The received data is not a valid JSON query.'}]
}


def test_handles_invalid_json_bodies(client):
response = client.post(url_string(), '[oh}', 'application/json')

assert response.status_code == 400
assert response_json(response) == {
'errors': [{'message': 'POST body sent invalid JSON.'}]
Expand Down
13 changes: 11 additions & 2 deletions graphene_django/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,10 +193,19 @@ def parse_body(self, request):
try:
request_json = json.loads(request.body.decode('utf-8'))
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:
assert isinstance(request_json, dict)
assert isinstance(request_json, dict), (
'The received data is not a valid JSON query.'
)
return request_json
except AssertionError as e:
raise HttpError(HttpResponseBadRequest(str(e)))
except:
raise HttpError(HttpResponseBadRequest('POST body sent invalid JSON.'))

Expand Down