-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ac9e3e7
commit 76241c5
Showing
40 changed files
with
1,570 additions
and
95 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,4 +17,4 @@ | |
/tests/TextUI/*.out | ||
/tests/TextUI/*.php | ||
/vendor | ||
|
||
/.phpunit.result.cache |
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,101 @@ | ||
<?php | ||
/* | ||
* 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; | ||
|
||
final class ResultCacheExtension implements AfterSuccessfulTestHook, AfterSkippedTestHook, AfterRiskyTestHook, AfterIncompleteTestHook, AfterTestErrorHook, AfterTestWarningHook, AfterTestFailureHook, AfterLastTestHook | ||
{ | ||
/** | ||
* @var TestResultCacheInterface | ||
*/ | ||
private $cache; | ||
|
||
public function __construct(TestResultCache $cache) | ||
{ | ||
$this->cache = $cache; | ||
} | ||
|
||
public function flush(): void | ||
{ | ||
$this->cache->persist(); | ||
} | ||
|
||
public function executeAfterSuccessfulTest(string $test, float $time): void | ||
{ | ||
$testName = $this->getTestName($test); | ||
$this->cache->setTime($testName, \round($time, 3)); | ||
} | ||
|
||
public function executeAfterIncompleteTest(string $test, string $message, float $time): void | ||
{ | ||
$testName = $this->getTestName($test); | ||
$this->cache->setTime($testName, \round($time, 3)); | ||
$this->cache->setState($testName, BaseTestRunner::STATUS_INCOMPLETE); | ||
} | ||
|
||
public function executeAfterRiskyTest(string $test, string $message, float $time): void | ||
{ | ||
$testName = $this->getTestName($test); | ||
$this->cache->setTime($testName, \round($time, 3)); | ||
$this->cache->setState($testName, BaseTestRunner::STATUS_RISKY); | ||
} | ||
|
||
public function executeAfterSkippedTest(string $test, string $message, float $time): void | ||
{ | ||
$testName = $this->getTestName($test); | ||
$this->cache->setTime($testName, \round($time, 3)); | ||
$this->cache->setState($testName, BaseTestRunner::STATUS_SKIPPED); | ||
} | ||
|
||
public function executeAfterTestError(string $test, string $message, float $time): void | ||
{ | ||
$testName = $this->getTestName($test); | ||
$this->cache->setTime($testName, \round($time, 3)); | ||
$this->cache->setState($testName, BaseTestRunner::STATUS_ERROR); | ||
} | ||
|
||
public function executeAfterTestFailure(string $test, string $message, float $time): void | ||
{ | ||
$testName = $this->getTestName($test); | ||
$this->cache->setTime($testName, \round($time, 3)); | ||
$this->cache->setState($testName, BaseTestRunner::STATUS_FAILURE); | ||
} | ||
|
||
public function executeAfterTestWarning(string $test, string $message, float $time): void | ||
{ | ||
$testName = $this->getTestName($test); | ||
$this->cache->setTime($testName, \round($time, 3)); | ||
$this->cache->setState($testName, BaseTestRunner::STATUS_WARNING); | ||
} | ||
|
||
public function executeAfterLastTest(): void | ||
{ | ||
$this->flush(); | ||
} | ||
|
||
/** | ||
* @param string $test A long description format of the current test | ||
* | ||
* @return string The test name without TestSuiteClassName:: and @dataprovider details | ||
*/ | ||
private function getTestName(string $test): string | ||
{ | ||
$matches = []; | ||
|
||
if (\preg_match('/^(?:\S+::)?(?<name>\S+)(?:(?<data> with data set (?:#\d+|"[^"]+"))\s\()?/', $test, $matches)) { | ||
$test = $matches['name']; | ||
|
||
if (isset($matches['data'])) { | ||
$test .= $matches['data']; | ||
} | ||
} | ||
|
||
return $test; | ||
} | ||
} |
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
Oops, something went wrong.