TenantAtlas/apps/platform/tests/Feature/Baselines/BaselineProfileWorkspaceOwnershipTest.php
Ahmed Darrazi 36c41f1021
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 1m44s
fix: gate environment navigation by route scope
2026-05-13 11:32:56 +02:00

52 lines
2.0 KiB
PHP

<?php
declare(strict_types=1);
use App\Filament\Resources\BaselineProfileResource;
use App\Models\BaselineProfile;
use App\Support\Baselines\BaselineProfileStatus;
use Filament\Facades\Filament;
use Illuminate\Http\Request;
it('keeps baseline profiles workspace-owned while environment navigation is route scoped', function (): void {
Filament::setCurrentPanel('admin');
[$user, $tenant] = createUserWithTenant(role: 'owner');
app()->instance('request', Request::create('/admin/workspaces/'.$tenant->workspace_id));
expect(BaselineProfileResource::shouldRegisterNavigation())->toBeFalse();
app()->instance('request', Request::create('/admin/workspaces/'.$tenant->workspace_id.'/environments/'.$tenant->slug));
expect(BaselineProfileResource::shouldRegisterNavigation())->toBeTrue();
$this->actingAs($user)
->withSession([\App\Support\Workspaces\WorkspaceContext::SESSION_KEY => (int) $tenant->workspace_id])
->get("/admin/t/{$tenant->external_id}")
->assertNotFound();
});
it('keeps baseline profile urls workspace-owned even when a tenant context exists', function (): void {
[$user, $tenant] = createUserWithTenant(role: 'owner');
$profile = BaselineProfile::factory()->create([
'workspace_id' => (int) $tenant->workspace_id,
'status' => BaselineProfileStatus::Archived->value,
]);
$this->actingAs($user)
->withSession([\App\Support\Workspaces\WorkspaceContext::SESSION_KEY => (int) $tenant->workspace_id]);
$workspaceUrl = BaselineProfileResource::getUrl(panel: 'admin');
expect($workspaceUrl)->toContain('/admin/baseline-profiles');
expect($workspaceUrl)->not->toContain("/admin/t/{$tenant->external_id}/baseline-profiles");
$this->get($workspaceUrl)->assertOk();
$this->get(BaselineProfileResource::getUrl('view', ['record' => $profile], panel: 'admin'))->assertOk();
$this->get("/admin/t/{$tenant->external_id}/baseline-profiles")->assertNotFound();
expect($profile->fresh()->status)->toBe(BaselineProfileStatus::Archived);
});