TenantAtlas/apps/platform/tests/Feature/Findings/FindingWorkflowUiEnforcementTest.php
ahmido e64bae9cfc feat: cut over tenant core to managed environments (#335)
## Summary
- replace the legacy Tenant and TenantMembership core models with ManagedEnvironment and ManagedEnvironmentMembership
- propagate the managed environment naming and key changes across Filament resources, pages, controllers, jobs, models, and supporting runtime paths
- add feature 279 spec artifacts and focused managed-environment test coverage for model behavior, route binding, panel context, authorization, and legacy guardrails

## Validation
- `cd apps/platform && ./vendor/bin/sail artisan test --compact tests/Feature/ManagedEnvironment/LegacyTenantCoreGuardTest.php tests/Feature/ManagedEnvironment/ManagedEnvironmentAuthorizationTest.php tests/Feature/ManagedEnvironment/ManagedEnvironmentPanelContextTest.php tests/Feature/ManagedEnvironment/ManagedEnvironmentRouteBindingTest.php tests/Unit/ManagedEnvironment/ManagedEnvironmentContextResolverTest.php tests/Unit/ManagedEnvironment/ManagedEnvironmentModelTest.php`
- `cd apps/platform && ./vendor/bin/sail bin pint --dirty --format agent`

## Notes
- branch pushed from commit `1123b122`
- browser smoke test file was added but not run in this pass

Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de>
Reviewed-on: #335
2026-05-07 06:38:14 +00:00

95 lines
4.0 KiB
PHP

<?php
declare(strict_types=1);
use App\Filament\Resources\FindingResource\Pages\ListFindings;
use App\Filament\Resources\FindingResource\Pages\ViewFinding;
use App\Models\Finding;
use App\Models\ManagedEnvironment;
use App\Support\Workspaces\WorkspaceContext;
use Filament\Facades\Filament;
use Livewire\Livewire;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
it('keeps readonly workflow actions visible but disabled on list and view surfaces', function (): void {
[$user, $tenant] = createUserWithTenant(role: 'readonly');
$this->actingAs($user);
Filament::setTenant($tenant, true);
$finding = $this->makeFindingForWorkflow($tenant, Finding::STATUS_NEW);
Livewire::test(ListFindings::class)
->assertTableActionVisible('triage', $finding)
->assertTableActionDisabled('triage', $finding)
->assertTableActionVisible('resolve', $finding)
->assertTableActionDisabled('resolve', $finding)
->assertTableActionVisible('request_exception', $finding)
->assertTableActionDisabled('request_exception', $finding);
Livewire::test(ViewFinding::class, ['record' => $finding->getKey()])
->assertActionVisible('triage')
->assertActionDisabled('triage')
->assertActionVisible('resolve')
->assertActionDisabled('resolve')
->assertActionVisible('request_exception')
->assertActionDisabled('request_exception');
});
it('preserves the expected workflow action surface by finding status', function (): void {
[$user, $tenant] = $this->actingAsFindingOperator('owner');
$newFinding = $this->makeFindingForWorkflow($tenant, Finding::STATUS_NEW);
$triagedFinding = $this->makeFindingForWorkflow($tenant, Finding::STATUS_TRIAGED);
$resolvedFinding = $this->makeFindingForWorkflow($tenant, Finding::STATUS_RESOLVED);
Livewire::test(ListFindings::class)
->assertTableActionVisible('triage', $newFinding)
->assertTableActionHidden('start_progress', $newFinding)
->assertTableActionVisible('start_progress', $triagedFinding)
->assertTableActionHidden('reopen', $triagedFinding)
->filterTable('open', false)
->assertTableActionVisible('reopen', $resolvedFinding)
->assertTableActionHidden('triage', $resolvedFinding)
->assertTableActionHidden('close', $resolvedFinding)
->assertTableActionHidden('request_exception', $resolvedFinding);
Livewire::test(ViewFinding::class, ['record' => $resolvedFinding->getKey()])
->assertActionVisible('reopen')
->assertActionHidden('triage')
->assertActionHidden('close')
->assertActionHidden('request_exception');
});
it('returns 404 when forged foreign-tenant workflow actions are mounted for protected actions', function (): void {
$tenantA = ManagedEnvironment::factory()->create();
[$user, $tenantA] = createUserWithTenant(tenant: $tenantA, role: 'owner');
$tenantB = ManagedEnvironment::factory()->create([
'workspace_id' => (int) $tenantA->workspace_id,
]);
createUserWithTenant(tenant: $tenantB, user: $user, role: 'owner');
$foreignFinding = $this->makeFindingForWorkflow($tenantB, Finding::STATUS_TRIAGED);
$this->actingAs($user);
Filament::setCurrentPanel('admin');
Filament::setTenant(null, true);
Filament::bootCurrentPanel();
session()->put(WorkspaceContext::SESSION_KEY, (int) $tenantA->workspace_id);
session()->put(WorkspaceContext::LAST_TENANT_IDS_SESSION_KEY, [
(string) $tenantA->workspace_id => (int) $tenantA->getKey(),
]);
$component = Livewire::actingAs($user)->test(ListFindings::class);
expect(fn () => $component->instance()->mountTableAction('start_progress', (string) $foreignFinding->getKey()))
->toThrow(NotFoundHttpException::class);
expect(fn () => $component->instance()->mountTableAction('request_exception', (string) $foreignFinding->getKey()))
->toThrow(NotFoundHttpException::class);
expect($foreignFinding->refresh()->status)->toBe(Finding::STATUS_TRIAGED);
});