2018-11-27 03:05:02 +08:00
|
|
|
from django.test import SimpleTestCase
|
|
|
|
|
|
|
|
from . import ValidationAssertions
|
2011-10-14 02:04:12 +08:00
|
|
|
from .models import ModelToValidate
|
2010-01-05 11:56:19 +08:00
|
|
|
|
|
|
|
|
2018-11-27 03:05:02 +08:00
|
|
|
class TestModelsWithValidators(ValidationAssertions, SimpleTestCase):
|
2010-01-05 11:56:19 +08:00
|
|
|
def test_custom_validator_passes_for_correct_value(self):
|
2016-04-22 08:18:43 +08:00
|
|
|
mtv = ModelToValidate(
|
|
|
|
number=10,
|
|
|
|
name="Some Name",
|
|
|
|
f_with_custom_validator=42,
|
|
|
|
f_with_iterable_of_validators=42,
|
|
|
|
)
|
2015-04-27 22:59:16 +08:00
|
|
|
self.assertIsNone(mtv.full_clean())
|
2010-01-05 11:56:19 +08:00
|
|
|
|
|
|
|
def test_custom_validator_raises_error_for_incorrect_value(self):
|
2016-04-22 08:18:43 +08:00
|
|
|
mtv = ModelToValidate(
|
|
|
|
number=10,
|
|
|
|
name="Some Name",
|
|
|
|
f_with_custom_validator=12,
|
|
|
|
f_with_iterable_of_validators=42,
|
|
|
|
)
|
2010-01-12 10:29:45 +08:00
|
|
|
self.assertFailsValidation(mtv.full_clean, ["f_with_custom_validator"])
|
2010-01-05 11:56:19 +08:00
|
|
|
self.assertFieldFailsValidationWithMessage(
|
2010-01-12 10:29:45 +08:00
|
|
|
mtv.full_clean,
|
2010-01-05 11:56:19 +08:00
|
|
|
"f_with_custom_validator",
|
2012-06-08 00:08:47 +08:00
|
|
|
["This is not the answer to life, universe and everything!"],
|
2010-01-05 11:56:19 +08:00
|
|
|
)
|
2016-04-22 08:18:43 +08:00
|
|
|
|
|
|
|
def test_field_validators_can_be_any_iterable(self):
|
|
|
|
mtv = ModelToValidate(
|
|
|
|
number=10,
|
|
|
|
name="Some Name",
|
|
|
|
f_with_custom_validator=42,
|
|
|
|
f_with_iterable_of_validators=12,
|
|
|
|
)
|
|
|
|
self.assertFailsValidation(mtv.full_clean, ["f_with_iterable_of_validators"])
|
|
|
|
self.assertFieldFailsValidationWithMessage(
|
|
|
|
mtv.full_clean,
|
|
|
|
"f_with_iterable_of_validators",
|
|
|
|
["This is not the answer to life, universe and everything!"],
|
|
|
|
)
|