## 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
47 lines
1.6 KiB
PHP
47 lines
1.6 KiB
PHP
<?php
|
|
|
|
use App\Models\InventoryItem;
|
|
use App\Models\InventoryLink;
|
|
use App\Models\ManagedEnvironment;
|
|
use App\Services\Inventory\DependencyExtractionService;
|
|
use App\Support\Enums\RelationshipType;
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
it('stores non-UUID identifiers in inventory_links on PostgreSQL', function () {
|
|
$driver = DB::getDriverName();
|
|
|
|
$tenant = ManagedEnvironment::factory()->create();
|
|
$item = InventoryItem::factory()->for($tenant)->create([
|
|
'external_id' => '11111111-1111-1111-1111-111111111111',
|
|
]);
|
|
|
|
/** @var DependencyExtractionService $service */
|
|
$service = app(DependencyExtractionService::class);
|
|
|
|
$service->extractForPolicyData($item, [
|
|
'id' => $item->external_id,
|
|
'roleScopeTagIds' => ['0'],
|
|
'assignments' => [],
|
|
]);
|
|
|
|
if ($driver === 'pgsql') {
|
|
$columnTypes = collect(DB::select(
|
|
"select column_name, data_type from information_schema.columns where table_name = 'inventory_links' and column_name in ('source_id', 'target_id')"
|
|
))
|
|
->mapWithKeys(fn (object $row) => [(string) $row->column_name => (string) $row->data_type]);
|
|
|
|
expect($columnTypes->get('source_id'))->toBe('text')
|
|
->and($columnTypes->get('target_id'))->toBe('text');
|
|
}
|
|
|
|
expect(
|
|
InventoryLink::query()
|
|
->where('managed_environment_id', $tenant->getKey())
|
|
->where('source_type', 'inventory_item')
|
|
->where('source_id', $item->external_id)
|
|
->where('relationship_type', RelationshipType::ScopedBy->value)
|
|
->where('target_id', '0')
|
|
->exists()
|
|
)->toBeTrue();
|
|
});
|