2012-01-27 08:29:07 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This file is part of Composer.
|
|
|
|
*
|
|
|
|
* (c) Nils Adermann <naderman@naderman.de>
|
|
|
|
* Jordi Boggiano <j.boggiano@seld.be>
|
|
|
|
*
|
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Composer\Test\Util;
|
|
|
|
|
|
|
|
use Composer\Util\ErrorHandler;
|
2018-11-12 14:23:32 +00:00
|
|
|
use Composer\Test\TestCase;
|
2012-01-27 08:29:07 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* ErrorHandler test case
|
|
|
|
*/
|
|
|
|
class ErrorHandlerTest extends TestCase
|
|
|
|
{
|
2020-02-07 06:35:07 +00:00
|
|
|
public function setUp()
|
|
|
|
{
|
|
|
|
ErrorHandler::register();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function tearDown()
|
|
|
|
{
|
|
|
|
restore_error_handler();
|
|
|
|
}
|
|
|
|
|
2012-01-27 08:29:07 +00:00
|
|
|
/**
|
|
|
|
* Test ErrorHandler handles notices
|
|
|
|
*/
|
|
|
|
public function testErrorHandlerCaptureNotice()
|
|
|
|
{
|
2020-09-11 09:27:26 +00:00
|
|
|
if (PHP_VERSION_ID >= 80000) {
|
|
|
|
$this->setExpectedException('\ErrorException', 'Undefined array key "baz"');
|
|
|
|
} else {
|
|
|
|
$this->setExpectedException('\ErrorException', 'Undefined index: baz');
|
|
|
|
}
|
2012-01-27 08:29:07 +00:00
|
|
|
|
|
|
|
$array = array('foo' => 'bar');
|
2021-03-09 14:49:40 +00:00
|
|
|
// @phpstan-ignore-next-line
|
2012-01-27 08:29:07 +00:00
|
|
|
$array['baz'];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test ErrorHandler handles warnings
|
|
|
|
*/
|
|
|
|
public function testErrorHandlerCaptureWarning()
|
|
|
|
{
|
2020-05-20 12:39:14 +00:00
|
|
|
if (PHP_VERSION_ID >= 80000) {
|
|
|
|
$this->setExpectedException('TypeError', 'array_merge');
|
|
|
|
} else {
|
|
|
|
$this->setExpectedException('ErrorException', 'array_merge');
|
|
|
|
}
|
2012-01-27 08:29:07 +00:00
|
|
|
|
2021-06-03 09:29:00 +00:00
|
|
|
// @phpstan-ignore-next-line
|
2012-01-27 08:29:07 +00:00
|
|
|
array_merge(array(), 'string');
|
|
|
|
}
|
2012-04-08 14:55:45 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Test ErrorHandler handles warnings
|
2020-02-07 06:35:07 +00:00
|
|
|
* @doesNotPerformAssertions
|
2012-04-08 14:55:45 +00:00
|
|
|
*/
|
|
|
|
public function testErrorHandlerRespectsAtOperator()
|
|
|
|
{
|
|
|
|
@trigger_error('test', E_USER_NOTICE);
|
|
|
|
}
|
2012-01-27 08:29:07 +00:00
|
|
|
}
|