2017-04-22 00:14:40 +08:00
|
|
|
import datetime
|
|
|
|
|
2016-10-29 01:21:45 +08:00
|
|
|
from django import forms
|
2015-08-31 10:13:42 +08:00
|
|
|
from django.forms import CheckboxSelectMultiple
|
2017-04-22 00:14:40 +08:00
|
|
|
from django.test import override_settings
|
2015-08-31 10:13:42 +08:00
|
|
|
|
|
|
|
from .base import WidgetTest
|
|
|
|
|
|
|
|
|
|
|
|
class CheckboxSelectMultipleTest(WidgetTest):
|
2016-04-29 06:48:52 +08:00
|
|
|
widget = CheckboxSelectMultiple
|
2015-08-31 10:13:42 +08:00
|
|
|
|
|
|
|
def test_render_value(self):
|
2016-04-29 06:48:52 +08:00
|
|
|
self.check_html(self.widget(choices=self.beatles), 'beatles', ['J'], html=(
|
2015-08-31 10:13:42 +08:00
|
|
|
"""<ul>
|
2016-07-22 13:05:17 +08:00
|
|
|
<li><label><input checked type="checkbox" name="beatles" value="J" /> John</label></li>
|
2015-08-31 10:13:42 +08:00
|
|
|
<li><label><input type="checkbox" name="beatles" value="P" /> Paul</label></li>
|
|
|
|
<li><label><input type="checkbox" name="beatles" value="G" /> George</label></li>
|
|
|
|
<li><label><input type="checkbox" name="beatles" value="R" /> Ringo</label></li>
|
|
|
|
</ul>"""
|
|
|
|
))
|
|
|
|
|
|
|
|
def test_render_value_multiple(self):
|
2016-04-29 06:48:52 +08:00
|
|
|
self.check_html(self.widget(choices=self.beatles), 'beatles', ['J', 'P'], html=(
|
2015-08-31 10:13:42 +08:00
|
|
|
"""<ul>
|
2016-07-22 13:05:17 +08:00
|
|
|
<li><label><input checked type="checkbox" name="beatles" value="J" /> John</label></li>
|
|
|
|
<li><label><input checked type="checkbox" name="beatles" value="P" /> Paul</label></li>
|
2015-08-31 10:13:42 +08:00
|
|
|
<li><label><input type="checkbox" name="beatles" value="G" /> George</label></li>
|
|
|
|
<li><label><input type="checkbox" name="beatles" value="R" /> Ringo</label></li>
|
|
|
|
</ul>"""
|
|
|
|
))
|
|
|
|
|
|
|
|
def test_render_none(self):
|
|
|
|
"""
|
|
|
|
If the value is None, none of the options are selected.
|
|
|
|
"""
|
2016-04-29 06:48:52 +08:00
|
|
|
self.check_html(self.widget(choices=self.beatles), 'beatles', None, html=(
|
2015-08-31 10:13:42 +08:00
|
|
|
"""<ul>
|
|
|
|
<li><label><input type="checkbox" name="beatles" value="J" /> John</label></li>
|
|
|
|
<li><label><input type="checkbox" name="beatles" value="P" /> Paul</label></li>
|
|
|
|
<li><label><input type="checkbox" name="beatles" value="G" /> George</label></li>
|
|
|
|
<li><label><input type="checkbox" name="beatles" value="R" /> Ringo</label></li>
|
|
|
|
</ul>"""
|
|
|
|
))
|
|
|
|
|
|
|
|
def test_nested_choices(self):
|
|
|
|
nested_choices = (
|
|
|
|
('unknown', 'Unknown'),
|
|
|
|
('Audio', (('vinyl', 'Vinyl'), ('cd', 'CD'))),
|
|
|
|
('Video', (('vhs', 'VHS'), ('dvd', 'DVD'))),
|
|
|
|
)
|
|
|
|
html = """
|
|
|
|
<ul id="media">
|
|
|
|
<li>
|
|
|
|
<label for="media_0"><input id="media_0" name="nestchoice" type="checkbox" value="unknown" /> Unknown</label>
|
|
|
|
</li>
|
|
|
|
<li>Audio<ul id="media_1">
|
|
|
|
<li>
|
|
|
|
<label for="media_1_0">
|
2016-07-22 13:05:17 +08:00
|
|
|
<input checked id="media_1_0" name="nestchoice" type="checkbox" value="vinyl" /> Vinyl
|
2015-08-31 10:13:42 +08:00
|
|
|
</label>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<label for="media_1_1"><input id="media_1_1" name="nestchoice" type="checkbox" value="cd" /> CD</label>
|
|
|
|
</li>
|
|
|
|
</ul></li>
|
|
|
|
<li>Video<ul id="media_2">
|
|
|
|
<li>
|
|
|
|
<label for="media_2_0"><input id="media_2_0" name="nestchoice" type="checkbox" value="vhs" /> VHS</label>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<label for="media_2_1">
|
2016-07-22 13:05:17 +08:00
|
|
|
<input checked id="media_2_1" name="nestchoice" type="checkbox" value="dvd" /> DVD
|
2015-08-31 10:13:42 +08:00
|
|
|
</label>
|
|
|
|
</li>
|
|
|
|
</ul></li>
|
|
|
|
</ul>
|
|
|
|
"""
|
|
|
|
self.check_html(
|
2016-04-29 06:48:52 +08:00
|
|
|
self.widget(choices=nested_choices), 'nestchoice', ('vinyl', 'dvd'),
|
|
|
|
attrs={'id': 'media'}, html=html,
|
2015-08-31 10:13:42 +08:00
|
|
|
)
|
|
|
|
|
2017-01-23 20:44:57 +08:00
|
|
|
def test_nested_choices_without_id(self):
|
|
|
|
nested_choices = (
|
|
|
|
('unknown', 'Unknown'),
|
|
|
|
('Audio', (('vinyl', 'Vinyl'), ('cd', 'CD'))),
|
|
|
|
('Video', (('vhs', 'VHS'), ('dvd', 'DVD'))),
|
|
|
|
)
|
|
|
|
html = """
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
<label><input name="nestchoice" type="checkbox" value="unknown" /> Unknown</label>
|
|
|
|
</li>
|
|
|
|
<li>Audio<ul>
|
|
|
|
<li>
|
|
|
|
<label>
|
|
|
|
<input checked name="nestchoice" type="checkbox" value="vinyl" /> Vinyl
|
|
|
|
</label>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<label><input name="nestchoice" type="checkbox" value="cd" /> CD</label>
|
|
|
|
</li>
|
|
|
|
</ul></li>
|
|
|
|
<li>Video<ul>
|
|
|
|
<li>
|
|
|
|
<label><input name="nestchoice" type="checkbox" value="vhs" /> VHS</label>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<label>
|
|
|
|
<input checked name="nestchoice" type="checkbox" value="dvd" /> DVD
|
|
|
|
</label>
|
|
|
|
</li>
|
|
|
|
</ul></li>
|
|
|
|
</ul>
|
|
|
|
"""
|
|
|
|
self.check_html(self.widget(choices=nested_choices), 'nestchoice', ('vinyl', 'dvd'), html=html)
|
|
|
|
|
2015-08-31 10:13:42 +08:00
|
|
|
def test_separate_ids(self):
|
|
|
|
"""
|
|
|
|
Each input gets a separate ID.
|
|
|
|
"""
|
|
|
|
choices = [('a', 'A'), ('b', 'B'), ('c', 'C')]
|
|
|
|
html = """
|
|
|
|
<ul id="abc">
|
|
|
|
<li>
|
2016-07-22 13:05:17 +08:00
|
|
|
<label for="abc_0"><input checked type="checkbox" name="letters" value="a" id="abc_0" /> A</label>
|
2015-08-31 10:13:42 +08:00
|
|
|
</li>
|
|
|
|
<li><label for="abc_1"><input type="checkbox" name="letters" value="b" id="abc_1" /> B</label></li>
|
|
|
|
<li>
|
2016-07-22 13:05:17 +08:00
|
|
|
<label for="abc_2"><input checked type="checkbox" name="letters" value="c" id="abc_2" /> C</label>
|
2015-08-31 10:13:42 +08:00
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
"""
|
2016-04-29 06:48:52 +08:00
|
|
|
self.check_html(self.widget(choices=choices), 'letters', ['a', 'c'], attrs={'id': 'abc'}, html=html)
|
2015-08-31 10:13:42 +08:00
|
|
|
|
|
|
|
def test_separate_ids_constructor(self):
|
|
|
|
"""
|
|
|
|
Each input gets a separate ID when the ID is passed to the constructor.
|
|
|
|
"""
|
2016-04-29 06:48:52 +08:00
|
|
|
widget = CheckboxSelectMultiple(attrs={'id': 'abc'}, choices=[('a', 'A'), ('b', 'B'), ('c', 'C')])
|
2015-08-31 10:13:42 +08:00
|
|
|
html = """
|
|
|
|
<ul id="abc">
|
|
|
|
<li>
|
2016-07-22 13:05:17 +08:00
|
|
|
<label for="abc_0"><input checked type="checkbox" name="letters" value="a" id="abc_0" /> A</label>
|
2015-08-31 10:13:42 +08:00
|
|
|
</li>
|
|
|
|
<li><label for="abc_1"><input type="checkbox" name="letters" value="b" id="abc_1" /> B</label></li>
|
|
|
|
<li>
|
2016-07-22 13:05:17 +08:00
|
|
|
<label for="abc_2"><input checked type="checkbox" name="letters" value="c" id="abc_2" /> C</label>
|
2015-08-31 10:13:42 +08:00
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
"""
|
2016-04-29 06:48:52 +08:00
|
|
|
self.check_html(widget, 'letters', ['a', 'c'], html=html)
|
2016-08-13 01:59:01 +08:00
|
|
|
|
2017-04-22 00:14:40 +08:00
|
|
|
@override_settings(USE_L10N=True, USE_THOUSAND_SEPARATOR=True)
|
|
|
|
def test_doesnt_localize_input_value(self):
|
|
|
|
choices = [
|
|
|
|
(1, 'One'),
|
|
|
|
(1000, 'One thousand'),
|
|
|
|
(1000000, 'One million'),
|
|
|
|
]
|
|
|
|
html = """
|
|
|
|
<ul>
|
|
|
|
<li><label><input type="checkbox" name="numbers" value="1" /> One</label></li>
|
|
|
|
<li><label><input type="checkbox" name="numbers" value="1000" /> One thousand</label></li>
|
|
|
|
<li><label><input type="checkbox" name="numbers" value="1000000" /> One million</label></li>
|
|
|
|
</ul>
|
|
|
|
"""
|
|
|
|
self.check_html(self.widget(choices=choices), 'numbers', None, html=html)
|
|
|
|
|
|
|
|
choices = [
|
|
|
|
(datetime.time(0, 0), 'midnight'),
|
|
|
|
(datetime.time(12, 0), 'noon'),
|
|
|
|
]
|
|
|
|
html = """
|
|
|
|
<ul>
|
|
|
|
<li><label><input type="checkbox" name="times" value="00:00:00" /> midnight</label></li>
|
|
|
|
<li><label><input type="checkbox" name="times" value="12:00:00" /> noon</label></li>
|
|
|
|
</ul>
|
|
|
|
"""
|
|
|
|
self.check_html(self.widget(choices=choices), 'times', None, html=html)
|
|
|
|
|
2016-08-13 01:59:01 +08:00
|
|
|
def test_use_required_attribute(self):
|
|
|
|
widget = self.widget(choices=self.beatles)
|
|
|
|
# Always False because browser validation would require all checkboxes
|
|
|
|
# to be checked instead of at least one.
|
|
|
|
self.assertIs(widget.use_required_attribute(None), False)
|
|
|
|
self.assertIs(widget.use_required_attribute([]), False)
|
|
|
|
self.assertIs(widget.use_required_attribute(['J', 'P']), False)
|
2016-10-01 02:49:50 +08:00
|
|
|
|
|
|
|
def test_value_omitted_from_data(self):
|
|
|
|
widget = self.widget(choices=self.beatles)
|
|
|
|
self.assertIs(widget.value_omitted_from_data({}, {}, 'field'), False)
|
|
|
|
self.assertIs(widget.value_omitted_from_data({'field': 'value'}, {}, 'field'), False)
|
2016-10-29 01:21:45 +08:00
|
|
|
|
|
|
|
def test_label(self):
|
|
|
|
""""
|
|
|
|
CheckboxSelectMultiple doesn't contain 'for="field_0"' in the <label>
|
|
|
|
because clicking that would toggle the first checkbox.
|
|
|
|
"""
|
|
|
|
class TestForm(forms.Form):
|
|
|
|
f = forms.MultipleChoiceField(widget=CheckboxSelectMultiple)
|
|
|
|
|
|
|
|
bound_field = TestForm()['f']
|
|
|
|
self.assertEqual(bound_field.field.widget.id_for_label('id'), '')
|
|
|
|
self.assertEqual(bound_field.label_tag(), '<label>F:</label>')
|