mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-12 20:34:03 +00:00
* Using laravel components * Ensure commands returns success * update tests * clean * bump EndBug version * Update ci.yml * Update ci.yml * Update ci.yml * revert CI changes * Update ci.yml * Update ci.yml * Update ci.yml * revert CI changes to it's original state * fix typos, improve code * improve Install & TenantList commands * php-cs-fixer * type GitHub properly Co-authored-by: Abrar Ahmad <abrar.dev99@gmail.com> Co-authored-by: Samuel Štancl <samuel@archte.ch> Co-authored-by: Samuel Štancl <samuel.stancl@gmail.com>
82 lines
2.5 KiB
PHP
82 lines
2.5 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Illuminate\Support\Facades\Artisan;
|
|
use Illuminate\Support\Facades\Event;
|
|
use Stancl\Tenancy\Database\Concerns\MaintenanceMode;
|
|
use Illuminate\Support\Facades\Route;
|
|
use Stancl\Tenancy\Middleware\CheckTenantForMaintenanceMode;
|
|
use Stancl\Tenancy\Middleware\InitializeTenancyByDomain;
|
|
use Stancl\Tenancy\Tests\Etc\Tenant;
|
|
|
|
test('tenants can be in maintenance mode', function () {
|
|
Route::get('/foo', function () {
|
|
return 'bar';
|
|
})->middleware([InitializeTenancyByDomain::class, CheckTenantForMaintenanceMode::class]);
|
|
|
|
$tenant = MaintenanceTenant::create();
|
|
$tenant->domains()->create([
|
|
'domain' => 'acme.localhost',
|
|
]);
|
|
|
|
pest()->get('http://acme.localhost/foo')->assertStatus(200);
|
|
|
|
$tenant->putDownForMaintenance();
|
|
|
|
tenancy()->end(); // End tenancy before making a request
|
|
pest()->get('http://acme.localhost/foo')->assertStatus(503);
|
|
|
|
$tenant->bringUpFromMaintenance();
|
|
|
|
tenancy()->end(); // End tenancy before making a request
|
|
pest()->get('http://acme.localhost/foo')->assertStatus(200);
|
|
});
|
|
|
|
test('maintenance mode events are fired', function () {
|
|
$tenant = MaintenanceTenant::create();
|
|
|
|
Event::fake();
|
|
|
|
$tenant->putDownForMaintenance();
|
|
|
|
Event::assertDispatched(\Stancl\Tenancy\Events\TenantMaintenanceModeEnabled::class);
|
|
|
|
$tenant->bringUpFromMaintenance();
|
|
|
|
Event::assertDispatched(\Stancl\Tenancy\Events\TenantMaintenanceModeDisabled::class);
|
|
});
|
|
|
|
test('tenants can be put into maintenance mode using artisan commands', function() {
|
|
Route::get('/foo', function () {
|
|
return 'bar';
|
|
})->middleware([InitializeTenancyByDomain::class, CheckTenantForMaintenanceMode::class]);
|
|
|
|
$tenant = MaintenanceTenant::create();
|
|
$tenant->domains()->create([
|
|
'domain' => 'acme.localhost',
|
|
]);
|
|
|
|
pest()->get('http://acme.localhost/foo')->assertStatus(200);
|
|
|
|
pest()->artisan('tenants:down')
|
|
->expectsOutputToContain('Tenants are now in maintenance mode.')
|
|
->assertExitCode(0);
|
|
|
|
Artisan::call('tenants:down');
|
|
|
|
tenancy()->end(); // End tenancy before making a request
|
|
pest()->get('http://acme.localhost/foo')->assertStatus(503);
|
|
|
|
pest()->artisan('tenants:up')
|
|
->expectsOutputToContain('Tenants are now out of maintenance mode.')
|
|
->assertExitCode(0);
|
|
|
|
tenancy()->end(); // End tenancy before making a request
|
|
pest()->get('http://acme.localhost/foo')->assertStatus(200);
|
|
});
|
|
|
|
class MaintenanceTenant extends Tenant
|
|
{
|
|
use MaintenanceMode;
|
|
}
|