1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-05-06 15:24:03 +00:00

Simplify tests

This commit is contained in:
lukinovec 2026-05-05 11:59:48 +02:00
parent 841d8cdf42
commit 00f4e9fcc0

View file

@ -516,133 +516,50 @@ test('migrate fresh command only deletes tenant databases if drop_tenant_databas
}
})->with([true, false]);
test('migrate command skips specified tenants', function () {
test('migrate commands can skip specified tenants', function (string $command) {
$tenant1 = Tenant::create();
$tenant2 = Tenant::create();
$tenant3 = Tenant::create();
Artisan::call('tenants:migrate', [
'--skip-tenants' => [$tenant2->getTenantKey()],
]);
pest()->artisan("{$command} --skip-tenants={$tenant1->getTenantKey()} --skip-tenants={$tenant2->getTenantKey()}");
tenancy()->initialize($tenant1);
expect(Schema::hasTable('users'))->toBeTrue();
tenancy()->end();
expect(Schema::hasTable('users'))->toBeFalse();
tenancy()->initialize($tenant2);
expect(Schema::hasTable('users'))->toBeFalse();
tenancy()->end();
tenancy()->initialize($tenant3);
expect(Schema::hasTable('users'))->toBeTrue();
tenancy()->end();
});
test('migrate command skips multiple tenants', function () {
$tenant1 = Tenant::create();
$tenant2 = Tenant::create();
$tenant3 = Tenant::create();
Artisan::call('tenants:migrate', [
'--skip-tenants' => [$tenant1->getTenantKey(), $tenant2->getTenantKey()],
})->with([
'tenants:migrate',
'tenants:migrate-fresh',
]);
tenancy()->initialize($tenant1);
expect(Schema::hasTable('users'))->toBeFalse();
tenancy()->end();
test('run command can skip specified tenants', function () {
$tenant1 = Tenant::create()->getTenantKey();
$tenant2 = Tenant::create()->getTenantKey();
$tenant3 = Tenant::create()->getTenantKey();
tenancy()->initialize($tenant2);
expect(Schema::hasTable('users'))->toBeFalse();
tenancy()->end();
tenancy()->initialize($tenant3);
expect(Schema::hasTable('users'))->toBeTrue();
tenancy()->end();
});
test('run command skips specified tenants', function () {
$tenant1 = Tenant::create();
$tenant2 = Tenant::create();
$tenant3 = Tenant::create();
Artisan::call('tenants:migrate-fresh');
$id1 = $tenant1->getTenantKey();
$id2 = $tenant2->getTenantKey();
$id3 = $tenant3->getTenantKey();
pest()->artisan("tenants:run --skip-tenants=$id2 'foo foo --b=bar --c=xyz'")
->expectsOutputToContain("Tenant: $id1")
->doesntExpectOutputToContain("Tenant: $id2")
->expectsOutputToContain("Tenant: $id3")
->assertExitCode(0);
});
test('run command skips multiple tenants', function () {
$tenant1 = Tenant::create();
$tenant2 = Tenant::create();
$tenant3 = Tenant::create();
Artisan::call('tenants:migrate-fresh');
$id1 = $tenant1->getTenantKey();
$id2 = $tenant2->getTenantKey();
$id3 = $tenant3->getTenantKey();
pest()->artisan("tenants:run --skip-tenants=$id1 --skip-tenants=$id2 'foo foo --b=bar --c=xyz'")
->doesntExpectOutputToContain("Tenant: $id1")
->doesntExpectOutputToContain("Tenant: $id2")
->expectsOutputToContain("Tenant: $id3")
pest()->artisan("tenants:run --skip-tenants=$tenant1 --skip-tenants=$tenant2 'bar foo foo@bar foobar arg --option=option'")
->doesntExpectOutputToContain("Tenant: $tenant1")
->doesntExpectOutputToContain("Tenant: $tenant2")
->expectsOutputToContain("Tenant: $tenant3")
->assertExitCode(0);
});
test('tenants and skip-tenants options can be used together', function () {
$tenant1 = Tenant::create();
$tenant2 = Tenant::create();
$tenant3 = Tenant::create();
Artisan::call('tenants:migrate-fresh');
$id1 = $tenant1->getTenantKey();
$id2 = $tenant2->getTenantKey();
$id3 = $tenant3->getTenantKey();
$tenant1 = Tenant::create()->getTenantKey();
$tenant2 = Tenant::create()->getTenantKey();
$tenant3 = Tenant::create()->getTenantKey();
// Scope to tenant1+tenant2, then skip tenant2 — only tenant1 should run
pest()->artisan("tenants:run --tenants=$id1 --tenants=$id2 --skip-tenants=$id2 'foo foo --b=bar --c=xyz'")
->expectsOutputToContain("Tenant: $id1")
->doesntExpectOutputToContain("Tenant: $id2")
->doesntExpectOutputToContain("Tenant: $id3")
pest()->artisan("tenants:run --tenants=$tenant1 --tenants=$tenant2 --skip-tenants=$tenant2 'bar foo foo@bar foobar arg --option=option'")
->expectsOutputToContain("Tenant: $tenant1")
->doesntExpectOutputToContain("Tenant: $tenant2")
->doesntExpectOutputToContain("Tenant: $tenant3")
->assertExitCode(0);
});
test('migrate-fresh command skips specified tenants', function () {
$tenant1 = Tenant::create();
$tenant2 = Tenant::create();
// Migrate all tenants first so both have the users table
Artisan::call('tenants:migrate');
tenancy()->initialize($tenant1);
expect(Schema::hasTable('users'))->toBeTrue();
tenancy()->end();
tenancy()->initialize($tenant2);
expect(Schema::hasTable('users'))->toBeTrue();
tenancy()->end();
// migrate-fresh on tenant1 only (skip tenant2)
pest()->artisan('tenants:migrate-fresh', [
'--skip-tenants' => [$tenant2->getTenantKey()],
'--force' => true,
])->assertExitCode(0);
// tenant1 should still have the table (re-created by migrate-fresh)
tenancy()->initialize($tenant1);
expect(Schema::hasTable('users'))->toBeTrue();
tenancy()->end();
// tenant2 was skipped, so its DB is untouched — table still exists
tenancy()->initialize($tenant2);
expect(Schema::hasTable('users'))->toBeTrue();
tenancy()->end();
});