summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2013-07-12 16:05:14 -0400
committerTim Graham <timograham@gmail.com>2013-07-12 16:05:14 -0400
commitf2cb94f1c0dc98663e7d493411bf9b82d1894559 (patch)
treecdf7a20d2cd5c023b4f5237dab4e811fd9560e8a /tests
parenta7d97a6778ca528199920901ed2f66e289ee5a44 (diff)
Fixed #20740 -- GenericIPAddressField should pass protocol to formfield()
Thanks Jeff250.
Diffstat (limited to 'tests')
-rw-r--r--tests/model_fields/tests.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/model_fields/tests.py b/tests/model_fields/tests.py
index 6546c49ec7..1ce5eba3e9 100644
--- a/tests/model_fields/tests.py
+++ b/tests/model_fields/tests.py
@@ -468,3 +468,16 @@ class BinaryFieldTests(test.TestCase):
def test_max_length(self):
dm = DataModel(short_data=self.binary_data*4)
self.assertRaises(ValidationError, dm.full_clean)
+
+class GenericIPAddressFieldTests(test.TestCase):
+ def test_genericipaddressfield_formfield_protocol(self):
+ """
+ Test that GenericIPAddressField with a specified protocol does not
+ generate a formfield with no specified protocol. See #20740.
+ """
+ model_field = models.GenericIPAddressField(protocol='IPv4')
+ form_field = model_field.formfield()
+ self.assertRaises(ValidationError, form_field.clean, '::1')
+ model_field = models.GenericIPAddressField(protocol='IPv6')
+ form_field = model_field.formfield()
+ self.assertRaises(ValidationError, form_field.clean, '127.0.0.1')