summaryrefslogtreecommitdiff
path: root/tests/modeltests/proxy_model_inheritance
diff options
context:
space:
mode:
authorKaren Tracey <kmtracey@gmail.com>2010-03-21 20:29:11 +0000
committerKaren Tracey <kmtracey@gmail.com>2010-03-21 20:29:11 +0000
commit72ea8fc4eb79d4dfbbbf65161486c06f411ab8c6 (patch)
tree7e7a973adc77a8996ad57196cf71eb5fa01fe7e6 /tests/modeltests/proxy_model_inheritance
parentf88c2f16e84703cff225e162297a6bcedebe8910 (diff)
Refs: #12286 -- Add a test to verify that a proxied model's table is created in
a situation where it did not used to be. git-svn-id: http://code.djangoproject.com/svn/django/trunk@12828 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/modeltests/proxy_model_inheritance')
-rw-r--r--tests/modeltests/proxy_model_inheritance/__init__.py0
-rw-r--r--tests/modeltests/proxy_model_inheritance/app1/__init__.py0
-rw-r--r--tests/modeltests/proxy_model_inheritance/app1/models.py5
-rw-r--r--tests/modeltests/proxy_model_inheritance/app2/__init__.py0
-rw-r--r--tests/modeltests/proxy_model_inheritance/app2/models.py4
-rw-r--r--tests/modeltests/proxy_model_inheritance/models.py0
-rw-r--r--tests/modeltests/proxy_model_inheritance/tests.py36
7 files changed, 45 insertions, 0 deletions
diff --git a/tests/modeltests/proxy_model_inheritance/__init__.py b/tests/modeltests/proxy_model_inheritance/__init__.py
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/tests/modeltests/proxy_model_inheritance/__init__.py
diff --git a/tests/modeltests/proxy_model_inheritance/app1/__init__.py b/tests/modeltests/proxy_model_inheritance/app1/__init__.py
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/tests/modeltests/proxy_model_inheritance/app1/__init__.py
diff --git a/tests/modeltests/proxy_model_inheritance/app1/models.py b/tests/modeltests/proxy_model_inheritance/app1/models.py
new file mode 100644
index 0000000000..59a9ac7f6c
--- /dev/null
+++ b/tests/modeltests/proxy_model_inheritance/app1/models.py
@@ -0,0 +1,5 @@
+from app2.models import NiceModel
+
+class ProxyModel(NiceModel):
+ class Meta:
+ proxy = True
diff --git a/tests/modeltests/proxy_model_inheritance/app2/__init__.py b/tests/modeltests/proxy_model_inheritance/app2/__init__.py
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/tests/modeltests/proxy_model_inheritance/app2/__init__.py
diff --git a/tests/modeltests/proxy_model_inheritance/app2/models.py b/tests/modeltests/proxy_model_inheritance/app2/models.py
new file mode 100644
index 0000000000..549cd07bd2
--- /dev/null
+++ b/tests/modeltests/proxy_model_inheritance/app2/models.py
@@ -0,0 +1,4 @@
+from django.db import models
+
+class NiceModel(models.Model):
+ pass
diff --git a/tests/modeltests/proxy_model_inheritance/models.py b/tests/modeltests/proxy_model_inheritance/models.py
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/tests/modeltests/proxy_model_inheritance/models.py
diff --git a/tests/modeltests/proxy_model_inheritance/tests.py b/tests/modeltests/proxy_model_inheritance/tests.py
new file mode 100644
index 0000000000..557b1dde03
--- /dev/null
+++ b/tests/modeltests/proxy_model_inheritance/tests.py
@@ -0,0 +1,36 @@
+"""
+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.
+"""
+
+import os
+import sys
+
+from django.conf import settings, Settings
+from django.core.management import call_command
+from django.db.models.loading import load_app
+from django.test import TestCase
+
+class ProxyModelInheritanceTests(TestCase):
+
+ def setUp(self):
+ self.old_sys_path = sys.path
+ sys.path.append(os.path.dirname(os.path.abspath(__file__)))
+ self.old_installed_apps = settings.INSTALLED_APPS
+ settings.INSTALLED_APPS = ('app1', 'app2')
+ map(load_app, settings.INSTALLED_APPS)
+ call_command('syncdb', verbosity=0)
+ from app1.models import ProxyModel
+ from app2.models import NiceModel
+ global ProxyModel, NiceModel
+
+ def tearDown(self):
+ settings.INSTALLED_APPS = self.old_installed_apps
+ sys.path = self.old_sys_path
+
+ def test_table_exists(self):
+ self.assertEquals(NiceModel.objects.all().count(), 0)
+ self.assertEquals(ProxyModel.objects.all().count(), 0)