summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lasher <chris.lasher@gmail.com>2013-01-17 16:29:14 -0500
committerRaphaël Barrois <raphael.barrois@polytechnique.org>2013-03-04 23:25:05 +0100
commitbe403fd5a109af49d228ab620ab14d04cb9e34c8 (patch)
tree065329fc4df06f0d1348a495054a6ee283cf13b2
parent7d792430e103984a91c102c33da79be2426bc632 (diff)
downloadfactory-boy-be403fd5a109af49d228ab620ab14d04cb9e34c8.tar
factory-boy-be403fd5a109af49d228ab620ab14d04cb9e34c8.tar.gz
Use extracted argument in PostGenerationMethodCall.
This changeset makes it possible possible to override the default method arguments (or "method_args") passed in when instantiating PostGenerationMethodCall. Now the user can override the default arguments to the method called during post-generation when instantiating a factory. For example, using this UserFactory, class UserFactory(factory.Factory): FACTORY_FOR = User username = factory.Sequence(lambda n: 'user{0}'.format(n)) password = factory.PostGenerationMethodCall( 'set_password', None, 'defaultpassword') by default, the user will have a password set to 'defaultpassword', but this can be overridden by passing in a new password as a keyword argument: >>> u = UserFactory() >>> u.check_password('defaultpassword') True >>> other_u = UserFactory(password='different') >>> other_u.check_password('defaultpassword') False >>> other_u.check_password('different') True This changeset introduces a testing dependency on the Mock package http://pypi.python.org/pypi/mock. While this is a third-party dependency in Python 2, it is part of the Python 3 standard library, as unit.mock, and so a reasonable dependency to satisfy. Signed-off-by: Raphaël Barrois <raphael.barrois@polytechnique.org>
-rw-r--r--factory/declarations.py10
-rw-r--r--tests/test_declarations.py47
2 files changed, 56 insertions, 1 deletions
diff --git a/factory/declarations.py b/factory/declarations.py
index 366c2c8..1f1d2af 100644
--- a/factory/declarations.py
+++ b/factory/declarations.py
@@ -21,6 +21,7 @@
# THE SOFTWARE.
+import collections
import itertools
import warnings
@@ -498,10 +499,17 @@ class PostGenerationMethodCall(PostGenerationDeclaration):
self.method_kwargs = kwargs
def call(self, obj, create, extracted=None, **kwargs):
+ if extracted is not None:
+ passed_args = extracted
+ if isinstance(passed_args, basestring) or (
+ not isinstance(passed_args, collections.Iterable)):
+ passed_args = (passed_args,)
+ else:
+ passed_args = self.method_args
passed_kwargs = dict(self.method_kwargs)
passed_kwargs.update(kwargs)
method = getattr(obj, self.method_name)
- method(*self.method_args, **passed_kwargs)
+ method(*passed_args, **passed_kwargs)
# Decorators... in case lambdas don't cut it
diff --git a/tests/test_declarations.py b/tests/test_declarations.py
index cc921d4..59a3955 100644
--- a/tests/test_declarations.py
+++ b/tests/test_declarations.py
@@ -24,6 +24,8 @@ import datetime
import itertools
import warnings
+from mock import MagicMock
+
from factory import declarations
from .compat import unittest
@@ -295,6 +297,51 @@ class RelatedFactoryTestCase(unittest.TestCase):
datetime.date = orig_date
+class PostGenerationMethodCallTestCase(unittest.TestCase):
+ def setUp(self):
+ self.obj = MagicMock()
+
+ def test_simplest_setup_and_call(self):
+ decl = declarations.PostGenerationMethodCall('method')
+ decl.call(self.obj, False)
+ self.obj.method.assert_called_once_with()
+
+ def test_call_with_method_args(self):
+ decl = declarations.PostGenerationMethodCall(
+ 'method', None, 'data')
+ decl.call(self.obj, False)
+ self.obj.method.assert_called_once_with('data')
+
+ def test_call_with_passed_extracted_string(self):
+ decl = declarations.PostGenerationMethodCall(
+ 'method', None)
+ decl.call(self.obj, False, 'data')
+ self.obj.method.assert_called_once_with('data')
+
+ def test_call_with_passed_extracted_int(self):
+ decl = declarations.PostGenerationMethodCall('method')
+ decl.call(self.obj, False, 1)
+ self.obj.method.assert_called_once_with(1)
+
+ def test_call_with_passed_extracted_iterable(self):
+ decl = declarations.PostGenerationMethodCall('method')
+ decl.call(self.obj, False, (1, 2, 3))
+ self.obj.method.assert_called_once_with(1, 2, 3)
+
+ def test_call_with_method_kwargs(self):
+ decl = declarations.PostGenerationMethodCall(
+ 'method', None, data='data')
+ decl.call(self.obj, False)
+ self.obj.method.assert_called_once_with(data='data')
+
+ def test_call_with_passed_kwargs(self):
+ decl = declarations.PostGenerationMethodCall('method')
+ decl.call(self.obj, False, data='other')
+ self.obj.method.assert_called_once_with(data='other')
+
+
+
+
class CircularSubFactoryTestCase(unittest.TestCase):
def test_circularsubfactory_deprecated(self):