summaryrefslogtreecommitdiff
path: root/tests/test_client/tests.py
diff options
context:
space:
mode:
authorBen Cail <bcail@crossway.org>2023-10-27 09:23:07 -0400
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2023-10-31 05:29:43 +0100
commit523fed1d2faafa6610f27dad9bbb7d7c4e122ea5 (patch)
tree775c155ee072fed7f2676511dba12876e179feef /tests/test_client/tests.py
parent9b18af4f6f12b9d25157e0b5afc3dca198f6dd06 (diff)
Fixed #32106 -- Preserved HTTP_HOST in test Client when following redirects.
Co-authored-by: David Sanders <shang.xiao.sanders@gmail.com>
Diffstat (limited to 'tests/test_client/tests.py')
-rw-r--r--tests/test_client/tests.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/test_client/tests.py b/tests/test_client/tests.py
index 402f282588..15f5cbe44e 100644
--- a/tests/test_client/tests.py
+++ b/tests/test_client/tests.py
@@ -856,6 +856,13 @@ class ClientTest(TestCase):
response, "https://www.djangoproject.com/", fetch_redirect_response=False
)
+ @override_settings(ALLOWED_HOSTS=["hostname1", "hostname2"])
+ def test_redirect_with_http_host(self):
+ response = self.client.get(
+ "/redirect_to_different_hostname/", follow=True, HTTP_HOST="hostname1"
+ )
+ self.assertEqual(response.content, b"hostname2")
+
def test_external_redirect_without_trailing_slash(self):
"""
Client._handle_redirects() with an empty path.