mirror of
https://github.com/django/django.git
synced 2025-12-04 00:55:36 +00:00
Fixed #9199 -- We were erroneously only prepending "www" to the domain if we
also needed to append a slash (when PREPEND_WWW=True). Based on a patch and tests from gonz. Thanks. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9184 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
a928c563e9
commit
30b568226f
2 changed files with 63 additions and 23 deletions
|
|
@ -89,3 +89,31 @@ class CommonMiddlewareTest(TestCase):
|
|||
self.assertEquals(
|
||||
r['Location'],
|
||||
'http://testserver/middleware/needsquoting%23/')
|
||||
|
||||
def test_prepend_www(self):
|
||||
settings.PREPEND_WWW = True
|
||||
settings.APPEND_SLASH = False
|
||||
request = self._get_request('path/')
|
||||
r = CommonMiddleware().process_request(request)
|
||||
self.assertEquals(r.status_code, 301)
|
||||
self.assertEquals(
|
||||
r['Location'],
|
||||
'http://www.testserver/middleware/path/')
|
||||
|
||||
def test_prepend_www_append_slash_have_slash(self):
|
||||
settings.PREPEND_WWW = True
|
||||
settings.APPEND_SLASH = True
|
||||
request = self._get_request('slash/')
|
||||
r = CommonMiddleware().process_request(request)
|
||||
self.assertEquals(r.status_code, 301)
|
||||
self.assertEquals(r['Location'],
|
||||
'http://www.testserver/middleware/slash/')
|
||||
|
||||
def test_prepend_www_append_slash_slashless(self):
|
||||
settings.PREPEND_WWW = True
|
||||
settings.APPEND_SLASH = True
|
||||
request = self._get_request('slash')
|
||||
r = CommonMiddleware().process_request(request)
|
||||
self.assertEquals(r.status_code, 301)
|
||||
self.assertEquals(r['Location'],
|
||||
'http://www.testserver/middleware/slash/')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue