TenantAtlas/apps/platform/tests/Unit/Providers/ProviderConnectionClassifierTest.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

127 lines
4.6 KiB
PHP

<?php
declare(strict_types=1);
use App\Models\ProviderConnection;
use App\Models\ProviderCredential;
use App\Models\ManagedEnvironment;
use App\Services\Providers\ProviderConnectionClassifier;
use App\Support\Providers\ProviderConnectionType;
use Illuminate\Foundation\Testing\RefreshDatabase;
uses(RefreshDatabase::class);
it('classifies a platform-like connection without legacy identity as platform', function (): void {
config()->set('graph.client_id', 'platform-client-id');
$tenant = ManagedEnvironment::factory()->create([
'managed_environment_id' => 'platform-like-tenant-id',
'app_client_id' => null,
'app_client_secret' => null,
]);
$connection = ProviderConnection::factory()->platform()->create([
'managed_environment_id' => (int) $tenant->getKey(),
'workspace_id' => (int) $tenant->workspace_id,
'provider' => 'microsoft',
'entra_tenant_id' => 'platform-like-tenant-id',
]);
$result = app(ProviderConnectionClassifier::class)->classify($connection);
expect($result->suggestedConnectionType)->toBe(ProviderConnectionType::Platform)
->and($result->reviewRequired)->toBeFalse()
->and($result->metadata())->toMatchArray([
'legacy_identity_classification_source' => 'migration_scan',
'legacy_identity_review_required' => false,
'legacy_identity_result' => 'platform',
'effective_app' => [
'app_id' => 'platform-client-id',
'source' => 'platform_config',
],
]);
});
it('classifies a credential-backed legacy connection as dedicated', function (): void {
$tenant = ManagedEnvironment::factory()->create([
'managed_environment_id' => 'dedicated-like-tenant-id',
'app_client_id' => null,
'app_client_secret' => null,
]);
$connection = ProviderConnection::factory()->platform()->create([
'managed_environment_id' => (int) $tenant->getKey(),
'workspace_id' => (int) $tenant->workspace_id,
'provider' => 'microsoft',
'entra_tenant_id' => 'dedicated-like-tenant-id',
]);
ProviderCredential::factory()->create([
'provider_connection_id' => (int) $connection->getKey(),
'source' => null,
'payload' => [
'client_id' => 'legacy-dedicated-client-id',
'client_secret' => 'legacy-dedicated-secret',
],
]);
$result = app(ProviderConnectionClassifier::class)->classify($connection);
expect($result->suggestedConnectionType)->toBe(ProviderConnectionType::Dedicated)
->and($result->reviewRequired)->toBeFalse()
->and($result->metadata())->toMatchArray([
'legacy_identity_result' => 'dedicated',
'effective_app' => [
'app_id' => 'legacy-dedicated-client-id',
'source' => 'dedicated_credential',
],
]);
});
it('flags contradictory platform and dedicated identity as review required', function (): void {
config()->set('graph.client_id', 'platform-client-id');
$tenant = ManagedEnvironment::factory()->create([
'managed_environment_id' => 'hybrid-tenant-id',
]);
$connection = ProviderConnection::factory()->platform()->create([
'managed_environment_id' => (int) $tenant->getKey(),
'workspace_id' => (int) $tenant->workspace_id,
'provider' => 'microsoft',
'entra_tenant_id' => 'hybrid-tenant-id',
'is_default' => true,
'consent_status' => 'granted',
'verification_status' => 'healthy',
]);
ProviderCredential::factory()->create([
'provider_connection_id' => (int) $connection->getKey(),
'source' => null,
'payload' => [
'client_id' => 'dedicated-client-id',
'client_secret' => 'dedicated-client-secret',
],
]);
$result = app(ProviderConnectionClassifier::class)->classify($connection);
expect($result->suggestedConnectionType)->toBe(ProviderConnectionType::Dedicated)
->and($result->reviewRequired)->toBeTrue()
->and($result->metadata())->toMatchArray([
'legacy_identity_review_required' => true,
'legacy_identity_result' => 'dedicated',
'effective_app' => [
'app_id' => null,
'source' => 'review_required',
],
])
->and($result->signals)->toMatchArray([
'tenant_client_id' => 'platform-client-id',
'credential_client_id' => 'dedicated-client-id',
'is_enabled' => true,
'consent_status' => 'granted',
'verification_status' => 'healthy',
]);
});