mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 15:57:21 +01:00
Compare commits
35 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 19e3d929b1 | |||
| 25729f6262 | |||
| cbb6a58c8a | |||
| 167c96965e | |||
| 8db3238a1f | |||
| cbd8cae83e | |||
| 3e03a87e02 | |||
| 193dd107d7 | |||
| 0cea8fe922 | |||
| abbbc9fdbb | |||
| 10b210d2bb | |||
| 9385a3dcea | |||
| c0af671ca2 | |||
| eb9f31edeb | |||
| 0e5470b192 | |||
| 2122e57990 | |||
| e42d224db2 | |||
| 070139eda7 | |||
| a0d0182031 | |||
| 1885d4e110 | |||
| 5959890125 | |||
| 7460bd6c1f | |||
| 801346b894 | |||
| 40fd06c0d0 | |||
| aa9fe351a6 | |||
| e00efb1b6d | |||
| 86a765b06b | |||
| 3c20e8114e | |||
| 73a859ee56 | |||
| c9180e590e | |||
| 4196579a3d | |||
| 436b20857d | |||
| 82b0adf5ae | |||
| a0041f139c | |||
| b25bc7ee05 |
24
CHANGELOG.md
24
CHANGELOG.md
@ -2,10 +2,34 @@
|
|||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
|
## [v2.8.0 (2023-06-19)](https://github.com/pestphp/pest/compare/v2.7.0...v2.8.0)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- Support for `globs` in `uses` ([#829](https://github.com/pestphp/pest/pull/829))
|
||||||
|
|
||||||
|
## [v2.7.0 (2023-06-15)](https://github.com/pestphp/pest/compare/v2.6.3...v2.7.0)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- Support for unexpected output on printer ([eb9f31e](https://github.com/pestphp/pest/commit/eb9f31edeb00a88c449874f3d48156128a00fff8))
|
||||||
|
|
||||||
|
### Chore
|
||||||
|
- Bumps PHPUnit to `^10.2.2` ([0e5470b](https://github.com/pestphp/pest/commit/0e5470b192b259ba2db7c02a50371216c98fc0a6))
|
||||||
|
|
||||||
|
## [v2.6.3 (2023-06-07)](https://github.com/pestphp/pest/compare/v2.6.2...v2.6.3)
|
||||||
|
|
||||||
|
### Chore
|
||||||
|
- Bumps PHPUnit to `^10.2.1` ([73a859e](https://github.com/pestphp/pest/commit/73a859ee563fe96944ba39b191dceca28ef703c2))
|
||||||
|
|
||||||
|
## [v2.6.2 (2023-06-02)](https://github.com/pestphp/pest/compare/v2.6.1...v2.6.2)
|
||||||
|
|
||||||
|
### Chore
|
||||||
|
- Bumps PHPUnit to `^10.2.0` ([a0041f1](https://github.com/pestphp/pest/commit/a0041f139cba94fe5d15318c38e275f2e2fb3350))
|
||||||
|
|
||||||
## [v2.6.1 (2023-04-12)](https://github.com/pestphp/pest/compare/v2.6.0...v2.6.1)
|
## [v2.6.1 (2023-04-12)](https://github.com/pestphp/pest/compare/v2.6.0...v2.6.1)
|
||||||
|
|
||||||
### Fixes
|
### Fixes
|
||||||
- PHPStorm issue output problem for tests throwing an exception before the first assertion ([#809](https://github.com/pestphp/pest/pull/809))
|
- PHPStorm issue output problem for tests throwing an exception before the first assertion ([#809](https://github.com/pestphp/pest/pull/809))
|
||||||
|
- Allow traits to be covered ([#804](https://github.com/pestphp/pest/pull/804))
|
||||||
|
|
||||||
### Chore
|
### Chore
|
||||||
- Bumps PHPUnit to `^10.1.3` ([c993252](https://github.com/pestphp/pest/commit/c99325275acf1fd3759b487b93ec50473f706709))
|
- Bumps PHPUnit to `^10.1.3` ([c993252](https://github.com/pestphp/pest/commit/c99325275acf1fd3759b487b93ec50473f706709))
|
||||||
|
|||||||
@ -31,6 +31,7 @@ $bootPest = (static function (): void {
|
|||||||
$getopt = getopt('', [
|
$getopt = getopt('', [
|
||||||
'status-file:',
|
'status-file:',
|
||||||
'progress-file:',
|
'progress-file:',
|
||||||
|
'unexpected-output-file:',
|
||||||
'testresult-file:',
|
'testresult-file:',
|
||||||
'teamcity-file:',
|
'teamcity-file:',
|
||||||
'testdox-file:',
|
'testdox-file:',
|
||||||
@ -58,6 +59,7 @@ $bootPest = (static function (): void {
|
|||||||
assert(is_resource($statusFile));
|
assert(is_resource($statusFile));
|
||||||
|
|
||||||
assert(isset($getopt['progress-file']) && is_string($getopt['progress-file']));
|
assert(isset($getopt['progress-file']) && is_string($getopt['progress-file']));
|
||||||
|
assert(isset($getopt['unexpected-output-file']) && is_string($getopt['unexpected-output-file']));
|
||||||
assert(isset($getopt['testresult-file']) && is_string($getopt['testresult-file']));
|
assert(isset($getopt['testresult-file']) && is_string($getopt['testresult-file']));
|
||||||
assert(! isset($getopt['teamcity-file']) || is_string($getopt['teamcity-file']));
|
assert(! isset($getopt['teamcity-file']) || is_string($getopt['teamcity-file']));
|
||||||
assert(! isset($getopt['testdox-file']) || is_string($getopt['testdox-file']));
|
assert(! isset($getopt['testdox-file']) || is_string($getopt['testdox-file']));
|
||||||
@ -73,6 +75,7 @@ $bootPest = (static function (): void {
|
|||||||
$application = new ApplicationForWrapperWorker(
|
$application = new ApplicationForWrapperWorker(
|
||||||
$phpunitArgv,
|
$phpunitArgv,
|
||||||
$getopt['progress-file'],
|
$getopt['progress-file'],
|
||||||
|
$getopt['unexpected-output-file'],
|
||||||
$getopt['testresult-file'],
|
$getopt['testresult-file'],
|
||||||
$getopt['teamcity-file'] ?? null,
|
$getopt['teamcity-file'] ?? null,
|
||||||
$getopt['testdox-file'] ?? null,
|
$getopt['testdox-file'] ?? null,
|
||||||
@ -88,10 +91,10 @@ $bootPest = (static function (): void {
|
|||||||
$testPath = fgets(STDIN);
|
$testPath = fgets(STDIN);
|
||||||
if ($testPath === false || $testPath === WrapperWorker::COMMAND_EXIT) {
|
if ($testPath === false || $testPath === WrapperWorker::COMMAND_EXIT) {
|
||||||
$application->end();
|
$application->end();
|
||||||
|
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// It must be a 1 byte string to ensure filesize() is equal to the number of tests executed
|
||||||
$exitCode = $application->runTest(realpath(trim($testPath)));
|
$exitCode = $application->runTest(realpath(trim($testPath)));
|
||||||
|
|
||||||
fwrite($statusFile, (string) $exitCode);
|
fwrite($statusFile, (string) $exitCode);
|
||||||
|
|||||||
@ -18,16 +18,16 @@
|
|||||||
],
|
],
|
||||||
"require": {
|
"require": {
|
||||||
"php": "^8.1.0",
|
"php": "^8.1.0",
|
||||||
"brianium/paratest": "^7.1.4",
|
"brianium/paratest": "^7.2.0",
|
||||||
"nunomaduro/collision": "^7.5.2",
|
"nunomaduro/collision": "^7.6.0",
|
||||||
"nunomaduro/termwind": "^1.15.1",
|
"nunomaduro/termwind": "^1.15.1",
|
||||||
"pestphp/pest-plugin": "^2.0.1",
|
"pestphp/pest-plugin": "^2.0.1",
|
||||||
"pestphp/pest-plugin-arch": "^2.1.2",
|
"pestphp/pest-plugin-arch": "^2.2.1",
|
||||||
"phpunit/phpunit": "^10.1.3"
|
"phpunit/phpunit": "^10.2.2"
|
||||||
},
|
},
|
||||||
"conflict": {
|
"conflict": {
|
||||||
"webmozart/assert": "<1.11.0",
|
"webmozart/assert": "<1.11.0",
|
||||||
"phpunit/phpunit": ">10.1.3"
|
"phpunit/phpunit": ">10.2.2"
|
||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
"psr-4": {
|
"psr-4": {
|
||||||
@ -49,8 +49,8 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"pestphp/pest-dev-tools": "^2.9.0",
|
"pestphp/pest-dev-tools": "^2.12.0",
|
||||||
"symfony/process": "^6.2.10"
|
"symfony/process": "^6.3.0"
|
||||||
},
|
},
|
||||||
"minimum-stability": "stable",
|
"minimum-stability": "stable",
|
||||||
"config": {
|
"config": {
|
||||||
|
|||||||
@ -167,7 +167,7 @@ final class Expectation
|
|||||||
*
|
*
|
||||||
* @template TSequenceValue
|
* @template TSequenceValue
|
||||||
*
|
*
|
||||||
* @param (callable(self<TValue>, self<string|int>): void)|TSequenceValue ...$callbacks
|
* @param (callable(self<TValue>, self<string|int>): void)|TSequenceValue ...$callbacks
|
||||||
* @return self<TValue>
|
* @return self<TValue>
|
||||||
*/
|
*/
|
||||||
public function sequence(mixed ...$callbacks): self
|
public function sequence(mixed ...$callbacks): self
|
||||||
@ -210,8 +210,8 @@ final class Expectation
|
|||||||
*
|
*
|
||||||
* @template TMatchSubject of array-key
|
* @template TMatchSubject of array-key
|
||||||
*
|
*
|
||||||
* @param (callable(): TMatchSubject)|TMatchSubject $subject
|
* @param (callable(): TMatchSubject)|TMatchSubject $subject
|
||||||
* @param array<TMatchSubject, (callable(self<TValue>): mixed)|TValue> $expressions
|
* @param array<TMatchSubject, (callable(self<TValue>): mixed)|TValue> $expressions
|
||||||
* @return self<TValue>
|
* @return self<TValue>
|
||||||
*/
|
*/
|
||||||
public function match(mixed $subject, array $expressions): self
|
public function match(mixed $subject, array $expressions): self
|
||||||
@ -248,7 +248,7 @@ final class Expectation
|
|||||||
/**
|
/**
|
||||||
* Apply the callback if the given "condition" is falsy.
|
* Apply the callback if the given "condition" is falsy.
|
||||||
*
|
*
|
||||||
* @param (callable(): bool)|bool $condition
|
* @param (callable(): bool)|bool $condition
|
||||||
* @param callable(Expectation<TValue>): mixed $callback
|
* @param callable(Expectation<TValue>): mixed $callback
|
||||||
* @return self<TValue>
|
* @return self<TValue>
|
||||||
*/
|
*/
|
||||||
@ -264,7 +264,7 @@ final class Expectation
|
|||||||
/**
|
/**
|
||||||
* Apply the callback if the given "condition" is truthy.
|
* Apply the callback if the given "condition" is truthy.
|
||||||
*
|
*
|
||||||
* @param (callable(): bool)|bool $condition
|
* @param (callable(): bool)|bool $condition
|
||||||
* @param callable(self<TValue>): mixed $callback
|
* @param callable(self<TValue>): mixed $callback
|
||||||
* @return self<TValue>
|
* @return self<TValue>
|
||||||
*/
|
*/
|
||||||
|
|||||||
@ -67,10 +67,14 @@ final class Kernel
|
|||||||
|
|
||||||
CallsBoot::execute();
|
CallsBoot::execute();
|
||||||
|
|
||||||
return new self(
|
$kernel = new self(
|
||||||
new Application(),
|
new Application(),
|
||||||
$output,
|
$output,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
Container::getInstance()->add(self::class, $kernel);
|
||||||
|
|
||||||
|
return $kernel;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -25,7 +25,7 @@ final class ServiceMessage
|
|||||||
$paramsToString = '';
|
$paramsToString = '';
|
||||||
|
|
||||||
foreach ([...$this->parameters, 'flowId' => self::$flowId] as $key => $value) {
|
foreach ([...$this->parameters, 'flowId' => self::$flowId] as $key => $value) {
|
||||||
$value = self::escapeServiceMessage((string) $value);
|
$value = $this->escapeServiceMessage((string) $value);
|
||||||
$paramsToString .= " $key='$value'";
|
$paramsToString .= " $key='$value'";
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -127,7 +127,7 @@ final class ServiceMessage
|
|||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static function escapeServiceMessage(string $text): string
|
private function escapeServiceMessage(string $text): string
|
||||||
{
|
{
|
||||||
return str_replace(
|
return str_replace(
|
||||||
['|', "'", "\n", "\r", ']', '['],
|
['|', "'", "\n", "\r", ']', '['],
|
||||||
|
|||||||
@ -839,7 +839,7 @@ final class Expectation
|
|||||||
/**
|
/**
|
||||||
* Asserts that executing value throws an exception.
|
* Asserts that executing value throws an exception.
|
||||||
*
|
*
|
||||||
* @param (Closure(Throwable): mixed)|string $exception
|
* @param (Closure(Throwable): mixed)|string $exception
|
||||||
* @return self<TValue>
|
* @return self<TValue>
|
||||||
*/
|
*/
|
||||||
public function toThrow(callable|string|Throwable $exception, string $exceptionMessage = null, string $message = ''): self
|
public function toThrow(callable|string|Throwable $exception, string $exceptionMessage = null, string $message = ''): self
|
||||||
|
|||||||
@ -84,7 +84,7 @@ final class TestCall
|
|||||||
/**
|
/**
|
||||||
* Asserts that the test throws the given `$exceptionClass` when called if the given condition is true.
|
* Asserts that the test throws the given `$exceptionClass` when called if the given condition is true.
|
||||||
*
|
*
|
||||||
* @param (callable(): bool)|bool $condition
|
* @param (callable(): bool)|bool $condition
|
||||||
*/
|
*/
|
||||||
public function throwsIf(callable|bool $condition, string|int $exception, string $exceptionMessage = null, int $exceptionCode = null): self
|
public function throwsIf(callable|bool $condition, string|int $exception, string $exceptionMessage = null, int $exceptionCode = null): self
|
||||||
{
|
{
|
||||||
|
|||||||
@ -84,8 +84,10 @@ final class UsesCall
|
|||||||
}, $targets);
|
}, $targets);
|
||||||
|
|
||||||
$this->targets = array_reduce($targets, function (array $accumulator, string $target): array {
|
$this->targets = array_reduce($targets, function (array $accumulator, string $target): array {
|
||||||
if (is_dir($target) || file_exists($target)) {
|
if (($matches = glob($target)) !== false) {
|
||||||
$accumulator[] = (string) realpath($target);
|
foreach ($matches as $file) {
|
||||||
|
$accumulator[] = (string) realpath($file);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return $accumulator;
|
return $accumulator;
|
||||||
|
|||||||
@ -6,7 +6,7 @@ namespace Pest;
|
|||||||
|
|
||||||
function version(): string
|
function version(): string
|
||||||
{
|
{
|
||||||
return '2.6.1';
|
return '2.8.0';
|
||||||
}
|
}
|
||||||
|
|
||||||
function testDirectory(string $file = ''): string
|
function testDirectory(string $file = ''): string
|
||||||
|
|||||||
@ -60,13 +60,13 @@ final class Init implements HandlesArguments
|
|||||||
|
|
||||||
$this->init();
|
$this->init();
|
||||||
|
|
||||||
return array_values($arguments);
|
exit(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Initializes the tests directory.
|
* Initializes the tests directory.
|
||||||
*/
|
*/
|
||||||
private function init(): void
|
public function init(): void
|
||||||
{
|
{
|
||||||
$testsBaseDir = "{$this->testSuite->rootPath}/tests";
|
$testsBaseDir = "{$this->testSuite->rootPath}/tests";
|
||||||
|
|
||||||
@ -112,8 +112,6 @@ final class Init implements HandlesArguments
|
|||||||
View::render('components.new-line');
|
View::render('components.new-line');
|
||||||
|
|
||||||
(new Thanks($this->input, $this->output))();
|
(new Thanks($this->input, $this->output))();
|
||||||
|
|
||||||
exit(0);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -12,20 +12,20 @@ use function fread;
|
|||||||
use function fseek;
|
use function fseek;
|
||||||
use function ftell;
|
use function ftell;
|
||||||
use function fwrite;
|
use function fwrite;
|
||||||
use NunoMaduro\Collision\Adapters\Phpunit\State;
|
|
||||||
use ParaTest\Options;
|
use ParaTest\Options;
|
||||||
use Pest\Plugins\Parallel\Support\CompactPrinter;
|
use Pest\Plugins\Parallel\Support\CompactPrinter;
|
||||||
use Pest\Support\StateGenerator;
|
use Pest\Support\StateGenerator;
|
||||||
use PHPUnit\TestRunner\TestResult\TestResult;
|
use PHPUnit\TestRunner\TestResult\TestResult;
|
||||||
use PHPUnit\TextUI\Output\Printer;
|
use PHPUnit\TextUI\Output\Printer;
|
||||||
use function preg_replace;
|
|
||||||
use SebastianBergmann\Timer\Duration;
|
use SebastianBergmann\Timer\Duration;
|
||||||
use SplFileInfo;
|
use SplFileInfo;
|
||||||
use function strlen;
|
use function strlen;
|
||||||
use Symfony\Component\Console\Formatter\OutputFormatter;
|
use Symfony\Component\Console\Formatter\OutputFormatter;
|
||||||
use Symfony\Component\Console\Output\OutputInterface;
|
use Symfony\Component\Console\Output\OutputInterface;
|
||||||
|
|
||||||
/** @internal */
|
/**
|
||||||
|
* @internal
|
||||||
|
*/
|
||||||
final class ResultPrinter
|
final class ResultPrinter
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
@ -51,7 +51,7 @@ final class ResultPrinter
|
|||||||
/** @var resource|null */
|
/** @var resource|null */
|
||||||
private $teamcityLogFileHandle;
|
private $teamcityLogFileHandle;
|
||||||
|
|
||||||
/** @var array<string, int> */
|
/** @var array<non-empty-string, int> */
|
||||||
private array $tailPositions;
|
private array $tailPositions;
|
||||||
|
|
||||||
public function __construct(
|
public function __construct(
|
||||||
@ -74,6 +74,7 @@ final class ResultPrinter
|
|||||||
if (str_starts_with($buffer, 'done [')) {
|
if (str_starts_with($buffer, 'done [')) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->output->write(OutputFormatter::escape($buffer));
|
$this->output->write(OutputFormatter::escape($buffer));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -93,9 +94,12 @@ final class ResultPrinter
|
|||||||
$this->teamcityLogFileHandle = $teamcityLogFileHandle;
|
$this->teamcityLogFileHandle = $teamcityLogFileHandle;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** @param array<int, SplFileInfo> $teamcityFiles */
|
/** @param list<SplFileInfo> $teamcityFiles */
|
||||||
public function printFeedback(SplFileInfo $progressFile, array $teamcityFiles): void
|
public function printFeedback(
|
||||||
{
|
SplFileInfo $progressFile,
|
||||||
|
SplFileInfo $outputFile,
|
||||||
|
array $teamcityFiles
|
||||||
|
): void {
|
||||||
if ($this->options->needsTeamcity) {
|
if ($this->options->needsTeamcity) {
|
||||||
$teamcityProgress = $this->tailMultiple($teamcityFiles);
|
$teamcityProgress = $this->tailMultiple($teamcityFiles);
|
||||||
|
|
||||||
@ -115,6 +119,15 @@ final class ResultPrinter
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$unexpectedOutput = $this->tail($outputFile);
|
||||||
|
if ($unexpectedOutput !== '') {
|
||||||
|
if (preg_match('/^T+$/', $unexpectedOutput) > 0) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->output->write($unexpectedOutput);
|
||||||
|
}
|
||||||
|
|
||||||
$feedbackItems = $this->tail($progressFile);
|
$feedbackItems = $this->tail($progressFile);
|
||||||
if ($feedbackItems === '') {
|
if ($feedbackItems === '') {
|
||||||
return;
|
return;
|
||||||
@ -129,8 +142,8 @@ final class ResultPrinter
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param array<int, SplFileInfo> $teamcityFiles
|
* @param list<SplFileInfo> $teamcityFiles
|
||||||
* @param array<int, SplFileInfo> $testdoxFiles
|
* @param list<SplFileInfo> $testdoxFiles
|
||||||
*/
|
*/
|
||||||
public function printResults(TestResult $testResult, array $teamcityFiles, array $testdoxFiles, Duration $duration): void
|
public function printResults(TestResult $testResult, array $teamcityFiles, array $testdoxFiles, Duration $duration): void
|
||||||
{
|
{
|
||||||
@ -183,7 +196,7 @@ final class ResultPrinter
|
|||||||
$this->compactPrinter->descriptionItem($item);
|
$this->compactPrinter->descriptionItem($item);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** @param array<int, SplFileInfo> $files */
|
/** @param list<SplFileInfo> $files */
|
||||||
private function tailMultiple(array $files): string
|
private function tailMultiple(array $files): string
|
||||||
{
|
{
|
||||||
$content = '';
|
$content = '';
|
||||||
@ -201,6 +214,7 @@ final class ResultPrinter
|
|||||||
private function tail(SplFileInfo $file): string
|
private function tail(SplFileInfo $file): string
|
||||||
{
|
{
|
||||||
$path = $file->getPathname();
|
$path = $file->getPathname();
|
||||||
|
assert($path !== '');
|
||||||
$handle = fopen($path, 'r');
|
$handle = fopen($path, 'r');
|
||||||
assert($handle !== false);
|
assert($handle !== false);
|
||||||
$fseek = fseek($handle, $this->tailPositions[$path] ?? 0);
|
$fseek = fseek($handle, $this->tailPositions[$path] ?? 0);
|
||||||
|
|||||||
@ -48,36 +48,39 @@ final class WrapperRunner implements RunnerInterface
|
|||||||
|
|
||||||
private readonly Timer $timer;
|
private readonly Timer $timer;
|
||||||
|
|
||||||
/** @var array<int, string> */
|
/** @var list<non-empty-string> */
|
||||||
private array $pending = [];
|
private array $pending = [];
|
||||||
|
|
||||||
private int $exitCode = -1;
|
private int $exitcode = -1;
|
||||||
|
|
||||||
/** @var array<int,WrapperWorker> */
|
/** @var array<positive-int,WrapperWorker> */
|
||||||
private array $workers = [];
|
private array $workers = [];
|
||||||
|
|
||||||
/** @var array<int,int> */
|
/** @var array<int,int> */
|
||||||
private array $batches = [];
|
private array $batches = [];
|
||||||
|
|
||||||
/** @var array<int, SplFileInfo> */
|
/** @var list<SplFileInfo> */
|
||||||
|
private array $unexpectedOutputFiles = [];
|
||||||
|
|
||||||
|
/** @var list<SplFileInfo> */
|
||||||
private array $testresultFiles = [];
|
private array $testresultFiles = [];
|
||||||
|
|
||||||
/** @var array<int, SplFileInfo> */
|
/** @var list<SplFileInfo> */
|
||||||
private array $coverageFiles = [];
|
private array $coverageFiles = [];
|
||||||
|
|
||||||
/** @var array<int, SplFileInfo> */
|
/** @var list<SplFileInfo> */
|
||||||
private array $junitFiles = [];
|
private array $junitFiles = [];
|
||||||
|
|
||||||
/** @var array<int, SplFileInfo> */
|
/** @var list<SplFileInfo> */
|
||||||
private array $teamcityFiles = [];
|
private array $teamcityFiles = [];
|
||||||
|
|
||||||
/** @var array<int, SplFileInfo> */
|
/** @var list<SplFileInfo> */
|
||||||
private array $testdoxFiles = [];
|
private array $testdoxFiles = [];
|
||||||
|
|
||||||
/** @var array<int, string> */
|
/** @var non-empty-string[] */
|
||||||
private readonly array $parameters;
|
private readonly array $parameters;
|
||||||
|
|
||||||
private readonly CodeCoverageFilterRegistry $codeCoverageFilterRegistry;
|
private CodeCoverageFilterRegistry $codeCoverageFilterRegistry;
|
||||||
|
|
||||||
public function __construct(
|
public function __construct(
|
||||||
private readonly Options $options,
|
private readonly Options $options,
|
||||||
@ -86,11 +89,10 @@ final class WrapperRunner implements RunnerInterface
|
|||||||
$this->printer = new ResultPrinter($output, $options);
|
$this->printer = new ResultPrinter($output, $options);
|
||||||
$this->timer = new Timer();
|
$this->timer = new Timer();
|
||||||
|
|
||||||
$worker = realpath(
|
$wrapper = realpath(
|
||||||
dirname(__DIR__, 4).DIRECTORY_SEPARATOR.'bin'.DIRECTORY_SEPARATOR.'worker.php',
|
dirname(__DIR__, 4).DIRECTORY_SEPARATOR.'bin'.DIRECTORY_SEPARATOR.'worker.php',
|
||||||
);
|
);
|
||||||
|
assert($wrapper !== false);
|
||||||
assert($worker !== false);
|
|
||||||
$phpFinder = new PhpExecutableFinder();
|
$phpFinder = new PhpExecutableFinder();
|
||||||
$phpBin = $phpFinder->find(false);
|
$phpBin = $phpFinder->find(false);
|
||||||
assert($phpBin !== false);
|
assert($phpBin !== false);
|
||||||
@ -101,7 +103,7 @@ final class WrapperRunner implements RunnerInterface
|
|||||||
$parameters = array_merge($parameters, $options->passthruPhp);
|
$parameters = array_merge($parameters, $options->passthruPhp);
|
||||||
}
|
}
|
||||||
|
|
||||||
$parameters[] = $worker;
|
$parameters[] = $wrapper;
|
||||||
|
|
||||||
$this->parameters = $parameters;
|
$this->parameters = $parameters;
|
||||||
$this->codeCoverageFilterRegistry = new CodeCoverageFilterRegistry();
|
$this->codeCoverageFilterRegistry = new CodeCoverageFilterRegistry();
|
||||||
@ -110,14 +112,15 @@ final class WrapperRunner implements RunnerInterface
|
|||||||
public function run(): int
|
public function run(): int
|
||||||
{
|
{
|
||||||
$directory = dirname(__DIR__);
|
$directory = dirname(__DIR__);
|
||||||
assert(strlen($directory) > 0);
|
assert($directory !== '');
|
||||||
ExcludeList::addDirectory($directory);
|
ExcludeList::addDirectory($directory);
|
||||||
|
|
||||||
TestResultFacade::init();
|
TestResultFacade::init();
|
||||||
|
|
||||||
EventFacade::instance()->seal();
|
EventFacade::instance()->seal();
|
||||||
|
$suiteLoader = new SuiteLoader(
|
||||||
$suiteLoader = new SuiteLoader($this->options, $this->output, $this->codeCoverageFilterRegistry);
|
$this->options,
|
||||||
|
$this->output,
|
||||||
|
$this->codeCoverageFilterRegistry,
|
||||||
|
);
|
||||||
$this->pending = $this->getTestFiles($suiteLoader);
|
$this->pending = $this->getTestFiles($suiteLoader);
|
||||||
|
|
||||||
$result = TestResultFacade::result();
|
$result = TestResultFacade::result();
|
||||||
@ -142,7 +145,7 @@ final class WrapperRunner implements RunnerInterface
|
|||||||
{
|
{
|
||||||
$batchSize = $this->options->maxBatchSize;
|
$batchSize = $this->options->maxBatchSize;
|
||||||
|
|
||||||
while ($this->pending !== [] && $this->workers !== []) {
|
while (count($this->pending) > 0 && count($this->workers) > 0) {
|
||||||
foreach ($this->workers as $token => $worker) {
|
foreach ($this->workers as $token => $worker) {
|
||||||
if (! $worker->isRunning()) {
|
if (! $worker->isRunning()) {
|
||||||
throw $worker->getWorkerCrashedException();
|
throw $worker->getWorkerCrashedException();
|
||||||
@ -160,13 +163,11 @@ final class WrapperRunner implements RunnerInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (
|
if (
|
||||||
$this->exitCode > 0
|
$this->exitcode > 0
|
||||||
&& $this->options->configuration->stopOnFailure()
|
&& $this->options->configuration->stopOnFailure()
|
||||||
) {
|
) {
|
||||||
$this->pending = [];
|
$this->pending = [];
|
||||||
} elseif (($pending = array_shift($this->pending)) !== null) {
|
} elseif (($pending = array_shift($this->pending)) !== null) {
|
||||||
$this->debug(sprintf('Assigning %s to worker %d', $pending, $token));
|
|
||||||
|
|
||||||
$worker->assign($pending);
|
$worker->assign($pending);
|
||||||
$this->batches[$token]++;
|
$this->batches[$token]++;
|
||||||
}
|
}
|
||||||
@ -178,9 +179,10 @@ final class WrapperRunner implements RunnerInterface
|
|||||||
|
|
||||||
private function flushWorker(WrapperWorker $worker): void
|
private function flushWorker(WrapperWorker $worker): void
|
||||||
{
|
{
|
||||||
$this->exitCode = max($this->exitCode, $worker->getExitCode());
|
$this->exitcode = max($this->exitcode, $worker->getExitCode());
|
||||||
$this->printer->printFeedback(
|
$this->printer->printFeedback(
|
||||||
$worker->progressFile,
|
$worker->progressFile,
|
||||||
|
$worker->unexpectedOutputFile,
|
||||||
$this->teamcityFiles,
|
$this->teamcityFiles,
|
||||||
);
|
);
|
||||||
$worker->reset();
|
$worker->reset();
|
||||||
@ -189,10 +191,10 @@ final class WrapperRunner implements RunnerInterface
|
|||||||
private function waitForAllToFinish(): void
|
private function waitForAllToFinish(): void
|
||||||
{
|
{
|
||||||
$stopped = [];
|
$stopped = [];
|
||||||
while ($this->workers !== []) {
|
while (count($this->workers) > 0) {
|
||||||
foreach ($this->workers as $index => $worker) {
|
foreach ($this->workers as $index => $worker) {
|
||||||
if ($worker->isRunning()) {
|
if ($worker->isRunning()) {
|
||||||
if (! array_key_exists($index, $stopped) && $worker->isFree()) {
|
if (! isset($stopped[$index]) && $worker->isFree()) {
|
||||||
$worker->stop();
|
$worker->stop();
|
||||||
$stopped[$index] = true;
|
$stopped[$index] = true;
|
||||||
}
|
}
|
||||||
@ -212,22 +214,19 @@ final class WrapperRunner implements RunnerInterface
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** @param positive-int $token */
|
||||||
private function startWorker(int $token): WrapperWorker
|
private function startWorker(int $token): WrapperWorker
|
||||||
{
|
{
|
||||||
/** @var array<non-empty-string> $parameters */
|
|
||||||
$parameters = $this->parameters;
|
|
||||||
|
|
||||||
$worker = new WrapperWorker(
|
$worker = new WrapperWorker(
|
||||||
$this->output,
|
$this->output,
|
||||||
$this->options,
|
$this->options,
|
||||||
$parameters,
|
$this->parameters,
|
||||||
$token,
|
$token,
|
||||||
);
|
);
|
||||||
|
|
||||||
$worker->start();
|
$worker->start();
|
||||||
|
|
||||||
$this->batches[$token] = 0;
|
$this->batches[$token] = 0;
|
||||||
|
|
||||||
|
$this->unexpectedOutputFiles[] = $worker->unexpectedOutputFile;
|
||||||
$this->testresultFiles[] = $worker->testresultFile;
|
$this->testresultFiles[] = $worker->testresultFile;
|
||||||
|
|
||||||
if (isset($worker->junitFile)) {
|
if (isset($worker->junitFile)) {
|
||||||
@ -330,15 +329,16 @@ final class WrapperRunner implements RunnerInterface
|
|||||||
$this->generateCodeCoverageReports();
|
$this->generateCodeCoverageReports();
|
||||||
$this->generateLogs();
|
$this->generateLogs();
|
||||||
|
|
||||||
$exitCode = Result::exitCode($this->options->configuration, $testResultSum);
|
$exitcode = Result::exitCode($this->options->configuration, $testResultSum);
|
||||||
|
|
||||||
|
$this->clearFiles($this->unexpectedOutputFiles);
|
||||||
$this->clearFiles($this->testresultFiles);
|
$this->clearFiles($this->testresultFiles);
|
||||||
$this->clearFiles($this->coverageFiles);
|
$this->clearFiles($this->coverageFiles);
|
||||||
$this->clearFiles($this->junitFiles);
|
$this->clearFiles($this->junitFiles);
|
||||||
$this->clearFiles($this->teamcityFiles);
|
$this->clearFiles($this->teamcityFiles);
|
||||||
$this->clearFiles($this->testdoxFiles);
|
$this->clearFiles($this->testdoxFiles);
|
||||||
|
|
||||||
return $exitCode;
|
return $exitcode;
|
||||||
}
|
}
|
||||||
|
|
||||||
private function generateCodeCoverageReports(): void
|
private function generateCodeCoverageReports(): void
|
||||||
@ -348,10 +348,11 @@ final class WrapperRunner implements RunnerInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
$coverageManager = new CodeCoverage();
|
$coverageManager = new CodeCoverage();
|
||||||
|
$coverageManager->init(
|
||||||
// @phpstan-ignore-next-line
|
$this->options->configuration,
|
||||||
is_bool(true) && $coverageManager->init($this->options->configuration, $this->codeCoverageFilterRegistry, true);
|
$this->codeCoverageFilterRegistry,
|
||||||
|
false,
|
||||||
|
);
|
||||||
$coverageMerger = new CoverageMerger($coverageManager->codeCoverage());
|
$coverageMerger = new CoverageMerger($coverageManager->codeCoverage());
|
||||||
foreach ($this->coverageFiles as $coverageFile) {
|
foreach ($this->coverageFiles as $coverageFile) {
|
||||||
$coverageMerger->addCoverageFromFile($coverageFile);
|
$coverageMerger->addCoverageFromFile($coverageFile);
|
||||||
@ -376,7 +377,7 @@ final class WrapperRunner implements RunnerInterface
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** @param array<int, SplFileInfo> $files */
|
/** @param list<SplFileInfo> $files */
|
||||||
private function clearFiles(array $files): void
|
private function clearFiles(array $files): void
|
||||||
{
|
{
|
||||||
foreach ($files as $file) {
|
foreach ($files as $file) {
|
||||||
@ -391,31 +392,19 @@ final class WrapperRunner implements RunnerInterface
|
|||||||
/**
|
/**
|
||||||
* Returns the test files to be executed.
|
* Returns the test files to be executed.
|
||||||
*
|
*
|
||||||
* @return array<int, string>
|
* @return array<int, non-empty-string>
|
||||||
*/
|
*/
|
||||||
private function getTestFiles(SuiteLoader $suiteLoader): array
|
private function getTestFiles(SuiteLoader $suiteLoader): array
|
||||||
{
|
{
|
||||||
$this->debug(sprintf('Found %d test file%s', count($suiteLoader->files), count($suiteLoader->files) === 1 ? '' : 's'));
|
/** @var array<string, non-empty-string> $files */
|
||||||
|
$files = [
|
||||||
/** @var array<string, string> $files */
|
|
||||||
$files = $suiteLoader->files;
|
|
||||||
|
|
||||||
return [
|
|
||||||
...array_values(array_filter(
|
...array_values(array_filter(
|
||||||
$files,
|
$suiteLoader->tests,
|
||||||
fn (string $filename): bool => ! str_ends_with($filename, "eval()'d code")
|
fn (string $filename): bool => ! str_ends_with($filename, "eval()'d code")
|
||||||
)),
|
)),
|
||||||
...TestSuite::getInstance()->tests->getFilenames(),
|
...TestSuite::getInstance()->tests->getFilenames(),
|
||||||
];
|
];
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
return $files; // @phpstan-ignore-line
|
||||||
* Prints a debug message.
|
|
||||||
*/
|
|
||||||
private function debug(string $message): void
|
|
||||||
{
|
|
||||||
if ($this->options->verbose) {
|
|
||||||
$this->output->writeln(" <fg=blue>{$message}</> ");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -39,15 +39,13 @@ final class Result
|
|||||||
*/
|
*/
|
||||||
public static function exitCode(Configuration $configuration, TestResult $result): int
|
public static function exitCode(Configuration $configuration, TestResult $result): int
|
||||||
{
|
{
|
||||||
$returnCode = self::FAILURE_EXIT;
|
|
||||||
|
|
||||||
if ($result->wasSuccessfulIgnoringPhpunitWarnings()
|
if ($result->wasSuccessfulIgnoringPhpunitWarnings()
|
||||||
&& ! $result->hasTestTriggeredPhpunitWarningEvents()) {
|
&& ! $result->hasTestTriggeredPhpunitWarningEvents()) {
|
||||||
$returnCode = self::SUCCESS_EXIT;
|
return self::SUCCESS_EXIT;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($configuration->failOnEmptyTestSuite() && $result->numberOfTests() === 0) {
|
if ($configuration->failOnEmptyTestSuite() && $result->numberOfTests() === 0) {
|
||||||
$returnCode = self::FAILURE_EXIT;
|
return self::FAILURE_EXIT;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($result->wasSuccessfulIgnoringPhpunitWarnings()) {
|
if ($result->wasSuccessfulIgnoringPhpunitWarnings()) {
|
||||||
@ -76,6 +74,6 @@ final class Result
|
|||||||
return self::EXCEPTION_EXIT;
|
return self::EXCEPTION_EXIT;
|
||||||
}
|
}
|
||||||
|
|
||||||
return $returnCode;
|
return self::FAILURE_EXIT;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -77,6 +77,12 @@ final class Exporter
|
|||||||
*/
|
*/
|
||||||
public function shortenedExport(mixed $value): string
|
public function shortenedExport(mixed $value): string
|
||||||
{
|
{
|
||||||
return (string) preg_replace(['#\.{3}#', '#\\\n\s*#'], ['…'], $this->exporter->shortenedExport($value));
|
$map = [
|
||||||
|
'#\.{3}#' => '…',
|
||||||
|
'#\\\n\s*#' => '',
|
||||||
|
'# Object \(…\)#' => '',
|
||||||
|
];
|
||||||
|
|
||||||
|
return (string) preg_replace(array_keys($map), array_values($map), $this->exporter->shortenedExport($value));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -25,7 +25,7 @@ final class HigherOrderCallables
|
|||||||
*
|
*
|
||||||
* Create a new expectation. Callable values will be executed prior to returning the new expectation.
|
* Create a new expectation. Callable values will be executed prior to returning the new expectation.
|
||||||
*
|
*
|
||||||
* @param (Closure():TValue)|TValue $value
|
* @param (Closure():TValue)|TValue $value
|
||||||
* @return Expectation<TValue>
|
* @return Expectation<TValue>
|
||||||
*/
|
*/
|
||||||
public function expect(mixed $value): Expectation
|
public function expect(mixed $value): Expectation
|
||||||
|
|||||||
@ -62,7 +62,7 @@ final class HigherOrderMessage
|
|||||||
Reflection::setPropertyValue($throwable, 'file', $this->filename);
|
Reflection::setPropertyValue($throwable, 'file', $this->filename);
|
||||||
Reflection::setPropertyValue($throwable, 'line', $this->line);
|
Reflection::setPropertyValue($throwable, 'line', $this->line);
|
||||||
|
|
||||||
if ($throwable->getMessage() === self::getUndefinedMethodMessage($target, $this->name)) {
|
if ($throwable->getMessage() === $this->getUndefinedMethodMessage($target, $this->name)) {
|
||||||
/** @var ReflectionClass<TValue> $reflection */
|
/** @var ReflectionClass<TValue> $reflection */
|
||||||
$reflection = new ReflectionClass($target);
|
$reflection = new ReflectionClass($target);
|
||||||
/* @phpstan-ignore-next-line */
|
/* @phpstan-ignore-next-line */
|
||||||
@ -94,7 +94,7 @@ final class HigherOrderMessage
|
|||||||
return in_array($this->name, get_class_methods(HigherOrderCallables::class), true);
|
return in_array($this->name, get_class_methods(HigherOrderCallables::class), true);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static function getUndefinedMethodMessage(object $target, string $methodName): string
|
private function getUndefinedMethodMessage(object $target, string $methodName): string
|
||||||
{
|
{
|
||||||
if (\PHP_MAJOR_VERSION >= 8) {
|
if (\PHP_MAJOR_VERSION >= 8) {
|
||||||
return sprintf(self::UNDEFINED_METHOD, sprintf('%s::%s()', $target::class, $methodName));
|
return sprintf(self::UNDEFINED_METHOD, sprintf('%s::%s()', $target::class, $methodName));
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
##teamcity[testSuiteStarted name='Tests/tests/Failure' locationHint='file://tests/.tests/Failure.php' flowId='1234']
|
##teamcity[testSuiteStarted name='Tests/tests/Failure' locationHint='file://tests/.tests/Failure.php' flowId='1234']
|
||||||
##teamcity[testCount count='8' flowId='1234']
|
##teamcity[testCount count='8' flowId='1234']
|
||||||
##teamcity[testStarted name='it can fail with comparison' locationHint='pest_qn://tests/.tests/Failure.php::it can fail with comparison' flowId='1234']
|
##teamcity[testStarted name='it can fail with comparison' locationHint='pest_qn://tests/.tests/Failure.php::it can fail with comparison' flowId='1234']
|
||||||
##teamcity[testFailed name='it can fail with comparison' message='Failed asserting that true matches expected false.' details='at src/Mixins/Expectation.php:343|nat src/Support/ExpectationPipeline.php:75|nat src/Support/ExpectationPipeline.php:79|nat src/Expectation.php:300|nat tests/.tests/Failure.php:6|nat src/Factories/TestCaseMethodFactory.php:100|nat src/Concerns/Testable.php:302|nat src/Support/ExceptionTrace.php:28|nat src/Concerns/Testable.php:302|nat src/Concerns/Testable.php:221|nat src/Kernel.php:86' type='comparisonFailure' actual='true' expected='false' flowId='1234']
|
##teamcity[testFailed name='it can fail with comparison' message='Failed asserting that true matches expected false.' details='at src/Mixins/Expectation.php:343|nat src/Support/ExpectationPipeline.php:75|nat src/Support/ExpectationPipeline.php:79|nat src/Expectation.php:300|nat tests/.tests/Failure.php:6|nat src/Factories/TestCaseMethodFactory.php:100|nat src/Concerns/Testable.php:302|nat src/Support/ExceptionTrace.php:28|nat src/Concerns/Testable.php:302|nat src/Concerns/Testable.php:221|nat src/Kernel.php:90' type='comparisonFailure' actual='true' expected='false' flowId='1234']
|
||||||
##teamcity[testFinished name='it can fail with comparison' duration='100000' flowId='1234']
|
##teamcity[testFinished name='it can fail with comparison' duration='100000' flowId='1234']
|
||||||
##teamcity[testStarted name='it can be ignored because of no assertions' locationHint='pest_qn://tests/.tests/Failure.php::it can be ignored because of no assertions' flowId='1234']
|
##teamcity[testStarted name='it can be ignored because of no assertions' locationHint='pest_qn://tests/.tests/Failure.php::it can be ignored because of no assertions' flowId='1234']
|
||||||
##teamcity[testIgnored name='it can be ignored because of no assertions' message='This test did not perform any assertions' details='' flowId='1234']
|
##teamcity[testIgnored name='it can be ignored because of no assertions' message='This test did not perform any assertions' details='' flowId='1234']
|
||||||
@ -10,10 +10,10 @@
|
|||||||
##teamcity[testIgnored name='it can be ignored because it is skipped' message='This test was ignored.' details='' flowId='1234']
|
##teamcity[testIgnored name='it can be ignored because it is skipped' message='This test was ignored.' details='' flowId='1234']
|
||||||
##teamcity[testFinished name='it can be ignored because it is skipped' duration='100000' flowId='1234']
|
##teamcity[testFinished name='it can be ignored because it is skipped' duration='100000' flowId='1234']
|
||||||
##teamcity[testStarted name='it can fail' locationHint='pest_qn://tests/.tests/Failure.php::it can fail' flowId='1234']
|
##teamcity[testStarted name='it can fail' locationHint='pest_qn://tests/.tests/Failure.php::it can fail' flowId='1234']
|
||||||
##teamcity[testFailed name='it can fail' message='oh noo' details='at tests/.tests/Failure.php:18|nat src/Factories/TestCaseMethodFactory.php:100|nat src/Concerns/Testable.php:302|nat src/Support/ExceptionTrace.php:28|nat src/Concerns/Testable.php:302|nat src/Concerns/Testable.php:221|nat src/Kernel.php:86' flowId='1234']
|
##teamcity[testFailed name='it can fail' message='oh noo' details='at tests/.tests/Failure.php:18|nat src/Factories/TestCaseMethodFactory.php:100|nat src/Concerns/Testable.php:302|nat src/Support/ExceptionTrace.php:28|nat src/Concerns/Testable.php:302|nat src/Concerns/Testable.php:221|nat src/Kernel.php:90' flowId='1234']
|
||||||
##teamcity[testFinished name='it can fail' duration='100000' flowId='1234']
|
##teamcity[testFinished name='it can fail' duration='100000' flowId='1234']
|
||||||
##teamcity[testStarted name='it throws exception' locationHint='pest_qn://tests/.tests/Failure.php::it throws exception' flowId='1234']
|
##teamcity[testStarted name='it throws exception' locationHint='pest_qn://tests/.tests/Failure.php::it throws exception' flowId='1234']
|
||||||
##teamcity[testFailed name='it throws exception' message='Exception: test error' details='at tests/.tests/Failure.php:22|nat src/Factories/TestCaseMethodFactory.php:100|nat src/Concerns/Testable.php:302|nat src/Support/ExceptionTrace.php:28|nat src/Concerns/Testable.php:302|nat src/Concerns/Testable.php:221|nat src/Kernel.php:86' flowId='1234']
|
##teamcity[testFailed name='it throws exception' message='Exception: test error' details='at tests/.tests/Failure.php:22|nat src/Factories/TestCaseMethodFactory.php:100|nat src/Concerns/Testable.php:302|nat src/Support/ExceptionTrace.php:28|nat src/Concerns/Testable.php:302|nat src/Concerns/Testable.php:221|nat src/Kernel.php:90' flowId='1234']
|
||||||
##teamcity[testFinished name='it throws exception' duration='100000' flowId='1234']
|
##teamcity[testFinished name='it throws exception' duration='100000' flowId='1234']
|
||||||
##teamcity[testStarted name='it is not done yet' locationHint='pest_qn://tests/.tests/Failure.php::it is not done yet' flowId='1234']
|
##teamcity[testStarted name='it is not done yet' locationHint='pest_qn://tests/.tests/Failure.php::it is not done yet' flowId='1234']
|
||||||
##teamcity[testIgnored name='it is not done yet' message='This test was ignored.' details='' flowId='1234']
|
##teamcity[testIgnored name='it is not done yet' message='This test was ignored.' details='' flowId='1234']
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
Pest Testing Framework 2.6.1.
|
Pest Testing Framework 2.8.0.
|
||||||
|
|
||||||
USAGE: pest <file> [options]
|
USAGE: pest <file> [options]
|
||||||
|
|
||||||
|
|||||||
@ -80,7 +80,7 @@
|
|||||||
✓ named datasets with dataset "one"
|
✓ named datasets with dataset "one"
|
||||||
✓ named datasets with dataset "two"
|
✓ named datasets with dataset "two"
|
||||||
✓ named datasets did the job right
|
✓ named datasets did the job right
|
||||||
✓ lazy named datasets with (Bar Object (…))
|
✓ lazy named datasets with (Bar)
|
||||||
✓ it creates unique test case names with ('Name 1', Pest\Plugin Object (), true) #1
|
✓ it creates unique test case names with ('Name 1', Pest\Plugin Object (), true) #1
|
||||||
✓ it creates unique test case names with ('Name 1', Pest\Plugin Object (), true) #2
|
✓ it creates unique test case names with ('Name 1', Pest\Plugin Object (), true) #2
|
||||||
✓ it creates unique test case names with ('Name 1', Pest\Plugin Object (), false)
|
✓ it creates unique test case names with ('Name 1', Pest\Plugin Object (), false)
|
||||||
@ -134,24 +134,24 @@
|
|||||||
✓ eager registered wrapped datasets with Generator functions did the job right
|
✓ eager registered wrapped datasets with Generator functions did the job right
|
||||||
✓ eager registered wrapped datasets with Generator functions display description with dataset "taylor"
|
✓ eager registered wrapped datasets with Generator functions display description with dataset "taylor"
|
||||||
✓ eager registered wrapped datasets with Generator functions display description with dataset "james"
|
✓ eager registered wrapped datasets with Generator functions display description with dataset "james"
|
||||||
✓ it can resolve a dataset after the test case is available with (Closure Object (…)) #1
|
✓ it can resolve a dataset after the test case is available with (Closure) #1
|
||||||
✓ it can resolve a dataset after the test case is available with (Closure Object (…)) #2
|
✓ it can resolve a dataset after the test case is available with (Closure) #2
|
||||||
✓ it can resolve a dataset after the test case is available with multiple datasets with (Closure Object (…)) / (Closure Object (…)) #1
|
✓ it can resolve a dataset after the test case is available with multiple datasets with (Closure) / (Closure) #1
|
||||||
✓ it can resolve a dataset after the test case is available with multiple datasets with (Closure Object (…)) / (Closure Object (…)) #2
|
✓ it can resolve a dataset after the test case is available with multiple datasets with (Closure) / (Closure) #2
|
||||||
✓ it can resolve a dataset after the test case is available with multiple datasets with (Closure Object (…)) / (Closure Object (…)) #3
|
✓ it can resolve a dataset after the test case is available with multiple datasets with (Closure) / (Closure) #3
|
||||||
✓ it can resolve a dataset after the test case is available with multiple datasets with (Closure Object (…)) / (Closure Object (…)) #4
|
✓ it can resolve a dataset after the test case is available with multiple datasets with (Closure) / (Closure) #4
|
||||||
✓ it can resolve a dataset after the test case is available with shared yield sets with (Closure Object (…)) #1
|
✓ it can resolve a dataset after the test case is available with shared yield sets with (Closure) #1
|
||||||
✓ it can resolve a dataset after the test case is available with shared yield sets with (Closure Object (…)) #2
|
✓ it can resolve a dataset after the test case is available with shared yield sets with (Closure) #2
|
||||||
✓ it can resolve a dataset after the test case is available with shared array sets with (Closure Object (…)) #1
|
✓ it can resolve a dataset after the test case is available with shared array sets with (Closure) #1
|
||||||
✓ it can resolve a dataset after the test case is available with shared array sets with (Closure Object (…)) #2
|
✓ it can resolve a dataset after the test case is available with shared array sets with (Closure) #2
|
||||||
✓ it resolves a potential bound dataset logically with ('foo', Closure Object (…))
|
✓ it resolves a potential bound dataset logically with ('foo', Closure)
|
||||||
✓ it resolves a potential bound dataset logically even when the closure comes first with (Closure Object (…), 'bar')
|
✓ it resolves a potential bound dataset logically even when the closure comes first with (Closure, 'bar')
|
||||||
✓ it will not resolve a closure if it is type hinted as a closure with (Closure Object (…)) #1
|
✓ it will not resolve a closure if it is type hinted as a closure with (Closure) #1
|
||||||
✓ it will not resolve a closure if it is type hinted as a closure with (Closure Object (…)) #2
|
✓ it will not resolve a closure if it is type hinted as a closure with (Closure) #2
|
||||||
✓ it will not resolve a closure if it is type hinted as a callable with (Closure Object (…)) #1
|
✓ it will not resolve a closure if it is type hinted as a callable with (Closure) #1
|
||||||
✓ it will not resolve a closure if it is type hinted as a callable with (Closure Object (…)) #2
|
✓ it will not resolve a closure if it is type hinted as a callable with (Closure) #2
|
||||||
✓ it can correctly resolve a bound dataset that returns an array with (Closure Object (…))
|
✓ it can correctly resolve a bound dataset that returns an array with (Closure)
|
||||||
✓ it can correctly resolve a bound dataset that returns an array but wants to be spread with (Closure Object (…))
|
✓ it can correctly resolve a bound dataset that returns an array but wants to be spread with (Closure)
|
||||||
↓ forbids to define tests in Datasets dirs and Datasets.php files
|
↓ forbids to define tests in Datasets dirs and Datasets.php files
|
||||||
|
|
||||||
PASS Tests\Features\Depends
|
PASS Tests\Features\Depends
|
||||||
@ -170,7 +170,7 @@
|
|||||||
|
|
||||||
DEPR Tests\Features\Deprecated
|
DEPR Tests\Features\Deprecated
|
||||||
! deprecated → str_contains(): Passing null to parameter #1 ($haystack) of type string is deprecated // tests/Features/Deprecated.php:6
|
! deprecated → str_contains(): Passing null to parameter #1 ($haystack) of type string is deprecated // tests/Features/Deprecated.php:6
|
||||||
✓ user deprecated
|
! user deprecated → Since foo 1.0: This is a deprecation description // vendor/symfony/deprecation-contracts/function.php:25
|
||||||
|
|
||||||
PASS Tests\Features\Exceptions
|
PASS Tests\Features\Exceptions
|
||||||
✓ it gives access the the underlying expectException
|
✓ it gives access the the underlying expectException
|
||||||
@ -586,7 +586,7 @@
|
|||||||
✓ it passes with ('Fortaleza')
|
✓ it passes with ('Fortaleza')
|
||||||
✓ it passes with ('Sollefteå')
|
✓ it passes with ('Sollefteå')
|
||||||
✓ it passes with ('Ιεράπετρα')
|
✓ it passes with ('Ιεράπετρα')
|
||||||
✓ it passes with (stdClass Object (…))
|
✓ it passes with (stdClass)
|
||||||
✓ it passes with array
|
✓ it passes with array
|
||||||
✓ it passes with *not*
|
✓ it passes with *not*
|
||||||
✓ it properly fails with *not*
|
✓ it properly fails with *not*
|
||||||
@ -808,6 +808,9 @@
|
|||||||
PASS Tests\Fixtures\ExampleTest
|
PASS Tests\Fixtures\ExampleTest
|
||||||
✓ it example 2
|
✓ it example 2
|
||||||
|
|
||||||
|
WARN Tests\Fixtures\UnexpectedOutput
|
||||||
|
- output
|
||||||
|
|
||||||
PASS Tests\Helpers\TestInHelpers
|
PASS Tests\Helpers\TestInHelpers
|
||||||
✓ it executes tests in the Helpers directory
|
✓ it executes tests in the Helpers directory
|
||||||
|
|
||||||
@ -863,6 +866,12 @@
|
|||||||
✓ custom traits can be used
|
✓ custom traits can be used
|
||||||
✓ trait applied in this file
|
✓ trait applied in this file
|
||||||
|
|
||||||
|
PASS Tests\PHPUnit\GlobPatternTests\SubFolder\InnerFolder\UsesPerDirectoryAsPattern
|
||||||
|
✓ closure was bound to CustomTestCase
|
||||||
|
|
||||||
|
PASS Tests\PHPUnit\GlobPatternTests\SubFolder2\UsesPerFileAsPattern
|
||||||
|
✓ closure was bound to CustomTestCase
|
||||||
|
|
||||||
PASS Tests\Playground
|
PASS Tests\Playground
|
||||||
✓ basic
|
✓ basic
|
||||||
|
|
||||||
@ -932,6 +941,9 @@
|
|||||||
✓ it ensures the given closures reports the correct class name
|
✓ it ensures the given closures reports the correct class name
|
||||||
✓ it ensures the given closures reports the correct class name and suggests the [uses()] function
|
✓ it ensures the given closures reports the correct class name and suggests the [uses()] function
|
||||||
|
|
||||||
|
PASS Tests\Unit\Support\HigherOrderMessage
|
||||||
|
✓ undefined method exceptions
|
||||||
|
|
||||||
PASS Tests\Unit\Support\Reflection
|
PASS Tests\Unit\Support\Reflection
|
||||||
✓ it gets file name from closure
|
✓ it gets file name from closure
|
||||||
✓ it gets property values
|
✓ it gets property values
|
||||||
@ -1035,4 +1047,4 @@
|
|||||||
PASS Tests\Visual\Version
|
PASS Tests\Visual\Version
|
||||||
✓ visual snapshot of help command output
|
✓ visual snapshot of help command output
|
||||||
|
|
||||||
Tests: 1 deprecated, 3 warnings, 4 incomplete, 1 notice, 8 todos, 17 skipped, 716 passed (1729 assertions)
|
Tests: 2 deprecated, 3 warnings, 4 incomplete, 1 notice, 8 todos, 18 skipped, 718 passed (1735 assertions)
|
||||||
@ -1,3 +1,3 @@
|
|||||||
|
|
||||||
Pest Testing Framework 2.6.1.
|
Pest Testing Framework 2.8.0.
|
||||||
|
|
||||||
|
|||||||
7
tests/Fixtures/UnexpectedOutput.php
Normal file
7
tests/Fixtures/UnexpectedOutput.php
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
test('output', function () {
|
||||||
|
echo 'this is unexpected output';
|
||||||
|
|
||||||
|
expect(true)->toBeTrue();
|
||||||
|
})->skip(! isset($_SERVER['COLLISION_TEST']));
|
||||||
@ -0,0 +1,5 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
test('closure was bound to CustomTestCase', function () {
|
||||||
|
$this->assertCustomTrue();
|
||||||
|
});
|
||||||
@ -0,0 +1,5 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
test('closure was bound to CustomTestCase', function () {
|
||||||
|
$this->assertCustomTrue();
|
||||||
|
});
|
||||||
@ -1,9 +1,16 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
use Tests\CustomTestCase\CustomTestCase;
|
||||||
use Tests\CustomTestCaseInSubFolders\SubFolder\SubFolder\CustomTestCaseInSubFolder;
|
use Tests\CustomTestCaseInSubFolders\SubFolder\SubFolder\CustomTestCaseInSubFolder;
|
||||||
|
|
||||||
uses(CustomTestCaseInSubFolder::class)->in('PHPUnit/CustomTestCaseInSubFolders/SubFolder/SubFolder');
|
uses(CustomTestCaseInSubFolder::class)->in('PHPUnit/CustomTestCaseInSubFolders/SubFolder/SubFolder');
|
||||||
|
|
||||||
|
// test case for all the directories inside PHPUnit/GlobPatternTests/SubFolder/
|
||||||
|
uses(CustomTestCase::class)->in('PHPUnit/GlobPatternTests/SubFolder/*/');
|
||||||
|
|
||||||
|
// test case for all the files that end with AsPattern.php inside PHPUnit/GlobPatternTests/SubFolder2/
|
||||||
|
uses(CustomTestCase::class)->in('PHPUnit/GlobPatternTests/SubFolder2/*AsPattern.php');
|
||||||
|
|
||||||
uses()->group('integration')->in('Visual');
|
uses()->group('integration')->in('Visual');
|
||||||
|
|
||||||
// NOTE: global test value container to be mutated and checked across files, as needed
|
// NOTE: global test value container to be mutated and checked across files, as needed
|
||||||
|
|||||||
19
tests/Unit/Support/HigherOrderMessage.php
Normal file
19
tests/Unit/Support/HigherOrderMessage.php
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Pest\Support\HigherOrderMessage;
|
||||||
|
|
||||||
|
test('undefined method exceptions', function () {
|
||||||
|
$message = new HigherOrderMessage(
|
||||||
|
__FILE__,
|
||||||
|
1,
|
||||||
|
'foqwdqwd',
|
||||||
|
[]
|
||||||
|
);
|
||||||
|
|
||||||
|
expect(fn () => $message->call($this))->toThrow(function (ReflectionException $exception) {
|
||||||
|
expect($exception)
|
||||||
|
->getMessage()->toBe('Call to undefined method PHPUnit\Framework\TestCase::foqwdqwd()')
|
||||||
|
->getLine()->toBe(1)
|
||||||
|
->getFile()->toBe(__FILE__);
|
||||||
|
});
|
||||||
|
});
|
||||||
@ -18,7 +18,7 @@ $run = function () {
|
|||||||
|
|
||||||
test('parallel', function () use ($run) {
|
test('parallel', function () use ($run) {
|
||||||
expect($run('--exclude-group=integration'))
|
expect($run('--exclude-group=integration'))
|
||||||
->toContain('Tests: 1 deprecated, 3 warnings, 4 incomplete, 1 notice, 8 todos, 14 skipped, 704 passed (1714 assertions)')
|
->toContain('Tests: 1 deprecated, 3 warnings, 4 incomplete, 1 notice, 8 todos, 15 skipped, 707 passed (1720 assertions)')
|
||||||
->toContain('Parallel: 3 processes');
|
->toContain('Parallel: 3 processes');
|
||||||
})->skipOnWindows();
|
})->skipOnWindows();
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user