## Summary - add the Spec 194 governance action catalog, friction classes, reason policies, and regression guards - align exception, review, evidence, finding, tenant, provider connection, and system run actions to the shared semantics model - add focused feature, RBAC, audit, unit, and browser coverage, including the tenant detail triage header consistency update ## Verification - ran the focused Spec 194 verification pack from the quickstart and task plan - ran targeted tenant triage coverage after the detail-header update - ran `cd apps/platform && ./vendor/bin/sail bin pint --dirty --format agent` ## Filament Notes - Filament v5 / Livewire v4 compliance preserved - provider registration remains in `apps/platform/bootstrap/providers.php` - globally searchable resources were not changed - destructive actions remain confirmation-gated and server-authorized - no new Filament assets were introduced; the existing `cd apps/platform && php artisan filament:assets` deploy step stays unchanged Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #229
85 lines
2.7 KiB
PHP
85 lines
2.7 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Models\OperationRun;
|
|
use App\Models\PlatformUser;
|
|
use App\Support\Auth\PlatformCapabilities;
|
|
use App\Support\OperationRunOutcome;
|
|
use App\Support\OperationRunStatus;
|
|
use Carbon\CarbonImmutable;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
use Illuminate\Support\Carbon;
|
|
|
|
uses(RefreshDatabase::class);
|
|
|
|
afterEach(function () {
|
|
Carbon::setTestNow();
|
|
CarbonImmutable::setTestNow();
|
|
});
|
|
|
|
it('forbids stuck page when platform.operations.view is missing', function () {
|
|
$platformUser = PlatformUser::factory()->create([
|
|
'capabilities' => [
|
|
PlatformCapabilities::ACCESS_SYSTEM_PANEL,
|
|
],
|
|
'is_active' => true,
|
|
]);
|
|
|
|
$this->actingAs($platformUser, 'platform')
|
|
->get('/system/ops/stuck')
|
|
->assertForbidden();
|
|
});
|
|
|
|
it('shows only queued/running runs that cross stuck thresholds', function () {
|
|
config()->set('tenantpilot.system_console.stuck_thresholds.queued_minutes', 10);
|
|
config()->set('tenantpilot.system_console.stuck_thresholds.running_minutes', 20);
|
|
|
|
$referenceTime = CarbonImmutable::parse('2026-02-27 10:00:00');
|
|
|
|
Carbon::setTestNow($referenceTime);
|
|
CarbonImmutable::setTestNow($referenceTime);
|
|
|
|
$stuckQueued = OperationRun::factory()->create([
|
|
'type' => 'inventory_sync',
|
|
'status' => OperationRunStatus::Queued->value,
|
|
'outcome' => OperationRunOutcome::Pending->value,
|
|
'created_at' => now()->subMinutes(30),
|
|
'started_at' => null,
|
|
]);
|
|
|
|
$stuckRunning = OperationRun::factory()->create([
|
|
'type' => 'inventory_sync',
|
|
'status' => OperationRunStatus::Running->value,
|
|
'outcome' => OperationRunOutcome::Pending->value,
|
|
'created_at' => now()->subMinutes(25),
|
|
'started_at' => now()->subMinutes(21),
|
|
]);
|
|
|
|
$freshQueued = OperationRun::factory()->create([
|
|
'type' => 'inventory_sync',
|
|
'status' => OperationRunStatus::Queued->value,
|
|
'outcome' => OperationRunOutcome::Pending->value,
|
|
'created_at' => now()->subMinutes(5),
|
|
'started_at' => null,
|
|
]);
|
|
|
|
$platformUser = PlatformUser::factory()->create([
|
|
'capabilities' => [
|
|
PlatformCapabilities::ACCESS_SYSTEM_PANEL,
|
|
PlatformCapabilities::OPERATIONS_VIEW,
|
|
],
|
|
'is_active' => true,
|
|
]);
|
|
|
|
$this->actingAs($platformUser, 'platform')
|
|
->get('/system/ops/stuck')
|
|
->assertSuccessful()
|
|
->assertSee('Stuck operations')
|
|
->assertSee('Show all operations')
|
|
->assertSee('Likely stale')
|
|
->assertSee('#'.(int) $stuckQueued->getKey())
|
|
->assertSee('#'.(int) $stuckRunning->getKey())
|
|
->assertDontSee('#'.(int) $freshQueued->getKey());
|
|
});
|