You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
2.0 KiB
80 lines
2.0 KiB
<?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\Filter;
|
|
|
|
use function assert;
|
|
use FilterIterator;
|
|
use Iterator;
|
|
use PHPUnit\Framework\TestSuite;
|
|
use ReflectionClass;
|
|
|
|
/**
|
|
* @internal This class is not covered by the backward compatibility promise for PHPUnit
|
|
*/
|
|
final class Factory
|
|
{
|
|
/**
|
|
* @psalm-var array<int,array{0: ReflectionClass, 1: array|string}>
|
|
*/
|
|
private array $filters = [];
|
|
|
|
/**
|
|
* @psalm-param list<non-empty-string> $testIds
|
|
*/
|
|
public function addTestIdFilter(array $testIds): void
|
|
{
|
|
$this->filters[] = [
|
|
new ReflectionClass(TestIdFilterIterator::class), $testIds,
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @psalm-param list<non-empty-string> $groups
|
|
*/
|
|
public function addExcludeGroupFilter(array $groups): void
|
|
{
|
|
$this->filters[] = [
|
|
new ReflectionClass(ExcludeGroupFilterIterator::class), $groups,
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @psalm-param list<non-empty-string> $groups
|
|
*/
|
|
public function addIncludeGroupFilter(array $groups): void
|
|
{
|
|
$this->filters[] = [
|
|
new ReflectionClass(IncludeGroupFilterIterator::class), $groups,
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @psalm-param non-empty-string $name
|
|
*/
|
|
public function addNameFilter(string $name): void
|
|
{
|
|
$this->filters[] = [
|
|
new ReflectionClass(NameFilterIterator::class), $name,
|
|
];
|
|
}
|
|
|
|
public function factory(Iterator $iterator, TestSuite $suite): FilterIterator
|
|
{
|
|
foreach ($this->filters as $filter) {
|
|
[$class, $arguments] = $filter;
|
|
$iterator = $class->newInstance($iterator, $arguments, $suite);
|
|
}
|
|
|
|
assert($iterator instanceof FilterIterator);
|
|
|
|
return $iterator;
|
|
}
|
|
}
|