forked from phpspec/prophecy-phpunit
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from aik099/expand-php-and-phpunit-support
Expand PHPUnit version support
- Loading branch information
Showing
9 changed files
with
248 additions
and
134 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
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 |
---|---|---|
@@ -1,125 +1,7 @@ | ||
<?php declare(strict_types=1); | ||
<?php | ||
|
||
namespace Prophecy\PhpUnit; | ||
|
||
use PHPUnit\Framework\AssertionFailedError; | ||
use PHPUnit\Framework\Attributes\After; | ||
use PHPUnit\Framework\Attributes\PostCondition; | ||
use PHPUnit\Framework\TestCase; | ||
use Prophecy\Exception\Doubler\DoubleException; | ||
use Prophecy\Exception\Doubler\InterfaceNotFoundException; | ||
use Prophecy\Exception\Prediction\PredictionException; | ||
use Prophecy\Prophecy\MethodProphecy; | ||
use Prophecy\Prophecy\ObjectProphecy; | ||
use Prophecy\Prophet; | ||
|
||
/** | ||
* @mixin TestCase | ||
*/ | ||
trait ProphecyTrait | ||
{ | ||
/** | ||
* @var Prophet|null | ||
* | ||
* @internal | ||
*/ | ||
private $prophet; | ||
|
||
/** | ||
* @var bool | ||
* | ||
* @internal | ||
*/ | ||
private $prophecyAssertionsCounted = false; | ||
|
||
/** | ||
* @throws DoubleException | ||
* @throws InterfaceNotFoundException | ||
* | ||
* @template T of object | ||
* @phpstan-param class-string<T>|null $classOrInterface | ||
* @phpstan-return ($classOrInterface is null ? ObjectProphecy<object> : ObjectProphecy<T>) | ||
* | ||
* @not-deprecated | ||
*/ | ||
protected function prophesize(?string $classOrInterface = null): ObjectProphecy | ||
{ | ||
static $isPhpUnit9; | ||
$isPhpUnit9 = $isPhpUnit9 ?? method_exists($this, 'recordDoubledType'); | ||
|
||
if (! $isPhpUnit9) { | ||
// PHPUnit 10.1 | ||
$this->registerFailureType(PredictionException::class); | ||
} elseif (\is_string($classOrInterface)) { | ||
// PHPUnit 9 | ||
\assert($this instanceof TestCase); | ||
$this->recordDoubledType($classOrInterface); | ||
} | ||
|
||
return $this->getProphet()->prophesize($classOrInterface); | ||
} | ||
|
||
/** | ||
* @postCondition | ||
*/ | ||
#[PostCondition] | ||
protected function verifyProphecyDoubles(): void | ||
{ | ||
if ($this->prophet === null) { | ||
return; | ||
} | ||
|
||
try { | ||
$this->prophet->checkPredictions(); | ||
} catch (PredictionException $e) { | ||
throw new AssertionFailedError($e->getMessage()); | ||
} finally { | ||
$this->countProphecyAssertions(); | ||
} | ||
} | ||
|
||
/** | ||
* @after | ||
*/ | ||
#[After] | ||
protected function tearDownProphecy(): void | ||
{ | ||
if (null !== $this->prophet && !$this->prophecyAssertionsCounted) { | ||
// Some Prophecy assertions may have been done in tests themselves even when a failure happened before checking mock objects. | ||
$this->countProphecyAssertions(); | ||
} | ||
|
||
$this->prophet = null; | ||
} | ||
|
||
/** | ||
* @internal | ||
*/ | ||
private function countProphecyAssertions(): void | ||
{ | ||
\assert($this instanceof TestCase); | ||
$this->prophecyAssertionsCounted = true; | ||
|
||
foreach ($this->prophet->getProphecies() as $objectProphecy) { | ||
foreach ($objectProphecy->getMethodProphecies() as $methodProphecies) { | ||
foreach ($methodProphecies as $methodProphecy) { | ||
\assert($methodProphecy instanceof MethodProphecy); | ||
|
||
$this->addToAssertionCount(\count($methodProphecy->getCheckedPredictions())); | ||
} | ||
} | ||
} | ||
} | ||
|
||
/** | ||
* @internal | ||
*/ | ||
private function getProphet(): Prophet | ||
{ | ||
if ($this->prophet === null) { | ||
$this->prophet = new Prophet; | ||
} | ||
|
||
return $this->prophet; | ||
} | ||
if (PHP_VERSION_ID >= 70000) { | ||
require_once __DIR__ . '/ProphecyTrait7.php'; | ||
} else { | ||
require_once __DIR__ . '/ProphecyTrait5.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,111 @@ | ||
<?php | ||
|
||
namespace Prophecy\PhpUnit; | ||
|
||
use PHPUnit\Framework\AssertionFailedError; | ||
use PHPUnit\Framework\Attributes\After; | ||
use PHPUnit\Framework\TestCase; | ||
use Prophecy\Exception\Doubler\DoubleException; | ||
use Prophecy\Exception\Doubler\InterfaceNotFoundException; | ||
use Prophecy\Exception\Prediction\PredictionException; | ||
use Prophecy\Prophecy\MethodProphecy; | ||
use Prophecy\Prophecy\ObjectProphecy; | ||
use Prophecy\Prophet; | ||
|
||
/** | ||
* @mixin TestCase | ||
*/ | ||
trait ProphecyTrait | ||
{ | ||
/** | ||
* @var Prophet|null | ||
* | ||
* @internal | ||
*/ | ||
private $prophet; | ||
|
||
/** | ||
* @throws DoubleException | ||
* @throws InterfaceNotFoundException | ||
* | ||
* @template T of object | ||
* @phpstan-param class-string<T>|null $classOrInterface | ||
* @phpstan-return ($classOrInterface is null ? ObjectProphecy<object> : ObjectProphecy<T>) | ||
* | ||
* @not-deprecated | ||
*/ | ||
protected function prophesize($classOrInterface = null) | ||
{ | ||
static $hasFailureTypes; | ||
|
||
// PHPUnit 10.1.0+. | ||
if ($hasFailureTypes === null) { | ||
$hasFailureTypes = method_exists($this, 'registerFailureType'); | ||
} | ||
|
||
if ($hasFailureTypes) { | ||
$this->registerFailureType(PredictionException::class); | ||
} | ||
|
||
return $this->getProphet()->prophesize($classOrInterface); | ||
} | ||
|
||
/** | ||
* @after | ||
*/ | ||
#[After] | ||
protected function tearDownProphecy() | ||
{ | ||
if (null !== $this->prophet) { | ||
$this->verifyProphecyDoubles(); | ||
} | ||
|
||
$this->prophet = null; | ||
} | ||
|
||
protected function verifyProphecyDoubles() | ||
{ | ||
if ($this->prophet === null) { | ||
return; | ||
} | ||
|
||
try { | ||
$this->prophet->checkPredictions(); | ||
} catch (PredictionException $e) { | ||
throw new AssertionFailedError($e->getMessage()); | ||
} finally { | ||
// Some Prophecy assertions may have been done in tests themselves even when a failure happened before checking mock objects. | ||
$this->countProphecyAssertions(); | ||
} | ||
} | ||
|
||
/** | ||
* @internal | ||
*/ | ||
private function countProphecyAssertions() | ||
{ | ||
\assert($this instanceof TestCase); | ||
|
||
foreach ($this->prophet->getProphecies() as $objectProphecy) { | ||
foreach ($objectProphecy->getMethodProphecies() as $methodProphecies) { | ||
foreach ($methodProphecies as $methodProphecy) { | ||
\assert($methodProphecy instanceof MethodProphecy); | ||
|
||
$this->addToAssertionCount(\count($methodProphecy->getCheckedPredictions())); | ||
} | ||
} | ||
} | ||
} | ||
|
||
/** | ||
* @internal | ||
*/ | ||
private function getProphet() | ||
{ | ||
if ($this->prophet === null) { | ||
$this->prophet = new Prophet; | ||
} | ||
|
||
return $this->prophet; | ||
} | ||
} |
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,111 @@ | ||
<?php declare(strict_types=1); | ||
|
||
namespace Prophecy\PhpUnit; | ||
|
||
use PHPUnit\Framework\AssertionFailedError; | ||
use PHPUnit\Framework\Attributes\After; | ||
use PHPUnit\Framework\TestCase; | ||
use Prophecy\Exception\Doubler\DoubleException; | ||
use Prophecy\Exception\Doubler\InterfaceNotFoundException; | ||
use Prophecy\Exception\Prediction\PredictionException; | ||
use Prophecy\Prophecy\MethodProphecy; | ||
use Prophecy\Prophecy\ObjectProphecy; | ||
use Prophecy\Prophet; | ||
|
||
/** | ||
* @mixin TestCase | ||
*/ | ||
trait ProphecyTrait | ||
{ | ||
/** | ||
* @var Prophet|null | ||
* | ||
* @internal | ||
*/ | ||
private $prophet; | ||
|
||
/** | ||
* @throws DoubleException | ||
* @throws InterfaceNotFoundException | ||
* | ||
* @template T of object | ||
* @phpstan-param class-string<T>|null $classOrInterface | ||
* @phpstan-return ($classOrInterface is null ? ObjectProphecy<object> : ObjectProphecy<T>) | ||
* | ||
* @not-deprecated | ||
*/ | ||
protected function prophesize($classOrInterface = null): ObjectProphecy | ||
{ | ||
static $hasFailureTypes; | ||
|
||
// PHPUnit 10.1.0+. | ||
if ($hasFailureTypes === null) { | ||
$hasFailureTypes = method_exists($this, 'registerFailureType'); | ||
} | ||
|
||
if ($hasFailureTypes) { | ||
$this->registerFailureType(PredictionException::class); | ||
} | ||
|
||
return $this->getProphet()->prophesize($classOrInterface); | ||
} | ||
|
||
/** | ||
* @after | ||
*/ | ||
#[After] | ||
protected function tearDownProphecy() | ||
{ | ||
if (null !== $this->prophet) { | ||
$this->verifyProphecyDoubles(); | ||
} | ||
|
||
$this->prophet = null; | ||
} | ||
|
||
protected function verifyProphecyDoubles() | ||
{ | ||
if ($this->prophet === null) { | ||
return; | ||
} | ||
|
||
try { | ||
$this->prophet->checkPredictions(); | ||
} catch (PredictionException $e) { | ||
throw new AssertionFailedError($e->getMessage()); | ||
} finally { | ||
// Some Prophecy assertions may have been done in tests themselves even when a failure happened before checking mock objects. | ||
$this->countProphecyAssertions(); | ||
} | ||
} | ||
|
||
/** | ||
* @internal | ||
*/ | ||
private function countProphecyAssertions()/*: void*/ | ||
{ | ||
\assert($this instanceof TestCase); | ||
|
||
foreach ($this->prophet->getProphecies() as $objectProphecy) { | ||
foreach ($objectProphecy->getMethodProphecies() as $methodProphecies) { | ||
foreach ($methodProphecies as $methodProphecy) { | ||
\assert($methodProphecy instanceof MethodProphecy); | ||
|
||
$this->addToAssertionCount(\count($methodProphecy->getCheckedPredictions())); | ||
} | ||
} | ||
} | ||
} | ||
|
||
/** | ||
* @internal | ||
*/ | ||
private function getProphet(): Prophet | ||
{ | ||
if ($this->prophet === null) { | ||
$this->prophet = new Prophet; | ||
} | ||
|
||
return $this->prophet; | ||
} | ||
} |
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.