2013-07-30 01:19:04 +08:00
|
|
|
from __future__ import unicode_literals
|
2011-10-14 02:51:33 +08:00
|
|
|
|
2009-03-10 13:51:06 +08:00
|
|
|
import os
|
|
|
|
import sys
|
2013-07-01 20:22:27 +08:00
|
|
|
from unittest import TestCase
|
2009-03-10 13:51:06 +08:00
|
|
|
|
2013-12-12 06:31:34 +08:00
|
|
|
from django.apps import app_cache
|
|
|
|
from django.apps.cache import AppCache
|
2013-08-06 01:34:35 +08:00
|
|
|
from django.test.utils import override_settings
|
2012-12-08 18:13:52 +08:00
|
|
|
from django.utils._os import upath
|
2013-07-01 20:22:27 +08:00
|
|
|
|
2009-03-10 13:51:06 +08:00
|
|
|
|
2010-04-16 02:44:51 +08:00
|
|
|
class EggLoadingTest(TestCase):
|
|
|
|
|
|
|
|
def setUp(self):
|
2010-11-02 13:27:24 +08:00
|
|
|
self.old_path = sys.path[:]
|
2012-12-08 18:13:52 +08:00
|
|
|
self.egg_dir = '%s/eggs' % os.path.dirname(upath(__file__))
|
2010-04-16 02:44:51 +08:00
|
|
|
|
2013-12-13 04:34:39 +08:00
|
|
|
# The models need to be removed after the test in order to prevent bad
|
|
|
|
# interactions with the flush operation in other tests.
|
|
|
|
self._old_models = app_cache.app_configs['app_loading'].models.copy()
|
2010-04-21 20:05:15 +08:00
|
|
|
|
2010-04-16 02:44:51 +08:00
|
|
|
def tearDown(self):
|
2013-12-13 04:34:39 +08:00
|
|
|
app_cache.app_configs['app_loading'].models = self._old_models
|
|
|
|
app_cache._get_models_cache = {}
|
|
|
|
|
2010-04-16 02:44:51 +08:00
|
|
|
sys.path = self.old_path
|
|
|
|
|
|
|
|
def test_egg1(self):
|
|
|
|
"""Models module can be loaded from an app in an egg"""
|
|
|
|
egg_name = '%s/modelapp.egg' % self.egg_dir
|
|
|
|
sys.path.append(egg_name)
|
2013-12-12 06:31:34 +08:00
|
|
|
models = app_cache.load_app('app_with_models')
|
2010-12-04 15:28:12 +08:00
|
|
|
self.assertFalse(models is None)
|
2010-04-16 02:44:51 +08:00
|
|
|
|
|
|
|
def test_egg2(self):
|
|
|
|
"""Loading an app from an egg that has no models returns no models (and no error)"""
|
|
|
|
egg_name = '%s/nomodelapp.egg' % self.egg_dir
|
|
|
|
sys.path.append(egg_name)
|
2013-12-12 06:31:34 +08:00
|
|
|
models = app_cache.load_app('app_no_models')
|
2010-12-04 15:28:12 +08:00
|
|
|
self.assertTrue(models is None)
|
2010-04-16 02:44:51 +08:00
|
|
|
|
|
|
|
def test_egg3(self):
|
|
|
|
"""Models module can be loaded from an app located under an egg's top-level package"""
|
|
|
|
egg_name = '%s/omelet.egg' % self.egg_dir
|
|
|
|
sys.path.append(egg_name)
|
2013-12-12 06:31:34 +08:00
|
|
|
models = app_cache.load_app('omelet.app_with_models')
|
2010-12-04 15:28:12 +08:00
|
|
|
self.assertFalse(models is None)
|
2010-04-16 02:44:51 +08:00
|
|
|
|
|
|
|
def test_egg4(self):
|
|
|
|
"""Loading an app with no models from under the top-level egg package generates no error"""
|
|
|
|
egg_name = '%s/omelet.egg' % self.egg_dir
|
|
|
|
sys.path.append(egg_name)
|
2013-12-12 06:31:34 +08:00
|
|
|
models = app_cache.load_app('omelet.app_no_models')
|
2010-12-04 15:28:12 +08:00
|
|
|
self.assertTrue(models is None)
|
2010-04-21 20:05:15 +08:00
|
|
|
|
2010-04-16 02:44:51 +08:00
|
|
|
def test_egg5(self):
|
|
|
|
"""Loading an app from an egg that has an import error in its models module raises that error"""
|
|
|
|
egg_name = '%s/brokenapp.egg' % self.egg_dir
|
|
|
|
sys.path.append(egg_name)
|
2013-12-12 06:31:34 +08:00
|
|
|
self.assertRaises(ImportError, app_cache.load_app, 'broken_app')
|
2013-08-06 01:34:35 +08:00
|
|
|
raised = None
|
2010-04-16 02:44:51 +08:00
|
|
|
try:
|
2013-12-12 06:31:34 +08:00
|
|
|
app_cache.load_app('broken_app')
|
2012-04-29 00:09:37 +08:00
|
|
|
except ImportError as e:
|
2013-08-06 01:34:35 +08:00
|
|
|
raised = e
|
|
|
|
|
|
|
|
# Make sure the message is indicating the actual
|
|
|
|
# problem in the broken app.
|
|
|
|
self.assertTrue(raised is not None)
|
|
|
|
self.assertTrue("modelz" in raised.args[0])
|
|
|
|
|
|
|
|
def test_missing_app(self):
|
|
|
|
"""
|
|
|
|
Test that repeated app loading doesn't succeed in case there is an
|
|
|
|
error. Refs #17667.
|
|
|
|
"""
|
|
|
|
# AppCache is a Borg, so we can instantiate one and change its
|
|
|
|
# loaded to False to force the following code to actually try to
|
|
|
|
# populate the cache.
|
|
|
|
a = AppCache()
|
|
|
|
a.loaded = False
|
|
|
|
try:
|
|
|
|
with override_settings(INSTALLED_APPS=('notexists',)):
|
2013-12-12 06:31:34 +08:00
|
|
|
self.assertRaises(ImportError, app_cache.get_model, 'notexists', 'nomodel', seed_cache=True)
|
|
|
|
self.assertRaises(ImportError, app_cache.get_model, 'notexists', 'nomodel', seed_cache=True)
|
2013-08-06 01:34:35 +08:00
|
|
|
finally:
|
|
|
|
a.loaded = True
|
2011-04-21 01:58:37 +08:00
|
|
|
|
|
|
|
|
|
|
|
class GetModelsTest(TestCase):
|
|
|
|
def setUp(self):
|
2011-04-27 23:46:43 +08:00
|
|
|
from .not_installed import models
|
|
|
|
self.not_installed_module = models
|
2011-04-21 01:58:37 +08:00
|
|
|
|
|
|
|
def test_get_model_only_returns_installed_models(self):
|
|
|
|
self.assertEqual(
|
2013-12-12 06:31:34 +08:00
|
|
|
app_cache.get_model("not_installed", "NotInstalledModel"), None)
|
2011-04-21 01:58:37 +08:00
|
|
|
|
2011-04-27 23:46:43 +08:00
|
|
|
def test_get_model_with_not_installed(self):
|
|
|
|
self.assertEqual(
|
2013-12-12 06:31:34 +08:00
|
|
|
app_cache.get_model(
|
2011-04-27 23:46:43 +08:00
|
|
|
"not_installed", "NotInstalledModel", only_installed=False),
|
|
|
|
self.not_installed_module.NotInstalledModel)
|
|
|
|
|
2011-04-21 01:58:37 +08:00
|
|
|
def test_get_models_only_returns_installed_models(self):
|
|
|
|
self.assertFalse(
|
|
|
|
"NotInstalledModel" in
|
2013-12-12 06:31:34 +08:00
|
|
|
[m.__name__ for m in app_cache.get_models()])
|
2011-04-21 01:58:37 +08:00
|
|
|
|
|
|
|
def test_get_models_with_app_label_only_returns_installed_models(self):
|
2013-12-12 06:31:34 +08:00
|
|
|
self.assertEqual(app_cache.get_models(self.not_installed_module), [])
|
2011-04-27 23:46:43 +08:00
|
|
|
|
|
|
|
def test_get_models_with_not_installed(self):
|
|
|
|
self.assertTrue(
|
|
|
|
"NotInstalledModel" in [
|
2013-12-12 06:31:34 +08:00
|
|
|
m.__name__ for m in app_cache.get_models(only_installed=False)])
|
2011-04-27 23:46:43 +08:00
|
|
|
|
|
|
|
|
|
|
|
class NotInstalledModelsTest(TestCase):
|
|
|
|
def test_related_not_installed_model(self):
|
|
|
|
from .not_installed.models import NotInstalledModel
|
|
|
|
self.assertEqual(
|
|
|
|
set(NotInstalledModel._meta.get_all_field_names()),
|
2011-04-28 01:51:43 +08:00
|
|
|
set(["id", "relatedmodel", "m2mrelatedmodel"]))
|