Skip to main content

Generate Model Factory (factory_boy) for each model of your Django app

Project description

django-factory-generator v1.0.4 on PyPi MIT license Stable

django-factory-generator

Generate (factory_boy) Model Factory for each model of your Django app

Changelog

  • 1.0.4 fix has_choices property for Django 3.0

  • 1.0.3 Remove useless print statements

  • 1.0.2 Add PointFieldFaker to support PointField. Refactor the way modules are imported on generated factories

  • 1.0.1 Add more accurate fakers for BigIntegerField, IntegerField, PositiveIntegerField, PositiveSmallIntegerField and SmallIntegerField

  • 1.0.0 Init project

Requirements

This Django app generates factory_boy Model Factories from your installed apps, so you need to have factory_boy installed.

Installation

Install using pip :

pip install django_factory_generator

Add factory_generator to your INSTALLED_APPS settings.

INSTALLED_APPS = (
    ...
    'factory_generator',
    ...
)

Generate factories

Generate factories with a single command line:

python manage.py generate_factories

This will create a model_factories directory with the following structure :

|__ model_factories/
    |__ app_label_foo/
        |__ __init__.py
        |__ model_foo.py
        |__ model_bar.py
        |__ base/
            |__ __init__.py
            |__ model_foo.py
            |__ model_bar.py

Each model results in two generated files :

  • model_factories/app_label_foo/base/model_foo containing the ModelFooFactoryBase class definition generated from the model ModelFoo. This file should not be manually edited since it would be overriden each time the command generate_factories is run.

  • model_factories/app_label_foo/model_foo containing the ModelFooFactory class which simply extends ModelFooFactoryBase. This file is generated once but not overriden when you run the generate_factories command again.

This structure gives you the ability to override the ModelFactory that was automatically generated. You can then edit the ModelFooFactory to change / edit the base fields that were generated.

You can then import your model factories the following way:

# app_label/tests.py
from django.test import TestCase

from model_factories.app_label import ModelFooFactory, ModelBarFactory

class FooTests(TestCase):

    def test_model_factory(self):
        modelfoo = ModelFooFactory(
            foo='bar',
        )
        modelbar = ModelBarFactory(
            bar='baz',
        )
        # Run your tests here

Settings

Here are all the settings you can use, with their default value :

FACTORY_NORMALIZE_FIELD_MAP = {}
FACTORY_FIELD_FAKER_MAP = {}
FACTORY_IGNORE_FIELDS = []
FACTORY_ROOT_DIR = 'model_factories'
FACTORY_IGNORE_NON_EDITABLE_FIELDS = True

Todo

  • Improve documentation

  • Write unit tests

  • validate compatibility with previous versions of Django and Python

Support

If you are having issues, please let us know or submit a pull request.

License

The project is licensed under the MIT License.

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

django_factory_generator-1.0.4.tar.gz (9.6 kB view details)

Uploaded Source

Built Distribution

django_factory_generator-1.0.4-py2.py3-none-any.whl (14.4 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file django_factory_generator-1.0.4.tar.gz.

File metadata

  • Download URL: django_factory_generator-1.0.4.tar.gz
  • Upload date:
  • Size: 9.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/41.4.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/2.7.17

File hashes

Hashes for django_factory_generator-1.0.4.tar.gz
Algorithm Hash digest
SHA256 358c82b47828e7f700145f610e978eaa0ca346ed6c7c83befe26d26a3f1fb4d6
MD5 85b92a2d801bc95a115274cbf1445112
BLAKE2b-256 e85deaf21773cab47d793fdef886d89ccae29ba43b3e0416db0ffea7d888c0f8

See more details on using hashes here.

File details

Details for the file django_factory_generator-1.0.4-py2.py3-none-any.whl.

File metadata

  • Download URL: django_factory_generator-1.0.4-py2.py3-none-any.whl
  • Upload date:
  • Size: 14.4 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/41.4.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/2.7.17

File hashes

Hashes for django_factory_generator-1.0.4-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 23d64bd1ef65b0fa2e5120c016e222185939eac203dcda2370cc9e2dfce4632d
MD5 d839ba1ce8dc4ed0312276413ec211ca
BLAKE2b-256 edc8811e68c1b0d956d9634ce374c60a8aba5d47bb10df22cf93f8d0fd2cdace

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