summaryrefslogtreecommitdiff
path: root/factory/declarations.py
diff options
context:
space:
mode:
authorRaphaël Barrois <raphael.barrois@polytechnique.org>2012-02-24 23:58:54 +0100
committerRaphaël Barrois <raphael.barrois@polytechnique.org>2012-02-24 23:58:54 +0100
commit8a459c5e26a14a531f78d740b325c996044df760 (patch)
tree32fa813787f885a8ac59970cd65d8350c0e91551 /factory/declarations.py
parentcbbe5cc359412c8e6c49e06d5d1f35680ad88c40 (diff)
downloadfactory-boy-8a459c5e26a14a531f78d740b325c996044df760.tar
factory-boy-8a459c5e26a14a531f78d740b325c996044df760.tar.gz
Add the Iterator and InfiniteIterator attribute kinds.
Signed-off-by: Raphaël Barrois <raphael.barrois@polytechnique.org>
Diffstat (limited to 'factory/declarations.py')
-rw-r--r--factory/declarations.py39
1 files changed, 39 insertions, 0 deletions
diff --git a/factory/declarations.py b/factory/declarations.py
index 5fe427c..41d99a3 100644
--- a/factory/declarations.py
+++ b/factory/declarations.py
@@ -21,6 +21,9 @@
# THE SOFTWARE.
+import itertools
+
+
class OrderedDeclaration(object):
"""A factory declaration.
@@ -110,6 +113,34 @@ class SelfAttribute(OrderedDeclaration):
return deepgetattr(obj, self.attribute_name, self.default)
+class Iterator(OrderedDeclaration):
+ """Fill this value using the values returned by an iterator.
+
+ Warning: the iterator should not end !
+
+ Attributes:
+ iterator (iterable): the iterator whose value should be used.
+ """
+
+ def __init__(self, iterator):
+ super(Iterator, self).__init__()
+ self.iterator = iter(iterator)
+
+ def evaluate(self, sequence, obj, containers=()):
+ return self.iterator.next()
+
+
+class InfiniteIterator(Iterator):
+ """Same as Iterator, but make the iterator infinite by cycling at the end.
+
+ Attributes:
+ iterator (iterable): the iterator, once made infinite.
+ """
+
+ def __init__(self, iterator):
+ return super(InfiniteIterator, self).__init__(itertools.cycle(iterator))
+
+
class Sequence(OrderedDeclaration):
"""Specific OrderedDeclaration to use for 'sequenced' fields.
@@ -224,6 +255,14 @@ class SubFactory(OrderedDeclaration):
def lazy_attribute(func):
return LazyAttribute(func)
+def iterator(func):
+ """Turn a generator function into an iterator attribute."""
+ return Iterator(func())
+
+def infinite_iterator(func):
+ """Turn a generator function into an infinite iterator attribute."""
+ return InfiniteIterator(func())
+
def sequence(func):
return Sequence(func)