## Summary - consolidate internal platform naming from `Tenant` to `Environment` / `ManagedEnvironment` across models, controllers, services, and Filament resources - rename environment-scoped UI surfaces such as dashboards, chooser flows, navigation, and related widgets to match the updated environment-first domain language - align middleware, onboarding/review lifecycle services, jobs, and route/context controllers with the new environment-scoped architecture ## Validation - not rerun as part of this commit/push/PR request ## Notes - branch is 1 commit ahead of `platform-dev` - main commit: `refactor: consolidate internal tenant model naming` Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #355
49 lines
1.5 KiB
PHP
49 lines
1.5 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Filament\Resources\ManagedEnvironmentResource;
|
|
use App\Models\EntraRoleDefinition;
|
|
use App\Models\ManagedEnvironment;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
|
|
uses(RefreshDatabase::class);
|
|
|
|
it('searches cached role definitions without Graph calls', function (): void {
|
|
bindFailHardGraphClient();
|
|
|
|
/** @var ManagedEnvironment $tenant */
|
|
$tenant = ManagedEnvironment::factory()->create();
|
|
|
|
EntraRoleDefinition::factory()
|
|
->for($tenant)
|
|
->create([
|
|
'entra_id' => '11111111-1111-1111-1111-111111111111',
|
|
'display_name' => 'Policy and Profile Manager',
|
|
]);
|
|
|
|
$options = assertNoOutboundHttp(fn () => ManagedEnvironmentResource::roleSearchOptions($tenant, 'Pol'));
|
|
|
|
expect($options)->toMatchArray([
|
|
'11111111-1111-1111-1111-111111111111' => 'Policy and Profile Manager (11111111)',
|
|
]);
|
|
});
|
|
|
|
it('resolves a role definition label from cached data without Graph calls', function (): void {
|
|
bindFailHardGraphClient();
|
|
|
|
/** @var ManagedEnvironment $tenant */
|
|
$tenant = ManagedEnvironment::factory()->create();
|
|
|
|
EntraRoleDefinition::factory()
|
|
->for($tenant)
|
|
->create([
|
|
'entra_id' => '22222222-2222-2222-2222-222222222222',
|
|
'display_name' => 'Read Only Operator',
|
|
]);
|
|
|
|
$label = assertNoOutboundHttp(fn () => ManagedEnvironmentResource::roleLabelFromCache($tenant, '22222222-2222-2222-2222-222222222222'));
|
|
|
|
expect($label)->toBe('Read Only Operator (22222222)');
|
|
});
|