create(); $tenant = ManagedEnvironment::factory()->active()->create([ 'workspace_id' => (int) $workspace->getKey(), ]); $connection = ProviderConnection::factory()->withCredential()->create([ 'workspace_id' => (int) $workspace->getKey(), 'managed_environment_id' => (int) $tenant->getKey(), ]); foreach (WorkspaceRole::cases() as $role) { $user = User::factory()->create(); WorkspaceMembership::factory()->create([ 'workspace_id' => (int) $workspace->getKey(), 'user_id' => (int) $user->getKey(), 'role' => $role->value, ]); session()->put(WorkspaceContext::SESSION_KEY, (int) $workspace->getKey()); app(CapabilityResolver::class)->clearCache(); app(ManagedEnvironmentAccessScopeResolver::class)->clearCache(); expect(Gate::forUser($user)->allows('manageDedicatedCredential', $connection))->toBe($role === WorkspaceRole::Owner); expect(Gate::forUser($user)->allows('deleteDedicatedCredential', $connection))->toBe($role === WorkspaceRole::Owner); } }); it('denies same-workspace wrong-environment provider connections as not found', function (): void { $workspace = Workspace::factory()->create(); $allowedTenant = ManagedEnvironment::factory()->active()->create([ 'workspace_id' => (int) $workspace->getKey(), ]); $deniedTenant = ManagedEnvironment::factory()->active()->create([ 'workspace_id' => (int) $workspace->getKey(), ]); $user = User::factory()->create(); WorkspaceMembership::factory()->create([ 'workspace_id' => (int) $workspace->getKey(), 'user_id' => (int) $user->getKey(), 'role' => WorkspaceRole::Manager->value, ]); ManagedEnvironmentMembership::query()->create([ 'managed_environment_id' => (int) $allowedTenant->getKey(), 'user_id' => (int) $user->getKey(), 'role' => WorkspaceRole::Readonly->value, 'source' => 'manual', ]); app(CapabilityResolver::class)->clearCache(); app(ManagedEnvironmentAccessScopeResolver::class)->clearCache(); $connection = ProviderConnection::factory()->create([ 'workspace_id' => (int) $workspace->getKey(), 'managed_environment_id' => (int) $deniedTenant->getKey(), ]); session()->put(WorkspaceContext::SESSION_KEY, (int) $workspace->getKey()); $response = Gate::forUser($user)->inspect('view', $connection); expect($response->denied())->toBeTrue() ->and($response->status())->toBe(404); });