summaryrefslogtreecommitdiff
path: root/tests/admin_scripts/tests.py
diff options
context:
space:
mode:
authorAd Timmering <awtimmering@gmail.com>2021-11-22 22:08:24 +0900
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2021-11-25 20:36:04 +0100
commit9a6e2df3a8f01ea761529bec48e5a8dc0ea9575b (patch)
tree627ae39fe9ba59f0ad6df6e82c59b2bc173fc870 /tests/admin_scripts/tests.py
parente361621dbc77b5d926ec4deff5e7c792a61db71e (diff)
Fixed #32397 -- Made startapp/startproject management commands set User-Agent.
This sets User-Agent to 'Django/<version>'.
Diffstat (limited to 'tests/admin_scripts/tests.py')
-rw-r--r--tests/admin_scripts/tests.py31
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/admin_scripts/tests.py b/tests/admin_scripts/tests.py
index 0f4bbc57d7..c8d81e1fc0 100644
--- a/tests/admin_scripts/tests.py
+++ b/tests/admin_scripts/tests.py
@@ -33,7 +33,11 @@ from django.test import (
LiveServerTestCase, SimpleTestCase, TestCase, override_settings,
)
from django.test.utils import captured_stderr, captured_stdout
+from django.urls import path
from django.utils.version import PY39
+from django.views.static import serve
+
+from . import urls
custom_templates_dir = os.path.join(os.path.dirname(__file__), 'custom_templates')
@@ -2127,6 +2131,33 @@ class StartProject(LiveServerTestCase, AdminScriptTestCase):
self.assertTrue(os.path.isdir(testproject_dir))
self.assertTrue(os.path.exists(os.path.join(testproject_dir, 'run.py')))
+ def test_custom_project_template_from_tarball_by_url_django_user_agent(self):
+ user_agent = None
+
+ def serve_template(request, *args, **kwargs):
+ nonlocal user_agent
+ user_agent = request.headers['User-Agent']
+ return serve(request, *args, **kwargs)
+
+ old_urlpatterns = urls.urlpatterns[:]
+ try:
+ urls.urlpatterns += [
+ path(
+ 'user_agent_check/<path:path>',
+ serve_template,
+ {'document_root': os.path.join(urls.here, 'custom_templates')},
+ ),
+ ]
+
+ template_url = f'{self.live_server_url}/user_agent_check/project_template.tgz'
+ args = ['startproject', '--template', template_url, 'urltestproject']
+ _, err = self.run_django_admin(args)
+
+ self.assertNoOutput(err)
+ self.assertIn('Django/%s' % get_version(), user_agent)
+ finally:
+ urls.urlpatterns = old_urlpatterns
+
def test_project_template_tarball_url(self):
"Startproject management command handles project template tar/zip balls from non-canonical urls"
template_url = '%s/custom_templates/project_template.tgz/' % self.live_server_url