Implements Spec 084 (verification-surfaces-unification). Highlights - Unifies tenant + onboarding verification start on `provider.connection.check` (OperationRun-based, enqueue-only). - Ensures completed blocked runs persist a schema-valid `context.verification_report` stub (DB-only viewers never show “unavailable”). - Adds tenant embedded verification report widget with DB-only rendering + canonical tenantless “View run” links. - Enforces 404/403 semantics for tenantless run viewing (workspace membership + tenant entitlement required; otherwise 404). - Fixes admin panel widgets to resolve tenant from record context so Owners can start verification and recent operations renders correctly. Tests - Ran: `vendor/bin/sail artisan test --compact tests/Feature/Verification/ tests/Feature/ProviderConnections/ProviderOperationBlockedGuidanceSpec081Test.php tests/Feature/Onboarding/OnboardingVerificationTest.php tests/Feature/RunAuthorizationTenantIsolationTest.php tests/Feature/Filament/TenantVerificationReportWidgetTest.php tests/Feature/Filament/RecentOperationsSummaryWidgetTest.php` Notes - Filament v5 / Livewire v4 compatible. - No new assets; no changes to provider registration. Co-authored-by: Ahmed Darrazi <ahmeddarrazi@MacBookPro.fritz.box> Reviewed-on: #102
44 lines
1.5 KiB
PHP
44 lines
1.5 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Models\OperationRun;
|
|
use App\Models\Tenant;
|
|
use App\Services\Providers\ProviderOperationStartGate;
|
|
use App\Support\OperationRunOutcome;
|
|
use App\Support\OperationRunStatus;
|
|
use App\Support\Verification\VerificationReportSchema;
|
|
|
|
it('stores a schema-valid blocked verification report stub for blocked provider connection checks', function (): void {
|
|
$tenant = Tenant::factory()->create();
|
|
|
|
$result = app(ProviderOperationStartGate::class)->start(
|
|
tenant: $tenant,
|
|
connection: null,
|
|
operationType: 'provider.connection.check',
|
|
dispatcher: static function (): void {},
|
|
);
|
|
|
|
/** @var OperationRun $run */
|
|
$run = $result->run->refresh();
|
|
$context = is_array($run->context ?? null) ? $run->context : [];
|
|
|
|
$report = $context['verification_report'] ?? null;
|
|
|
|
expect($result->status)->toBe('blocked')
|
|
->and($run->status)->toBe(OperationRunStatus::Completed->value)
|
|
->and($run->outcome)->toBe(OperationRunOutcome::Blocked->value)
|
|
->and($report)->toBeArray();
|
|
|
|
/** @var array<string, mixed> $report */
|
|
expect(VerificationReportSchema::isValidReport($report))->toBeTrue();
|
|
|
|
$checks = $report['checks'] ?? null;
|
|
$checks = is_array($checks) ? $checks : [];
|
|
|
|
expect($checks)->toHaveCount(1)
|
|
->and($checks[0]['key'] ?? null)->toBe('provider.connection.check')
|
|
->and($checks[0]['reason_code'] ?? null)->toBe($context['reason_code'] ?? null)
|
|
->and($checks[0]['next_steps'] ?? null)->toBe($context['next_steps'] ?? null);
|
|
});
|