-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathLiftMigrationTest.php
128 lines (101 loc) · 3.49 KB
/
LiftMigrationTest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<?php
declare(strict_types=1);
describe('CREATE TABLE', function () {
it('generates a migration file for a model', function () {
$migrationClass = database_path('migrations/' . date('Y_m_d_His') . '_create_users_migration_table.php');
$this->artisan('lift:migration UserMigration --namespace=Tests\\\Datasets')
->assertExitCode(0);
expect($migrationClass)->toBeFileWithContent(UserMigrationCreate());
unlink($migrationClass);
});
it('generates a migration file for a model if namespace ends with slash', function () {
$migrationClass = database_path('migrations/' . date('Y_m_d_His') . '_create_users_migration_table.php');
$this->artisan('lift:migration UserMigration --namespace=Tests\\\Datasets\\')
->assertExitCode(0);
expect($migrationClass)->toBeFileWithContent(UserMigrationCreate());
unlink($migrationClass);
});
});
describe('UPDATE TABLE', function () {
it('generates a migration file for a model adding and dropping columns', function () {
$migrationClass = database_path('migrations/' . date('Y_m_d_His') . '_update_users_migrated_table.php');
$this->artisan('lift:migration UserMigratedUpdateTable --namespace=Tests\\\Datasets')
->assertExitCode(0);
expect($migrationClass)->toBeFileWithContent(UserMigrationAddColumns());
unlink($migrationClass);
});
it('generates a migration file for a model adding and dropping columns if namespace ends with slash', function () {
$migrationClass = database_path('migrations/' . date('Y_m_d_His') . '_update_users_migrated_table.php');
$this->artisan('lift:migration UserMigratedUpdateTable --namespace=Tests\\\Datasets\\')
->assertExitCode(0);
expect($migrationClass)->toBeFileWithContent(UserMigrationAddColumns());
unlink($migrationClass);
});
});
function UserMigrationCreate(): string
{
return <<<'CLASS'
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('users_migration', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('email');
$table->string('password');
$table->boolean('active')->nullable();
$table->string('test');
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('users_migration');
}
};
CLASS;
}
function UserMigrationAddColumns(): string
{
return <<<'CLASS'
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('users_migrated', function (Blueprint $table) {
$table->string('username')->after('name');
$table->boolean('active')->nullable()->after('password');
$table->softDeletes();
$table->dropColumn('created_at');
$table->dropColumn('updated_at');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
// Nothing to do here
}
};
CLASS;
}