## Summary - move the Laravel application into `apps/platform` and keep the repository root for orchestration, docs, and tooling - update the local command model, Sail/Docker wiring, runtime paths, and ignore rules around the new platform location - add relocation quickstart/contracts plus focused smoke coverage for bootstrap, command model, routes, and runtime behavior ## Validation - `cd apps/platform && ./vendor/bin/sail artisan test --compact tests/Feature/PlatformRelocation` - integrated browser smoke validated `/up`, `/`, `/admin`, `/admin/choose-workspace`, and tenant route semantics for `200`, `403`, and `404` ## Remaining Rollout Checks - validate Dokploy build context and working-directory assumptions against the new `apps/platform` layout - confirm web, queue, and scheduler processes all start from the expected working directory in staging/production - verify no legacy volume mounts or asset-publish paths still point at the old root-level `public/` or `storage/` locations Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #213
57 lines
2.3 KiB
PHP
57 lines
2.3 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 legacy compatibility lifecycle helpers on the model', function (): void {
|
|
expect(method_exists(Finding::class, 'acknowledge'))->toBeTrue()
|
|
->and(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);
|
|
});
|