## Summary - add the shared operator explanation layer with explanation families, trustworthiness semantics, count descriptors, and centralized badge mappings - adopt explanation-first rendering across baseline compare, governance operation run detail, baseline snapshot presentation, tenant review detail, and review register rows - extend reason translation, artifact-truth presentation, fallback ops UX messaging, and focused regression coverage for operator explanation semantics ## Testing - vendor/bin/sail bin pint --dirty --format agent - vendor/bin/sail artisan test --compact tests/Feature/Monitoring/OperationsTenantScopeTest.php tests/Feature/Operations/OperationRunBlockedExecutionPresentationTest.php - vendor/bin/sail artisan test --compact ## Notes - Livewire v4 compatible - panel provider registration remains in bootstrap/providers.php - no destructive Filament actions were added or changed in this PR - no new global-search behavior was introduced in this slice Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #191
38 lines
1.3 KiB
PHP
38 lines
1.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Support\Baselines\BaselineCompareReasonCode;
|
|
use App\Support\Baselines\BaselineReasonCodes;
|
|
use App\Support\ReasonTranslation\ReasonPresenter;
|
|
use App\Support\Ui\OperatorExplanation\TrustworthinessLevel;
|
|
|
|
it('exposes trust-impact and absence-pattern semantics for governance reasons', function (
|
|
string $reasonCode,
|
|
string $expectedTrustImpact,
|
|
?string $expectedAbsencePattern,
|
|
): void {
|
|
$envelope = app(ReasonPresenter::class)->forArtifactTruth($reasonCode, 'artifact_truth');
|
|
|
|
expect($envelope)->not->toBeNull()
|
|
->and($envelope?->trustImpact)->toBe($expectedTrustImpact)
|
|
->and($envelope?->absencePattern)->toBe($expectedAbsencePattern)
|
|
->and(app(ReasonPresenter::class)->dominantCauseExplanation($envelope))->not->toBe('');
|
|
})->with([
|
|
'suppressed compare result' => [
|
|
BaselineCompareReasonCode::CoverageUnproven->value,
|
|
TrustworthinessLevel::LimitedConfidence->value,
|
|
'suppressed_output',
|
|
],
|
|
'missing baseline input' => [
|
|
BaselineReasonCodes::SNAPSHOT_CAPTURE_FAILED,
|
|
TrustworthinessLevel::LimitedConfidence->value,
|
|
'unavailable',
|
|
],
|
|
'fallback review blocker' => [
|
|
'review_missing_sections',
|
|
TrustworthinessLevel::Unusable->value,
|
|
'missing_input',
|
|
],
|
|
]);
|