summaryrefslogtreecommitdiff
path: root/tests/modeltests/proxy_model_inheritance/tests.py
diff options
context:
space:
mode:
authorCarl Meyer <carl@oddbird.net>2012-04-09 22:41:20 +0000
committerCarl Meyer <carl@oddbird.net>2012-04-09 22:41:20 +0000
commitf195f1ed2481d34ff56df36cf46ad7d377f2af93 (patch)
tree6e9257f12599d3d76813c564c0e1275bebe85cad /tests/modeltests/proxy_model_inheritance/tests.py
parent6f7aa51b2c3fbcbbc76404cee3cbe511feabaf1f (diff)
Fixed #18083 -- Fixed cascade deletion with proxy model of concrete subclass. Thanks Simon Charette for report and patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17887 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/modeltests/proxy_model_inheritance/tests.py')
-rw-r--r--tests/modeltests/proxy_model_inheritance/tests.py34
1 files changed, 25 insertions, 9 deletions
diff --git a/tests/modeltests/proxy_model_inheritance/tests.py b/tests/modeltests/proxy_model_inheritance/tests.py
index ae5ab20b5f..061cdc7e91 100644
--- a/tests/modeltests/proxy_model_inheritance/tests.py
+++ b/tests/modeltests/proxy_model_inheritance/tests.py
@@ -1,11 +1,3 @@
-"""
-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.
-"""
-
from __future__ import absolute_import
import os
@@ -14,12 +6,20 @@ import sys
from django.conf import settings
from django.core.management import call_command
from django.db.models.loading import cache, load_app
-from django.test import TransactionTestCase
+from django.test import TestCase, TransactionTestCase
from django.test.utils import override_settings
+from .models import (ConcreteModel, ConcreteModelSubclass,
+ ConcreteModelSubclassProxy)
+
@override_settings(INSTALLED_APPS=('app1', 'app2'))
class ProxyModelInheritanceTests(TransactionTestCase):
+ """
+ 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.
+ """
def setUp(self):
self.old_sys_path = sys.path[:]
@@ -41,3 +41,19 @@ class ProxyModelInheritanceTests(TransactionTestCase):
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())