summaryrefslogtreecommitdiff
path: root/factory
diff options
context:
space:
mode:
authorRaphaël Barrois <raphael.barrois@polytechnique.org>2013-08-28 01:30:15 +0200
committerRaphaël Barrois <raphael.barrois@polytechnique.org>2013-08-28 01:30:15 +0200
commit297a111cc918c6451f1b66e3fe3572a9f3fc6b8f (patch)
tree1b7d68414a71b8e072b285d1a142da2ad3fc75af /factory
parent7fc3e4cbdae050dcde49ea3101636ddf57d6c96d (diff)
downloadfactory-boy-297a111cc918c6451f1b66e3fe3572a9f3fc6b8f.tar
factory-boy-297a111cc918c6451f1b66e3fe3572a9f3fc6b8f.tar.gz
Allow FACTORY_FOR = 'app.Model' for Django (Closes #66).
Diffstat (limited to 'factory')
-rw-r--r--factory/base.py11
-rw-r--r--factory/django.py28
2 files changed, 34 insertions, 5 deletions
diff --git a/factory/base.py b/factory/base.py
index ac906de..1b9fa0d 100644
--- a/factory/base.py
+++ b/factory/base.py
@@ -331,6 +331,15 @@ class BaseFactory(object):
return kwargs
@classmethod
+ def _load_target_class(cls):
+ """Extension point for loading target classes.
+
+ This can be overridden in framework-specific subclasses to hook into
+ existing model repositories, for instance.
+ """
+ return getattr(cls, CLASS_ATTRIBUTE_ASSOCIATED_CLASS)
+
+ @classmethod
def _prepare(cls, create, **kwargs):
"""Prepare an object for this factory.
@@ -338,7 +347,7 @@ class BaseFactory(object):
create: bool, whether to create or to build the object
**kwargs: arguments to pass to the creation function
"""
- target_class = getattr(cls, CLASS_ATTRIBUTE_ASSOCIATED_CLASS)
+ target_class = cls._load_target_class()
kwargs = cls._adjust_kwargs(**kwargs)
# Remove 'hidden' arguments.
diff --git a/factory/django.py b/factory/django.py
index e3e8829..016586d 100644
--- a/factory/django.py
+++ b/factory/django.py
@@ -37,7 +37,13 @@ except ImportError as e: # pragma: no cover
from . import base
from . import declarations
-from .compat import BytesIO
+from .compat import BytesIO, is_string
+
+
+def require_django():
+ """Simple helper to ensure Django is available."""
+ if django_files is None: # pragma: no cover
+ raise import_failure
class DjangoModelFactory(base.Factory):
@@ -52,6 +58,21 @@ class DjangoModelFactory(base.Factory):
ABSTRACT_FACTORY = True # Optional, but explicit.
FACTORY_DJANGO_GET_OR_CREATE = ()
+ _associated_model = None
+
+ @classmethod
+ def _load_target_class(cls):
+ associated_class = super(DjangoModelFactory, cls)._load_target_class()
+
+ if is_string(associated_class) and '.' in associated_class:
+ app, model = associated_class.split('.', 1)
+ if cls._associated_model is None:
+ from django.db.models import loading as django_loading
+ cls._associated_model = django_loading.get_model(app, model)
+ return cls._associated_model
+
+ return associated_class
+
@classmethod
def _get_manager(cls, target_class):
try:
@@ -63,7 +84,7 @@ class DjangoModelFactory(base.Factory):
def _setup_next_sequence(cls):
"""Compute the next available PK, based on the 'pk' database field."""
- model = cls._associated_class # pylint: disable=E1101
+ model = cls._load_target_class() # pylint: disable=E1101
manager = cls._get_manager(model)
try:
@@ -116,8 +137,7 @@ class FileField(declarations.PostGenerationDeclaration):
DEFAULT_FILENAME = 'example.dat'
def __init__(self, **defaults):
- if django_files is None: # pragma: no cover
- raise import_failure
+ require_django()
self.defaults = defaults
super(FileField, self).__init__()