## Summary - rebuild the public Tenantial homepage around an evidence-first Microsoft tenant governance narrative - replace the old hero visual with a new static dashboard preview and add dedicated Trust Bar and Feature Pillars sections - update the shared public shell, navigation, footer, dark design tokens, assets, and homepage content to match the new brand direction - align website smoke coverage and Spec 400 artifacts with the rebuilt homepage ## Testing - not run in this pass - updated website smoke specs under apps/website/tests/smoke ## Note - `website-dev` was pushed to `origin` so the requested PR base exists remotely - the remote `website-dev` branch is an ancestor of `origin/dev`, so this PR may also show upstream `dev` history relative to that base Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #387
56 lines
2.2 KiB
PHP
56 lines
2.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Models\AuditLog;
|
|
use App\Models\Finding;
|
|
use App\Services\Findings\FindingWorkflowService;
|
|
use App\Services\Intune\AuditLogger;
|
|
use App\Support\Audit\AuditActionId;
|
|
use Mockery\MockInterface;
|
|
|
|
use function Pest\Laravel\mock;
|
|
|
|
it('registers canonical findings workflow audit actions', function (): void {
|
|
expect(AuditActionId::knownValues())
|
|
->toContain(AuditActionId::FindingTriaged->value)
|
|
->toContain(AuditActionId::FindingInProgress->value)
|
|
->toContain(AuditActionId::FindingAssigned->value)
|
|
->toContain(AuditActionId::FindingResolved->value)
|
|
->toContain(AuditActionId::FindingClosed->value)
|
|
->toContain(AuditActionId::FindingRiskAccepted->value)
|
|
->toContain(AuditActionId::FindingReopened->value);
|
|
});
|
|
|
|
it('keeps only the surviving model lifecycle helpers', function (): void {
|
|
expect(method_exists(Finding::class, 'resolve'))->toBeTrue()
|
|
->and(method_exists(Finding::class, 'reopen'))->toBeTrue()
|
|
->and(method_exists(Finding::class, 'triage'))->toBeFalse()
|
|
->and(method_exists(Finding::class, 'startProgress'))->toBeFalse()
|
|
->and(method_exists(Finding::class, 'assign'))->toBeFalse()
|
|
->and(method_exists(Finding::class, 'close'))->toBeFalse()
|
|
->and(method_exists(Finding::class, 'riskAccept'))->toBeFalse();
|
|
});
|
|
|
|
it('rolls back finding workflow persistence when audit logging fails', function (): void {
|
|
[$user, $tenant] = $this->actingAsFindingOperator('owner');
|
|
|
|
$finding = $this->makeFindingForWorkflow($tenant, Finding::STATUS_NEW);
|
|
|
|
mock(AuditLogger::class, function (MockInterface $mock): void {
|
|
$mock->shouldReceive('log')
|
|
->once()
|
|
->andThrow(new \RuntimeException('Audit write unavailable.'));
|
|
});
|
|
|
|
expect(fn () => app(FindingWorkflowService::class)->triage($finding, $tenant, $user))
|
|
->toThrow(\RuntimeException::class, 'Audit write unavailable.');
|
|
|
|
expect($finding->refresh()->status)->toBe(Finding::STATUS_NEW)
|
|
->and(AuditLog::query()
|
|
->where('tenant_id', (int) $tenant->getKey())
|
|
->where('resource_type', 'finding')
|
|
->where('resource_id', (string) $finding->getKey())
|
|
->count())->toBe(0);
|
|
});
|