mirror of
https://github.com/pestphp/pest.git
synced 2026-09-05 06:13:35 +02:00
319 lines
8.5 KiB
PHP
319 lines
8.5 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/*
|
|
* This file is part of PHPUnit.
|
|
*
|
|
* (c) Sebastian Bergmann <sebastian@phpunit.de>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace PHPUnit\Runner;
|
|
|
|
use PHPUnit\Framework\DataProviderTestSuite;
|
|
use PHPUnit\Framework\Reorderable;
|
|
use PHPUnit\Framework\Test;
|
|
use PHPUnit\Framework\TestCase;
|
|
use PHPUnit\Framework\TestSuite;
|
|
use PHPUnit\Runner\ResultCache\NullResultCache;
|
|
use PHPUnit\Runner\ResultCache\ResultCache;
|
|
use PHPUnit\Runner\ResultCache\ResultCacheId;
|
|
|
|
use function array_diff;
|
|
use function array_merge;
|
|
use function array_reverse;
|
|
use function array_splice;
|
|
use function assert;
|
|
use function count;
|
|
use function in_array;
|
|
use function max;
|
|
use function shuffle;
|
|
use function usort;
|
|
|
|
/**
|
|
* @internal This class is not covered by the backward compatibility promise for PHPUnit
|
|
*/
|
|
final class TestSuiteSorter
|
|
{
|
|
public const int ORDER_DEFAULT = 0;
|
|
|
|
public const int ORDER_RANDOMIZED = 1;
|
|
|
|
public const int ORDER_REVERSED = 2;
|
|
|
|
public const int ORDER_DEFECTS_FIRST = 3;
|
|
|
|
public const int ORDER_DURATION = 4;
|
|
|
|
public const int ORDER_SIZE = 5;
|
|
|
|
/**
|
|
* @var non-empty-array<non-empty-string, positive-int>
|
|
*/
|
|
private const array SIZE_SORT_WEIGHT = [
|
|
'small' => 1,
|
|
'medium' => 2,
|
|
'large' => 3,
|
|
'unknown' => 4,
|
|
];
|
|
|
|
/**
|
|
* @var array<string, int> Associative array of (string => DEFECT_SORT_WEIGHT) elements
|
|
*/
|
|
private array $defectSortOrder = [];
|
|
|
|
private readonly ResultCache $cache;
|
|
|
|
public function __construct(?ResultCache $cache = null)
|
|
{
|
|
$this->cache = $cache ?? new NullResultCache;
|
|
}
|
|
|
|
/**
|
|
* @throws Exception
|
|
*/
|
|
public function reorderTestsInSuite(Test $suite, int $order, bool $resolveDependencies, int $orderDefects): void
|
|
{
|
|
$allowedOrders = [
|
|
self::ORDER_DEFAULT,
|
|
self::ORDER_REVERSED,
|
|
self::ORDER_RANDOMIZED,
|
|
self::ORDER_DURATION,
|
|
self::ORDER_SIZE,
|
|
];
|
|
|
|
if (! in_array($order, $allowedOrders, true)) {
|
|
// @codeCoverageIgnoreStart
|
|
throw new InvalidOrderException;
|
|
// @codeCoverageIgnoreEnd
|
|
}
|
|
|
|
$allowedOrderDefects = [
|
|
self::ORDER_DEFAULT,
|
|
self::ORDER_DEFECTS_FIRST,
|
|
];
|
|
|
|
if (! in_array($orderDefects, $allowedOrderDefects, true)) {
|
|
// @codeCoverageIgnoreStart
|
|
throw new InvalidOrderException;
|
|
// @codeCoverageIgnoreEnd
|
|
}
|
|
|
|
if ($suite instanceof TestSuite) {
|
|
foreach ($suite as $_suite) {
|
|
$this->reorderTestsInSuite($_suite, $order, $resolveDependencies, $orderDefects);
|
|
}
|
|
|
|
if ($orderDefects === self::ORDER_DEFECTS_FIRST) {
|
|
$this->addSuiteToDefectSortOrder($suite);
|
|
}
|
|
|
|
$this->sort($suite, $order, $resolveDependencies, $orderDefects);
|
|
}
|
|
}
|
|
|
|
private function sort(TestSuite $suite, int $order, bool $resolveDependencies, int $orderDefects): void
|
|
{
|
|
if ($suite->tests() === []) {
|
|
return;
|
|
}
|
|
|
|
if ($order === self::ORDER_REVERSED) {
|
|
$suite->setTests($this->reverse($suite->tests()));
|
|
} elseif ($order === self::ORDER_RANDOMIZED) {
|
|
$suite->setTests($this->randomize($suite->tests()));
|
|
} elseif ($order === self::ORDER_DURATION) {
|
|
$suite->setTests($this->sortByDuration($suite->tests()));
|
|
} elseif ($order === self::ORDER_SIZE) {
|
|
$suite->setTests($this->sortBySize($suite->tests()));
|
|
}
|
|
|
|
if ($orderDefects === self::ORDER_DEFECTS_FIRST) {
|
|
$suite->setTests($this->sortDefectsFirst($suite->tests()));
|
|
}
|
|
|
|
if ($resolveDependencies && ! ($suite instanceof DataProviderTestSuite)) {
|
|
$tests = $suite->tests();
|
|
|
|
/** @noinspection PhpParamsInspection */
|
|
/** @phpstan-ignore argument.type */
|
|
$suite->setTests($this->resolveDependencies($tests));
|
|
}
|
|
}
|
|
|
|
private function addSuiteToDefectSortOrder(TestSuite $suite): void
|
|
{
|
|
$max = 0;
|
|
|
|
foreach ($suite->tests() as $test) {
|
|
assert($test instanceof Reorderable);
|
|
|
|
$sortId = $test->sortId();
|
|
|
|
if (! isset($this->defectSortOrder[$sortId])) {
|
|
$this->defectSortOrder[$sortId] = $this->cache->status(ResultCacheId::fromReorderable($test))->asInt();
|
|
$max = max($max, $this->defectSortOrder[$sortId]);
|
|
}
|
|
}
|
|
|
|
$this->defectSortOrder[$suite->sortId()] = $max;
|
|
}
|
|
|
|
/**
|
|
* @param list<Test> $tests
|
|
* @return list<Test>
|
|
*/
|
|
private function reverse(array $tests): array
|
|
{
|
|
return array_reverse($tests);
|
|
}
|
|
|
|
/**
|
|
* @param list<Test> $tests
|
|
* @return list<Test>
|
|
*/
|
|
private function randomize(array $tests): array
|
|
{
|
|
shuffle($tests);
|
|
|
|
return $tests;
|
|
}
|
|
|
|
/**
|
|
* @param list<Test> $tests
|
|
* @return list<Test>
|
|
*/
|
|
private function sortDefectsFirst(array $tests): array
|
|
{
|
|
usort(
|
|
$tests,
|
|
fn (Test $left, Test $right) => $this->cmpDefectPriorityAndTime($left, $right),
|
|
);
|
|
|
|
return $tests;
|
|
}
|
|
|
|
/**
|
|
* @param list<Test> $tests
|
|
* @return list<Test>
|
|
*/
|
|
private function sortByDuration(array $tests): array
|
|
{
|
|
usort(
|
|
$tests,
|
|
fn (Test $left, Test $right) => $this->cmpDuration($left, $right),
|
|
);
|
|
|
|
return $tests;
|
|
}
|
|
|
|
/**
|
|
* @param list<Test> $tests
|
|
* @return list<Test>
|
|
*/
|
|
private function sortBySize(array $tests): array
|
|
{
|
|
usort(
|
|
$tests,
|
|
fn (Test $left, Test $right) => $this->cmpSize($left, $right),
|
|
);
|
|
|
|
return $tests;
|
|
}
|
|
|
|
private function cmpDefectPriorityAndTime(Test $a, Test $b): int
|
|
{
|
|
assert($a instanceof Reorderable);
|
|
assert($b instanceof Reorderable);
|
|
|
|
$priorityA = $this->defectSortOrder[$a->sortId()] ?? 0;
|
|
$priorityB = $this->defectSortOrder[$b->sortId()] ?? 0;
|
|
|
|
if ($priorityA !== $priorityB) {
|
|
return $priorityB <=> $priorityA;
|
|
}
|
|
|
|
if ($priorityA > 0 || $priorityB > 0) {
|
|
return $this->cmpDuration($a, $b);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
private function cmpDuration(Test $a, Test $b): int
|
|
{
|
|
if (! ($a instanceof Reorderable && $b instanceof Reorderable)) {
|
|
return 0;
|
|
}
|
|
|
|
return $this->cache->time(ResultCacheId::fromReorderable($a)) <=> $this->cache->time(ResultCacheId::fromReorderable($b));
|
|
}
|
|
|
|
private function cmpSize(Test $a, Test $b): int
|
|
{
|
|
$sizeA = ($a instanceof TestCase || $a instanceof DataProviderTestSuite)
|
|
? $a->size()->asString()
|
|
: 'unknown';
|
|
$sizeB = ($b instanceof TestCase || $b instanceof DataProviderTestSuite)
|
|
? $b->size()->asString()
|
|
: 'unknown';
|
|
|
|
return self::SIZE_SORT_WEIGHT[$sizeA] <=> self::SIZE_SORT_WEIGHT[$sizeB];
|
|
}
|
|
|
|
/**
|
|
* @param array<TestCase> $tests
|
|
* @return array<TestCase>
|
|
*/
|
|
private function resolveDependencies(array $tests): array
|
|
{
|
|
// when no test uses `->depends()` / PHPUnit `@depends`.
|
|
if (! $this->anyTestHasDependencies($tests)) {
|
|
return $tests;
|
|
}
|
|
|
|
$newTestOrder = [];
|
|
$i = 0;
|
|
$provided = [];
|
|
|
|
do {
|
|
if (array_diff($tests[$i]->requires(), $provided) === []) {
|
|
$provided = array_merge($provided, $tests[$i]->provides());
|
|
$newTestOrder = array_merge($newTestOrder, array_splice($tests, $i, 1));
|
|
$i = 0;
|
|
} else {
|
|
$i++;
|
|
}
|
|
} while ($tests !== [] && ($i < count($tests)));
|
|
|
|
return array_merge($newTestOrder, $tests);
|
|
}
|
|
|
|
/**
|
|
* Cheaply determines whether any test in the tree declares @depends.
|
|
*
|
|
* @param iterable<Test> $tests
|
|
*/
|
|
private function anyTestHasDependencies(iterable $tests): bool
|
|
{
|
|
foreach ($tests as $test) {
|
|
if ($test instanceof TestSuite) {
|
|
if ($this->anyTestHasDependencies($test->tests())) {
|
|
return true;
|
|
}
|
|
|
|
continue;
|
|
}
|
|
|
|
if ($test instanceof TestCase && $test->requires() !== []) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
}
|