2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
|
|
|
/* SVN FILE: $Id$ */
|
|
|
|
/**
|
|
|
|
* Short description for file.
|
|
|
|
*
|
|
|
|
* Long description for file
|
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
|
|
|
* CakePHP(tm) Tests <https://trac.cakephp.org/wiki/Developement/TestSuite>
|
|
|
|
* Copyright 2005-2008, Cake Software Foundation, Inc.
|
|
|
|
* 1785 E. Sahara Avenue, Suite 490-204
|
|
|
|
* Las Vegas, Nevada 89104
|
|
|
|
*
|
|
|
|
* Licensed under The Open Group Test Suite License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
|
|
|
* @filesource
|
|
|
|
* @copyright Copyright 2005-2008, Cake Software Foundation, Inc.
|
|
|
|
* @link https://trac.cakephp.org/wiki/Developement/TestSuite CakePHP(tm) Tests
|
|
|
|
* @package cake.tests
|
|
|
|
* @subpackage cake.tests.cases.libs
|
|
|
|
* @since CakePHP(tm) v 1.2.0.5432
|
|
|
|
* @version $Revision$
|
|
|
|
* @modifiedby $LastChangedBy$
|
|
|
|
* @lastmodified $Date$
|
|
|
|
* @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License
|
|
|
|
*/
|
|
|
|
if (class_exists('TestErrorHandler')) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
App::import('Core', array('Error', 'Controller'));
|
|
|
|
|
|
|
|
if (!defined('CAKEPHP_UNIT_TEST_EXECUTION')) {
|
|
|
|
define('CAKEPHP_UNIT_TEST_EXECUTION', 1);
|
|
|
|
}
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
2008-06-11 07:56:51 +00:00
|
|
|
* MyOrangeComponent class
|
2008-06-02 19:22:55 +00:00
|
|
|
*
|
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.tests.cases.libs
|
|
|
|
*/
|
2008-06-11 07:56:51 +00:00
|
|
|
class MyOrangeComponent extends Object {
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
2008-06-04 19:04:58 +00:00
|
|
|
* testName property
|
2008-06-02 19:22:55 +00:00
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
2008-06-04 19:04:58 +00:00
|
|
|
*/
|
|
|
|
var $testName = null;
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
2008-06-04 19:04:58 +00:00
|
|
|
* initialize method
|
2008-06-02 19:22:55 +00:00
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
2008-06-04 19:04:58 +00:00
|
|
|
*/
|
|
|
|
function initialize(&$controller) {
|
2008-06-11 07:56:51 +00:00
|
|
|
$this->testName = 'MyOrangeComponent';
|
2008-06-04 19:04:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* AppController class
|
|
|
|
*
|
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.tests.cases.libs
|
2008-06-02 19:22:55 +00:00
|
|
|
*/
|
2008-06-04 19:04:58 +00:00
|
|
|
if (!class_exists('AppController')) {
|
2008-06-05 15:20:45 +00:00
|
|
|
/**
|
|
|
|
* AppController class
|
|
|
|
*
|
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.tests.cases.libs
|
|
|
|
*/
|
2008-06-04 19:04:58 +00:00
|
|
|
class AppController extends Controller {
|
|
|
|
/**
|
|
|
|
* components property
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-06-11 07:56:51 +00:00
|
|
|
var $components = array('MyOrange');
|
2008-06-04 19:04:58 +00:00
|
|
|
/**
|
|
|
|
* beforeFilter method
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function beforeFilter() {
|
|
|
|
$this->cakeError('error404', array('oops' => 'Nothing to see here'));
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* beforeRender method
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function beforeRender() {
|
2008-06-11 07:56:51 +00:00
|
|
|
echo $this->MyOrange->testName;
|
2008-06-04 19:04:58 +00:00
|
|
|
}
|
|
|
|
/**
|
|
|
|
* cakeError method
|
|
|
|
*
|
|
|
|
* @param mixed $method
|
|
|
|
* @param array $messages
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function cakeError($method, $messages = array()) {
|
|
|
|
$error =& new TestErrorHandler($method, $messages);
|
|
|
|
return $error;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* header method
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function header($header) {
|
|
|
|
echo $header;
|
|
|
|
}
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
}
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* TestErrorController class
|
|
|
|
*
|
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.tests.cases.libs
|
|
|
|
*/
|
2008-06-04 19:04:58 +00:00
|
|
|
class TestErrorController extends AppController {
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* uses property
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
* @access public
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
var $uses = array();
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* index method
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function index() {
|
|
|
|
$this->autoRender = false;
|
|
|
|
return 'what up';
|
|
|
|
}
|
|
|
|
}
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* TestErrorHandler class
|
|
|
|
*
|
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.tests.cases.libs
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
class TestErrorHandler extends ErrorHandler {
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* stop method
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-06-04 19:04:58 +00:00
|
|
|
function _stop() {
|
2008-05-30 11:40:08 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Short description for class.
|
|
|
|
*
|
|
|
|
* @package cake.tests
|
|
|
|
* @subpackage cake.tests.cases.libs
|
|
|
|
*/
|
|
|
|
class TestErrorHandlerTest extends CakeTestCase {
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* skip method
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function skip() {
|
|
|
|
$this->skipif ((php_sapi_name() == 'cli'), 'TestErrorHandlerTest cannot be run from console');
|
|
|
|
}
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testFromBeforeFilter method
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testFromBeforeFilter() {
|
|
|
|
if (!class_exists('dispatcher')) {
|
|
|
|
require CAKE . 'dispatcher.php';
|
|
|
|
}
|
|
|
|
$Dispatcher =& new Dispatcher();
|
|
|
|
|
|
|
|
restore_error_handler();
|
|
|
|
ob_start();
|
|
|
|
$controller = $Dispatcher->dispatch('/test_error', array('return'=> 1));
|
|
|
|
$expected = ob_get_clean();
|
|
|
|
set_error_handler('simpleTestErrorHandler');
|
|
|
|
$this->assertPattern("/<h2>Not Found<\/h2>/", $expected);
|
|
|
|
$this->assertPattern("/<strong>'\/test_error'<\/strong>/", $expected);
|
|
|
|
}
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testError method
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testError() {
|
|
|
|
ob_start();
|
|
|
|
$TestErrorHandler = new TestErrorHandler('error404', array('message' => 'Page not found'));
|
|
|
|
ob_clean();
|
|
|
|
|
|
|
|
ob_start();
|
|
|
|
$TestErrorHandler->error(array(
|
|
|
|
'code' => 404,
|
|
|
|
'message' => 'Page not Found',
|
|
|
|
'name' => "Couldn't find what you were looking for"
|
|
|
|
));
|
|
|
|
$result = ob_get_clean();
|
|
|
|
$this->assertPattern("/<h2>Couldn't find what you were looking for<\/h2>/", $result);
|
|
|
|
$this->assertPattern('/Page not Found/', $result);
|
|
|
|
}
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testError404 method
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testError404() {
|
|
|
|
ob_start();
|
|
|
|
$TestErrorHandler = new TestErrorHandler('error404', array('message' => 'Page not found'));
|
|
|
|
$result = ob_get_clean();
|
|
|
|
$this->assertPattern('/<h2>Not Found<\/h2>/', $result);
|
|
|
|
$this->assertPattern("/<strong>'\/test_error'<\/strong>/", $result);
|
|
|
|
}
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testMissingController method
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testMissingController() {
|
|
|
|
ob_start();
|
|
|
|
$TestErrorHandler = new TestErrorHandler('missingController', array(
|
|
|
|
'className' => 'PostsController'
|
|
|
|
));
|
|
|
|
$result = ob_get_clean();
|
|
|
|
$this->assertPattern('/<h2>Missing Controller<\/h2>/', $result);
|
|
|
|
$this->assertPattern('/<em>PostsController<\/em>/', $result);
|
2008-06-11 07:56:51 +00:00
|
|
|
$this->assertPattern('/MyOrangeComponent/', $result);
|
2008-06-04 19:04:58 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testMissingAction method
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testMissingAction() {
|
|
|
|
ob_start();
|
|
|
|
$TestErrorHandler = new TestErrorHandler('missingAction', array(
|
|
|
|
'className' => 'PostsController',
|
|
|
|
'action' => 'index'
|
|
|
|
));
|
|
|
|
$result = ob_get_clean();
|
|
|
|
$this->assertPattern('/<h2>Missing Method in PostsController<\/h2>/', $result);
|
|
|
|
$this->assertPattern('/<em>PostsController::<\/em><em>index\(\)<\/em>/', $result);
|
|
|
|
}
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testPrivateAction method
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testPrivateAction() {
|
|
|
|
ob_start();
|
|
|
|
$TestErrorHandler = new TestErrorHandler('privateAction', array(
|
|
|
|
'className' => 'PostsController',
|
|
|
|
'action' => '_secretSauce'
|
|
|
|
));
|
|
|
|
$result = ob_get_clean();
|
|
|
|
$this->assertPattern('/<h2>Private Method in PostsController<\/h2>/', $result);
|
|
|
|
$this->assertPattern('/<em>PostsController::<\/em><em>_secretSauce\(\)<\/em>/', $result);
|
|
|
|
}
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testMissingTable method
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testMissingTable() {
|
|
|
|
ob_start();
|
|
|
|
$TestErrorHandler = new TestErrorHandler('missingTable', array(
|
|
|
|
'className' => 'Article',
|
|
|
|
'table' => 'articles'
|
|
|
|
));
|
|
|
|
$result = ob_get_clean();
|
|
|
|
$this->assertPattern('/<h2>Missing Database Table<\/h2>/', $result);
|
|
|
|
$this->assertPattern('/table <em>articles<\/em> for model <em>Article<\/em>/', $result);
|
|
|
|
}
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testMissingDatabase method
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testMissingDatabase() {
|
|
|
|
ob_start();
|
|
|
|
$TestErrorHandler = new TestErrorHandler('missingDatabase', array());
|
|
|
|
$result = ob_get_clean();
|
|
|
|
$this->assertPattern('/<h2>Missing Database Connection<\/h2>/', $result);
|
|
|
|
$this->assertPattern('/Confirm you have created the file/', $result);
|
|
|
|
}
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testMissingView method
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testMissingView() {
|
|
|
|
restore_error_handler();
|
|
|
|
ob_start();
|
|
|
|
$TestErrorHandler = new TestErrorHandler('missingView', array(
|
|
|
|
'className' => 'Pages',
|
|
|
|
'action' => 'display',
|
|
|
|
'file' => 'pages/about.ctp',
|
|
|
|
'base' => ''
|
|
|
|
));
|
|
|
|
$expected = ob_get_clean();
|
|
|
|
set_error_handler('simpleTestErrorHandler');
|
|
|
|
$this->assertPattern("/PagesController::/", $expected);
|
|
|
|
$this->assertPattern("/pages\/about.ctp/", $expected);
|
|
|
|
|
|
|
|
}
|
2008-06-05 15:20:45 +00:00
|
|
|
/**
|
|
|
|
* testMissingLayout method
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testMissingLayout() {
|
|
|
|
restore_error_handler();
|
|
|
|
ob_start();
|
|
|
|
$TestErrorHandler = new TestErrorHandler('missingLayout', array(
|
|
|
|
'layout' => 'my_layout',
|
|
|
|
'file' => 'layouts/my_layout.ctp',
|
|
|
|
'base' => ''
|
|
|
|
));
|
|
|
|
$expected = ob_get_clean();
|
|
|
|
set_error_handler('simpleTestErrorHandler');
|
|
|
|
$this->assertPattern("/Missing Layout/", $expected);
|
|
|
|
$this->assertPattern("/layouts\/my_layout.ctp/", $expected);
|
|
|
|
|
|
|
|
}
|
2008-06-05 15:20:45 +00:00
|
|
|
/**
|
|
|
|
* testMissingConnection method
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testMissingConnection() {
|
|
|
|
ob_start();
|
|
|
|
$TestErrorHandler = new TestErrorHandler('missingConnection', array(
|
|
|
|
'className' => 'Article'
|
|
|
|
));
|
|
|
|
$result = ob_get_clean();
|
|
|
|
$this->assertPattern('/<h2>Missing Database Connection<\/h2>/', $result);
|
|
|
|
$this->assertPattern('/Article requires a database connection/', $result);
|
|
|
|
}
|
2008-06-05 15:20:45 +00:00
|
|
|
/**
|
|
|
|
* testMissingHelperFile method
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testMissingHelperFile() {
|
|
|
|
ob_start();
|
|
|
|
$TestErrorHandler = new TestErrorHandler('missingHelperFile', array(
|
|
|
|
'helper' => 'MyCustom',
|
|
|
|
'file' => 'my_custom.php'
|
|
|
|
));
|
|
|
|
$result = ob_get_clean();
|
|
|
|
$this->assertPattern('/<h2>Missing Helper File<\/h2>/', $result);
|
|
|
|
$this->assertPattern('/Create the class below in file:/', $result);
|
|
|
|
$this->assertPattern('/\/my_custom.php/', $result);
|
|
|
|
}
|
2008-06-05 15:20:45 +00:00
|
|
|
/**
|
|
|
|
* testMissingHelperClass method
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testMissingHelperClass() {
|
|
|
|
ob_start();
|
|
|
|
$TestErrorHandler = new TestErrorHandler('missingHelperClass', array(
|
|
|
|
'helper' => 'MyCustom',
|
|
|
|
'file' => 'my_custom.php'
|
|
|
|
));
|
|
|
|
$result = ob_get_clean();
|
|
|
|
$this->assertPattern('/<h2>Missing Helper Class<\/h2>/', $result);
|
|
|
|
$this->assertPattern('/The helper class <em>MyCustomHelper<\/em> can not be found or does not exist./', $result);
|
|
|
|
$this->assertPattern('/\/my_custom.php/', $result);
|
|
|
|
}
|
2008-06-05 15:20:45 +00:00
|
|
|
/**
|
|
|
|
* testMissingComponentFile method
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testMissingComponentFile() {
|
|
|
|
ob_start();
|
|
|
|
$TestErrorHandler = new TestErrorHandler('missingComponentFile', array(
|
|
|
|
'className' => 'PostsController',
|
|
|
|
'component' => 'Sidebox',
|
|
|
|
'file' => 'sidebox.php'
|
|
|
|
));
|
|
|
|
$result = ob_get_clean();
|
|
|
|
$this->assertPattern('/<h2>Missing Component File<\/h2>/', $result);
|
|
|
|
$this->assertPattern('/Create the class <em>SideboxComponent<\/em> in file:/', $result);
|
|
|
|
$this->assertPattern('/\/sidebox.php/', $result);
|
|
|
|
}
|
2008-06-05 15:20:45 +00:00
|
|
|
/**
|
|
|
|
* testMissingComponentClass method
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testMissingComponentClass() {
|
|
|
|
ob_start();
|
|
|
|
$TestErrorHandler = new TestErrorHandler('missingComponentClass', array(
|
|
|
|
'className' => 'PostsController',
|
|
|
|
'component' => 'Sidebox',
|
|
|
|
'file' => 'sidebox.php'
|
|
|
|
));
|
|
|
|
$result = ob_get_clean();
|
|
|
|
$this->assertPattern('/<h2>Missing Component Class<\/h2>/', $result);
|
|
|
|
$this->assertPattern('/Create the class <em>SideboxComponent<\/em> in file:/', $result);
|
|
|
|
$this->assertPattern('/\/sidebox.php/', $result);
|
|
|
|
}
|
2008-06-05 15:20:45 +00:00
|
|
|
/**
|
|
|
|
* testMissingModel method
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testMissingModel() {
|
|
|
|
ob_start();
|
|
|
|
$TestErrorHandler = new TestErrorHandler('missingModel', array(
|
|
|
|
'className' => 'Article',
|
|
|
|
'file' => 'article.php'
|
|
|
|
));
|
|
|
|
$result = ob_get_clean();
|
|
|
|
$this->assertPattern('/<h2>Missing Model<\/h2>/', $result);
|
|
|
|
$this->assertPattern('/<em>Article<\/em> could not be found./', $result);
|
|
|
|
$this->assertPattern('/\/article.php/', $result);
|
|
|
|
}
|
|
|
|
}
|
2008-06-02 19:22:55 +00:00
|
|
|
?>
|