mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-12 12:44:02 +00:00
Also correct docblock for ULIDGenerator and add missing @see annotations in the config file.
288 lines
7.8 KiB
PHP
288 lines
7.8 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Event;
|
|
use Illuminate\Support\Facades\Schema;
|
|
use Illuminate\Support\Str;
|
|
use Stancl\JobPipeline\JobPipeline;
|
|
use Stancl\Tenancy\Bootstrappers\DatabaseTenancyBootstrapper;
|
|
use Stancl\Tenancy\Contracts;
|
|
use Stancl\Tenancy\Contracts\UniqueIdentifierGenerator;
|
|
use Stancl\Tenancy\Database\TenantCollection;
|
|
use Stancl\Tenancy\Events\TenancyInitialized;
|
|
use Stancl\Tenancy\Events\TenantCreated;
|
|
use Stancl\Tenancy\Jobs\CreateDatabase;
|
|
use Stancl\Tenancy\Listeners\BootstrapTenancy;
|
|
use Stancl\Tenancy\Tests\Etc\Tenant;
|
|
use Stancl\Tenancy\UniqueIdentifierGenerators\UUIDGenerator;
|
|
use Stancl\Tenancy\Exceptions\TenancyNotInitializedException;
|
|
use Stancl\Tenancy\UniqueIdentifierGenerators\RandomHexGenerator;
|
|
use Stancl\Tenancy\UniqueIdentifierGenerators\RandomIntGenerator;
|
|
use Stancl\Tenancy\UniqueIdentifierGenerators\RandomStringGenerator;
|
|
use Stancl\Tenancy\UniqueIdentifierGenerators\ULIDGenerator;
|
|
use Stancl\Tenancy\UniqueIdentifierGenerators\UUIDv7Generator;
|
|
|
|
use function Stancl\Tenancy\Tests\pest;
|
|
|
|
afterEach(function () {
|
|
RandomIntGenerator::$min = 0;
|
|
RandomIntGenerator::$max = PHP_INT_MAX;
|
|
});
|
|
|
|
test('created event is dispatched', function () {
|
|
Event::fake([TenantCreated::class]);
|
|
|
|
Event::assertNotDispatched(TenantCreated::class);
|
|
|
|
Tenant::create();
|
|
|
|
Event::assertDispatched(TenantCreated::class);
|
|
});
|
|
|
|
test('current tenant can be resolved from service container using typehint', function () {
|
|
$tenant = Tenant::create();
|
|
|
|
tenancy()->initialize($tenant);
|
|
|
|
expect(app(Contracts\Tenant::class)->id)->toBe($tenant->id);
|
|
|
|
tenancy()->end();
|
|
|
|
expect(app(Contracts\Tenant::class))->toBe(null);
|
|
});
|
|
|
|
test('id is generated when no id is supplied', function () {
|
|
config(['tenancy.models.id_generator' => UUIDGenerator::class]);
|
|
|
|
$this->mock(UUIDGenerator::class, function ($mock) {
|
|
return $mock->shouldReceive('generate')->once();
|
|
});
|
|
|
|
$tenant = Tenant::create();
|
|
|
|
pest()->assertNotNull($tenant->id);
|
|
});
|
|
|
|
test('autoincrement ids are supported', function () {
|
|
Schema::drop('domains');
|
|
Schema::table('tenants', function (Blueprint $table) {
|
|
$table->bigIncrements('id')->change();
|
|
});
|
|
|
|
unset(app()[UniqueIdentifierGenerator::class]);
|
|
|
|
$tenant1 = MyTenant::create();
|
|
$tenant2 = MyTenant::create();
|
|
|
|
expect($tenant1->id)->toBe(1);
|
|
expect($tenant2->id)->toBe(2);
|
|
});
|
|
|
|
test('ulid ids are supported', function () {
|
|
app()->bind(UniqueIdentifierGenerator::class, ULIDGenerator::class);
|
|
|
|
$tenant1 = Tenant::create();
|
|
expect($tenant1->id)->toBeString();
|
|
expect(strlen($tenant1->id))->toBe(26);
|
|
|
|
$tenant2 = Tenant::create();
|
|
expect($tenant2->id)->toBeString();
|
|
expect(strlen($tenant2->id))->toBe(26);
|
|
|
|
expect($tenant2->id > $tenant1->id)->toBeTrue();
|
|
});
|
|
|
|
test('uuidv7 ids are supported', function () {
|
|
app()->bind(UniqueIdentifierGenerator::class, UUIDv7Generator::class);
|
|
|
|
$tenant1 = Tenant::create();
|
|
expect($tenant1->id)->toBeString();
|
|
expect(strlen($tenant1->id))->toBe(36);
|
|
|
|
$tenant2 = Tenant::create();
|
|
expect($tenant2->id)->toBeString();
|
|
expect(strlen($tenant2->id))->toBe(36);
|
|
|
|
expect($tenant2->id > $tenant1->id)->toBeTrue();
|
|
});
|
|
|
|
test('hex ids are supported', function () {
|
|
app()->bind(UniqueIdentifierGenerator::class, RandomHexGenerator::class);
|
|
|
|
RandomHexGenerator::$bytes = 6;
|
|
$tenant1 = Tenant::create();
|
|
expect($tenant1->id)->toBeString();
|
|
expect(strlen($tenant1->id))->toBe(12);
|
|
|
|
RandomHexGenerator::$bytes = 8;
|
|
$tenant2 = Tenant::create();
|
|
expect($tenant2->id)->toBeString();
|
|
expect(strlen($tenant2->id))->toBe(16);
|
|
|
|
RandomHexGenerator::$bytes = 6; // reset
|
|
});
|
|
|
|
test('random ints are supported', function () {
|
|
app()->bind(UniqueIdentifierGenerator::class, RandomIntGenerator::class);
|
|
RandomIntGenerator::$min = 200;
|
|
RandomIntGenerator::$max = 1000;
|
|
|
|
$tenant1 = Tenant::create();
|
|
expect($tenant1->id >= 200)->toBeTrue();
|
|
expect($tenant1->id <= 1000)->toBeTrue();
|
|
});
|
|
|
|
test('random string ids are supported', function () {
|
|
app()->bind(UniqueIdentifierGenerator::class, RandomStringGenerator::class);
|
|
|
|
RandomStringGenerator::$length = 8;
|
|
$tenant1 = Tenant::create();
|
|
expect($tenant1->id)->toBeString();
|
|
expect(strlen($tenant1->id))->toBe(8);
|
|
|
|
RandomStringGenerator::$length = 12;
|
|
$tenant2 = Tenant::create();
|
|
expect($tenant2->id)->toBeString();
|
|
expect(strlen($tenant2->id))->toBe(12);
|
|
|
|
RandomStringGenerator::$length = 8; // reset
|
|
});
|
|
|
|
test('custom tenant model can be used', function () {
|
|
$tenant = MyTenant::create();
|
|
|
|
tenancy()->initialize($tenant);
|
|
|
|
expect(tenant() instanceof MyTenant)->toBeTrue();
|
|
});
|
|
|
|
test('custom tenant model that doesnt extend vendor tenant model can be used', function () {
|
|
$tenant = AnotherTenant::create([
|
|
'id' => 'acme',
|
|
]);
|
|
|
|
tenancy()->initialize($tenant);
|
|
|
|
expect(tenant() instanceof AnotherTenant)->toBeTrue();
|
|
});
|
|
|
|
test('tenant can be created even when we are in another tenants context', function () {
|
|
config(['tenancy.bootstrappers' => [
|
|
DatabaseTenancyBootstrapper::class,
|
|
]]);
|
|
|
|
Event::listen(TenancyInitialized::class, BootstrapTenancy::class);
|
|
Event::listen(TenantCreated::class, JobPipeline::make([CreateDatabase::class])->send(function ($event) {
|
|
return $event->tenant;
|
|
})->toListener());
|
|
|
|
$tenant1 = Tenant::create([
|
|
'id' => 'foo',
|
|
'tenancy_db_name' => 'db' . Str::random(16),
|
|
]);
|
|
|
|
tenancy()->initialize($tenant1);
|
|
|
|
$tenant2 = Tenant::create([
|
|
'id' => 'bar',
|
|
'tenancy_db_name' => 'db' . Str::random(16),
|
|
]);
|
|
|
|
tenancy()->end();
|
|
|
|
expect(Tenant::count())->toBe(2);
|
|
});
|
|
|
|
test('the model uses tenant collection', function () {
|
|
Tenant::create();
|
|
Tenant::create();
|
|
|
|
expect(Tenant::count())->toBe(2);
|
|
expect(Tenant::all() instanceof TenantCollection)->toBeTrue();
|
|
});
|
|
|
|
test('a command can be run on a collection of tenants', function () {
|
|
Tenant::create([
|
|
'id' => 't1',
|
|
'foo' => 'bar',
|
|
]);
|
|
Tenant::create([
|
|
'id' => 't2',
|
|
'foo' => 'bar',
|
|
]);
|
|
|
|
Tenant::all()->runForEach(function ($tenant) {
|
|
$tenant->update([
|
|
'foo' => 'xyz',
|
|
]);
|
|
});
|
|
|
|
expect(Tenant::find('t1')->foo)->toBe('xyz');
|
|
expect(Tenant::find('t2')->foo)->toBe('xyz');
|
|
});
|
|
|
|
test('the current method returns the currently initialized tenant', function() {
|
|
tenancy()->initialize($tenant = Tenant::create());
|
|
|
|
expect(Tenant::current())->toBe($tenant);
|
|
});
|
|
|
|
test('the current method returns null if there is no currently initialized tenant', function() {
|
|
tenancy()->end();
|
|
|
|
expect(Tenant::current())->toBeNull();
|
|
});
|
|
|
|
test('currentOrFail method returns the currently initialized tenant', function() {
|
|
tenancy()->initialize($tenant = Tenant::create());
|
|
|
|
expect(Tenant::currentOrFail())->toBe($tenant);
|
|
});
|
|
|
|
test('currentOrFail method throws an exception if there is no currently initialized tenant', function() {
|
|
tenancy()->end();
|
|
|
|
expect(fn() => Tenant::currentOrFail())->toThrow(TenancyNotInitializedException::class);
|
|
});
|
|
|
|
class MyTenant extends Stancl\Tenancy\Database\Models\Tenant
|
|
{
|
|
protected $table = 'tenants';
|
|
}
|
|
|
|
class AnotherTenant extends Model implements Contracts\Tenant
|
|
{
|
|
protected $guarded = [];
|
|
|
|
protected $table = 'tenants';
|
|
|
|
public function getTenantKeyName(): string
|
|
{
|
|
return 'id';
|
|
}
|
|
|
|
public function getTenantKey(): int|string
|
|
{
|
|
return $this->getAttribute('id');
|
|
}
|
|
|
|
public function run(Closure $callback): mixed
|
|
{
|
|
$callback();
|
|
}
|
|
|
|
public function getInternal(string $key): mixed
|
|
{
|
|
return $this->$key;
|
|
}
|
|
|
|
public function setInternal(string $key, mixed $value): static
|
|
{
|
|
$this->$key = $value;
|
|
|
|
return $this;
|
|
}
|
|
}
|