summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAndrzej Pragacz <apragacz@o2.pl>2014-11-15 15:43:06 +0100
committerTim Graham <timograham@gmail.com>2014-11-21 10:55:19 -0500
commit72729f844e0dd9bd01b3874171b89ab0d136a40e (patch)
treea581373c4d716a5754a2de7bf60bb1174a12e002 /tests
parentf957e2b04c9844ec849ffab07f8a1a5f10f753ff (diff)
Fixed #23794 -- Fixed migrations crash when removing a field that's part of index/unique_together.
Diffstat (limited to 'tests')
-rw-r--r--tests/migrations/test_autodetector.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/migrations/test_autodetector.py b/tests/migrations/test_autodetector.py
index 25aaf939ce..8733b8453f 100644
--- a/tests/migrations/test_autodetector.py
+++ b/tests/migrations/test_autodetector.py
@@ -908,6 +908,22 @@ class AutodetectorTests(TestCase):
self.assertOperationAttributes(changes, "otherapp", 0, 0, name="book", unique_together=set())
self.assertOperationAttributes(changes, "otherapp", 0, 1, name="book", index_together=set())
+ def test_foo_together_remove_fk(self):
+ """Tests unique_together and field removal detection & ordering"""
+ # Make state
+ before = self.make_project_state([self.author_empty, self.book_foo_together])
+ after = self.make_project_state([self.author_empty, self.book_with_no_author])
+ autodetector = MigrationAutodetector(before, after)
+ changes = autodetector._detect_changes()
+ # Right number/type of migrations?
+ self.assertNumberMigrations(changes, "otherapp", 1)
+ self.assertOperationTypes(changes, "otherapp", 0, [
+ "AlterUniqueTogether", "AlterIndexTogether", "RemoveField"
+ ])
+ self.assertOperationAttributes(changes, "otherapp", 0, 0, name="book", unique_together=set())
+ self.assertOperationAttributes(changes, "otherapp", 0, 1, name="book", index_together=set())
+ self.assertOperationAttributes(changes, "otherapp", 0, 2, model_name="book", name="author")
+
def test_foo_together_no_changes(self):
"""
Tests that index/unique_together doesn't generate a migration if no