summaryrefslogtreecommitdiff
path: root/README.rst
blob: 2c4b15d07e70dcc54f4837a5f3e7c83f9e64bf2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
factory_boy
===========

factory_boy is a fixtures replacement based on thoughtbot's `factory_girl <http://github.com/thoughtbot/factory_girl>`_ . Like factory_girl it has a straightforward definition syntax, support for multiple build strategies (saved instances, unsaved instances, attribute dicts, and stubbed objects), and support for multiple factories for the same class, including factory inheritance. Django support is included, and support for other ORMs can be easily added.

Credits
-------

This README parallels the factory_girl README as much as possible; text and examples are reproduced for comparison purposes. Ruby users of factory_girl should feel right at home with factory_boy in Python.

factory_boy was written by Mark Sandstrom.

Thank you Joe Ferris and thoughtbot for creating factory_girl.

Download
--------

Github: http://github.com/dnerdy/factory_boy/tree/master

easy_install::
    
    easy_install factory_boy
    
Source::
    
    # Download the source and run
    python setup.py install
    

Defining factories
------------------

Factories declare a set of attributes used to instantiate an object. The name of the factory is used to guess the class of the object by default, but it's possible to explicitly specify it::

    import factory
    from models import User
    
    # This will guess the User class
    class UserFactory(factory.Factory):
        first_name = 'John'
        last_name = 'Doe'
        admin = False
        
    # This will use the User class (Admin would have been guessed)
    class AdminFactory(factory.Factory):
        FACTORY_FOR = User
        
        first_name = 'Admin'
        last_name = 'User'
        admin = True

Using factories
---------------

factory_boy supports several different build strategies: build, create, attributes and stub::

    # Returns a User instance that's not saved
    user = UserFactory.build()
    
    # Returns a saved User instance
    user = UserFactory.create()
    
    # Returns a dict of attributes that can be used to build a User instance
    attributes = UserFactory.attributes()
    
    # Returns an object with all defined attributes stubbed out:
    stub = UserFactory.stub()
    
You can use the Factory class as a shortcut for the default build strategy::

    # Same as UserFactory.create()
    user = UserFactory()
    
The default strategy can be overridden::

    UserFactory.default_strategy = factory.BUILD_STRATEGY
    user = UserFactory()
    
The default strategy can also be overridden for all factories::

    # This will set the default strategy for all factories that don't define a default build strategy
    factory.Factory.default_strategy = factory.BUILD_STRATEGY
    
No matter which strategy is used, it's possible to override the defined attributes by passing keyword arguments::

    # Build a User instance and override first_name
    user = UserFactory.build(first_name='Joe')
    user.first_name
    # => 'Joe'
    
Lazy Attributes
---------------

Most factory attributes can be added using static values that are evaluated when the factory is defined, but some attributes (such as associations and other attributes that must be dynamically generated) will need values assigned each time an instance is generated. These "lazy" attributes can be added as follows::

    class UserFactory(factory.Factory):
        first_name = 'Joe'
        last_name = 'Blow'
        email = factory.LazyAttribute(lambda a: '{0}.{1}@example.com'.format(a.first_name, a.last_name).lower())
        
    UserFactory().email
    # => 'joe.blow@example.com'
    
The function passed to ``LazyAttribute`` is given the attributes defined for the factory up to the point of the LazyAttribute declaration. If a lambda won't cut it, the ``lazy_attribute`` decorator can be used to wrap a function::

    # Stub factories don't have an associated class.
    class SumFactory(factory.StubFactory):
        lhs = 1
        rhs = 1
        
        @lazy_attribute
        def sum(a):
            result = a.lhs + a.rhs  # Or some other fancy calculation
            return result
    
Associations
------------

Associated instances can also be generated using ``LazyAttribute``::

    from models import Post
    
    class PostFactory(factory.Factory):
        author = factory.LazyAttribute(lambda a: UserFactory())
        
The associated object's default strategy is always used::

    # Builds and saves a User and a Post
    post = PostFactory()
    post.id == None           # => False
    post.author.id == None    # => False

    # Builds and saves a User, and then builds but does not save a Post
    post = PostFactory.build()
    post.id == None           # => True
    post.author.id == None    # => False
  
Inheritance
-----------

You can easily create multiple factories for the same class without repeating common attributes by using inheritance::

    class PostFactory(factory.Factory):
        title = 'A title'
        
    class ApprovedPost(PostFactory):
        approved = True
        approver = factory.LazyAttribute(lambda a: UserFactory())
        
Sequences
---------

Unique values in a specific format (for example, e-mail addresses) can be generated using sequences. Sequences are defined by using ``Sequence`` or the decorator ``sequence``::

    class UserFactory(factory.Factory):
        email = factory.Sequence(lambda n: 'person{0}@example.com'.format(n))
        
    UserFactory().email  # => 'person0@example.com'
    UserFactory().email  # => 'person1@example.com'
        
Sequences can be combined with lazy attributes::

    class UserFactory(factory.Factory):
        name = 'Mark'
        email = factory.LazyAttributeSequence(lambda a, n: '{0}+{1}@example.com'.format(a.name, n).lower())
        
    UserFactory().email  # => mark+0@example.com

Customizing creation
--------------------

Sometimes, the default build/create by keyword arguments doesn't allow for enough
customization of the generated objects. In such cases, you should override the
Factory._prepare method::

    class UserFactory(factory.Factory):
        @classmethod
        def _prepare(cls, create, **kwargs):
            password = kwargs.pop('password', None)
            user = super(UserFactory, cls)._prepare(create, kwargs)
            if password:
                user.set_password(user)
                if create:
                    user.save()
            return user