Skip to main content

Form validator classes for django ModelForms

Project description

pypi actions codecov downloads

edc-form-validators

Form validator classes for ModelForms

ModelForm FormValidator

FormValidator simplifies common patterns used in ModelForm.clean. For example, if there is a response to field A then there should not a be response to B and visa-versa.

Declare a form with it’s form_validator class and use FormValidatorMixin:

class MyFormValidator(FormValidator):

    def clean(self):
        self.required_if(
            YES,
            field='f1',
            field_required='f2')
        ...

class MyModelForm(FormValidatorMixin, forms.ModelForm):

    form_validator_cls = MyFormValidator

    class Meta:
        model = TestModel
        fields = '__all__'

Testing

Test the form_validator without having to instantiate the ModelForm:

def test_my_form_validator(self):
    options = {
        'f1': YES,
        'f2': None}
    form_validator = MyFormValidator(cleaned_data=options)
    self.assertRaises(ValidationError, form_validator.validate)
    self.assertIn('f2', form_validator._errors)

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

edc-form-validators-0.3.10.tar.gz (29.5 kB view details)

Uploaded Source

Built Distribution

edc_form_validators-0.3.10-py3-none-any.whl (37.6 kB view details)

Uploaded Python 3

File details

Details for the file edc-form-validators-0.3.10.tar.gz.

File metadata

  • Download URL: edc-form-validators-0.3.10.tar.gz
  • Upload date:
  • Size: 29.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.9

File hashes

Hashes for edc-form-validators-0.3.10.tar.gz
Algorithm Hash digest
SHA256 881111287961e787abdb8d3a09ac46c7884c5ad998be1f341fdff52078f41eb3
MD5 c3d6193190af73d13e9f9c909ae07ad2
BLAKE2b-256 28402f31e74c6dbf490030145e134454830d2d3d778a26657a5a43228bf30c11

See more details on using hashes here.

File details

Details for the file edc_form_validators-0.3.10-py3-none-any.whl.

File metadata

File hashes

Hashes for edc_form_validators-0.3.10-py3-none-any.whl
Algorithm Hash digest
SHA256 0e5a6d95efd58da5797cf73416e14e4cd930a36c9c03f6cd39e0c81a65b6bd6a
MD5 82bc0825c4075bde6fb0f1535a650180
BLAKE2b-256 45b4df18b7876642a843eeb8e26c8989413bb5f044f3bc4c82e18063cf789505

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page