mirror of
https://github.com/php/php-src.git
synced 2024-12-02 22:34:55 +08:00
1a3bdb4a2c
run-tests.php enforces error_reporting=E_ALL (including E_STRICT), setting this explicitly in not necessary. Conversely, after the removal of some E_STRICT errors, explicitly excluding it is no longer necessary in some places.
86 lines
2.8 KiB
PHP
86 lines
2.8 KiB
PHP
--TEST--
|
|
Bug #72101 (crash on complex code)
|
|
--FILE--
|
|
<?php
|
|
class PHPUnit_Framework_MockObject_Stub_ReturnCallback {
|
|
protected $callback;
|
|
public function __construct($callback) {
|
|
$this->callback = $callback;
|
|
}
|
|
public function invoke($invocation) {
|
|
return call_user_func_array($this->callback, $invocation->parameters);
|
|
}
|
|
}
|
|
|
|
class PHPUnit_Framework_MockObject_InvocationMocker {
|
|
protected $matchers = [];
|
|
public function addMatcher( $matcher) {
|
|
$this->matchers[] = $matcher;
|
|
}
|
|
public function invoke( $invocation) {
|
|
foreach ($this->matchers as $match) {
|
|
$match->invoked($invocation);
|
|
}
|
|
}
|
|
}
|
|
|
|
class PHPUnit_Framework_MockObject_Matcher {
|
|
public $stub = null;
|
|
public function invoked($invocation) {
|
|
return $this->stub->invoke($invocation);
|
|
}
|
|
}
|
|
|
|
class MethodCallbackByReference {
|
|
public function bar(&$a, &$b, $c) {
|
|
Legacy::bar($a, $b, $c);
|
|
}
|
|
public function callback(&$a, &$b, $c) {
|
|
$b = 1;
|
|
}
|
|
}
|
|
class PHPUnit_Framework_MockObject_Invocation_Static {
|
|
public $parameters;
|
|
public function __construct(array $parameters) {
|
|
$this->parameters = $parameters;
|
|
}
|
|
}
|
|
|
|
class Mock_MethodCallbackByReference_7b180d26 extends MethodCallbackByReference {
|
|
public $inv_mocker;
|
|
public function bar(&$a, &$b, $c) {
|
|
$arguments = array($a, $b, $c);
|
|
$result = $this->inv_mocker->invoke(
|
|
new PHPUnit_Framework_MockObject_Invocation_Static(
|
|
$arguments
|
|
)
|
|
);
|
|
return $result;
|
|
}
|
|
}
|
|
|
|
set_error_handler(function() {
|
|
// var_dump(func_get_args());
|
|
DoesNotExists::$nope = true;
|
|
}, E_ALL);
|
|
|
|
$foo = new Mock_MethodCallbackByReference_7b180d26();
|
|
$InvMocker = new PHPUnit_Framework_MockObject_InvocationMocker();
|
|
$foo->inv_mocker = $InvMocker;
|
|
$OuterMatcher = new PHPUnit_Framework_MockObject_Matcher();
|
|
$InvMocker->addMatcher($OuterMatcher);
|
|
$OuterMatcher->methodNameMatcher = null;
|
|
$OuterMatcher->stub = new PHPUnit_Framework_MockObject_Stub_ReturnCallback([$foo, 'callback']);
|
|
$a = $b = $c = 0;
|
|
$foo->bar($a, $b, $c);
|
|
--EXPECTF--
|
|
Fatal error: Uncaught Error: Class 'DoesNotExists' not found in %sbug72101.php:61
|
|
Stack trace:
|
|
#0 %sbug72101.php(8): {closure}(2, 'Parameter 1 to ...', '%s', 8, Array)
|
|
#1 %sbug72101.php(27): PHPUnit_Framework_MockObject_Stub_ReturnCallback->invoke(Object(PHPUnit_Framework_MockObject_Invocation_Static))
|
|
#2 %sbug72101.php(19): PHPUnit_Framework_MockObject_Matcher->invoked(Object(PHPUnit_Framework_MockObject_Invocation_Static))
|
|
#3 %sbug72101.php(52): PHPUnit_Framework_MockObject_InvocationMocker->invoke(Object(PHPUnit_Framework_MockObject_Invocation_Static))
|
|
#4 %sbug72101.php(72): Mock_MethodCallbackByReference_7b180d26->bar(0, 0, 0)
|
|
#5 {main}
|
|
thrown in %sbug72101.php on line 61
|