cakephp2-php8/cake/tests/cases/console/console_error_handler.test.php

115 lines
2.8 KiB
PHP
Raw Normal View History

<?php
/**
* ConsoleErrorHandler Test case
*
* PHP versions 5
*
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
* 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://cakephp.org CakePHP(tm) Project
* @package cake
* @subpackage cake.cake.tests.cases.console
* @since CakePHP(tm) v 2.0
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
require CAKE . 'console' . DS . 'console_error_handler.php';
class TestConsoleErrorHandler extends ConsoleErrorHandler {
public $output = array();
/**
* Override stderr() so it doesn't do bad things.
*
* @param string $line
* @return void
*/
function stderr($line) {
$this->output[] = $line;
}
}
/**
* ConsoleErrorHandler Test case.
*
* @package cake.tests.cases.console
*/
class ConsoleErrorHandlerTest extends CakeTestCase {
/**
* test that the console error handler can deal with CakeExceptions.
*
* @return void
*/
function testCakeErrors() {
$exception = new MissingActionException('Missing action');
$error = new TestConsoleErrorHandler($exception);
$error->render();
$result = $error->output;
$this->assertEquals(1, count($result));
$this->assertEquals('Missing action', $result[0]);
}
/**
* test a non CakeException exception.
*
* @return void
*/
function testNonCakeExceptions() {
$exception = new InvalidArgumentException('Too many parameters.');
$error = new TestConsoleErrorHandler($exception);
$error->render();
$result = $error->output;
$this->assertEquals(1, count($result));
$this->assertEquals('Too many parameters.', $result[0]);
}
/**
* test a Error404 exception.
*
* @return void
*/
function testError404Exception() {
$exception = new NotFoundException('dont use me in cli.');
$error = new TestConsoleErrorHandler($exception);
$error->render();
$result = $error->output;
$this->assertEquals(1, count($result));
$this->assertEquals('dont use me in cli.', $result[0]);
}
/**
* test a Error500 exception.
*
* @return void
*/
function testError500Exception() {
$exception = new InternalErrorException('dont use me in cli.');
$error = new TestConsoleErrorHandler($exception);
$error->render();
$result = $error->output;
$this->assertEquals(1, count($result));
$this->assertEquals('dont use me in cli.', $result[0]);
}
/**
* test that ConsoleErrorHandler has a stderr file handle.
*
* @return void
*/
function testStdErrFilehandle() {
$exception = new InternalErrorException('dont use me in cli.');
$error = new TestConsoleErrorHandler($exception);
2010-09-04 19:36:57 +00:00
$this->assertTrue(is_resource($error->stderr), 'No handle.');
}
}