* Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * Redistributions of files must retain the above copyright notice * * @copyright Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org) * @link http://book.cakephp.org/view/1196/Testing CakePHP(tm) Tests * @package cake.tests.cases.libs * @since CakePHP(tm) v 1.2.0.5432 * @license MIT License (http://www.opensource.org/licenses/mit-license.php) */ App::uses('ErrorHandler', 'Error'); App::uses('Controller', 'Controller'); App::uses('Router', 'Routing'); /** * ErrorHandlerTest class * * @package cake.tests.cases.libs */ class ErrorHandlerTest extends CakeTestCase { var $_restoreError = false; /** * setup create a request object to get out of router later. * * @return void */ function setUp() { App::build(array( 'View' => array( LIBS . 'tests' . DS . 'test_app' . DS . 'View'. DS ) ), true); Router::reload(); $request = new CakeRequest(null, false); $request->base = ''; Router::setRequestInfo($request); $this->_debug = Configure::read('debug'); $this->_error = Configure::read('Error'); Configure::write('debug', 2); } /** * teardown * * @return void */ function teardown() { Configure::write('debug', $this->_debug); Configure::write('Error', $this->_error); App::build(); if ($this->_restoreError) { restore_error_handler(); } } /** * test error handling when debug is on, an error should be printed from Debugger. * * @return void */ function testHandleErrorDebugOn() { set_error_handler('ErrorHandler::handleError'); $this->_restoreError = true; ob_start(); $wrong .= ''; $result = ob_get_clean(); $this->assertPattern('/
/', $result); $this->assertPattern('/Notice<\/b>/', $result); $this->assertPattern('/variable:\s+wrong/', $result); } /** * provides errors for mapping tests. * * @return void */ public static function errorProvider() { return array( array(E_USER_NOTICE, 'Notice'), array(E_USER_WARNING, 'Warning'), array(E_USER_ERROR, 'Fatal Error'), ); } /** * test error mappings * * @dataProvider errorProvider * @return void */ function testErrorMapping($error, $expected) { set_error_handler('ErrorHandler::handleError'); $this->_restoreError = true; ob_start(); trigger_error('Test error', $error); $result = ob_get_clean(); $this->assertPattern('/' . $expected . '<\/b>/', $result); } /** * test error prepended by @ * * @return void */ function testErrorSuppressed() { set_error_handler('ErrorHandler::handleError'); $this->_restoreError = true; ob_start(); @include 'invalid.file'; $result = ob_get_clean(); $this->assertTrue(empty($result)); } /** * Test that errors go into CakeLog when debug = 0. * * @return void */ function testHandleErrorDebugOff() { Configure::write('debug', 0); Configure::write('Error.trace', false); if (file_exists(LOGS . 'debug.log')) { @unlink(LOGS . 'debug.log'); } set_error_handler('ErrorHandler::handleError'); $this->_restoreError = true; $out .= ''; $result = file(LOGS . 'debug.log'); $this->assertEqual(count($result), 1); $this->assertPattern( '/^\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2} Notice: Notice \(8\): Undefined variable:\s+out in \[.+ line \d+\]$/', $result[0] ); @unlink(LOGS . 'debug.log'); } /** * Test that errors going into CakeLog include traces. * * @return void */ function testHandleErrorLoggingTrace() { Configure::write('debug', 0); Configure::write('Error.trace', true); if (file_exists(LOGS . 'debug.log')) { @unlink(LOGS . 'debug.log'); } set_error_handler('ErrorHandler::handleError'); $this->_restoreError = true; $out .= ''; $result = file(LOGS . 'debug.log'); $this->assertPattern( '/^\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2} Notice: Notice \(8\): Undefined variable:\s+out in \[.+ line \d+\]$/', $result[0] ); $this->assertPattern('/^Trace:/', $result[1]); $this->assertPattern('/^ErrorHandlerTest\:\:testHandleErrorLoggingTrace\(\)/', $result[2]); @unlink(LOGS . 'debug.log'); } /** * test handleException generating a page. * * @return void */ function testHandleException() { if ($this->skipIf(file_exists(APP . 'app_error.php'), 'App error exists cannot run.')) { return; } $error = new NotFoundException('Kaboom!'); ob_start(); ErrorHandler::handleException($error); $result = ob_get_clean(); $this->assertPattern('/Kaboom!/', $result, 'message missing.'); } /** * test handleException generating a page. * * @return void */ function testHandleExceptionLog() { if ($this->skipIf(file_exists(APP . 'app_error.php'), 'App error exists cannot run.')) { return; } if (file_exists(LOGS . 'error.log')) { unlink(LOGS . 'error.log'); } Configure::write('Exception.log', true); $error = new NotFoundException('Kaboom!'); ob_start(); ErrorHandler::handleException($error); $result = ob_get_clean(); $this->assertPattern('/Kaboom!/', $result, 'message missing.'); $log = file(LOGS . 'error.log'); $this->assertPattern('/\[NotFoundException\] Kaboom!/', $log[0], 'message missing.'); $this->assertPattern('/\#0.*ErrorHandlerTest->testHandleExceptionLog/', $log[1], 'Stack trace missing.'); } /** * tests it is possible to load a plugin exception renderer * * @return void */ function testLoadPluginHanlder() { App::build(array( 'plugins' => array( LIBS . 'tests' . DS . 'test_app' . DS . 'plugins' . DS ) ), true); Configure::write('Exception.renderer', 'TestPlugin.TestPluginExceptionRenderer'); $error = new NotFoundException('Kaboom!'); ob_start(); ErrorHandler::handleException($error); $result = ob_get_clean(); $this->assertEquals($result, 'Rendered by test plugin'); } }