mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-12 16:14:02 +00:00
* cleanup, resolve todos, add immediate todos * Improve path_identification_middleware docblock * rename leave() method in tests * wip fix hardcoded values making assumptions about the parameters used in routing * defaultParameterNames * fix CreatesDatabaseUsers return values * $tenant -> tenant() * resolve more todos * make comment block a complete block * Correct useTenantRoutesInFortify(), delete unused import * test fixes * remove todos * remove JobPipeline todo * simplify comment example * remove todo * fix VERSION_PREFIX in queue.yml --------- Co-authored-by: lukinovec <lukinovec@gmail.com>
63 lines
2.5 KiB
PHP
63 lines
2.5 KiB
PHP
<?php
|
|
|
|
use Stancl\Tenancy\Enums\Context;
|
|
use Stancl\Tenancy\Tests\Etc\Tenant;
|
|
use Illuminate\Support\Facades\Event;
|
|
use Illuminate\Support\Facades\Route;
|
|
use Stancl\Tenancy\Events\TenancyEnded;
|
|
use Stancl\Tenancy\Events\TenancyInitialized;
|
|
use Stancl\Tenancy\Listeners\BootstrapTenancy;
|
|
use Stancl\Tenancy\Listeners\RevertToCentralContext;
|
|
use Stancl\Tenancy\Bootstrappers\Integrations\FortifyRouteBootstrapper;
|
|
|
|
beforeEach(function () {
|
|
Event::listen(TenancyInitialized::class, BootstrapTenancy::class);
|
|
Event::listen(TenancyEnded::class, RevertToCentralContext::class);
|
|
FortifyRouteBootstrapper::$passTenantParameter = true;
|
|
});
|
|
|
|
afterEach(function () {
|
|
FortifyRouteBootstrapper::$passTenantParameter = true;
|
|
FortifyRouteBootstrapper::$fortifyRedirectMap = [];
|
|
FortifyRouteBootstrapper::$fortifyHome = 'tenant.dashboard';
|
|
FortifyRouteBootstrapper::$defaultParameterNames = false;
|
|
});
|
|
|
|
test('fortify route tenancy bootstrapper updates fortify config correctly', function() {
|
|
config(['tenancy.bootstrappers' => [FortifyRouteBootstrapper::class]]);
|
|
|
|
$originalFortifyHome = config('fortify.home');
|
|
$originalFortifyRedirects = config('fortify.redirects');
|
|
|
|
Route::get('/home', function () {
|
|
return true;
|
|
})->name($homeRouteName = 'home');
|
|
|
|
Route::get('/welcome', function () {
|
|
return true;
|
|
})->name($welcomeRouteName = 'welcome');
|
|
|
|
FortifyRouteBootstrapper::$fortifyHome = $homeRouteName;
|
|
FortifyRouteBootstrapper::$fortifyRedirectMap['login'] = $welcomeRouteName;
|
|
|
|
expect(config('fortify.home'))->toBe($originalFortifyHome);
|
|
expect(config('fortify.redirects'))->toBe($originalFortifyRedirects);
|
|
|
|
FortifyRouteBootstrapper::$passTenantParameter = true;
|
|
tenancy()->initialize($tenant = Tenant::create());
|
|
expect(config('fortify.home'))->toBe('http://localhost/home?tenant=' . $tenant->getTenantKey());
|
|
expect(config('fortify.redirects'))->toEqual(['login' => 'http://localhost/welcome?tenant=' . $tenant->getTenantKey()]);
|
|
|
|
tenancy()->end();
|
|
expect(config('fortify.home'))->toBe($originalFortifyHome);
|
|
expect(config('fortify.redirects'))->toBe($originalFortifyRedirects);
|
|
|
|
FortifyRouteBootstrapper::$passTenantParameter = false;
|
|
tenancy()->initialize($tenant);
|
|
expect(config('fortify.home'))->toBe('http://localhost/home');
|
|
expect(config('fortify.redirects'))->toEqual(['login' => 'http://localhost/welcome']);
|
|
|
|
tenancy()->end();
|
|
expect(config('fortify.home'))->toBe($originalFortifyHome);
|
|
expect(config('fortify.redirects'))->toBe($originalFortifyRedirects);
|
|
});
|