073-unified-managed-tenant-onboarding-wizard #90

Merged
ahmido merged 7 commits from 073-unified-managed-tenant-onboarding-wizard into dev 2026-02-04 23:30:58 +00:00
Showing only changes of commit 56f71883cf - Show all commits

View File

@ -0,0 +1,27 @@
<?php
declare(strict_types=1);
use App\Services\Graph\GraphContractRegistry;
it('provides contract registry paths for onboarding verification probes', function (): void {
$registry = app(GraphContractRegistry::class);
$organizationPath = $registry->probePath('organization');
expect($organizationPath)->not->toBeNull();
expect(ltrim((string) $organizationPath, '/'))->toBe('organization');
$appId = '00000000-0000-0000-0000-000000000000';
$servicePrincipalByAppIdPath = $registry->probePath('service_principal_by_app_id', ['{appId}' => $appId]);
expect($servicePrincipalByAppIdPath)->not->toBeNull();
expect((string) $servicePrincipalByAppIdPath)->toContain('servicePrincipals');
expect((string) $servicePrincipalByAppIdPath)->toContain($appId);
$servicePrincipalId = '11111111-1111-1111-1111-111111111111';
$assignmentsPath = $registry->probePath('service_principal_app_role_assignments', ['{servicePrincipalId}' => $servicePrincipalId]);
expect($assignmentsPath)->not->toBeNull();
expect((string) $assignmentsPath)->toContain("servicePrincipals/{$servicePrincipalId}/appRoleAssignments");
});