summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorSimon Charette <charette.s@gmail.com>2018-07-13 22:48:49 -0400
committerTim Graham <timograham@gmail.com>2018-07-19 17:06:01 -0400
commited7898e1b58c29cda648a799ac4bd5bc7e193b8b (patch)
tree538b85b2ae1bf76b1842f554fd82259d781886b9 /tests
parent55b6f7af0c6ab7f25818445cfbb9e18ddafedcc9 (diff)
Fixed #28862 -- Disabled optimization of AlterFooTogether and RemoveField.
AlterFooTogether operations cannot be swapped with RemoveField operations on the same model as they could be removing the the same field as well. Since AlterFooTogether operations don't track what their previous value was, it's impossible to determine whether or not the optimization is safe so the only way to proceed is to disable the optimization. Thanks Ramiro Morales for the in-depth analysis of the issue. Refs #24828
Diffstat (limited to 'tests')
-rw-r--r--tests/migrations/test_autodetector.py8
-rw-r--r--tests/migrations/test_commands.py2
-rw-r--r--tests/migrations/test_optimizer.py9
3 files changed, 6 insertions, 13 deletions
diff --git a/tests/migrations/test_autodetector.py b/tests/migrations/test_autodetector.py
index e3ce3a129a..b181b084be 100644
--- a/tests/migrations/test_autodetector.py
+++ b/tests/migrations/test_autodetector.py
@@ -1529,10 +1529,10 @@ class AutodetectorTests(TestCase):
)
# Right number/type of migrations?
self.assertNumberMigrations(changes, "otherapp", 1)
- self.assertOperationTypes(changes, "otherapp", 0, ["RemoveField", "AlterUniqueTogether", "AlterIndexTogether"])
- self.assertOperationAttributes(changes, "otherapp", 0, 0, model_name="book", name="newfield")
- self.assertOperationAttributes(changes, "otherapp", 0, 1, name="book", unique_together={("author", "title")})
- self.assertOperationAttributes(changes, "otherapp", 0, 2, name="book", index_together={("author", "title")})
+ self.assertOperationTypes(changes, "otherapp", 0, ["AlterUniqueTogether", "AlterIndexTogether", "RemoveField"])
+ self.assertOperationAttributes(changes, "otherapp", 0, 0, name="book", unique_together={("author", "title")})
+ self.assertOperationAttributes(changes, "otherapp", 0, 1, name="book", index_together={("author", "title")})
+ self.assertOperationAttributes(changes, "otherapp", 0, 2, model_name="book", name="newfield")
def test_rename_field_and_foo_together(self):
"""
diff --git a/tests/migrations/test_commands.py b/tests/migrations/test_commands.py
index f625a47c7f..3c42755917 100644
--- a/tests/migrations/test_commands.py
+++ b/tests/migrations/test_commands.py
@@ -1335,7 +1335,7 @@ class SquashMigrationsTests(MigrationTestBase):
out = io.StringIO()
with self.temporary_migration_module(module="migrations.test_migrations"):
call_command("squashmigrations", "migrations", "0002", interactive=False, verbosity=1, stdout=out)
- self.assertIn("Optimized from 8 operations to 3 operations.", out.getvalue())
+ self.assertIn("Optimized from 8 operations to 4 operations.", out.getvalue())
def test_ticket_23799_squashmigrations_no_optimize(self):
"""
diff --git a/tests/migrations/test_optimizer.py b/tests/migrations/test_optimizer.py
index a408db9ef2..b841b531b1 100644
--- a/tests/migrations/test_optimizer.py
+++ b/tests/migrations/test_optimizer.py
@@ -712,7 +712,7 @@ class OptimizerTests(SimpleTestCase):
],
)
- self.assertOptimizesTo(
+ self.assertDoesNotOptimize(
[
migrations.CreateModel("Foo", [
("a", models.IntegerField()),
@@ -722,13 +722,6 @@ class OptimizerTests(SimpleTestCase):
alter,
migrations.RemoveField("Foo", "c"),
],
- [
- migrations.CreateModel("Foo", [
- ("a", models.IntegerField()),
- ("b", models.IntegerField()),
- ]),
- alter,
- ],
)
def test_create_alter_unique_field(self):