1
0
mirror of https://github.com/django/django.git synced 2025-07-04 09:49:12 +00:00

[soc2010/app-loading] load custom models if specified with models_path attribute

git-svn-id: http://code.djangoproject.com/svn/django/branches/soc2010/app-loading@13570 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Arthur Koziel 2010-08-11 01:39:37 +00:00
parent 9cf522e693
commit 2b7bfaccf2
4 changed files with 34 additions and 10 deletions

View File

@ -25,7 +25,6 @@ class App(object):
# errors raised when trying to import the app
self.errors = []
self.models = []
self.models_module = None
def __repr__(self):
return '<App: %s>' % self.name
@ -112,8 +111,15 @@ class AppCache(object):
app_instance = app_class(app_instance_name)
self.app_instances.append(app_instance)
# check if the app instance specifies a path to models
# if not, we use the models.py file from the package dir
try:
models = import_module('.models', app_name)
models_path = app_instance.models_path
except AttributeError:
models_path = '%s.models' % app_name
try:
models = import_module(models_path)
except ImportError:
self.nesting_level -= 1
# If the app doesn't have a models module, we can just ignore the
@ -135,9 +141,7 @@ class AppCache(object):
raise
self.nesting_level -= 1
app = self.find_app(app_name.split('.')[-1])
if app and models is not app.models_module:
app.models_module = models
app_instance.models_module = models
return models
def find_app(self, name):

View File

@ -0,0 +1,8 @@
from django.core.apps import App
class MyApp(App):
models_path = 'model_app.othermodels'
def __repr__(self):
return '<MyApp: %s>' % self.name

View File

@ -0,0 +1,5 @@
from django.db import models
class Person(models.Model):
first_name = models.CharField(max_length=30)
last_name = models.CharField(max_length=30)

View File

@ -221,10 +221,9 @@ class LoadAppTests(AppCacheTestCase):
app = cache.app_instances[0]
self.assertEqual(len(cache.app_instances), 1)
self.assertEqual(app.name, 'nomodel_app')
self.assertEqual(app.models_module, None)
self.assertEqual(rv, None)
def test_load_app_custom(self):
def test_custom_app(self):
"""
Test that a custom app instance is created if the function
gets passed a classname
@ -235,10 +234,18 @@ class LoadAppTests(AppCacheTestCase):
self.assertEqual(len(cache.app_instances), 1)
self.assertEqual(app.name, 'nomodel_app')
self.assertTrue(isinstance(app, MyApp))
self.assertEqual(app.models_module, None)
self.assertEqual(rv, None)
def test_load_app_twice(self):
def test_custom_models_path(self):
"""
Test that custom models are imported correctly
"""
rv = cache.load_app('model_app.MyApp')
app = cache.app_instances[0]
self.assertEqual(app.models_module.__name__, 'model_app.othermodels')
self.assertEqual(rv.__name__, 'model_app.othermodels')
def test_twice(self):
"""
Test that loading an app twice results in only one app instance
"""
@ -248,7 +255,7 @@ class LoadAppTests(AppCacheTestCase):
self.assertEqual(rv.__name__, 'model_app.models')
self.assertEqual(rv2.__name__, 'model_app.models')
def test_load_app_importerror(self):
def test_importerror(self):
"""
Test that an ImportError exception is raised if a package cannot
be imported