| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <?php
- /**
- * DebugKit Debugger Test Case File
- *
- * PHP 5
- *
- * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
- *
- * Licensed under The MIT License
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
- * @link http://cakephp.org CakePHP(tm) Project
- * @since debug_kit 0.1
- * @license http://www.opensource.org/licenses/mit-license.php MIT License
- **/
-
- App::uses('DebugKitDebugger', 'DebugKit.Lib');
- require_once CakePlugin::path('DebugKit') . 'Test' . DS . 'Case' . DS . 'TestFireCake.php';
-
- /**
- * Test case for the DebugKitDebugger
- *
- * @since debug_kit 0.1
- */
- class DebugKitDebuggerTest extends CakeTestCase {
-
- /**
- * setUp method
- *
- * @return void
- */
- public function setUp() {
- parent::setUp();
- Configure::write('log', false);
- $this->firecake = FireCake::getInstance('TestFireCake');
- TestFireCake::reset();
- }
-
- /**
- * tearDown method
- *
- * @return void
- */
- public function tearDown() {
- parent::tearDown();
- Configure::write('log', true);
- DebugKitDebugger::clearTimers();
- TestFireCake::reset();
- }
-
- /**
- * test output switch to firePHP
- *
- * @return void
- */
- public function testOutput() {
- Debugger::getInstance('DebugKitDebugger');
- Debugger::addFormat('fb', array('callback' => 'DebugKitDebugger::fireError'));
- Debugger::outputAs('fb');
-
- set_error_handler('ErrorHandler::handleError');
- $foo .= '';
- restore_error_handler();
-
- $result = $this->firecake->sentHeaders;
-
- $this->assertRegExp('/GROUP_START/', $result['X-Wf-1-1-1-1']);
- $this->assertRegExp('/ERROR/', $result['X-Wf-1-1-1-2']);
- $this->assertRegExp('/GROUP_END/', $result['X-Wf-1-1-1-5']);
-
- Debugger::getInstance('Debugger');
- Debugger::outputAs('html');
- }
- }
|