diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2021-12-27 18:49:19 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-27 18:49:19 +0100 |
| commit | 2d07e1aaebadbd576ee2a055760a5866d4408a87 (patch) | |
| tree | fa9d4c086affe257cff773eb31c057b6052607f6 /tests/migrations/test_commands.py | |
| parent | 59a66f05126a4f9622f67ac71ccc149c805a6ccd (diff) | |
Refs #22983 -- Added tests for squashing migrations with functions from migration files.
Follow up to ebb13bbd884d8c3053d1d342ef0423240feb05e6.
Diffstat (limited to 'tests/migrations/test_commands.py')
| -rw-r--r-- | tests/migrations/test_commands.py | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/tests/migrations/test_commands.py b/tests/migrations/test_commands.py index ebaaccb1db..bf78b60a85 100644 --- a/tests/migrations/test_commands.py +++ b/tests/migrations/test_commands.py @@ -2131,6 +2131,42 @@ class SquashMigrationsTests(MigrationTestBase): squashed_name='initial', interactive=False, verbosity=0, ) + def test_squashmigrations_manual_porting(self): + out = io.StringIO() + with self.temporary_migration_module( + module='migrations.test_migrations_manual_porting', + ) as migration_dir: + call_command( + 'squashmigrations', + 'migrations', + '0002', + interactive=False, + stdout=out, + no_color=True, + ) + squashed_migration_file = os.path.join( + migration_dir, + '0001_squashed_0002_second.py', + ) + self.assertTrue(os.path.exists(squashed_migration_file)) + self.assertEqual( + out.getvalue(), + f'Will squash the following migrations:\n' + f' - 0001_initial\n' + f' - 0002_second\n' + f'Optimizing...\n' + f' No optimizations possible.\n' + f'Created new squashed migration {squashed_migration_file}\n' + f' You should commit this migration but leave the old ones in place;\n' + f' the new migration will be used for new installs. Once you are sure\n' + f' all instances of the codebase have applied the migrations you squashed,\n' + f' you can delete them.\n' + f'Manual porting required\n' + f' Your migrations contained functions that must be manually copied over,\n' + f' as we could not safely copy their implementation.\n' + f' See the comment at the top of the squashed migration for details.\n' + ) + class AppLabelErrorTests(TestCase): """ |
