mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-12 14:14:04 +00:00
* Add BroadcastTenancyBootstrapper and TenancyBroadcastManager * Fix code style (php-cs-fixer) * Bind original BroadcastManager again on `revert()` * Fix code style (php-cs-fixer) * Move manager to correct directory * Fix property type * Make BroadcastTenancyBootstrapper a singleton in tests * Fix code style (php-cs-fixer) * Bind the original broadcaster instance on `revert()` * Instead of just forgetting the old broadcaster instance, bind the new one * Add BroadcastTenancyBootstrapper tests * Separate the test * Fix code style (php-cs-fixer) * Add bootstrapper test * Add broadcaster channels test * Clean up BootstrapperTest * Fix BroadcastingTest * Add comments to TenancyBroadcastManager * Add BroadcastTenancyBootstrapper comments * Simplify BroadcastManager extension, remove setDriver method * Add comment * Fix PHPStan errors * Fix PHPStan errors * Remove duplicate import * Fix test * Delete `::class` from test name Co-authored-by: Samuel Štancl <samuel.stancl@gmail.com> * Create databases for newly created tenants in BroadcastingTest * move spatie/invade to require --------- Co-authored-by: PHP CS Fixer <phpcsfixer@example.com> Co-authored-by: Samuel Štancl <samuel.stancl@gmail.com>
65 lines
2.2 KiB
PHP
65 lines
2.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Illuminate\Support\Facades\Event;
|
|
use Stancl\Tenancy\Events\TenancyEnded;
|
|
use Illuminate\Support\Facades\Broadcast;
|
|
use Stancl\Tenancy\TenancyBroadcastManager;
|
|
use Illuminate\Broadcasting\BroadcastManager;
|
|
use Stancl\Tenancy\Events\TenancyInitialized;
|
|
use Stancl\Tenancy\Listeners\BootstrapTenancy;
|
|
use Stancl\Tenancy\Tests\Etc\TestingBroadcaster;
|
|
use Stancl\Tenancy\Listeners\RevertToCentralContext;
|
|
use Illuminate\Contracts\Broadcasting\Broadcaster as BroadcasterContract;
|
|
|
|
beforeEach(function() {
|
|
withTenantDatabases();
|
|
Event::listen(TenancyInitialized::class, BootstrapTenancy::class);
|
|
Event::listen(TenancyEnded::class, RevertToCentralContext::class);
|
|
});
|
|
|
|
test('bound broadcaster instance is the same before initializing tenancy and after ending it', function() {
|
|
config(['broadcasting.default' => 'null']);
|
|
TenancyBroadcastManager::$tenantBroadcasters[] = 'null';
|
|
|
|
$originalBroadcaster = app(BroadcasterContract::class);
|
|
|
|
tenancy()->initialize(Tenant::create());
|
|
|
|
// TenancyBroadcastManager binds new broadcaster
|
|
$tenantBroadcaster = app(BroadcastManager::class)->driver();
|
|
|
|
expect($tenantBroadcaster)->not()->toBe($originalBroadcaster);
|
|
|
|
tenancy()->end();
|
|
|
|
expect($originalBroadcaster)->toBe(app(BroadcasterContract::class));
|
|
});
|
|
|
|
test('new broadcasters get the channels from the previously bound broadcaster', function() {
|
|
config([
|
|
'broadcasting.default' => $driver = 'testing',
|
|
'broadcasting.connections.testing.driver' => $driver,
|
|
]);
|
|
|
|
TenancyBroadcastManager::$tenantBroadcasters[] = $driver;
|
|
|
|
$registerTestingBroadcaster = fn() => app(BroadcastManager::class)->extend('testing', fn($app, $config) => new TestingBroadcaster('testing'));
|
|
$getCurrentChannels = fn() => array_keys(invade(app(BroadcastManager::class)->driver())->channels);
|
|
|
|
$registerTestingBroadcaster();
|
|
Broadcast::channel($channel = 'testing-channel', fn() => true);
|
|
|
|
expect($channel)->toBeIn($getCurrentChannels());
|
|
|
|
tenancy()->initialize(Tenant::create());
|
|
$registerTestingBroadcaster();
|
|
|
|
expect($channel)->toBeIn($getCurrentChannels());
|
|
|
|
tenancy()->end();
|
|
$registerTestingBroadcaster();
|
|
|
|
expect($channel)->toBeIn($getCurrentChannels());
|
|
});
|