generated from ergebnis/php-package-template
-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enhancement: Implement SlowTestReporter
- Loading branch information
1 parent
9ee06a5
commit 0ddf820
Showing
9 changed files
with
697 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/** | ||
* Copyright (c) 2021 Andreas Möller | ||
* | ||
* For the full copyright and license information, please view | ||
* the LICENSE.md file that was distributed with this source code. | ||
* | ||
* @see https://github.com/ergebnis/phpunit-slow-test-detector | ||
*/ | ||
|
||
namespace Ergebnis\PHPUnit\SlowTestDetector\Exception; | ||
|
||
final class MaximumNumberNotGreaterThanZero extends \InvalidArgumentException | ||
{ | ||
public static function create(int $value): self | ||
{ | ||
return new self(\sprintf( | ||
'Maximum number should be greater than 0, but %d is not.', | ||
$value | ||
)); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,149 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/** | ||
* Copyright (c) 2021 Andreas Möller | ||
* | ||
* For the full copyright and license information, please view | ||
* the LICENSE.md file that was distributed with this source code. | ||
* | ||
* @see https://github.com/ergebnis/phpunit-slow-test-detector | ||
*/ | ||
|
||
namespace Ergebnis\PHPUnit\SlowTestDetector; | ||
|
||
use PHPUnit\Event; | ||
|
||
final class SlowTestReporter | ||
{ | ||
private Comparator\DurationComparator $durationComparator; | ||
|
||
private Event\Telemetry\DurationFormatter $durationFormatter; | ||
|
||
private int $maximumNumber; | ||
|
||
private Event\Telemetry\Duration $maximumDuration; | ||
|
||
/** | ||
* @throws Exception\MaximumNumberNotGreaterThanZero | ||
*/ | ||
public function __construct( | ||
Event\Telemetry\DurationFormatter $durationFormatter, | ||
Event\Telemetry\Duration $maximumDuration, | ||
int $maximumNumber | ||
) { | ||
if (0 >= $maximumNumber) { | ||
throw Exception\MaximumNumberNotGreaterThanZero::create($maximumNumber); | ||
} | ||
|
||
$this->durationComparator = new Comparator\DurationComparator(); | ||
$this->durationFormatter = $durationFormatter; | ||
$this->maximumDuration = $maximumDuration; | ||
$this->maximumNumber = $maximumNumber; | ||
} | ||
|
||
public function report(SlowTest ...$slowTests): string | ||
{ | ||
if ([] === $slowTests) { | ||
return ''; | ||
} | ||
|
||
$header = $this->header(...$slowTests); | ||
$list = $this->list(...$slowTests); | ||
$footer = $this->footer(...$slowTests); | ||
|
||
return <<<TXT | ||
{$header} | ||
{$list} | ||
{$footer} | ||
TXT; | ||
} | ||
|
||
private function header(SlowTest ...$slowTests): string | ||
{ | ||
$count = \count($slowTests); | ||
|
||
$formattedMaximumDuration = $this->durationFormatter->format($this->maximumDuration); | ||
|
||
return <<<TXT | ||
Detected {$count} tests that took longer than {$formattedMaximumDuration}. | ||
TXT; | ||
} | ||
|
||
private function list(SlowTest ...$slowTests): string | ||
{ | ||
$durationComparator = $this->durationComparator; | ||
|
||
\usort($slowTests, static function (SlowTest $one, SlowTest $two) use ($durationComparator): int { | ||
return $durationComparator->compare( | ||
$two->duration(), | ||
$one->duration() | ||
); | ||
}); | ||
|
||
$slowTestsToReport = \array_slice( | ||
$slowTests, | ||
0, | ||
$this->maximumNumber | ||
); | ||
|
||
/** @var SlowTest $slowestTest */ | ||
$slowestTest = \reset($slowTestsToReport); | ||
|
||
$durationFormatter = $this->durationFormatter; | ||
|
||
$width = \strlen($durationFormatter->format($slowestTest->duration())); | ||
|
||
$items = \array_map(static function (SlowTest $slowTest) use ($durationFormatter, $width): string { | ||
$label = \str_pad( | ||
$durationFormatter->format($slowTest->duration()), | ||
$width, | ||
' ', | ||
\STR_PAD_LEFT | ||
); | ||
|
||
$test = $slowTest->test(); | ||
|
||
$testName = \sprintf( | ||
'%s::%s', | ||
$test->className(), | ||
$test->methodNameWithDataSet() | ||
); | ||
|
||
return <<<TXT | ||
{$label}: {$testName} | ||
TXT; | ||
}, $slowTestsToReport); | ||
|
||
return \implode( | ||
"\n", | ||
$items | ||
); | ||
} | ||
|
||
private function footer(SlowTest ...$slowTests): string | ||
{ | ||
$remainingCount = \max( | ||
\count($slowTests) - $this->maximumNumber, | ||
0 | ||
); | ||
|
||
if (0 === $remainingCount) { | ||
return ''; | ||
} | ||
|
||
if (1 === $remainingCount) { | ||
return <<<'TXT' | ||
There is one additional slow test that is not listed here. | ||
TXT; | ||
} | ||
|
||
return <<<TXT | ||
There are {$remainingCount} additional slow tests that are not listed here. | ||
TXT; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/** | ||
* Copyright (c) 2021 Andreas Möller | ||
* | ||
* For the full copyright and license information, please view | ||
* the LICENSE.md file that was distributed with this source code. | ||
* | ||
* @see https://github.com/ergebnis/phpunit-slow-test-detector | ||
*/ | ||
|
||
namespace Ergebnis\PHPUnit\SlowTestDetector\Test\Fixture; | ||
|
||
use PHPUnit\Framework; | ||
|
||
/** | ||
* @internal | ||
* | ||
* @coversNothing | ||
*/ | ||
final class ExampleTest extends Framework\TestCase | ||
{ | ||
} |
42 changes: 42 additions & 0 deletions
42
test/Unit/Exception/MaximumNumberNotGreaterThanZeroTest.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/** | ||
* Copyright (c) 2021 Andreas Möller | ||
* | ||
* For the full copyright and license information, please view | ||
* the LICENSE.md file that was distributed with this source code. | ||
* | ||
* @see https://github.com/ergebnis/phpunit-slow-test-detector | ||
*/ | ||
|
||
namespace Ergebnis\PHPUnit\SlowTestDetector\Test\Unit\Exception; | ||
|
||
use Ergebnis\PHPUnit\SlowTestDetector\Exception\MaximumNumberNotGreaterThanZero; | ||
use Ergebnis\Test\Util; | ||
use PHPUnit\Framework; | ||
|
||
/** | ||
* @internal | ||
* | ||
* @covers \Ergebnis\PHPUnit\SlowTestDetector\Exception\MaximumNumberNotGreaterThanZero | ||
*/ | ||
final class MaximumNumberNotGreaterThanZeroTest extends Framework\TestCase | ||
{ | ||
use Util\Helper; | ||
|
||
public function testCreareReturnsException(): void | ||
{ | ||
$value = self::faker()->numberBetween(); | ||
|
||
$exception = MaximumNumberNotGreaterThanZero::create($value); | ||
|
||
$message = \sprintf( | ||
'Maximum number should be greater than 0, but %d is not.', | ||
$value | ||
); | ||
|
||
self::assertSame($message, $exception->getMessage()); | ||
} | ||
} |
Oops, something went wrong.