From 53bc81dca3d785d0b399cacbf84cc660355895fc Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Mon, 20 Oct 2014 22:32:43 +0200 Subject: [1.7.x] Fixed #21740 -- Allowed test client data to be an empty string This fixes a regression introduced by 2a31d00933. Thanks tony-zhu for the report. Backport of f0bb3c98cc from master. --- tests/test_client_regress/tests.py | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'tests') diff --git a/tests/test_client_regress/tests.py b/tests/test_client_regress/tests.py index 604b07624f..c5d3f9b8a1 100644 --- a/tests/test_client_regress/tests.py +++ b/tests/test_client_regress/tests.py @@ -1186,6 +1186,16 @@ class RequestMethodStringDataTests(TestCase): self.assertEqual(response.status_code, 200) self.assertEqual(response.content, b'request method: PATCH') + def test_empty_string_data(self): + "Request a view with empty string data via request method GET/POST/HEAD" + # Regression test for #21740 + response = self.client.get('/body/', data='', content_type='application/json') + self.assertEqual(response.content, b'') + response = self.client.post('/body/', data='', content_type='application/json') + self.assertEqual(response.content, b'') + response = self.client.head('/body/', data='', content_type='application/json') + self.assertEqual(response.content, b'') + class QueryStringTests(TestCase): urls = 'test_client_regress.urls' -- cgit v1.3