Generic model factory framework
Project description
PyFactory is a library for writing generic model factories useful for unit testing.
Example
Basic Example
The example below shows a very simple example. Say somewhere in our tests we need various instances of User objects. In our tests we would simply write the following to create a user:
user = UserFactory().create("basic")
The PyFactory code necessary to make this happen is shown below. Note that the ModelBuilder created would only have to be done once.
from pyfactory import Factory, schema import models class ModelBuilder(object): """ The model builder is responsible for knowing how to build and create models based on their attributes. This is what allows PyFactory to be completely model-agnostic. """ @classmethod def build(cls, model_cls, attrs): return model_cls(attributes) @classmethod def create(cls, model_cls, attrs): result = cls.build(model_cls, attrs) result.save() return result class UserFactory(Factory): """ This shows a simple factory which creates a type of User. """ _model = models.user.User _model_builder = ModelBuilder @schema() def basic(self): return { "first_name": "Test", "last_name": "User", }
Associations
In any application, models typically have associations. Let’s look at the case where we have a Post model which is written by a User. If we want a valid Post object in our tests, once again we only need to do the following:
post = PostFactory().create("basic")
And the PyFactory factories to make this possible are equally simple:
class PostFactory(Factory): @schema() def basic(self): return { "title": "Fake Title", "body": "Lorem ipsum...", "author_id": association(UserFactory(), "basic", "id") }
Attribute Overrides
Given the above examples, what if you already had a User that you wanted as a post author? Well, its simple to override attributes by just passing the override attributes as additional keyword arguments to the factory method:
author = # Pretend we got an author somewhere post = PostFactory().create("basic", author_id=author.id)
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
File details
Details for the file pyfactory-0.4.0.tar.gz
.
File metadata
- Download URL: pyfactory-0.4.0.tar.gz
- Upload date:
- Size: 6.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3138d19ef47ad0b198b167fde132b9fdcd4816539e598bfae1a7ba5961389736 |
|
MD5 | c73f46dc83d5dda1592f3d322b65e202 |
|
BLAKE2b-256 | 22b62c745779a0625b8e2626fff0b1c9493dd793cab030ecc01e7ce27a256020 |