## Summary - retire remaining legacy tenant-panel runtime assumptions in the Filament admin runtime and route resolution paths - centralize canonical admin environment context handling for shared surfaces instead of relying on deprecated `tenant` panel behavior - harden guard coverage so legacy `/admin/t` and `/admin/tenants` route families cannot regress - update scoped navigation, drillthrough, reference-link, and global-search tests to use the admin panel environment runtime - add the Spec 304 package under `specs/304-tenant-panel-dead-code-retirement/` and document the rollout in the product ledger ## Test Coverage Updated - `AdminSharedSurfacePanelParityTest` - `NoActiveTenantResourceRoutesTest` - `NoLegacyTenantPanelRuntimeTest` - `AdminTenantResolverGuardTest` - `PolicyVersionResolvedReferenceLinksTest` - `EntraGroupGlobalSearchScopeTest` - `OperationsDashboardDrillthroughTest` ## Runtime Notes - remains compliant with Filament v5 on Livewire v4 - no provider registration changes; provider registration location remains `apps/platform/bootstrap/providers.php` - no new globally searchable resource was introduced; existing scoped search assertions were updated only - no destructive actions were added or changed - no asset registration changes; deploy posture for `cd apps/platform && php artisan filament:assets` is unchanged ## Validation - updated tests and docs/spec artifacts were committed in this branch - tests were not re-run in this turn Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #359
31 lines
1.2 KiB
PHP
31 lines
1.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Filament\Facades\Filament;
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
it('does not keep a runtime TenantPanelProvider or tenant panel registration', function (): void {
|
|
$registeredProviders = require base_path('bootstrap/providers.php');
|
|
$tenantPanelProviders = collect($registeredProviders)
|
|
->filter(fn (string $provider): bool => str_contains($provider, 'TenantPanelProvider'))
|
|
->values();
|
|
|
|
expect(file_exists(app_path('Providers/Filament/TenantPanelProvider.php')))->toBeFalse()
|
|
->and(file_exists(app_path('Filament/Providers/TenantPanelProvider.php')))->toBeFalse()
|
|
->and($tenantPanelProviders)->toBeEmpty()
|
|
->and(Filament::getPanel('tenant'))->toBeNull();
|
|
});
|
|
|
|
it('does not register active /admin/t routes', function (): void {
|
|
$legacyRouteUris = collect(Route::getRoutes())
|
|
->map(fn ($route): string => ltrim((string) $route->uri(), '/'))
|
|
->filter(fn (string $uri): bool => preg_match('#^admin/t(?:/|$)#', $uri) === 1)
|
|
->values();
|
|
|
|
expect($legacyRouteUris)->toBeEmpty();
|
|
|
|
$this->get('/admin/t/example')->assertNotFound();
|
|
$this->get('/admin/t/example/inventory-items')->assertNotFound();
|
|
});
|