Got rid of AppConfig._stub. As a side effect, app_cache.app_configs now only contains entries for applications that are in INSTALLED_APPS, which is a good thing and will allow dramatic simplifications (which I will perform in the next commit). That required adjusting all methods that iterate on app_configs without checking the "installed" flag, hence the large changes in get_model[s]. Introduced AppCache.all_models to store models: - while the app cache is being populated and a suitable app config object to register models isn't available yet; - for applications that aren't in INSTALLED_APPS since they don't have an app config any longer. Replaced get_model(seed_cache=False) by registered_model() which can be kept simple and safe to call at any time, and removed the seed_cache argument to get_model[s]. There's no replacement for that private API. Allowed non-master app caches to go through populate() as it is now safe to do so. They were introduced in 1.7 so backwards compatibility isn't a concern as long as the migrations framework keeps working.
66 lines
2.2 KiB
Python
66 lines
2.2 KiB
Python
from __future__ import unicode_literals
|
|
|
|
import os
|
|
import sys
|
|
|
|
from django.conf import settings
|
|
from django.core.apps import app_cache
|
|
from django.core.management import call_command
|
|
from django.test import TestCase, TransactionTestCase
|
|
from django.test.utils import override_settings
|
|
from django.utils._os import upath
|
|
|
|
from .models import (ConcreteModel, ConcreteModelSubclass,
|
|
ConcreteModelSubclassProxy)
|
|
|
|
|
|
@override_settings(INSTALLED_APPS=('app1', 'app2'))
|
|
class ProxyModelInheritanceTests(TransactionTestCase):
|
|
"""
|
|
Proxy model inheritance across apps can result in migrate not creating the table
|
|
for the proxied model (as described in #12286). This test creates two dummy
|
|
apps and calls migrate, then verifies that the table has been created.
|
|
"""
|
|
|
|
available_apps = []
|
|
|
|
def setUp(self):
|
|
self.old_sys_path = sys.path[:]
|
|
sys.path.append(os.path.dirname(os.path.abspath(upath(__file__))))
|
|
for app in settings.INSTALLED_APPS:
|
|
app_cache.load_app(app)
|
|
|
|
def tearDown(self):
|
|
sys.path = self.old_sys_path
|
|
del app_cache.app_configs['app1']
|
|
del app_cache.app_configs['app2']
|
|
del app_cache.all_models['app1']
|
|
del app_cache.all_models['app2']
|
|
|
|
def test_table_exists(self):
|
|
try:
|
|
app_cache.set_available_apps(settings.INSTALLED_APPS)
|
|
call_command('migrate', verbosity=0)
|
|
finally:
|
|
app_cache.unset_available_apps()
|
|
from .app1.models import ProxyModel
|
|
from .app2.models import NiceModel
|
|
self.assertEqual(NiceModel.objects.all().count(), 0)
|
|
self.assertEqual(ProxyModel.objects.all().count(), 0)
|
|
|
|
|
|
class MultiTableInheritanceProxyTest(TestCase):
|
|
|
|
def test_model_subclass_proxy(self):
|
|
"""
|
|
Deleting an instance of a model proxying a multi-table inherited
|
|
subclass should cascade delete down the whole inheritance chain (see
|
|
#18083).
|
|
|
|
"""
|
|
instance = ConcreteModelSubclassProxy.objects.create()
|
|
instance.delete()
|
|
self.assertEqual(0, ConcreteModelSubclassProxy.objects.count())
|
|
self.assertEqual(0, ConcreteModelSubclass.objects.count())
|
|
self.assertEqual(0, ConcreteModel.objects.count())
|