TenantAtlas/apps/platform/tests/Feature/Onboarding/EnvironmentLifecyclePresentationCopyTest.php
Ahmed Darrazi 5443dba269
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 7m2s
refactor: consolidate internal tenant model naming
2026-05-14 13:09:36 +02:00

71 lines
2.5 KiB
PHP

<?php
declare(strict_types=1);
use App\Filament\Pages\Workspaces\ManagedEnvironmentOnboardingWizard;
use App\Models\ManagedEnvironment;
use App\Models\User;
use App\Models\Workspace;
use App\Models\WorkspaceMembership;
use App\Support\Workspaces\WorkspaceContext;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Livewire\Livewire;
uses(RefreshDatabase::class);
it('shows canonical lifecycle copy on selectable environment cards', function (): void {
$workspace = Workspace::factory()->create(['name' => 'Workspace A']);
$user = User::factory()->create();
WorkspaceMembership::factory()->create([
'workspace_id' => $workspace->getKey(),
'user_id' => $user->getKey(),
'role' => 'owner',
]);
$tenant = ManagedEnvironment::factory()->active()->create([
'workspace_id' => $workspace->getKey(),
'name' => 'Active Card ManagedEnvironment',
]);
$user->tenants()->syncWithoutDetaching([
$tenant->getKey() => ['role' => 'owner'],
]);
$this->actingAs($user)
->withSession([WorkspaceContext::SESSION_KEY => (int) $workspace->getKey()])
->get('/admin/choose-environment')
->assertSuccessful()
->assertSee('Active Card ManagedEnvironment')
->assertSee('Active')
->assertSee('Active environment available for normal operations.');
});
it('labels the onboarding linked environment action with the canonical lifecycle name', function (): void {
$workspace = Workspace::factory()->create();
$tenant = ManagedEnvironment::factory()->onboarding()->create([
'workspace_id' => (int) $workspace->getKey(),
'name' => 'Onboarding Linked ManagedEnvironment',
]);
[$user, $tenant] = createUserWithTenant(tenant: $tenant, role: 'owner', ensureDefaultMicrosoftProviderConnection: false);
session()->put(WorkspaceContext::SESSION_KEY, (int) $workspace->getKey());
$draft = createOnboardingDraft([
'workspace' => $workspace,
'tenant' => $tenant,
'started_by' => $user,
'updated_by' => $user,
'state' => [
'entra_tenant_id' => (string) $tenant->managed_environment_id,
'environment_name' => (string) $tenant->name,
],
]);
Livewire::actingAs($user)
->test(ManagedEnvironmentOnboardingWizard::class, [
'onboardingDraft' => (int) $draft->getKey(),
])
->assertActionHasLabel('view_linked_environment', 'View environment (Onboarding)');
});