TenantAtlas/apps/platform/tests/Feature/Findings/FindingWorkflowUiEnforcementTest.php
ahmido ce0615a9c1 Spec 182: relocate Laravel platform to apps/platform (#213)
## Summary
- move the Laravel application into `apps/platform` and keep the repository root for orchestration, docs, and tooling
- update the local command model, Sail/Docker wiring, runtime paths, and ignore rules around the new platform location
- add relocation quickstart/contracts plus focused smoke coverage for bootstrap, command model, routes, and runtime behavior

## Validation
- `cd apps/platform && ./vendor/bin/sail artisan test --compact tests/Feature/PlatformRelocation`
- integrated browser smoke validated `/up`, `/`, `/admin`, `/admin/choose-workspace`, and tenant route semantics for `200`, `403`, and `404`

## Remaining Rollout Checks
- validate Dokploy build context and working-directory assumptions against the new `apps/platform` layout
- confirm web, queue, and scheduler processes all start from the expected working directory in staging/production
- verify no legacy volume mounts or asset-publish paths still point at the old root-level `public/` or `storage/` locations

Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de>
Reviewed-on: #213
2026-04-08 08:40:47 +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\Tenant;
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 = Tenant::factory()->create();
[$user, $tenantA] = createUserWithTenant(tenant: $tenantA, role: 'owner');
$tenantB = Tenant::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);
});