## 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\EntraGroup;
|
|
use App\Models\ManagedEnvironment;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
|
|
uses(RefreshDatabase::class);
|
|
|
|
it('searches cached directory groups without Graph calls', function (): void {
|
|
bindFailHardGraphClient();
|
|
|
|
/** @var ManagedEnvironment $tenant */
|
|
$tenant = ManagedEnvironment::factory()->create();
|
|
|
|
EntraGroup::factory()
|
|
->for($tenant)
|
|
->create([
|
|
'entra_id' => '33333333-3333-3333-3333-333333333333',
|
|
'display_name' => 'TenantPilot Operators',
|
|
]);
|
|
|
|
$options = assertNoOutboundHttp(fn () => ManagedEnvironmentResource::groupSearchOptions($tenant, 'Ten'));
|
|
|
|
expect($options)->toMatchArray([
|
|
'33333333-3333-3333-3333-333333333333' => 'TenantPilot Operators (…33333333)',
|
|
]);
|
|
});
|
|
|
|
it('resolves a directory group label from cached data without Graph calls', function (): void {
|
|
bindFailHardGraphClient();
|
|
|
|
/** @var ManagedEnvironment $tenant */
|
|
$tenant = ManagedEnvironment::factory()->create();
|
|
|
|
EntraGroup::factory()
|
|
->for($tenant)
|
|
->create([
|
|
'entra_id' => '44444444-4444-4444-4444-444444444444',
|
|
'display_name' => 'TenantPilot Admins',
|
|
]);
|
|
|
|
$label = assertNoOutboundHttp(fn () => ManagedEnvironmentResource::groupLabelFromCache($tenant, '44444444-4444-4444-4444-444444444444'));
|
|
|
|
expect($label)->toBe('TenantPilot Admins (…44444444)');
|
|
});
|