summaryrefslogtreecommitdiff
path: root/tests/postgres_tests
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2017-04-29 19:00:21 -0400
committerGitHub <noreply@github.com>2017-04-29 19:00:21 -0400
commit1ebd295082bb0e6b230cf3bc39fd04bee71c2bd7 (patch)
tree708209ce0a26774988117620f0d18193e9349eeb /tests/postgres_tests
parentc920db1e57bf6bec65b075fd0baac72e13db9919 (diff)
Fixed #28040 -- Updated SplitArrayWidget to use template-based widget rendering.
Thanks Preston Timmons for review.
Diffstat (limited to 'tests/postgres_tests')
-rw-r--r--tests/postgres_tests/__init__.py11
-rw-r--r--tests/postgres_tests/test_array.py64
2 files changed, 71 insertions, 4 deletions
diff --git a/tests/postgres_tests/__init__.py b/tests/postgres_tests/__init__.py
index 49f1220888..9396b7fe80 100644
--- a/tests/postgres_tests/__init__.py
+++ b/tests/postgres_tests/__init__.py
@@ -1,8 +1,10 @@
import unittest
+from forms_tests.widget_tests.base import WidgetTest
+
from django.db import connection
from django.db.backends.signals import connection_created
-from django.test import TestCase
+from django.test import TestCase, modify_settings
@unittest.skipUnless(connection.vendor == 'postgresql', "PostgreSQL specific tests")
@@ -14,3 +16,10 @@ class PostgreSQLTestCase(TestCase):
connection_created.disconnect(register_hstore_handler)
super().tearDownClass()
+
+
+@unittest.skipUnless(connection.vendor == 'postgresql', "PostgreSQL specific tests")
+# To locate the widget's template.
+@modify_settings(INSTALLED_APPS={'append': 'django.contrib.postgres'})
+class PostgreSQLWidgetTestCase(WidgetTest):
+ pass
diff --git a/tests/postgres_tests/test_array.py b/tests/postgres_tests/test_array.py
index a11b60e261..a66c92a016 100644
--- a/tests/postgres_tests/test_array.py
+++ b/tests/postgres_tests/test_array.py
@@ -8,11 +8,11 @@ from django.core import exceptions, serializers, validators
from django.core.exceptions import FieldError
from django.core.management import call_command
from django.db import IntegrityError, connection, models
-from django.test import TransactionTestCase, override_settings
+from django.test import TransactionTestCase, modify_settings, override_settings
from django.test.utils import isolate_apps
from django.utils import timezone
-from . import PostgreSQLTestCase
+from . import PostgreSQLTestCase, PostgreSQLWidgetTestCase
from .models import (
ArrayFieldSubclass, CharArrayModel, DateTimeArrayModel, IntegerArrayModel,
NestedIntegerArrayModel, NullableIntegerArrayModel, OtherTypesArrayModel,
@@ -749,6 +749,8 @@ class TestSplitFormField(PostgreSQLTestCase):
with self.assertRaisesMessage(exceptions.ValidationError, msg):
SplitArrayField(forms.IntegerField(max_value=100), size=2).clean([0, 101])
+ # To locate the widget's template.
+ @modify_settings(INSTALLED_APPS={'append': 'django.contrib.postgres'})
def test_rendering(self):
class SplitForm(forms.Form):
array = SplitArrayField(forms.CharField(), size=3)
@@ -787,7 +789,63 @@ class TestSplitFormField(PostgreSQLTestCase):
self.assertEqual(obj.field, [1, 2])
-class TestSplitFormWidget(PostgreSQLTestCase):
+class TestSplitFormWidget(PostgreSQLWidgetTestCase):
+
+ def test_get_context(self):
+ self.assertEqual(
+ SplitArrayWidget(forms.TextInput(), size=2).get_context('name', ['val1', 'val2']),
+ {
+ 'widget': {
+ 'name': 'name',
+ 'is_hidden': False,
+ 'required': False,
+ 'value': "['val1', 'val2']",
+ 'attrs': {},
+ 'template_name': 'postgres/widgets/split_array.html',
+ 'subwidgets': [
+ {
+ 'name': 'name_0',
+ 'is_hidden': False,
+ 'required': False,
+ 'value': 'val1',
+ 'attrs': {},
+ 'template_name': 'django/forms/widgets/text.html',
+ 'type': 'text',
+ },
+ {
+ 'name': 'name_1',
+ 'is_hidden': False,
+ 'required': False,
+ 'value': 'val2',
+ 'attrs': {},
+ 'template_name': 'django/forms/widgets/text.html',
+ 'type': 'text',
+ },
+ ]
+ }
+ }
+ )
+
+ def test_render(self):
+ self.check_html(
+ SplitArrayWidget(forms.TextInput(), size=2), 'array', None,
+ """
+ <input name="array_0" type="text" />
+ <input name="array_1" type="text" />
+ """
+ )
+
+ def test_render_attrs(self):
+ self.check_html(
+ SplitArrayWidget(forms.TextInput(), size=2),
+ 'array', ['val1', 'val2'], attrs={'id': 'foo'},
+ html=(
+ """
+ <input id="foo_0" name="array_0" type="text" value="val1" />
+ <input id="foo_1" name="array_1" type="text" value="val2" />
+ """
+ )
+ )
def test_value_omitted_from_data(self):
widget = SplitArrayWidget(forms.TextInput(), size=2)