This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/VarDumper/Tests/CliDumperTest.php

322 lines
6.8 KiB
PHP
Raw Normal View History

2014-04-05 20:31:16 +01:00
<?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;
2014-04-05 20:31:16 +01:00
use Symfony\Component\VarDumper\Dumper\CliDumper;
use Symfony\Component\VarDumper\Test\VarDumperTestCase;
2014-04-05 20:31:16 +01:00
/**
* @author Nicolas Grekas <p@tchwork.com>
*/
class CliDumperTest extends VarDumperTestCase
2014-04-05 20:31:16 +01:00
{
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']);
return $a;
},
));
2014-04-05 20:31:16 +01:00
$data = $cloner->cloneVar($var);
ob_start();
$dumper->dump($data);
$out = ob_get_clean();
$closureLabel = PHP_VERSION_ID >= 50400 ? 'public method' : 'function';
$out = preg_replace('/[ \t]+$/m', '', $out);
2014-09-26 08:07:47 +01:00
$intMax = PHP_INT_MAX;
2014-10-10 16:31:59 +01:00
$res1 = (int) $var['res'];
$res2 = (int) $var[8];
2014-04-05 20:31:16 +01:00
2014-10-10 16:31:59 +01:00
$this->assertStringMatchesFormat(
2014-04-05 20:31:16 +01:00
<<<EOTXT
array:25 [
"number" => 1
2014-10-10 16:31:59 +01:00
0 => &1 null
2014-04-05 20:31:16 +01:00
"const" => 1.1
1 => true
2 => false
3 => NAN
4 => INF
5 => -INF
2014-09-26 08:07:47 +01:00
6 => {$intMax}
2014-04-05 20:31:16 +01:00
"str" => "déjà"
2014-10-22 07:47:25 +01:00
7 => b"é@"
2014-04-05 20:31:16 +01:00
"[]" => []
2014-10-10 16:31:59 +01:00
"res" => :stream {@{$res1}
2014-04-05 20:31:16 +01:00
wrapper_type: "plainfile"
stream_type: "STDIO"
2014-04-05 20:31:16 +01:00
mode: "r"
unread_bytes: 0
seekable: true
timed_out: false
blocked: true
eof: false
options: []
}
2014-10-10 16:31:59 +01:00
8 => :Unknown {@{$res2}}
"obj" => Symfony\Component\VarDumper\Tests\Fixture\DumbFoo {#%d
+foo: "foo"
+"bar": "bar"
2014-04-05 20:31:16 +01:00
}
2014-10-10 16:31:59 +01:00
"closure" => Closure {#%d
2014-04-05 20:31:16 +01:00
reflection: """
Closure [ <user> {$closureLabel} Symfony\Component\VarDumper\Tests\Fixture\{closure} ] {
@@ {$var['file']} {$var['line']} - {$var['line']}
- Parameters [2] {
Parameter #0 [ <required> \$a ]
Parameter #1 [ <optional> PDO or NULL &\$b = NULL ]
}
}
"""
}
"line" => {$var['line']}
"nobj" => array:1 [
2014-10-10 16:31:59 +01:00
0 => &3 {#%d}
2014-04-05 20:31:16 +01:00
]
2014-10-10 16:31:59 +01:00
"recurs" => &4 array:1 [
0 => &4 array:1 [&4]
2014-04-05 20:31:16 +01:00
]
9 => &1 null
2014-10-10 16:31:59 +01:00
"sobj" => Symfony\Component\VarDumper\Tests\Fixture\DumbFoo {#%d}
"snobj" => &3 {#%d}
"snobj2" => {#%d}
2014-04-05 20:31:16 +01:00
"file" => "{$var['file']}"
b"bin-key-é" => ""
]
EOTXT
,
$out
);
}
public function testXmlResource()
{
if (!extension_loaded('xml')) {
$this->markTestSkipped('xml extension is required');
}
$var = xml_parser_create();
$this->assertDumpEquals(
<<<EOTXT
:xml {
current_byte_index: 0
current_column_number: 1
current_line_number: 1
error_code: XML_ERROR_NONE
}
EOTXT
,
$var
);
}
public function testThrowingCaster()
{
$out = fopen('php://memory', 'r+b');
$dumper = new CliDumper();
$dumper->setColors(false);
$cloner = new VarCloner();
$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);
$this->assertStringMatchesFormat(
<<<EOTXT
:stream {@{$ref}
wrapper_type: "PHP"
stream_type: "MEMORY"
mode: "w+b"
unread_bytes: 0
seekable: true
uri: "php://memory"
timed_out: false
blocked: true
eof: false
options: []
: Symfony\Component\VarDumper\Exception\ThrowingCasterException {#%d
#message: "Unexpected exception thrown from a caster: Exception"
message: "Foobar"
trace: array:1 [
0 => array:2 [
"call" => "%s{closure}()"
"file" => "{$file}:{$line}"
]
]
}
}
2014-04-05 20:31:16 +01:00
EOTXT
,
$var
);
}
/**
* @runInSeparateProcess
* @preserveGlobalState disabled
*/
public function testSpecialVars56()
{
if (PHP_VERSION_ID < 50600) {
$this->markTestSkipped('PHP 5.6 is required');
}
$var = $this->getSpecialVars();
$this->assertDumpEquals(
<<<EOTXT
2015-01-13 12:58:22 +00:00
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]
]
]
2015-01-13 12:58:22 +00:00
2 => &2 array:1 [&2]
]
2014-04-05 20:31:16 +01:00
EOTXT
,
2014-04-05 20:31:16 +01:00
$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)->withMaxDepth(3);
$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);
}
2014-04-05 20:31:16 +01:00
}