| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495 |
- <?php
- /**
- * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- * @link https://cakephp.org CakePHP(tm) Project
- * @since 1.2.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\Error;
- use Cake\Core\Configure;
- use Cake\Core\Plugin;
- use Cake\Error\ErrorHandler;
- use Cake\Error\PHP7ErrorException;
- use Cake\Http\Exception\ForbiddenException;
- use Cake\Http\Exception\NotFoundException;
- use Cake\Http\ServerRequest;
- use Cake\Log\Log;
- use Cake\Routing\Exception\MissingControllerException;
- use Cake\Routing\Router;
- use Cake\TestSuite\TestCase;
- use ParseError;
- /**
- * Testing stub.
- */
- class TestErrorHandler extends ErrorHandler
- {
- /**
- * Access the response used.
- *
- * @var \Cake\Http\Response
- */
- public $response;
- /**
- * Stub output clearing in tests.
- *
- * @return void
- */
- protected function _clearOutput()
- {
- // noop
- }
- /**
- * Stub sending responses
- *
- * @return void
- */
- protected function _sendResponse($response)
- {
- $this->response = $response;
- }
- }
- /**
- * ErrorHandlerTest class
- */
- class ErrorHandlerTest extends TestCase
- {
- protected $_restoreError = false;
- /**
- * error level property
- *
- */
- private static $errorLevel;
- /**
- * setup create a request object to get out of router later.
- *
- * @return void
- */
- public function setUp()
- {
- parent::setUp();
- Router::reload();
- $request = new ServerRequest([
- 'base' => '',
- 'environment' => [
- 'HTTP_REFERER' => '/referer'
- ]
- ]);
- Router::setRequestInfo($request);
- Configure::write('debug', true);
- $this->_logger = $this->getMockBuilder('Psr\Log\LoggerInterface')->getMock();
- Log::reset();
- Log::setConfig('error_test', [
- 'engine' => $this->_logger
- ]);
- }
- /**
- * tearDown
- *
- * @return void
- */
- public function tearDown()
- {
- parent::tearDown();
- Log::reset();
- if ($this->_restoreError) {
- restore_error_handler();
- restore_exception_handler();
- }
- error_reporting(self::$errorLevel);
- }
- /**
- * setUpBeforeClass
- *
- * @return void
- */
- public static function setUpBeforeClass()
- {
- parent::setUpBeforeClass();
- self::$errorLevel = error_reporting();
- }
- /**
- * test error handling when debug is on, an error should be printed from Debugger.
- *
- * @return void
- */
- public function testHandleErrorDebugOn()
- {
- $errorHandler = new ErrorHandler();
- $errorHandler->register();
- $this->_restoreError = true;
- ob_start();
- $wrong = $wrong + 1;
- $result = ob_get_clean();
- $this->assertRegExp('/<pre class="cake-error">/', $result);
- $this->assertRegExp('/<b>Notice<\/b>/', $result);
- $this->assertRegExp('/variable:\s+wrong/', $result);
- }
- /**
- * provides errors for mapping tests.
- *
- * @return array
- */
- public static function errorProvider()
- {
- return [
- [E_USER_NOTICE, 'Notice'],
- [E_USER_WARNING, 'Warning'],
- ];
- }
- /**
- * test error mappings
- *
- * @dataProvider errorProvider
- * @return void
- */
- public function testErrorMapping($error, $expected)
- {
- $errorHandler = new ErrorHandler();
- $errorHandler->register();
- $this->_restoreError = true;
- ob_start();
- trigger_error('Test error', $error);
- $result = ob_get_clean();
- $this->assertContains('<b>' . $expected . '</b>', $result);
- }
- /**
- * test error prepended by @
- *
- * @return void
- */
- public function testErrorSuppressed()
- {
- $errorHandler = new ErrorHandler();
- $errorHandler->register();
- $this->_restoreError = true;
- ob_start();
- //@codingStandardsIgnoreStart
- @include 'invalid.file';
- //@codingStandardsIgnoreEnd
- $result = ob_get_clean();
- $this->assertEmpty($result);
- }
- /**
- * Test that errors go into Cake Log when debug = 0.
- *
- * @return void
- */
- public function testHandleErrorDebugOff()
- {
- Configure::write('debug', false);
- $errorHandler = new ErrorHandler();
- $errorHandler->register();
- $this->_restoreError = true;
- $this->_logger->expects($this->once())
- ->method('log')
- ->with(
- $this->matchesRegularExpression('(notice|debug)'),
- 'Notice (8): Undefined variable: out in [' . __FILE__ . ', line ' . (__LINE__ + 3) . ']' . "\n\n"
- );
- $out = $out + 1;
- }
- /**
- * Test that errors going into Cake Log include traces.
- *
- * @return void
- */
- public function testHandleErrorLoggingTrace()
- {
- Configure::write('debug', false);
- $errorHandler = new ErrorHandler(['trace' => true]);
- $errorHandler->register();
- $this->_restoreError = true;
- $this->_logger->expects($this->once())
- ->method('log')
- ->with(
- $this->matchesRegularExpression('(notice|debug)'),
- $this->logicalAnd(
- $this->stringContains('Notice (8): Undefined variable: out in '),
- $this->stringContains('Trace:'),
- $this->stringContains(__NAMESPACE__ . '\ErrorHandlerTest::testHandleErrorLoggingTrace()'),
- $this->stringContains('Request URL:'),
- $this->stringContains('Referer URL:')
- )
- );
- $out = $out + 1;
- }
- /**
- * test handleException generating a page.
- *
- * @return void
- */
- public function testHandleException()
- {
- $error = new NotFoundException('Kaboom!');
- $errorHandler = new TestErrorHandler();
- $errorHandler->handleException($error);
- $this->assertContains('Kaboom!', (string)$errorHandler->response->getBody(), 'message missing.');
- }
- /**
- * test handleException generating log.
- *
- * @return void
- */
- public function testHandleExceptionLog()
- {
- $errorHandler = new TestErrorHandler([
- 'log' => true,
- 'trace' => true,
- ]);
- $error = new NotFoundException('Kaboom!');
- $this->_logger->expects($this->at(0))
- ->method('log')
- ->with('error', $this->logicalAnd(
- $this->stringContains('[Cake\Http\Exception\NotFoundException] Kaboom!'),
- $this->stringContains('ErrorHandlerTest->testHandleExceptionLog')
- ));
- $this->_logger->expects($this->at(1))
- ->method('log')
- ->with('error', $this->logicalAnd(
- $this->stringContains('[Cake\Http\Exception\NotFoundException] Kaboom!'),
- $this->logicalNot($this->stringContains('ErrorHandlerTest->testHandleExceptionLog'))
- ));
- $errorHandler->handleException($error);
- $this->assertContains('Kaboom!', (string)$errorHandler->response->getBody(), 'message missing.');
- $errorHandler = new TestErrorHandler([
- 'log' => true,
- 'trace' => false,
- ]);
- $errorHandler->handleException($error);
- }
- /**
- * test logging attributes with/without debug
- *
- * @return void
- */
- public function testHandleExceptionLogAttributes()
- {
- $errorHandler = new TestErrorHandler([
- 'log' => true,
- 'trace' => true,
- ]);
- $error = new MissingControllerException(['class' => 'Derp']);
- $this->_logger->expects($this->at(0))
- ->method('log')
- ->with('error', $this->logicalAnd(
- $this->stringContains(
- '[Cake\Routing\Exception\MissingControllerException] ' .
- 'Controller class Derp could not be found.'
- ),
- $this->stringContains('Exception Attributes:'),
- $this->stringContains('Request URL:'),
- $this->stringContains('Referer URL:')
- ));
- $this->_logger->expects($this->at(1))
- ->method('log')
- ->with('error', $this->logicalAnd(
- $this->stringContains(
- '[Cake\Routing\Exception\MissingControllerException] ' .
- 'Controller class Derp could not be found.'
- ),
- $this->logicalNot($this->stringContains('Exception Attributes:'))
- ));
- $errorHandler->handleException($error);
- Configure::write('debug', false);
- $errorHandler->handleException($error);
- }
- /**
- * test handleException generating log.
- *
- * @return void
- */
- public function testHandleExceptionLogSkipping()
- {
- $notFound = new NotFoundException('Kaboom!');
- $forbidden = new ForbiddenException('Fooled you!');
- $this->_logger->expects($this->once())
- ->method('log')
- ->with(
- 'error',
- $this->stringContains('[Cake\Http\Exception\ForbiddenException] Fooled you!')
- );
- $errorHandler = new TestErrorHandler([
- 'log' => true,
- 'skipLog' => ['Cake\Http\Exception\NotFoundException'],
- ]);
- $errorHandler->handleException($notFound);
- $this->assertContains('Kaboom!', (string)$errorHandler->response->getBody(), 'message missing.');
- $errorHandler->handleException($forbidden);
- $this->assertContains('Fooled you!', (string)$errorHandler->response->getBody(), 'message missing.');
- }
- /**
- * tests it is possible to load a plugin exception renderer
- *
- * @return void
- */
- public function testLoadPluginHandler()
- {
- Plugin::load('TestPlugin');
- $errorHandler = new TestErrorHandler([
- 'exceptionRenderer' => 'TestPlugin.TestPluginExceptionRenderer',
- ]);
- $error = new NotFoundException('Kaboom!');
- $errorHandler->handleException($error);
- $result = $errorHandler->response;
- $this->assertEquals('Rendered by test plugin', $result);
- }
- /**
- * test handleFatalError generating a page.
- *
- * These tests start two buffers as handleFatalError blows the outer one up.
- *
- * @return void
- */
- public function testHandleFatalErrorPage()
- {
- $line = __LINE__;
- $errorHandler = new TestErrorHandler();
- Configure::write('debug', true);
- $errorHandler->handleFatalError(E_ERROR, 'Something wrong', __FILE__, $line);
- $result = (string)$errorHandler->response->getBody();
- $this->assertContains('Something wrong', $result, 'message missing.');
- $this->assertContains(__FILE__, $result, 'filename missing.');
- $this->assertContains((string)$line, $result, 'line missing.');
- Configure::write('debug', false);
- $errorHandler->handleFatalError(E_ERROR, 'Something wrong', __FILE__, $line);
- $result = (string)$errorHandler->response->getBody();
- $this->assertNotContains('Something wrong', $result, 'message must not appear.');
- $this->assertNotContains(__FILE__, $result, 'filename must not appear.');
- $this->assertContains('An Internal Error Has Occurred.', $result);
- }
- /**
- * test handleFatalError generating log.
- *
- * @return void
- */
- public function testHandleFatalErrorLog()
- {
- $this->_logger->expects($this->at(0))
- ->method('log')
- ->with('error', $this->logicalAnd(
- $this->stringContains(__FILE__ . ', line ' . (__LINE__ + 9)),
- $this->stringContains('Fatal Error (1)'),
- $this->stringContains('Something wrong')
- ));
- $this->_logger->expects($this->at(1))
- ->method('log')
- ->with('error', $this->stringContains('[Cake\Error\FatalErrorException] Something wrong'));
- $errorHandler = new TestErrorHandler(['log' => true]);
- $errorHandler->handleFatalError(E_ERROR, 'Something wrong', __FILE__, __LINE__);
- }
- /**
- * Tests Handling a PHP7 error
- *
- * @return void
- */
- public function testHandlePHP7Error()
- {
- $this->skipIf(!class_exists('Error'), 'Requires PHP7');
- $error = new PHP7ErrorException(new ParseError('Unexpected variable foo'));
- $errorHandler = new TestErrorHandler();
- $errorHandler->handleException($error);
- $this->assertContains('Unexpected variable foo', (string)$errorHandler->response->getBody(), 'message missing.');
- }
- /**
- * Data provider for memory limit changing.
- *
- * @return array
- */
- public function memoryLimitProvider()
- {
- return [
- // start, adjust, expected
- ['256M', 4, '262148K'],
- ['262144K', 4, '262148K'],
- ['1G', 128, '1048704K'],
- ];
- }
- /**
- * Test increasing the memory limit.
- *
- * @dataProvider memoryLimitProvider
- * @return void
- */
- public function testIncreaseMemoryLimit($start, $adjust, $expected)
- {
- $initial = ini_get('memory_limit');
- $this->skipIf(strlen($initial) === 0, 'Cannot read memory limit, and cannot test increasing it.');
- // phpunit.xml often has -1 as memory limit
- ini_set('memory_limit', $start);
- $errorHandler = new TestErrorHandler();
- $this->assertNull($errorHandler->increaseMemoryLimit($adjust));
- $new = ini_get('memory_limit');
- $this->assertEquals($expected, $new, 'memory limit did not get increased.');
- ini_set('memory_limit', $initial);
- }
- }
|