## Summary - retire legacy `/admin/t` and active `/admin/tenants` product surfaces in favor of canonical workspace-scoped managed-environment routes - centralize runtime URL generation through `ManagedEnvironmentLinks` and update intended URL handling to reject legacy tenant paths - remove dormant tenant panel runtime, rename test helpers to the admin environment context, and add guard coverage for route/helper regressions ## Validation - targeted Feature guard, workspace, provider connection, required permissions, and Filament test lanes run under Sail - browser smoke coverage run for provider connection and workspace RBAC environment access flows - formatting and diff checks completed with Pint and `git diff --check` ## Notes - Filament remains on v5 with Livewire v4 - provider registration stays in `apps/platform/bootstrap/providers.php` - retired tenant resource global search is disabled and destructive action confirmation rules remain unchanged Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #352
62 lines
2.3 KiB
PHP
62 lines
2.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Filament\Resources\BaselineSnapshotResource;
|
|
use App\Filament\Resources\EvidenceSnapshotResource;
|
|
use App\Filament\Resources\OperationRunResource;
|
|
use App\Filament\Resources\TenantResource;
|
|
use App\Filament\Resources\TenantReviewResource;
|
|
use App\Models\ManagedEnvironment;
|
|
use App\Support\Workspaces\WorkspaceContext;
|
|
use Filament\Facades\Filament;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
|
|
uses(RefreshDatabase::class);
|
|
|
|
function tenantSearchTitles($results): array
|
|
{
|
|
return collect($results)->map(fn ($result): string => (string) $result->title)->all();
|
|
}
|
|
|
|
it('keeps retired tenant resources out of global search', function (): void {
|
|
$active = ManagedEnvironment::factory()->active()->create(['name' => 'Lifecycle Active']);
|
|
[$user, $active] = createUserWithTenant(tenant: $active, role: 'owner');
|
|
|
|
$onboarding = ManagedEnvironment::factory()->onboarding()->create([
|
|
'workspace_id' => (int) $active->workspace_id,
|
|
'name' => 'Lifecycle Onboarding',
|
|
]);
|
|
$draft = ManagedEnvironment::factory()->draft()->create([
|
|
'workspace_id' => (int) $active->workspace_id,
|
|
'name' => 'Lifecycle Draft',
|
|
]);
|
|
$archived = ManagedEnvironment::factory()->archived()->create([
|
|
'workspace_id' => (int) $active->workspace_id,
|
|
'name' => 'Lifecycle Archived',
|
|
]);
|
|
|
|
createUserWithTenant(tenant: $onboarding, user: $user, role: 'owner');
|
|
createUserWithTenant(tenant: $draft, user: $user, role: 'owner');
|
|
createUserWithTenant(tenant: $archived, user: $user, role: 'owner');
|
|
|
|
$this->actingAs($user);
|
|
Filament::setCurrentPanel('admin');
|
|
Filament::setTenant(null, true);
|
|
Filament::bootCurrentPanel();
|
|
|
|
session()->put(WorkspaceContext::SESSION_KEY, (int) $active->workspace_id);
|
|
|
|
$results = TenantResource::getGlobalSearchResults('Lifecycle');
|
|
|
|
expect(TenantResource::canGloballySearch())->toBeFalse()
|
|
->and(tenantSearchTitles($results))->toBe([]);
|
|
});
|
|
|
|
it('keeps first-slice taxonomy resources out of global search', function (): void {
|
|
expect(OperationRunResource::canGloballySearch())->toBeFalse()
|
|
->and(EvidenceSnapshotResource::canGloballySearch())->toBeFalse()
|
|
->and(BaselineSnapshotResource::canGloballySearch())->toBeFalse()
|
|
->and(TenantReviewResource::canGloballySearch())->toBeFalse();
|
|
});
|