44 lines
1.4 KiB
PHP
44 lines
1.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Filament\Resources\ProviderConnectionResource\Pages\EditProviderConnection;
|
|
use App\Models\ProviderConnection;
|
|
use Filament\Facades\Filament;
|
|
use Livewire\Livewire;
|
|
|
|
describe('Edit provider connection actions UI enforcement', function () {
|
|
it('returns 403 for readonly members on the edit page', function () {
|
|
[$user, $tenant] = createUserWithTenant(role: 'readonly');
|
|
|
|
$this->actingAs($user);
|
|
$tenant->makeCurrent();
|
|
Filament::setTenant($tenant, true);
|
|
|
|
$connection = ProviderConnection::factory()->create([
|
|
'tenant_id' => $tenant->getKey(),
|
|
'status' => 'disabled',
|
|
]);
|
|
|
|
$this->get('/admin/provider-connections/'.$connection->getKey().'/edit')
|
|
->assertForbidden();
|
|
});
|
|
|
|
it('shows enable connection action as enabled for owner members', function () {
|
|
[$user, $tenant] = createUserWithTenant(role: 'owner');
|
|
|
|
$this->actingAs($user);
|
|
$tenant->makeCurrent();
|
|
Filament::setTenant($tenant, true);
|
|
|
|
$connection = ProviderConnection::factory()->create([
|
|
'tenant_id' => $tenant->getKey(),
|
|
'status' => 'disabled',
|
|
]);
|
|
|
|
Livewire::test(EditProviderConnection::class, ['record' => $connection->getRouteKey()])
|
|
->assertActionVisible('enable_connection')
|
|
->assertActionEnabled('enable_connection');
|
|
});
|
|
});
|