2010-03-22 04:29:11 +08:00
|
|
|
"""
|
|
|
|
XX. Proxy model inheritance
|
|
|
|
|
|
|
|
Proxy model inheritance across apps can result in syncdb not creating the table
|
|
|
|
for the proxied model (as described in #12286). This test creates two dummy
|
|
|
|
apps and calls syncdb, then verifies that the table has been created.
|
|
|
|
"""
|
|
|
|
|
2011-10-14 02:04:12 +08:00
|
|
|
from __future__ import absolute_import
|
|
|
|
|
2010-03-22 04:29:11 +08:00
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
2011-07-13 17:35:51 +08:00
|
|
|
from django.conf import settings
|
2010-03-22 04:29:11 +08:00
|
|
|
from django.core.management import call_command
|
|
|
|
from django.db.models.loading import load_app
|
2010-03-25 21:14:01 +08:00
|
|
|
from django.test import TransactionTestCase
|
2011-08-11 06:34:45 +08:00
|
|
|
from django.test.utils import override_settings
|
2010-03-22 04:29:11 +08:00
|
|
|
|
2011-10-14 02:04:12 +08:00
|
|
|
|
2011-08-11 06:34:45 +08:00
|
|
|
# @override_settings(INSTALLED_APPS=('app1', 'app2'))
|
2010-03-25 21:14:01 +08:00
|
|
|
class ProxyModelInheritanceTests(TransactionTestCase):
|
2010-03-22 04:29:11 +08:00
|
|
|
|
|
|
|
def setUp(self):
|
2010-11-02 13:31:19 +08:00
|
|
|
self.old_sys_path = sys.path[:]
|
2010-03-22 04:29:11 +08:00
|
|
|
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
|
|
|
|
map(load_app, settings.INSTALLED_APPS)
|
|
|
|
|
|
|
|
def tearDown(self):
|
|
|
|
sys.path = self.old_sys_path
|
|
|
|
|
|
|
|
def test_table_exists(self):
|
2011-08-11 06:34:45 +08:00
|
|
|
call_command('syncdb', verbosity=0)
|
2011-10-14 02:04:12 +08:00
|
|
|
from .app1.models import ProxyModel
|
|
|
|
from .app2.models import NiceModel
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertEqual(NiceModel.objects.all().count(), 0)
|
|
|
|
self.assertEqual(ProxyModel.objects.all().count(), 0)
|
2011-08-11 06:34:45 +08:00
|
|
|
|
|
|
|
ProxyModelInheritanceTests = override_settings(INSTALLED_APPS=('app1', 'app2'))(ProxyModelInheritanceTests)
|