summaryrefslogtreecommitdiff
path: root/factory/declarations.py
diff options
context:
space:
mode:
authorRaphaël Barrois <raphael.barrois@polytechnique.org>2011-12-21 02:46:40 +0100
committerRaphaël Barrois <raphael.barrois@polytechnique.org>2011-12-21 02:46:40 +0100
commit21c80c79b4706d8acaed46ac8c8422a14c1eb36e (patch)
treeea848bd3277facaf4e28465612db8fada092dfeb /factory/declarations.py
parent6e5abce2451b873b35f495460603dce4ca7acd5e (diff)
downloadfactory-boy-21c80c79b4706d8acaed46ac8c8422a14c1eb36e.tar
factory-boy-21c80c79b4706d8acaed46ac8c8422a14c1eb36e.tar.gz
Cleanup 'factory.declarations'.
Signed-off-by: Raphaël Barrois <raphael.barrois@polytechnique.org>
Diffstat (limited to 'factory/declarations.py')
-rw-r--r--factory/declarations.py63
1 files changed, 51 insertions, 12 deletions
diff --git a/factory/declarations.py b/factory/declarations.py
index b9eaf04..4a5bf97 100644
--- a/factory/declarations.py
+++ b/factory/declarations.py
@@ -23,22 +23,33 @@
class OrderedDeclaration(object):
"""A factory declaration.
- Ordered declarations keep track of the order in which they're defined so that later declarations
- can refer to attributes created by earlier declarations when the declarations are evaluated."""
+ Ordered declarations mark an attribute as needing lazy evaluation.
+ This allows them to refer to attributes defined by other OrderedDeclarations
+ in the same factory.
+ """
+
def evaluate(self, sequence, obj):
"""Evaluate this declaration.
Args:
- factory: The factory this declaration was defined in.
- obj: The object holding currently computed attributes
- attributes: The attributes created by the unordered and ordered declarations up to this point."""
-
+ sequence (int): the current sequence counter to use when filling
+ the current instance
+ obj (containers.LazyStub): The object holding currently computed
+ attributes
+ """
raise NotImplementedError('This is an abstract method')
class LazyAttribute(OrderedDeclaration):
- def __init__(self, function):
- super(LazyAttribute, self).__init__()
+ """Specific OrderedDeclaration computed using a lambda.
+
+ Attributes:
+ function (function): a function, expecting the current LazyStub and
+ returning the computed value.
+ """
+
+ def __init__(self, function, *args, **kwargs):
+ super(LazyAttribute, self).__init__(*args, **kwargs)
self.function = function
def evaluate(self, sequence, obj):
@@ -46,15 +57,33 @@ class LazyAttribute(OrderedDeclaration):
class SelfAttribute(OrderedDeclaration):
- def __init__(self, attribute_name):
- super(SelfAttribute, self).__init__()
+ """Specific OrderedDeclaration copying values from other fields.
+
+ Attributes:
+ attribute_name (str): the name of the attribute to copy.
+ """
+
+ def __init__(self, attribute_name, *args, **kwargs):
+ super(SelfAttribute, self).__init__(*args, **kwargs)
self.attribute_name = attribute_name
def evaluate(self, sequence, obj):
+ # TODO(rbarrois): allow the use of ATTR_SPLITTER to fetch fields of
+ # subfactories.
return getattr(obj, self.attribute_name)
class Sequence(OrderedDeclaration):
+ """Specific OrderedDeclaration to use for 'sequenced' fields.
+
+ These fields are typically used to generate increasing unique values.
+
+ Attributes:
+ function (function): A function, expecting the current sequence counter
+ and returning the computed value.
+ type (function): A function converting an integer into the expected kind
+ of counter for the 'function' attribute.
+ """
def __init__(self, function, type=str):
super(Sequence, self).__init__()
self.function = function
@@ -65,6 +94,14 @@ class Sequence(OrderedDeclaration):
class LazyAttributeSequence(Sequence):
+ """Composite of a LazyAttribute and a Sequence.
+
+ Attributes:
+ function (function): A function, expecting the current LazyStub and the
+ current sequence counter.
+ type (function): A function converting an integer into the expected kind
+ of counter for the 'function' attribute.
+ """
def evaluate(self, sequence, obj):
return self.function(obj, self.type(sequence))
@@ -73,8 +110,9 @@ class SubFactory(OrderedDeclaration):
"""Base class for attributes based upon a sub-factory.
Attributes:
- defaults: DeclarationsHolder, the declarations from the wrapped factory
- factory: Factory, the wrapped factory
+ defaults (dict): Overrides to the defaults defined in the wrapped
+ factory
+ factory (base.Factory): the wrapped factory
"""
def __init__(self, factory, **kwargs):
@@ -102,6 +140,7 @@ class SubFactory(OrderedDeclaration):
else:
return self.factory.build(**attrs)
+
# Decorators... in case lambdas don't cut it
def lazy_attribute(func):