-
-
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.
Generator will now try to fallback to root namespace constants
- Loading branch information
1 parent
68a8333
commit 03b93cf
Showing
2 changed files
with
122 additions
and
0 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
119 changes: 119 additions & 0 deletions
119
tests/Framework/MockObject/Generator/3154_namespaced_constant_resolving.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,119 @@ | ||
--TEST-- | ||
https://github.com/sebastianbergmann/phpunit-mock-objects/issues/420 | ||
https://github.com/sebastianbergmann/phpunit/issues/3154 | ||
--FILE-- | ||
<?php | ||
namespace Is\Namespaced; | ||
/* | ||
* 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. | ||
*/ | ||
|
||
const A_CONSTANT = 17; | ||
const PHP_VERSION = "0.0.0"; | ||
|
||
class Issue3154 | ||
{ | ||
public function a(int $i = PHP_INT_MAX, int $j = A_CONSTANT, string $v = \PHP_VERSION, string $z = '#'): string | ||
{ | ||
return $z."sum: ".($i+$j).$v; | ||
} | ||
} | ||
require __DIR__ . '/../../../../vendor/autoload.php'; | ||
|
||
$generator = new \PHPUnit\Framework\MockObject\Generator; | ||
|
||
$mock = $generator->generate( | ||
Issue3154::class, | ||
[], | ||
'Issue3154Mock', | ||
true, | ||
true | ||
); | ||
|
||
print $mock['code']; | ||
--EXPECT-- | ||
class Issue3154Mock extends Is\Namespaced\Issue3154 implements PHPUnit\Framework\MockObject\MockObject | ||
{ | ||
private $__phpunit_invocationMocker; | ||
private $__phpunit_originalObject; | ||
private $__phpunit_configurable = ['a']; | ||
private $__phpunit_returnValueGeneration = true; | ||
|
||
public function __clone() | ||
{ | ||
$this->__phpunit_invocationMocker = clone $this->__phpunit_getInvocationMocker(); | ||
} | ||
|
||
public function a(int $i = PHP_INT_MAX, int $j = Is\Namespaced\A_CONSTANT, string $v = PHP_VERSION, string $z = '#'): string | ||
{ | ||
$__phpunit_arguments = [$i, $j, $v, $z]; | ||
$__phpunit_count = func_num_args(); | ||
|
||
if ($__phpunit_count > 4) { | ||
$__phpunit_arguments_tmp = func_get_args(); | ||
|
||
for ($__phpunit_i = 4; $__phpunit_i < $__phpunit_count; $__phpunit_i++) { | ||
$__phpunit_arguments[] = $__phpunit_arguments_tmp[$__phpunit_i]; | ||
} | ||
} | ||
|
||
$__phpunit_result = $this->__phpunit_getInvocationMocker()->invoke( | ||
new \PHPUnit\Framework\MockObject\Invocation\ObjectInvocation( | ||
'Is\Namespaced\Issue3154', 'a', $__phpunit_arguments, 'string', $this, true | ||
) | ||
); | ||
|
||
return $__phpunit_result; | ||
} | ||
|
||
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; | ||
} | ||
} | ||
} |