## Summary - implement Spec 192 across the targeted Filament record, detail, and edit pages with explicit action-surface inventory and guard coverage - add the focused Spec 192 browser smoke, feature tests, and spec artifacts under `specs/192-record-header-discipline` - improve unhandled promise rejection diagnostics by correlating 419s to the underlying Livewire request URL - disable panel-wide database notification polling on the admin, tenant, and system panels and cover the mitigation with focused tests ## Validation - `cd apps/platform && ./vendor/bin/sail artisan test --compact tests/Feature/Filament/DatabaseNotificationsPollingTest.php` - `cd apps/platform && ./vendor/bin/sail artisan test --compact tests/Feature/Filament/DatabaseNotificationsPollingTest.php tests/Feature/Filament/UnhandledRejectionLoggerAssetTest.php tests/Feature/Filament/FilamentNotificationsAssetsTest.php tests/Feature/Workspaces/ManagedTenantsLivewireUpdateTest.php tests/Feature/Filament/AdminSmokeTest.php` - `cd apps/platform && ./vendor/bin/sail bin pint --dirty --format agent` - manual integrated-browser verification of the Spec 192 surfaces and the notification-polling mitigation ## Notes - Livewire v4 / Filament v5 compliance remains unchanged. - Provider registration stays in `bootstrap/providers.php`. - No Global Search behavior was expanded. - No destructive action confirmation semantics were relaxed. - The full test suite was not run in this PR. Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #226
35 lines
1.3 KiB
PHP
35 lines
1.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Support\Workspaces\WorkspaceContext;
|
|
use Filament\Facades\Filament;
|
|
|
|
it('keeps database notifications enabled without background polling on every panel', function (): void {
|
|
foreach (['admin', 'tenant', 'system'] as $panelId) {
|
|
$panel = Filament::getPanel($panelId);
|
|
|
|
expect($panel->hasDatabaseNotifications())->toBeTrue();
|
|
expect($panel->getDatabaseNotificationsPollingInterval())->toBeNull();
|
|
}
|
|
});
|
|
|
|
it('renders the admin notifications modal without a polling attribute', function (): void {
|
|
[$user, $tenant] = createUserWithTenant(role: 'owner');
|
|
|
|
$response = $this->actingAs($user)
|
|
->withSession([WorkspaceContext::SESSION_KEY => (int) $tenant->workspace_id])
|
|
->get('/admin');
|
|
|
|
$response->assertSuccessful();
|
|
|
|
$html = $response->getContent();
|
|
|
|
expect($html)->toContain('wire:name="Filament\\Livewire\\DatabaseNotifications"');
|
|
|
|
preg_match('/<[^>]+wire:name="Filament\\\\Livewire\\\\DatabaseNotifications"[^>]*>/', $html, $matches);
|
|
|
|
expect($matches)->not->toBeEmpty('Expected the admin page to render the database notifications Livewire root element.');
|
|
expect($matches[0])->not->toContain('wire:poll');
|
|
expect($matches[0])->not->toContain('wire:poll.30s');
|
|
}); |