1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
|
<?php
namespace Doctrine\Tests\Common\Util;
use ArrayIterator;
use ArrayObject;
use DateTime;
use DateTimeImmutable;
use DateTimeZone;
use Doctrine\Common\Util\Debug;
use Doctrine\Tests\DoctrineTestCase;
use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\Attributes\RequiresPhp;
use stdClass;
use function ob_end_clean;
use function ob_get_contents;
use function ob_start;
use function print_r;
use function strpos;
use function substr;
class DebugTest extends DoctrineTestCase
{
public function testExportObject()
{
$obj = new stdClass();
$obj->foo = 'bar';
$obj->bar = 1234;
$var = Debug::export($obj, 2);
self::assertEquals('stdClass', $var->__CLASS__);
}
public function testExportObjectWithReference()
{
$foo = 'bar';
$bar = ['foo' => & $foo];
$baz = (object) $bar;
$var = Debug::export($baz, 2);
$baz->foo = 'tab';
self::assertEquals('bar', $var->foo);
self::assertEquals('tab', $bar['foo']);
}
public function testExportArray()
{
$array = ['a' => 'b', 'b' => ['c', 'd' => ['e', 'f']]];
$var = Debug::export($array, 2);
$expected = $array;
$expected['b']['d'] = 'Array(2)';
self::assertEquals($expected, $var);
}
public function testExportDateTime()
{
$obj = new DateTime('2010-10-10 10:10:10', new DateTimeZone('UTC'));
$var = Debug::export($obj, 2);
self::assertEquals('DateTime', $var->__CLASS__);
self::assertEquals('2010-10-10T10:10:10+00:00', $var->date);
}
public function testExportDateTimeImmutable()
{
$obj = new DateTimeImmutable('2010-10-10 10:10:10', new DateTimeZone('UTC'));
$var = Debug::export($obj, 2);
self::assertEquals('DateTimeImmutable', $var->__CLASS__);
self::assertEquals('2010-10-10T10:10:10+00:00', $var->date);
}
public function testExportDateTimeZone()
{
$obj = new DateTimeImmutable('2010-10-10 12:34:56', new DateTimeZone('Europe/Rome'));
$var = Debug::export($obj, 2);
self::assertEquals('DateTimeImmutable', $var->__CLASS__);
self::assertEquals('2010-10-10T12:34:56+02:00', $var->date);
}
public function testExportArrayTraversable()
{
$obj = new ArrayObject(['foobar']);
$var = Debug::export($obj, 2);
self::assertContains('foobar', $var->__STORAGE__);
$it = new ArrayIterator(['foobar']);
$var = Debug::export($it, 5);
self::assertContains('foobar', $var->__STORAGE__);
}
public function testReturnsOutput()
{
ob_start();
$dump = Debug::dump('foo');
$outputValue = ob_get_contents();
ob_end_clean();
self::assertSame($outputValue, $dump);
}
public function testDisablesOutput()
{
ob_start();
$dump = Debug::dump('foo', 2, true, false);
$outputValue = ob_get_contents();
ob_end_clean();
self::assertEmpty($outputValue);
self::assertNotSame($outputValue, $dump);
}
/**
* @param array<string, int> $expected
*/
#[DataProvider('provideAttributesCases')]
#[RequiresPhp('< 8.1.0')]
public function testExportParentAttributes(TestAsset\ParentClass $class, array $expected)
{
$actualRepresentation = print_r($class, true);
$expectedRepresentation = print_r($expected, true);
$actualRepresentation = substr($actualRepresentation, strpos($actualRepresentation, '('));
$expectedRepresentation = substr($expectedRepresentation, strpos($expectedRepresentation, '('));
self::assertSame($actualRepresentation, $expectedRepresentation);
$var = Debug::export($class, 3);
$var = (array) $var;
unset($var['__CLASS__']);
self::assertSame($expected, $var);
}
/**
* @psalm-return array<string, array{TestAsset\ParentClass, mixed[]}>
*/
public static function provideAttributesCases()
{
return [
'different-attributes' => [
new TestAsset\ChildClass(),
[
'childPublicAttribute' => 4,
'childProtectedAttribute:protected' => 5,
'childPrivateAttribute:Doctrine\Tests\Common\Util\TestAsset\ChildClass:private' => 6,
'parentPublicAttribute' => 1,
'parentProtectedAttribute:protected' => 2,
'parentPrivateAttribute:Doctrine\Tests\Common\Util\TestAsset\ParentClass:private' => 3,
],
],
'same-attributes' => [
new TestAsset\ChildWithSameAttributesClass(),
[
'parentPublicAttribute' => 4,
'parentProtectedAttribute:protected' => 5,
'parentPrivateAttribute:Doctrine\Tests\Common\Util\TestAsset\ChildWithSameAttributesClass:private' => 6,
'parentPrivateAttribute:Doctrine\Tests\Common\Util\TestAsset\ParentClass:private' => 3,
],
],
];
}
}
|