78 lines
4.1 KiB
PHP
78 lines
4.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Tests\Support\TestLaneManifest;
|
|
use Tests\Support\TestLaneReport;
|
|
|
|
it('keeps profiling serial and artifact-rich for slow-test drift analysis', function (): void {
|
|
$lane = TestLaneManifest::lane('profiling');
|
|
$command = TestLaneManifest::buildCommand('profiling');
|
|
$configurationPath = TestLaneManifest::laneConfigurationPath('profiling');
|
|
$configurationContents = (string) file_get_contents(TestLaneManifest::absolutePath($configurationPath));
|
|
|
|
expect($lane['governanceClass'])->toBe('support')
|
|
->and($lane['parallelMode'])->toBe('forbidden')
|
|
->and($lane['artifacts'])->toContain('profile-top', 'junit-xml', 'summary', 'budget-report')
|
|
->and($command)->toContain('--profile')
|
|
->and($command)->not->toContain('--parallel')
|
|
->and($command)->toContain('--configuration='.$configurationPath)
|
|
->and($configurationContents)->toContain('tests/Feature/Filament/PolicyResourceAdminSearchParityTest.php')
|
|
->and($configurationContents)->not->toContain('tests/Browser/Spec190BaselineCompareMatrixSmokeTest.php');
|
|
});
|
|
|
|
it('builds top 10 attribution-rich profiling reports for mixed workflow and governance files', function (): void {
|
|
$durationsByFile = [
|
|
'tests/Feature/Baselines/BaselineCompareMatrixCompareAllActionTest.php' => 22.4,
|
|
'tests/Feature/Baselines/BaselineCompareMatrixBuilderTest.php' => 20.1,
|
|
'tests/Feature/Rbac/OnboardingWizardUiEnforcementTest.php' => 18.5,
|
|
'tests/Feature/Guards/ActionSurfaceContractTest.php' => 17.3,
|
|
'tests/Feature/Filament/PolicyResourceAdminSearchParityTest.php' => 16.2,
|
|
'tests/Feature/Filament/PolicyVersionAdminSearchParityTest.php' => 15.1,
|
|
'tests/Feature/Rbac/BackupItemsRelationManagerUiEnforcementTest.php' => 13.7,
|
|
'tests/Feature/Rbac/WorkspaceMembershipsRelationManagerUiEnforcementTest.php' => 12.8,
|
|
'tests/Feature/Filament/TenantReviewHeaderDisciplineTest.php' => 11.4,
|
|
'tests/Feature/Filament/BackupSetAdminTenantParityTest.php' => 9.6,
|
|
];
|
|
|
|
$slowestEntries = collect($durationsByFile)
|
|
->map(static fn (float $seconds, string $file): array => [
|
|
'label' => $file.'::synthetic',
|
|
'subject' => $file.'::synthetic',
|
|
'filePath' => $file,
|
|
'durationSeconds' => $seconds,
|
|
'wallClockSeconds' => $seconds,
|
|
'laneId' => 'profiling',
|
|
])
|
|
->values()
|
|
->all();
|
|
|
|
$report = TestLaneReport::buildReport(
|
|
laneId: 'profiling',
|
|
wallClockSeconds: 181.7,
|
|
slowestEntries: $slowestEntries,
|
|
durationsByFile: $durationsByFile,
|
|
);
|
|
|
|
expect($report['slowestEntries'])->toHaveCount(10)
|
|
->and($report['slowestEntries'][0]['wallClockSeconds'])->toBeGreaterThanOrEqual($report['slowestEntries'][1]['wallClockSeconds'])
|
|
->and(collect($report['classificationAttribution'])->pluck('classificationId')->all())
|
|
->toContain('ui-light', 'ui-workflow', 'surface-guard', 'discovery-heavy')
|
|
->and(collect($report['familyAttribution'])->pluck('familyId')->all())
|
|
->toContain('baseline-compare-matrix-workflow', 'action-surface-contract', 'backup-set-admin-tenant-parity');
|
|
});
|
|
|
|
it('keeps heavy-governance snapshot artifact paths rooted in the canonical lane directory', function (): void {
|
|
$report = TestLaneReport::buildReport(
|
|
laneId: 'heavy-governance',
|
|
wallClockSeconds: 140.0,
|
|
slowestEntries: [],
|
|
durationsByFile: [],
|
|
);
|
|
|
|
expect($report['budgetSnapshots'])->toHaveCount(2)
|
|
->and($report['budgetSnapshots'][0]['artifactPaths']['summary'])->toStartWith('storage/logs/test-lanes/heavy-governance-')
|
|
->and($report['budgetSnapshots'][1]['artifactPaths']['summary'])->toBe('storage/logs/test-lanes/heavy-governance-latest.summary.md')
|
|
->and($report['budgetSnapshots'][1]['artifactPaths']['budget'])->toBe('storage/logs/test-lanes/heavy-governance-latest.budget.json')
|
|
->and($report['budgetSnapshots'][1]['artifactPaths']['report'])->toBe('storage/logs/test-lanes/heavy-governance-latest.report.json');
|
|
}); |