Harden migration: transaction, chunking, lossy-down doc, data-preservation test
- Wrap the data copy in DB::transaction (FULLTEXT ALTER stays outside) - Switch to chunkById(500) so the migration scales - Document down() as irreversible for non-default-locale translations - Add test_existing_documents_data_is_copied_to_translations to cover the data copy itself (the only previously-untested behavior) - Drop unused Migrator import in DocumentMigrationTest - Also restore title index in down() so up() can be re-run cleanly Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -2,7 +2,6 @@
|
||||
|
||||
namespace Tests\Feature;
|
||||
|
||||
use Illuminate\Database\Migrations\Migrator;
|
||||
use Illuminate\Foundation\Testing\RefreshDatabase;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
@@ -72,4 +71,44 @@ public function test_document_translations_unique_document_locale(): void
|
||||
'updated_at' => now(),
|
||||
]);
|
||||
}
|
||||
|
||||
public function test_existing_documents_data_is_copied_to_translations(): void
|
||||
{
|
||||
// Roll the new migration back so the legacy columns exist again
|
||||
\Illuminate\Support\Facades\Artisan::call('migrate:rollback', ['--step' => 1]);
|
||||
$this->assertTrue(\Illuminate\Support\Facades\Schema::hasColumn('documents', 'title'));
|
||||
|
||||
// Seed a legacy document row directly
|
||||
\Illuminate\Support\Facades\DB::table('documents')->insert([
|
||||
'path' => 'Legacy.md',
|
||||
'title' => 'Legacy Title',
|
||||
'slug' => 'legacy-title',
|
||||
'content' => '# Legacy body',
|
||||
'rendered_html' => '<h1>Legacy body</h1>',
|
||||
'file_size' => 0,
|
||||
'file_hash' => str_repeat('0', 64),
|
||||
'file_modified_at' => now(),
|
||||
'created_at' => now(),
|
||||
'updated_at' => now(),
|
||||
]);
|
||||
$docId = \Illuminate\Support\Facades\DB::table('documents')->where('slug', 'legacy-title')->value('id');
|
||||
|
||||
// Re-run the migration
|
||||
\Illuminate\Support\Facades\Artisan::call('migrate');
|
||||
|
||||
// Verify the data was copied to document_translations
|
||||
$translation = \Illuminate\Support\Facades\DB::table('document_translations')
|
||||
->where('document_id', $docId)
|
||||
->first();
|
||||
|
||||
$this->assertNotNull($translation, 'Translation row should have been created from legacy data');
|
||||
$this->assertSame('Legacy Title', $translation->title);
|
||||
$this->assertSame('# Legacy body', $translation->content);
|
||||
$this->assertSame('<h1>Legacy body</h1>', $translation->rendered_html);
|
||||
$this->assertSame(config('app.locale', 'en'), $translation->locale);
|
||||
|
||||
// Verify documents.default_locale was set
|
||||
$defaultLocale = \Illuminate\Support\Facades\DB::table('documents')->where('id', $docId)->value('default_locale');
|
||||
$this->assertSame(config('app.locale', 'en'), $defaultLocale);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user