Skip to main content

A Simple Way to Test your Django Models

Project description

PyPI version Python versions See Build Status on Travis CI

A Simple Way to Test your Django Models


Description

This plugin allows you to simply test your Django models, by writing your tests as you would write your models. On the other hand, pytest-django-model tests only fields, constants, and the Meta inner class. You will have to write tests of methods and properties.

The principle here is not really to test the behavior of your models but rather to make sure that the settings are the right ones.

Installation

You can install “pytest-django-model” via pip from PyPI:

$ pip install pytest-django-model

Usage

The plugin is very easy to use, there are only three things to remember:

  • The PytestDjangoModel metaclass.

  • The model attribute.

  • The parents attribute (optional).

Let’s take this model:

class Foo(Bar, Baz):
    class Meta:
        unique_together = ("name", "email")

    FAVORITE_COLOR_CHOICES = (
        ("BL", "blue"),
        ("YE", "yellow"),
        ("GR", "green"),
        ("RE", "red")
    )

    name = models.CharField(max_length=256)
    email = models.EmailField(blank=True)

    favorite_color = models.CharField(
        max_length=2, choices=FAVORITE_COLOR_CHOICES, default="BL"
    )
    is_awesome = models.BooleanField(default=True)

To test it, we just have to write this:

from pytest_django_model import PytestDjangoModel

# Name of the test class doesn't matter.
class TestFoo(metaclass=PytestDjangoModel):
    class Meta:
        model = Foo
        # Parents can be a model or a list/tuple of models.
        parents = (Bar, Baz)

        unique_together = ("name", "email")

    FAVORITE_COLOR_CHOICES = (
        ("BL", "blue"),
        ("YE", "yellow"),
        ("GR", "green"),
        ("RE", "red")
    )

    name = models.CharField(max_length=256)
    email = models.EmailField(blank=True)

    favorite_color = models.CharField(
        max_length=2, choices=FAVORITE_COLOR_CHOICES, default="BL"
    )
    is_awesome = models.BooleanField(default=True)

And voila! We can now launch tests with the command pytest.

From there, the class PytestDjangoModel will generate a fake Django model from constants, fields and options of the Meta class. This model will inherit all the models of the parents attribute.

The data of Foo model and the model created from the TestFoo class will be extracted and compared. If any constant differs or isn’t found, pytest will raise a error, same for fields and Meta options.

Contributing

Contributions are very welcome. Development Environment can be setup with make setup. Tests can be run with make test, please ensure the coverage at least stays the same before you submit a pull request.

License

Distributed under the terms of the GNU GPL v3.0 license, “pytest-django-model” is free and open source software.

Issues

If you encounter any problems, please file an issue along with a detailed description.

Project details


Download files

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

Source Distribution

pytest-django-model-0.1.9.tar.gz (23.4 kB view details)

Uploaded Source

File details

Details for the file pytest-django-model-0.1.9.tar.gz.

File metadata

  • Download URL: pytest-django-model-0.1.9.tar.gz
  • Upload date:
  • Size: 23.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.1

File hashes

Hashes for pytest-django-model-0.1.9.tar.gz
Algorithm Hash digest
SHA256 3783c503b4476385d3ab114ad579514b636f7ea58c0c0f5f58b922d1f8640cdc
MD5 2a47dd5a10d6ad124d711b2b9324e75a
BLAKE2b-256 439bbea8b4395fe7bb07846c5697a5a2954350c017229bfa96625f201bc690f7

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