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

108 lines
3.3 KiB
PHP

<?php
declare(strict_types=1);
use App\Filament\Resources\AlertRuleResource;
use App\Filament\Resources\BaselineProfileResource;
use App\Filament\Resources\TenantResource;
use App\Models\AlertRule;
use App\Models\BaselineProfile;
use App\Models\ManagedEnvironment;
use App\Support\Workspaces\WorkspaceContext;
use Filament\Facades\Filament;
use Illuminate\Foundation\Testing\RefreshDatabase;
uses(RefreshDatabase::class);
it('keeps workspace-only admin surfaces accessible without canonical tenant context', function (): void {
[$user, $tenant] = createUserWithTenant(role: 'owner');
AlertRule::factory()->create([
'workspace_id' => (int) $tenant->workspace_id,
'name' => 'Workspace alert rule',
]);
BaselineProfile::factory()->active()->create([
'workspace_id' => (int) $tenant->workspace_id,
'name' => 'Workspace baseline',
]);
$this->actingAs($user);
Filament::setTenant(null, true);
$session = [
WorkspaceContext::SESSION_KEY => (int) $tenant->workspace_id,
];
$this->withSession($session)
->get(AlertRuleResource::getUrl(panel: 'admin'))
->assertOk()
->assertSee('Workspace alert rule');
$this->withSession($session)
->get(BaselineProfileResource::getUrl(panel: 'admin'))
->assertOk()
->assertSee('Workspace baseline');
$this->withSession($session)
->get(TenantResource::getUrl(panel: 'admin'))
->assertOk()
->assertSee($tenant->name);
});
it('keeps workspace-only admin surfaces independent from remembered tenant changes', function (): void {
$tenantA = ManagedEnvironment::factory()->create([
'name' => 'Phoenicon',
'environment' => 'dev',
]);
[$user, $tenantA] = createUserWithTenant(tenant: $tenantA, role: 'owner');
$tenantB = ManagedEnvironment::factory()->create([
'workspace_id' => (int) $tenantA->workspace_id,
'name' => 'YPTW2',
'environment' => 'dev',
]);
createUserWithTenant(tenant: $tenantB, user: $user, role: 'owner');
AlertRule::factory()->create([
'workspace_id' => (int) $tenantA->workspace_id,
'name' => 'Workspace-wide alert rule',
]);
BaselineProfile::factory()->active()->create([
'workspace_id' => (int) $tenantA->workspace_id,
'name' => 'Workspace-wide baseline',
]);
$this->actingAs($user);
Filament::setTenant(null, true);
$workspaceId = (int) $tenantA->workspace_id;
foreach ([$tenantA, $tenantB] as $rememberedTenant) {
$session = [
WorkspaceContext::SESSION_KEY => $workspaceId,
WorkspaceContext::LAST_TENANT_IDS_SESSION_KEY => [
(string) $workspaceId => (int) $rememberedTenant->getKey(),
],
];
$this->withSession($session)
->get(AlertRuleResource::getUrl(panel: 'admin'))
->assertOk()
->assertSee('Workspace-wide alert rule');
$this->withSession($session)
->get(BaselineProfileResource::getUrl(panel: 'admin'))
->assertOk()
->assertSee('Workspace-wide baseline');
$this->withSession($session)
->get(TenantResource::getUrl(panel: 'admin'))
->assertOk()
->assertSee('Phoenicon')
->assertSee('YPTW2');
}
});