summaryrefslogtreecommitdiff
path: root/tests/contenttypes_tests
diff options
context:
space:
mode:
authorPavel Rybintsev <pavelryb86@gmail.com>2017-02-04 23:59:29 +0200
committerTim Graham <timograham@gmail.com>2017-06-16 09:22:47 -0400
commit874b1f2cac7b79597ce87cc244b7cefc5c5cd821 (patch)
tree3b04cd910d6236f373d4b13d6e0bc0603ef45162 /tests/contenttypes_tests
parentceca221b31a38b01ee951fab82d5dc1c200c27b4 (diff)
Fixed #26936 -- Fixed stale ContentType deletion in apps without models.
Diffstat (limited to 'tests/contenttypes_tests')
-rw-r--r--tests/contenttypes_tests/test_management.py13
1 files changed, 12 insertions, 1 deletions
diff --git a/tests/contenttypes_tests/test_management.py b/tests/contenttypes_tests/test_management.py
index 110d183633..7cdb1703a7 100644
--- a/tests/contenttypes_tests/test_management.py
+++ b/tests/contenttypes_tests/test_management.py
@@ -4,13 +4,17 @@ from django.apps.registry import Apps, apps
from django.contrib.contenttypes import management as contenttypes_management
from django.contrib.contenttypes.models import ContentType
from django.core.management import call_command
-from django.test import TestCase
+from django.test import TestCase, modify_settings
from django.test.utils import captured_stdout
from .models import ModelWithNullFKToSite, Post
+@modify_settings(INSTALLED_APPS={'append': ['no_models']})
class UpdateContentTypesTests(TestCase):
+ # Speed up tests by avoiding retrieving ContentTypes for all test apps.
+ available_apps = ['contenttypes_tests', 'no_models', 'django.contrib.contenttypes']
+
def setUp(self):
self.before_count = ContentType.objects.count()
self.content_type = ContentType.objects.create(app_label='contenttypes_tests', model='Fake')
@@ -63,3 +67,10 @@ class UpdateContentTypesTests(TestCase):
with self.assertNumQueries(0):
contenttypes_management.create_contenttypes(self.app_config, interactive=False, verbosity=0, apps=apps)
self.assertEqual(ContentType.objects.count(), self.before_count + 1)
+
+ def test_contenttypes_removed_in_apps_without_models(self):
+ ContentType.objects.create(app_label='no_models', model='Fake')
+ with mock.patch('builtins.input', return_value='yes'), captured_stdout() as stdout:
+ call_command('remove_stale_contenttypes', verbosity=2)
+ self.assertIn("Deleting stale content type 'no_models | Fake'", stdout.getvalue())
+ self.assertEqual(ContentType.objects.count(), self.before_count)