summaryrefslogtreecommitdiff
path: root/tests/admin_widgets
diff options
context:
space:
mode:
authorCarles Pina <carles@pina.cat>2020-05-04 17:41:38 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2020-06-01 12:25:25 +0200
commite46c2326c8cfc038e015f55fd050ab5d7eb91b62 (patch)
tree717bae6135483bfeb4061fc90932f8ad52519f43 /tests/admin_widgets
parent578b3046e3b4adc43655bb5dd955054b7bf19f89 (diff)
downloaddjango-e46c2326c8cfc038e015f55fd050ab5d7eb91b62.tar.gz
Fixed #31536 -- Fixed rendering of disabled AdminFileWidget and ClearableFileInput.
Diffstat (limited to 'tests/admin_widgets')
-rw-r--r--tests/admin_widgets/tests.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/admin_widgets/tests.py b/tests/admin_widgets/tests.py
index 7241ea9554..b60d01e43f 100644
--- a/tests/admin_widgets/tests.py
+++ b/tests/admin_widgets/tests.py
@@ -487,6 +487,20 @@ class AdminFileWidgetTests(TestDataMixin, TestCase):
},
)
+ def test_render_disabled(self):
+ widget = widgets.AdminFileWidget(attrs={'disabled': True})
+ self.assertHTMLEqual(
+ widget.render('test', self.album.cover_art),
+ '<p class="file-upload">Currently: <a href="%(STORAGE_URL)salbums/'
+ r'hybrid_theory.jpg">albums\hybrid_theory.jpg</a> '
+ '<span class="clearable-file-input">'
+ '<input type="checkbox" name="test-clear" id="test-clear_id" disabled>'
+ '<label for="test-clear_id">Clear</label></span><br>'
+ 'Change: <input type="file" name="test" disabled></p>' % {
+ 'STORAGE_URL': default_storage.url(''),
+ },
+ )
+
def test_readonly_fields(self):
"""
File widgets should render as a link when they're marked "read only."