2017-01-07 19:11:46 +08:00
|
|
|
from urllib.parse import urljoin
|
|
|
|
|
2022-09-11 23:33:47 +08:00
|
|
|
from django.conf import STATICFILES_STORAGE_ALIAS
|
2015-11-07 19:24:38 +08:00
|
|
|
from django.contrib.staticfiles import storage
|
|
|
|
from django.forms import Media
|
2018-01-22 05:38:52 +08:00
|
|
|
from django.templatetags.static import static
|
2015-11-07 19:24:38 +08:00
|
|
|
from django.test import SimpleTestCase, override_settings
|
|
|
|
|
|
|
|
|
|
|
|
class StaticTestStorage(storage.StaticFilesStorage):
|
|
|
|
def url(self, name):
|
|
|
|
return urljoin("https://example.com/assets/", name)
|
|
|
|
|
|
|
|
|
|
|
|
@override_settings(
|
2017-12-29 04:07:29 +08:00
|
|
|
INSTALLED_APPS=("django.contrib.staticfiles",),
|
2022-09-11 23:33:47 +08:00
|
|
|
STORAGES={
|
|
|
|
STATICFILES_STORAGE_ALIAS: {
|
|
|
|
"BACKEND": "staticfiles_tests.test_forms.StaticTestStorage",
|
|
|
|
"OPTIONS": {"location": "http://media.example.com/static/"},
|
|
|
|
}
|
|
|
|
},
|
2015-11-07 19:24:38 +08:00
|
|
|
)
|
|
|
|
class StaticFilesFormsMediaTestCase(SimpleTestCase):
|
|
|
|
def test_absolute_url(self):
|
|
|
|
m = Media(
|
|
|
|
css={"all": ("path/to/css1", "/path/to/css2")},
|
2016-01-15 01:16:42 +08:00
|
|
|
js=(
|
|
|
|
"/path/to/js1",
|
|
|
|
"http://media.other.com/path/to/js2",
|
|
|
|
"https://secure.other.com/path/to/js3",
|
|
|
|
static("relative/path/to/js4"),
|
|
|
|
),
|
2015-11-07 19:24:38 +08:00
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
str(m),
|
2022-01-21 22:46:37 +08:00
|
|
|
'<link href="https://example.com/assets/path/to/css1" media="all" '
|
|
|
|
'rel="stylesheet">\n'
|
|
|
|
'<link href="/path/to/css2" media="all" rel="stylesheet">\n'
|
2019-12-11 16:49:54 +08:00
|
|
|
'<script src="/path/to/js1"></script>\n'
|
|
|
|
'<script src="http://media.other.com/path/to/js2"></script>\n'
|
|
|
|
'<script src="https://secure.other.com/path/to/js3"></script>\n'
|
|
|
|
'<script src="https://example.com/assets/relative/path/to/js4"></script>',
|
2015-11-07 19:24:38 +08:00
|
|
|
)
|