Skip to main content

Form validator classes for common patterns in 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 field 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.39.tar.gz (41.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

edc_form_validators-0.3.39-py3-none-any.whl (48.3 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: edc-form-validators-0.3.39.tar.gz
  • Upload date:
  • Size: 41.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for edc-form-validators-0.3.39.tar.gz
Algorithm Hash digest
SHA256 97d76649c28074407414f5f656c1076c4a5ce734b305503579113bbe1fb9ed63
MD5 afc234ef65f2b2a4990f33260be88222
BLAKE2b-256 814b3245ffc90aa2424d2905c73026d0214b66fb88c48687b0302039df376fe3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for edc_form_validators-0.3.39-py3-none-any.whl
Algorithm Hash digest
SHA256 1cde8f003fbdc0a6c3689745e6b2497a5dd04773ca081fb12f279cf45e8caaf6
MD5 692992a68de82d0e7c774719f1e8a941
BLAKE2b-256 bb27c931168a96d08ac6617c0d2c4f479862530eff532cc296216f72ada7e3f4

See more details on using hashes here.

Supported by

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