Skip to content

Commit

Permalink
Added tests for conditional_content_removal.
Browse files Browse the repository at this point in the history
Refs #7581. Thanks mrmachine.
  • Loading branch information
aaugustin committed Oct 21, 2012
1 parent b4066d7 commit 5e629a0
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 0 deletions.
Empty file.
Empty file.
45 changes: 45 additions & 0 deletions tests/regressiontests/http_utils/tests.py
@@ -0,0 +1,45 @@
from __future__ import unicode_literals

from django.http import HttpRequest, HttpResponse, StreamingHttpResponse
from django.http.utils import conditional_content_removal
from django.test import TestCase


class HttpUtilTests(TestCase):

def test_conditional_content_removal(self):
"""
Tests that content is removed from regular and streaming responses with
a status_code of 100-199, 204, 304 or a method of "HEAD".
"""
req = HttpRequest()

# Do nothing for 200 responses.
res = HttpResponse('abc')
conditional_content_removal(req, res)
self.assertEqual(res.content, b'abc')

res = StreamingHttpResponse(['abc'])
conditional_content_removal(req, res)
self.assertEqual(b''.join(res), b'abc')

# Strip content for some status codes.
for status_code in (100, 150, 199, 204, 304):
res = HttpResponse('abc', status=status_code)
conditional_content_removal(req, res)
self.assertEqual(res.content, b'')

res = StreamingHttpResponse(['abc'], status=status_code)
conditional_content_removal(req, res)
self.assertEqual(b''.join(res), b'')

# Strip content for HEAD requests.
req.method = 'HEAD'

res = HttpResponse('abc')
conditional_content_removal(req, res)
self.assertEqual(res.content, b'')

res = StreamingHttpResponse(['abc'])
conditional_content_removal(req, res)
self.assertEqual(b''.join(res), b'')

0 comments on commit 5e629a0

Please sign in to comment.