TenantAtlas/apps/platform/tests/Unit/Support/TestLaneReportTest.php
2026-04-16 15:57:39 +02:00

76 lines
2.9 KiB
PHP

<?php
declare(strict_types=1);
use Tests\Support\TestLaneReport;
it('extracts at least the top ten slowest entries from a junit artifact', function (): void {
$junitPath = sys_get_temp_dir().'/tenantatlas-test-lane-junit.xml';
$testcases = [];
for ($index = 1; $index <= 12; $index++) {
$duration = number_format(0.5 + ($index / 10), 6, '.', '');
$testcases[] = sprintf(
'<testsuite name="Suite%d" file="tests/Feature/Fake/Fake%dTest.php" tests="1" assertions="1" errors="0" failures="0" skipped="0" time="%s"><testcase name="fake %d" file="tests/Feature/Fake/Fake%dTest.php::fake %d" class="Tests\\Feature\\Fake\\Fake%dTest" classname="Tests.Feature.Fake.Fake%dTest" assertions="1" time="%s"/></testsuite>',
$index,
$index,
$duration,
$index,
$index,
$index,
$index,
$index,
$duration,
);
}
file_put_contents($junitPath, "<?xml version=\"1.0\" encoding=\"UTF-8\"?><testsuites>".implode('', $testcases).'</testsuites>');
$parsed = TestLaneReport::parseJUnit($junitPath, 'junit');
expect($parsed['slowestEntries'])->toHaveCount(10)
->and($parsed['slowestEntries'][0]['durationSeconds'])->toBeGreaterThanOrEqual($parsed['slowestEntries'][9]['durationSeconds'])
->and($parsed['durationsByFile'])->toHaveCount(12);
});
it('builds a report payload and writes the summary plus budget artifacts under a target directory', function (): void {
$artifactDirectory = 'storage/logs/test-lanes-test';
$report = TestLaneReport::buildReport(
laneId: 'junit',
wallClockSeconds: 24.5,
slowestEntries: array_map(
static fn (int $index): array => [
'subject' => sprintf('tests/Feature/Fake/Fake%dTest.php', $index),
'durationSeconds' => 1 + ($index / 10),
'laneId' => 'junit',
],
range(1, 10),
),
durationsByFile: [
'tests/Feature/OpsUx/OperateHubShellTest.php' => 9.8,
'tests/Feature/Guards/ActionSurfaceContractTest.php' => 4.4,
],
);
$written = TestLaneReport::writeArtifacts('junit', $report, null, $artifactDirectory);
expect($report)->toHaveKeys([
'laneId',
'finishedAt',
'wallClockSeconds',
'budgetThresholdSeconds',
'budgetBaselineSource',
'budgetEnforcement',
'budgetLifecycleState',
'budgetStatus',
'slowestEntries',
'familyBudgetEvaluations',
'artifacts',
])
->and($report['slowestEntries'])->toHaveCount(10)
->and($written['summary'])->toStartWith($artifactDirectory.'/')
->and($written['budget'])->toStartWith($artifactDirectory.'/')
->and(file_exists(base_path($written['summary'])))->toBeTrue()
->and(file_exists(base_path($written['budget'])))->toBeTrue();
});