mirror of
https://github.com/django/django.git
synced 2024-11-18 15:34:16 +00:00
4c30fa905d
This is preparation for landing the template-based widget rendering patch and goes a long way to making these tests more useful for future development. The old doctest heritage is strong here.
65 lines
2.1 KiB
Python
65 lines
2.1 KiB
Python
from django.forms import NullBooleanSelect
|
|
from django.test import override_settings
|
|
from django.utils import translation
|
|
|
|
from .base import WidgetTest
|
|
|
|
|
|
class NullBooleanSelectTest(WidgetTest):
|
|
widget = NullBooleanSelect()
|
|
|
|
def test_render_true(self):
|
|
self.check_html(self.widget, 'is_cool', True, html=(
|
|
"""<select name="is_cool">
|
|
<option value="1">Unknown</option>
|
|
<option value="2" selected="selected">Yes</option>
|
|
<option value="3">No</option>
|
|
</select>"""
|
|
))
|
|
|
|
def test_render_false(self):
|
|
self.check_html(self.widget, 'is_cool', False, html=(
|
|
"""<select name="is_cool">
|
|
<option value="1">Unknown</option>
|
|
<option value="2">Yes</option>
|
|
<option value="3" selected="selected">No</option>
|
|
</select>"""
|
|
))
|
|
|
|
def test_render_none(self):
|
|
self.check_html(self.widget, 'is_cool', None, html=(
|
|
"""<select name="is_cool">
|
|
<option value="1" selected="selected">Unknown</option>
|
|
<option value="2">Yes</option>
|
|
<option value="3">No</option>
|
|
</select>"""
|
|
))
|
|
|
|
def test_render_value(self):
|
|
self.check_html(self.widget, 'is_cool', '2', html=(
|
|
"""<select name="is_cool">
|
|
<option value="1">Unknown</option>
|
|
<option value="2" selected="selected">Yes</option>
|
|
<option value="3">No</option>
|
|
</select>"""
|
|
))
|
|
|
|
@override_settings(USE_L10N=True)
|
|
def test_l10n(self):
|
|
"""
|
|
Ensure that the NullBooleanSelect widget's options are lazily
|
|
localized (#17190).
|
|
"""
|
|
widget = NullBooleanSelect()
|
|
|
|
with translation.override('de-at'):
|
|
self.check_html(widget, 'id_bool', True, html=(
|
|
"""
|
|
<select name="id_bool">
|
|
<option value="1">Unbekannt</option>
|
|
<option value="2" selected="selected">Ja</option>
|
|
<option value="3">Nein</option>
|
|
</select>
|
|
"""
|
|
))
|