2013-07-29 19:19:04 +02:00
|
|
|
from __future__ import unicode_literals
|
2011-10-13 20:51:33 +02:00
|
|
|
|
2009-03-10 06:51:06 +01:00
|
|
|
import os
|
|
|
|
import sys
|
2013-07-01 14:22:27 +02:00
|
|
|
from unittest import TestCase
|
2009-03-10 06:51:06 +01:00
|
|
|
|
2013-12-16 11:52:05 +01:00
|
|
|
from django.core.apps import app_cache
|
|
|
|
from django.core.apps.cache import AppCache
|
2013-08-05 19:34:35 +02:00
|
|
|
from django.test.utils import override_settings
|
2012-12-08 11:13:52 +01:00
|
|
|
from django.utils._os import upath
|
2013-12-18 17:56:11 +01:00
|
|
|
from django.utils import six
|
2013-07-01 14:22:27 +02:00
|
|
|
|
2009-03-10 06:51:06 +01:00
|
|
|
|
2010-04-15 20:44:51 +02:00
|
|
|
class EggLoadingTest(TestCase):
|
|
|
|
|
|
|
|
def setUp(self):
|
2010-11-02 06:27:24 +01:00
|
|
|
self.old_path = sys.path[:]
|
2012-12-08 11:13:52 +01:00
|
|
|
self.egg_dir = '%s/eggs' % os.path.dirname(upath(__file__))
|
2010-04-15 20:44:51 +02:00
|
|
|
|
2013-12-12 21:34:39 +01: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 14:05:15 +02:00
|
|
|
|
2010-04-15 20:44:51 +02:00
|
|
|
def tearDown(self):
|
2013-12-12 21:34:39 +01:00
|
|
|
app_cache.app_configs['app_loading'].models = self._old_models
|
2013-12-18 11:19:56 +01:00
|
|
|
app_cache.all_models['app_loading'] = self._old_models
|
2013-12-12 21:34:39 +01:00
|
|
|
app_cache._get_models_cache = {}
|
|
|
|
|
2010-04-15 20:44:51 +02: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-18 17:56:11 +01:00
|
|
|
with app_cache._with_app('app_with_models'):
|
|
|
|
models_module = app_cache.get_app_config('app_with_models').models_module
|
|
|
|
self.assertIsNotNone(models_module)
|
2010-04-15 20:44:51 +02: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-18 17:56:11 +01:00
|
|
|
with app_cache._with_app('app_no_models'):
|
|
|
|
models_module = app_cache.get_app_config('app_no_models').models_module
|
|
|
|
self.assertIsNone(models_module)
|
2010-04-15 20:44:51 +02: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-18 17:56:11 +01:00
|
|
|
with app_cache._with_app('omelet.app_with_models'):
|
|
|
|
models_module = app_cache.get_app_config('app_with_models').models_module
|
|
|
|
self.assertIsNotNone(models_module)
|
2010-04-15 20:44:51 +02: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-18 17:56:11 +01:00
|
|
|
with app_cache._with_app('omelet.app_no_models'):
|
|
|
|
models_module = app_cache.get_app_config('app_no_models').models_module
|
|
|
|
self.assertIsNone(models_module)
|
2010-04-21 14:05:15 +02:00
|
|
|
|
2010-04-15 20:44:51 +02: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-18 17:56:11 +01:00
|
|
|
with six.assertRaisesRegex(self, ImportError, 'modelz'):
|
|
|
|
with app_cache._with_app('broken_app'):
|
|
|
|
app_cache.get_app_config('omelet.app_no_models').models_module
|
2013-08-05 19:34:35 +02:00
|
|
|
|
|
|
|
def test_missing_app(self):
|
|
|
|
"""
|
|
|
|
Test that repeated app loading doesn't succeed in case there is an
|
|
|
|
error. Refs #17667.
|
|
|
|
"""
|
2013-12-17 17:47:19 +01:00
|
|
|
app_cache = AppCache()
|
2013-12-18 14:49:29 +01:00
|
|
|
# Pretend we're the master app cache to test the population process.
|
|
|
|
app_cache._apps_loaded = False
|
|
|
|
app_cache._models_loaded = False
|
2013-12-17 17:47:19 +01:00
|
|
|
with override_settings(INSTALLED_APPS=('notexists',)):
|
|
|
|
with self.assertRaises(ImportError):
|
2013-12-18 11:19:56 +01:00
|
|
|
app_cache.get_model('notexists', 'nomodel')
|
2013-12-17 17:47:19 +01:00
|
|
|
with self.assertRaises(ImportError):
|
2013-12-18 11:19:56 +01:00
|
|
|
app_cache.get_model('notexists', 'nomodel')
|
2011-04-20 19:58:37 +02:00
|
|
|
|
|
|
|
|
|
|
|
class GetModelsTest(TestCase):
|
|
|
|
def setUp(self):
|
2011-04-27 17:46:43 +02:00
|
|
|
from .not_installed import models
|
|
|
|
self.not_installed_module = models
|
2011-04-20 19:58:37 +02:00
|
|
|
|
|
|
|
def test_get_model_only_returns_installed_models(self):
|
|
|
|
self.assertEqual(
|
2013-12-11 23:31:34 +01:00
|
|
|
app_cache.get_model("not_installed", "NotInstalledModel"), None)
|
2011-04-20 19:58:37 +02:00
|
|
|
|
2011-04-27 17:46:43 +02:00
|
|
|
def test_get_model_with_not_installed(self):
|
|
|
|
self.assertEqual(
|
2013-12-11 23:31:34 +01:00
|
|
|
app_cache.get_model(
|
2011-04-27 17:46:43 +02:00
|
|
|
"not_installed", "NotInstalledModel", only_installed=False),
|
|
|
|
self.not_installed_module.NotInstalledModel)
|
|
|
|
|
2011-04-20 19:58:37 +02:00
|
|
|
def test_get_models_only_returns_installed_models(self):
|
2013-12-18 11:19:56 +01:00
|
|
|
self.assertNotIn(
|
|
|
|
"NotInstalledModel",
|
2013-12-11 23:31:34 +01:00
|
|
|
[m.__name__ for m in app_cache.get_models()])
|
2011-04-20 19:58:37 +02:00
|
|
|
|
|
|
|
def test_get_models_with_app_label_only_returns_installed_models(self):
|
2013-12-11 23:31:34 +01:00
|
|
|
self.assertEqual(app_cache.get_models(self.not_installed_module), [])
|
2011-04-27 17:46:43 +02:00
|
|
|
|
|
|
|
def test_get_models_with_not_installed(self):
|
2013-12-18 11:19:56 +01:00
|
|
|
self.assertIn(
|
|
|
|
"NotInstalledModel",
|
|
|
|
[m.__name__ for m in app_cache.get_models(only_installed=False)])
|
2011-04-27 17:46:43 +02: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-27 19:51:43 +02:00
|
|
|
set(["id", "relatedmodel", "m2mrelatedmodel"]))
|