-
-
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.
Emit error when mocked method isn't really mocked #3127
* Only mark mocked methods as configurable * Test that you can only expect on configurable methods
- Loading branch information
1 parent
adf5906
commit 7b15efa
Showing
3 changed files
with
103 additions
and
6 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
84 changes: 84 additions & 0 deletions
84
tests/unit/Framework/MockObject/Generator/class_with_finakl_method.phpt
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,84 @@ | ||
--TEST-- | ||
\PHPUnit\Framework\MockObject\Generator::generate('ClassWithFinalMethod', [], 'MockFoo', true, true) | ||
--FILE-- | ||
<?php | ||
class ClassWithFinalMethod | ||
{ | ||
final public function finalMethod() | ||
{ | ||
} | ||
} | ||
|
||
require __DIR__ . '/../../../../vendor/autoload.php'; | ||
|
||
$generator = new \PHPUnit\Framework\MockObject\Generator; | ||
|
||
$mock = $generator->generate( | ||
'ClassWithFinalMethod', | ||
[], | ||
'MockFoo', | ||
true, | ||
true | ||
); | ||
|
||
print $mock['code']; | ||
?> | ||
--EXPECT-- | ||
class MockFoo extends ClassWithFinalMethod implements PHPUnit\Framework\MockObject\MockObject | ||
{ | ||
private $__phpunit_invocationMocker; | ||
private $__phpunit_originalObject; | ||
private $__phpunit_configurable = []; | ||
private $__phpunit_returnValueGeneration = true; | ||
|
||
public function __clone() | ||
{ | ||
$this->__phpunit_invocationMocker = clone $this->__phpunit_getInvocationMocker(); | ||
} | ||
|
||
public function expects(\PHPUnit\Framework\MockObject\Matcher\Invocation $matcher) | ||
{ | ||
return $this->__phpunit_getInvocationMocker()->expects($matcher); | ||
} | ||
|
||
public function method() | ||
{ | ||
$any = new \PHPUnit\Framework\MockObject\Matcher\AnyInvokedCount; | ||
$expects = $this->expects($any); | ||
|
||
return call_user_func_array([$expects, 'method'], func_get_args()); | ||
} | ||
|
||
public function __phpunit_setOriginalObject($originalObject) | ||
{ | ||
$this->__phpunit_originalObject = $originalObject; | ||
} | ||
|
||
public function __phpunit_setReturnValueGeneration(bool $returnValueGeneration) | ||
{ | ||
$this->__phpunit_returnValueGeneration = $returnValueGeneration; | ||
} | ||
|
||
public function __phpunit_getInvocationMocker() | ||
{ | ||
if ($this->__phpunit_invocationMocker === null) { | ||
$this->__phpunit_invocationMocker = new \PHPUnit\Framework\MockObject\InvocationMocker($this->__phpunit_configurable, $this->__phpunit_returnValueGeneration); | ||
} | ||
|
||
return $this->__phpunit_invocationMocker; | ||
} | ||
|
||
public function __phpunit_hasMatchers() | ||
{ | ||
return $this->__phpunit_getInvocationMocker()->hasMatchers(); | ||
} | ||
|
||
public function __phpunit_verify($unsetInvocationMocker = true) | ||
{ | ||
$this->__phpunit_getInvocationMocker()->verify(); | ||
|
||
if ($unsetInvocationMocker) { | ||
$this->__phpunit_invocationMocker = null; | ||
} | ||
} | ||
} |