summaryrefslogtreecommitdiff
path: root/tests/template_tests/syntax_tests/test_static.py
diff options
context:
space:
mode:
authorPreston Timmons <prestontimmons@gmail.com>2014-11-11 19:32:44 -0600
committerTim Graham <timograham@gmail.com>2014-12-02 19:18:35 -0500
commitb872134bfc14f6322bd1e4b0a08bf5bfd2c43a52 (patch)
treef82fc6be418adeb1e7ff36728f82008770066999 /tests/template_tests/syntax_tests/test_static.py
parent4a4ad27712b44cebada1bdaebd082cf82df74610 (diff)
Fixed #23768 -- Rewrote template tests as unit tests.
Diffstat (limited to 'tests/template_tests/syntax_tests/test_static.py')
-rw-r--r--tests/template_tests/syntax_tests/test_static.py51
1 files changed, 51 insertions, 0 deletions
diff --git a/tests/template_tests/syntax_tests/test_static.py b/tests/template_tests/syntax_tests/test_static.py
new file mode 100644
index 0000000000..8b39a1465f
--- /dev/null
+++ b/tests/template_tests/syntax_tests/test_static.py
@@ -0,0 +1,51 @@
+from django.conf import settings
+from django.test import override_settings, TestCase
+from django.utils.six.moves.urllib.parse import urljoin
+
+from .utils import render, setup
+
+
+@override_settings(MEDIA_URL="/media/", STATIC_URL="/static/")
+class StaticTagTests(TestCase):
+
+ @setup({'static-prefixtag01': '{% load static %}{% get_static_prefix %}'})
+ def test_static_prefixtag01(self):
+ output = render('static-prefixtag01')
+ self.assertEqual(output, settings.STATIC_URL)
+
+ @setup({'static-prefixtag02': '{% load static %}'
+ '{% get_static_prefix as static_prefix %}{{ static_prefix }}'})
+ def test_static_prefixtag02(self):
+ output = render('static-prefixtag02')
+ self.assertEqual(output, settings.STATIC_URL)
+
+ @setup({'static-prefixtag03': '{% load static %}{% get_media_prefix %}'})
+ def test_static_prefixtag03(self):
+ output = render('static-prefixtag03')
+ self.assertEqual(output, settings.MEDIA_URL)
+
+ @setup({'static-prefixtag04': '{% load static %}'
+ '{% get_media_prefix as media_prefix %}{{ media_prefix }}'})
+ def test_static_prefixtag04(self):
+ output = render('static-prefixtag04')
+ self.assertEqual(output, settings.MEDIA_URL)
+
+ @setup({'static-statictag01': '{% load static %}{% static "admin/base.css" %}'})
+ def test_static_statictag01(self):
+ output = render('static-statictag01')
+ self.assertEqual(output, urljoin(settings.STATIC_URL, 'admin/base.css'))
+
+ @setup({'static-statictag02': '{% load static %}{% static base_css %}'})
+ def test_static_statictag02(self):
+ output = render('static-statictag02', {'base_css': 'admin/base.css'})
+ self.assertEqual(output, urljoin(settings.STATIC_URL, 'admin/base.css'))
+
+ @setup({'static-statictag03': '{% load static %}{% static "admin/base.css" as foo %}{{ foo }}'})
+ def test_static_statictag03(self):
+ output = render('static-statictag03')
+ self.assertEqual(output, urljoin(settings.STATIC_URL, 'admin/base.css'))
+
+ @setup({'static-statictag04': '{% load static %}{% static base_css as foo %}{{ foo }}'})
+ def test_static_statictag04(self):
+ output = render('static-statictag04', {'base_css': 'admin/base.css'})
+ self.assertEqual(output, urljoin(settings.STATIC_URL, 'admin/base.css'))