123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- <?php defined('SYSPATH') OR die('Kohana bootstrap needs to be included before tests run');
- /**
- * Tests Kohana Core
- *
- * @TODO Use a virtual filesystem (see phpunit doc on mocking fs) for find_file etc.
- *
- * @group kohana
- * @group kohana.core
- * @group kohana.core.debug
- *
- * @package Kohana
- * @category Tests
- * @author Kohana Team
- * @author Jeremy Bush <[email protected]>
- * @copyright (c) 2008-2012 Kohana Team
- * @license http://kohanaphp.com/license
- */
- class Kohana_DebugTest extends Unittest_TestCase
- {
- /**
- * Provides test data for test_debug()
- *
- * @return array
- */
- public function provider_vars()
- {
- return array(
- // $thing, $expected
- array(array('foobar'), "<pre class=\"debug\"><small>array</small><span>(1)</span> <span>(\n 0 => <small>string</small><span>(6)</span> \"foobar\"\n)</span></pre>"),
- );
- }
- /**
- * Tests Debug::vars()
- *
- * @test
- * @dataProvider provider_vars
- * @covers Debug::vars
- * @param boolean $thing The thing to debug
- * @param boolean $expected Output for Debug::vars
- */
- public function test_var($thing, $expected)
- {
- $this->assertEquals($expected, Debug::vars($thing));
- }
- /**
- * Provides test data for testDebugPath()
- *
- * @return array
- */
- public function provider_debug_path()
- {
- return array(
- array(
- SYSPATH.'classes'.DIRECTORY_SEPARATOR.'kohana'.EXT,
- 'SYSPATH'.DIRECTORY_SEPARATOR.'classes'.DIRECTORY_SEPARATOR.'kohana.php'
- ),
- array(
- MODPATH.$this->dirSeparator('unittest/classes/kohana/unittest/runner').EXT,
- $this->dirSeparator('MODPATH/unittest/classes/kohana/unittest/runner').EXT
- ),
- );
- }
- /**
- * Tests Debug::path()
- *
- * @test
- * @dataProvider provider_debug_path
- * @covers Debug::path
- * @param boolean $path Input for Debug::path
- * @param boolean $expected Output for Debug::path
- */
- public function test_debug_path($path, $expected)
- {
- $this->assertEquals($expected, Debug::path($path));
- }
- /**
- * Provides test data for test_dump()
- *
- * @return array
- */
- public function provider_dump()
- {
- return array(
- array('foobar', 128, 10, '<small>string</small><span>(6)</span> "foobar"'),
- array('foobar', 2, 10, '<small>string</small><span>(6)</span> "fo …"'),
- array(NULL, 128, 10, '<small>NULL</small>'),
- array(TRUE, 128, 10, '<small>bool</small> TRUE'),
- array(array('foobar'), 128, 10, "<small>array</small><span>(1)</span> <span>(\n 0 => <small>string</small><span>(6)</span> \"foobar\"\n)</span>"),
- array(new StdClass, 128, 10, "<small>object</small> <span>stdClass(0)</span> <code>{\n}</code>"),
- array("fo\x6F\xFF\x00bar\x8F\xC2\xB110", 128, 10, '<small>string</small><span>(10)</span> "foobar±10"'),
- array(array('level1' => array('level2' => array('level3' => array('level4' => array('value' => 'something'))))), 128, 4,
- '<small>array</small><span>(1)</span> <span>(
- "level1" => <small>array</small><span>(1)</span> <span>(
- "level2" => <small>array</small><span>(1)</span> <span>(
- "level3" => <small>array</small><span>(1)</span> <span>(
- "level4" => <small>array</small><span>(1)</span> (
- ...
- )
- )</span>
- )</span>
- )</span>
- )</span>'),
- );
- }
- /**
- * Tests Debug::dump()
- *
- * @test
- * @dataProvider provider_dump
- * @covers Debug::dump
- * @covers Debug::_dump
- * @param object $exception exception to test
- * @param string $expected expected output
- */
- public function test_dump($input, $length, $limit, $expected)
- {
- $this->assertEquals($expected, Debug::dump($input, $length, $limit));
- }
- }
|