TenantAtlas/apps/platform/tests/Feature/Filament/TenantGlobalSearchLifecycleScopeTest.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

71 lines
2.6 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 tenant global-search aligned with administrative discoverability in the current workspace', 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(tenantSearchTitles($results))->toEqualCanonicalizing([
'Lifecycle Active',
'Lifecycle Onboarding',
'Lifecycle Draft',
'Lifecycle Archived',
]);
expect($results->first()?->url)
->not->toBeNull();
expect(collect($results)->filter(fn ($result): bool => filled($result->url))->count())
->toBe($results->count());
});
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();
});