60 lines
1.9 KiB
PHP
60 lines
1.9 KiB
PHP
<?php
|
|
|
|
use App\Filament\Resources\EntraGroupSyncRunResource\Pages\ListEntraGroupSyncRuns;
|
|
use App\Models\Tenant;
|
|
use Filament\Facades\Filament;
|
|
use Illuminate\Support\Facades\Notification;
|
|
use Illuminate\Support\Facades\Queue;
|
|
use Livewire\Livewire;
|
|
|
|
describe('Entra group sync runs UI enforcement', function () {
|
|
beforeEach(function () {
|
|
Queue::fake();
|
|
Notification::fake();
|
|
});
|
|
|
|
it('does not expose a sync action for non-members', function () {
|
|
// Mount as a valid tenant member first, then revoke membership mid-session.
|
|
[$user, $tenant] = createUserWithTenant(role: 'owner');
|
|
|
|
$this->actingAs($user);
|
|
$tenant->makeCurrent();
|
|
Filament::setTenant($tenant, true);
|
|
|
|
$component = Livewire::test(ListEntraGroupSyncRuns::class);
|
|
|
|
$user->tenants()->detach($tenant->getKey());
|
|
app(\App\Services\Auth\CapabilityResolver::class)->clearCache();
|
|
|
|
expect($component->instance()->getAction([['name' => 'sync_groups']]))->toBeNull();
|
|
|
|
Queue::assertNothingPushed();
|
|
});
|
|
|
|
it('does not expose a sync action for readonly members', function () {
|
|
[$user, $tenant] = createUserWithTenant(role: 'readonly');
|
|
|
|
$this->actingAs($user);
|
|
$tenant->makeCurrent();
|
|
Filament::setTenant($tenant, true);
|
|
|
|
$component = Livewire::test(ListEntraGroupSyncRuns::class);
|
|
expect($component->instance()->getAction([['name' => 'sync_groups']]))->toBeNull();
|
|
|
|
Queue::assertNothingPushed();
|
|
});
|
|
|
|
it('does not expose a sync action for owner members', function () {
|
|
[$user, $tenant] = createUserWithTenant(role: 'owner');
|
|
|
|
$this->actingAs($user);
|
|
$tenant->makeCurrent();
|
|
Filament::setTenant($tenant, true);
|
|
|
|
$component = Livewire::test(ListEntraGroupSyncRuns::class);
|
|
expect($component->instance()->getAction([['name' => 'sync_groups']]))->toBeNull();
|
|
|
|
Queue::assertNothingPushed();
|
|
});
|
|
});
|