373 lines
		
	
	
		
			8.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			373 lines
		
	
	
		
			8.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| /*
 | |
|  * This file is part of the Symfony package.
 | |
|  *
 | |
|  * (c) Fabien Potencier <fabien@symfony.com>
 | |
|  *
 | |
|  * For the full copyright and license information, please view the LICENSE
 | |
|  * file that was distributed with this source code.
 | |
|  */
 | |
| 
 | |
| namespace Symfony\Component\VarDumper\Tests;
 | |
| 
 | |
| use Symfony\Component\VarDumper\Cloner\VarCloner;
 | |
| use Symfony\Component\VarDumper\Dumper\CliDumper;
 | |
| 
 | |
| /**
 | |
|  * @author Nicolas Grekas <p@tchwork.com>
 | |
|  */
 | |
| class CliDumperTest extends \PHPUnit_Framework_TestCase
 | |
| {
 | |
|     public function testGet()
 | |
|     {
 | |
|         require __DIR__.'/Fixtures/dumb-var.php';
 | |
| 
 | |
|         $dumper = new CliDumper('php://output');
 | |
|         $dumper->setColors(false);
 | |
|         $cloner = new VarCloner();
 | |
|         $cloner->addCasters(array(
 | |
|             ':stream' => function ($res, $a) {
 | |
|                 unset($a['uri'], $a['wrapper_data']);
 | |
| 
 | |
|                 return $a;
 | |
|             },
 | |
|         ));
 | |
|         $data = $cloner->cloneVar($var);
 | |
| 
 | |
|         ob_start();
 | |
|         $dumper->dump($data);
 | |
|         $out = ob_get_clean();
 | |
|         $out = preg_replace('/[ \t]+$/m', '', $out);
 | |
|         $intMax = PHP_INT_MAX;
 | |
|         $res = (int) $var['res'];
 | |
| 
 | |
|         $r = defined('HHVM_VERSION') ? '' : '#%d';
 | |
|         $this->assertStringMatchesFormat(
 | |
|             <<<EOTXT
 | |
| array:24 [
 | |
|   "number" => 1
 | |
|   0 => &1 null
 | |
|   "const" => 1.1
 | |
|   1 => true
 | |
|   2 => false
 | |
|   3 => NAN
 | |
|   4 => INF
 | |
|   5 => -INF
 | |
|   6 => {$intMax}
 | |
|   "str" => "déjà\\n"
 | |
|   7 => b"é\\x00"
 | |
|   "[]" => []
 | |
|   "res" => stream resource {@{$res}
 | |
|     wrapper_type: "plainfile"
 | |
|     stream_type: "STDIO"
 | |
|     mode: "r"
 | |
|     unread_bytes: 0
 | |
|     seekable: true
 | |
|     timed_out: false
 | |
|     blocked: true
 | |
|     eof: false
 | |
|     options: []
 | |
|   }
 | |
|   "obj" => Symfony\Component\VarDumper\Tests\Fixture\DumbFoo {#%d
 | |
|     +foo: "foo"
 | |
|     +"bar": "bar"
 | |
|   }
 | |
|   "closure" => Closure {{$r}
 | |
|     reflection: """
 | |
|       Closure [ <user%S> %s Symfony\Component\VarDumper\Tests\Fixture\{closure} ] {\\n
 | |
|         @@ {$var['file']} {$var['line']} - {$var['line']}\\n
 | |
|       \\n
 | |
|         - Parameters [2] {\\n
 | |
|           Parameter #0 [ <required> \$a ]\\n
 | |
|           Parameter #1 [ <optional> PDO or NULL &\$b = NULL ]\\n
 | |
|         }\\n
 | |
|       }\\n
 | |
|       """
 | |
|   }
 | |
|   "line" => {$var['line']}
 | |
|   "nobj" => array:1 [
 | |
|     0 => &3 {#%d}
 | |
|   ]
 | |
|   "recurs" => &4 array:1 [
 | |
|     0 => &4 array:1 [&4]
 | |
|   ]
 | |
|   8 => &1 null
 | |
|   "sobj" => Symfony\Component\VarDumper\Tests\Fixture\DumbFoo {#%d}
 | |
|   "snobj" => &3 {#%d}
 | |
|   "snobj2" => {#%d}
 | |
|   "file" => "{$var['file']}"
 | |
|   b"bin-key-é" => ""
 | |
| ]
 | |
| 
 | |
| EOTXT
 | |
|             ,
 | |
|             $out
 | |
|         );
 | |
|     }
 | |
| 
 | |
|     public function testClosedResource()
 | |
|     {
 | |
|         if (defined('HHVM_VERSION') && HHVM_VERSION_ID < 30600) {
 | |
|             $this->markTestSkipped();
 | |
|         }
 | |
| 
 | |
|         $var = fopen(__FILE__, 'r');
 | |
|         fclose($var);
 | |
| 
 | |
|         $dumper = new CliDumper('php://output');
 | |
|         $dumper->setColors(false);
 | |
|         $cloner = new VarCloner();
 | |
|         $data = $cloner->cloneVar($var);
 | |
| 
 | |
|         ob_start();
 | |
|         $dumper->dump($data);
 | |
|         $out = ob_get_clean();
 | |
|         $res = (int) $var;
 | |
| 
 | |
|         $this->assertStringMatchesFormat(
 | |
|             <<<EOTXT
 | |
| Unknown resource @{$res}
 | |
| 
 | |
| EOTXT
 | |
|             ,
 | |
|             $out
 | |
|         );
 | |
|     }
 | |
| 
 | |
|     public function testThrowingCaster()
 | |
|     {
 | |
|         $out = fopen('php://memory', 'r+b');
 | |
| 
 | |
|         $dumper = new CliDumper();
 | |
|         $dumper->setColors(false);
 | |
|         $cloner = new VarCloner();
 | |
|         $cloner->addCasters(array(
 | |
|             ':stream' => function ($res, $a) {
 | |
|                 unset($a['wrapper_data']);
 | |
| 
 | |
|                 return $a;
 | |
|             },
 | |
|         ));
 | |
|         $cloner->addCasters(array(
 | |
|             ':stream' => function () {
 | |
|                 throw new \Exception('Foobar');
 | |
|             },
 | |
|         ));
 | |
|         $line = __LINE__ - 3;
 | |
|         $file = __FILE__;
 | |
|         $ref = (int) $out;
 | |
| 
 | |
|         $data = $cloner->cloneVar($out);
 | |
|         $dumper->dump($data, $out);
 | |
|         rewind($out);
 | |
|         $out = stream_get_contents($out);
 | |
| 
 | |
|         $r = defined('HHVM_VERSION') ? '' : '#%d';
 | |
|         $this->assertStringMatchesFormat(
 | |
|             <<<EOTXT
 | |
| stream resource {@{$ref}
 | |
|   wrapper_type: "PHP"
 | |
|   stream_type: "MEMORY"
 | |
|   mode: "%s+b"
 | |
|   unread_bytes: 0
 | |
|   seekable: true
 | |
|   uri: "php://memory"
 | |
|   timed_out: false
 | |
|   blocked: true
 | |
|   eof: false
 | |
|   options: []
 | |
|   ⚠: Symfony\Component\VarDumper\Exception\ThrowingCasterException {{$r}
 | |
|     #message: "Unexpected Exception thrown from a caster: Foobar"
 | |
|     trace: array:1 [
 | |
|       0 => array:2 [
 | |
|         "call" => "%slosure%s()"
 | |
|         "file" => "{$file}:{$line}"
 | |
|       ]
 | |
|     ]
 | |
|   }
 | |
| }
 | |
| 
 | |
| EOTXT
 | |
|             ,
 | |
|             $out
 | |
|         );
 | |
|     }
 | |
| 
 | |
|     public function testRefsInProperties()
 | |
|     {
 | |
|         $var = (object) array('foo' => 'foo');
 | |
|         $var->bar = &$var->foo;
 | |
| 
 | |
|         $dumper = new CliDumper();
 | |
|         $dumper->setColors(false);
 | |
|         $cloner = new VarCloner();
 | |
| 
 | |
|         $out = fopen('php://memory', 'r+b');
 | |
|         $data = $cloner->cloneVar($var);
 | |
|         $dumper->dump($data, $out);
 | |
|         rewind($out);
 | |
|         $out = stream_get_contents($out);
 | |
| 
 | |
|         $r = defined('HHVM_VERSION') ? '' : '#%d';
 | |
|         $this->assertStringMatchesFormat(
 | |
|             <<<EOTXT
 | |
| {{$r}
 | |
|   +"foo": &1 "foo"
 | |
|   +"bar": &1 "foo"
 | |
| }
 | |
| 
 | |
| EOTXT
 | |
|             ,
 | |
|             $out
 | |
|         );
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @runInSeparateProcess
 | |
|      * @preserveGlobalState disabled
 | |
|      */
 | |
|     public function testSpecialVars56()
 | |
|     {
 | |
|         if (PHP_VERSION_ID < 50600) {
 | |
|             $this->markTestSkipped('PHP 5.6 is required');
 | |
|         }
 | |
| 
 | |
|         $var = $this->getSpecialVars();
 | |
| 
 | |
|         $dumper = new CliDumper();
 | |
|         $dumper->setColors(false);
 | |
|         $cloner = new VarCloner();
 | |
| 
 | |
|         $data = $cloner->cloneVar($var);
 | |
|         $out = fopen('php://memory', 'r+b');
 | |
|         $dumper->dump($data, $out);
 | |
|         rewind($out);
 | |
|         $out = stream_get_contents($out);
 | |
| 
 | |
|         $this->assertSame(
 | |
|             <<<EOTXT
 | |
| array:3 [
 | |
|   0 => array:1 [
 | |
|     0 => &1 array:1 [
 | |
|       0 => &1 array:1 [&1]
 | |
|     ]
 | |
|   ]
 | |
|   1 => array:1 [
 | |
|     "GLOBALS" => &2 array:1 [
 | |
|       "GLOBALS" => &2 array:1 [&2]
 | |
|     ]
 | |
|   ]
 | |
|   2 => &2 array:1 [&2]
 | |
| ]
 | |
| 
 | |
| EOTXT
 | |
|             ,
 | |
|             $out
 | |
|         );
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @runInSeparateProcess
 | |
|      * @preserveGlobalState disabled
 | |
|      */
 | |
|     public function testGlobalsNoExt()
 | |
|     {
 | |
|         $var = $this->getSpecialVars();
 | |
|         unset($var[0]);
 | |
|         $out = '';
 | |
| 
 | |
|         $dumper = new CliDumper(function ($line, $depth) use (&$out) {
 | |
|             if ($depth >= 0) {
 | |
|                 $out .= str_repeat('  ', $depth).$line."\n";
 | |
|             }
 | |
|         });
 | |
|         $dumper->setColors(false);
 | |
|         $cloner = new VarCloner();
 | |
| 
 | |
|         $refl = new \ReflectionProperty($cloner, 'useExt');
 | |
|         $refl->setAccessible(true);
 | |
|         $refl->setValue($cloner, false);
 | |
| 
 | |
|         $data = $cloner->cloneVar($var);
 | |
|         $dumper->dump($data);
 | |
| 
 | |
|         $this->assertSame(
 | |
|             <<<EOTXT
 | |
| array:2 [
 | |
|   1 => array:1 [
 | |
|     "GLOBALS" => &1 array:1 [
 | |
|       "GLOBALS" => &1 array:1 [&1]
 | |
|     ]
 | |
|   ]
 | |
|   2 => &1 array:1 [&1]
 | |
| ]
 | |
| 
 | |
| EOTXT
 | |
|             ,
 | |
|             $out
 | |
|         );
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @runInSeparateProcess
 | |
|      * @preserveGlobalState disabled
 | |
|      */
 | |
|     public function testBuggyRefs()
 | |
|     {
 | |
|         if (PHP_VERSION_ID >= 50600) {
 | |
|             $this->markTestSkipped('PHP 5.6 fixed refs counting');
 | |
|         }
 | |
| 
 | |
|         $var = $this->getSpecialVars();
 | |
|         $var = $var[0];
 | |
| 
 | |
|         $dumper = new CliDumper();
 | |
|         $dumper->setColors(false);
 | |
|         $cloner = new VarCloner();
 | |
| 
 | |
|         $data = $cloner->cloneVar($var)->getLimitedClone(3, -1);
 | |
|         $out = '';
 | |
|         $dumper->dump($data, function ($line, $depth) use (&$out) {
 | |
|             if ($depth >= 0) {
 | |
|                 $out .= str_repeat('  ', $depth).$line."\n";
 | |
|             }
 | |
|         });
 | |
| 
 | |
|         $this->assertSame(
 | |
|             <<<EOTXT
 | |
| array:1 [
 | |
|   0 => array:1 [
 | |
|     0 => array:1 [
 | |
|       0 => array:1 [
 | |
|          …1
 | |
|       ]
 | |
|     ]
 | |
|   ]
 | |
| ]
 | |
| 
 | |
| EOTXT
 | |
|             ,
 | |
|             $out
 | |
|         );
 | |
|     }
 | |
| 
 | |
|     private function getSpecialVars()
 | |
|     {
 | |
|         foreach (array_keys($GLOBALS) as $var) {
 | |
|             if ('GLOBALS' !== $var) {
 | |
|                 unset($GLOBALS[$var]);
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         $var = function &() {
 | |
|             $var = array();
 | |
|             $var[] = &$var;
 | |
| 
 | |
|             return $var;
 | |
|         };
 | |
| 
 | |
|         return array($var(), $GLOBALS, &$GLOBALS);
 | |
|     }
 | |
| }
 | 
