TenantAtlas/apps/platform/tests/Feature/ProviderConnections/TenantlessListScopingTest.php
Ahmed Darrazi 1123b122d9
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 7m13s
feat: cut over tenant core to managed environments
2026-05-07 08:35:42 +02:00

36 lines
1.2 KiB
PHP

<?php
declare(strict_types=1);
use App\Models\ProviderConnection;
use App\Models\ManagedEnvironment;
it('scopes canonical provider connections list by tenant membership', function (): void {
$tenantA = ManagedEnvironment::factory()->create();
$tenantB = ManagedEnvironment::factory()->create([
'workspace_id' => (int) $tenantA->workspace_id,
]);
[$user] = createUserWithTenant(tenant: $tenantA, role: 'owner');
ProviderConnection::factory()->create([
'workspace_id' => (int) $tenantA->workspace_id,
'managed_environment_id' => (int) $tenantA->getKey(),
'display_name' => 'ManagedEnvironment A Connection',
'provider' => 'microsoft',
]);
ProviderConnection::factory()->create([
'workspace_id' => (int) $tenantB->workspace_id,
'managed_environment_id' => (int) $tenantB->getKey(),
'display_name' => 'ManagedEnvironment B Connection',
'provider' => 'microsoft',
]);
$this->actingAs($user)
->get('/admin/provider-connections')
->assertOk()
->assertSee('ManagedEnvironment A Connection')
->assertDontSee('ManagedEnvironment B Connection');
});