Вход Регистрация
Файл: src/vendor/symfony/var-dumper/Tests/VarClonerTest.php
Строк: 165
<?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 SymfonyComponentVarDumperTests;

use 
SymfonyComponentVarDumperClonerVarCloner;

/**
 * @author Nicolas Grekas <p@tchwork.com>
 */
class VarClonerTest extends PHPUnit_Framework_TestCase
{
    public function 
testMaxIntBoundary()
    {
        
$data = array(PHP_INT_MAX => 123);

        
$cloner = new VarCloner();
        
$clone $cloner->cloneVar($data);

        
$expected = <<<EOTXT
SymfonyComponentVarDumperClonerData Object
(
    [data:SymfonyComponentVarDumperClonerData:private] => Array
        (
            [0] => Array
                (
                    [0] => SymfonyComponentVarDumperClonerStub Object
                        (
                            [type] => array
                            [class] => assoc
                            [value] => 1
                            [cut] => 0
                            [handle] => 0
                            [refCount] => 0
                            [position] => 1
                        )

                )

            [1] => Array
                (
                    [%s] => 123
                )

        )

    [maxDepth:SymfonyComponentVarDumperClonerData:private] => 20
    [maxItemsPerDepth:SymfonyComponentVarDumperClonerData:private] => -1
    [useRefHandles:SymfonyComponentVarDumperClonerData:private] => -1
)

EOTXT;
        
$this->assertSame(sprintf($expectedPHP_INT_MAX), print_r($clonetrue));
    }

    public function 
testClone()
    {
        
$json json_decode('{"1":{"var":"val"},"2":{"var":"val"}}');

        
$cloner = new VarCloner();
        
$clone $cloner->cloneVar($json);

        
$expected = <<<EOTXT
SymfonyComponentVarDumperClonerData Object
(
    [data:SymfonyComponentVarDumperClonerData:private] => Array
        (
            [0] => Array
                (
                    [0] => SymfonyComponentVarDumperClonerStub Object
                        (
                            [type] => object
                            [class] => stdClass
                            [value] => 
                            [cut] => 0
                            [handle] => %i
                            [refCount] => 0
                            [position] => 1
                        )

                )

            [1] => Array
                (
                    [00+001] => SymfonyComponentVarDumperClonerStub Object
                        (
                            [type] => object
                            [class] => stdClass
                            [value] => 
                            [cut] => 0
                            [handle] => %i
                            [refCount] => 0
                            [position] => 2
                        )

                    [00+002] => SymfonyComponentVarDumperClonerStub Object
                        (
                            [type] => object
                            [class] => stdClass
                            [value] => 
                            [cut] => 0
                            [handle] => %i
                            [refCount] => 0
                            [position] => 3
                        )

                )

            [2] => Array
                (
                    [00+00var] => val
                )

            [3] => Array
                (
                    [00+00var] => val
                )

        )

    [maxDepth:SymfonyComponentVarDumperClonerData:private] => 20
    [maxItemsPerDepth:SymfonyComponentVarDumperClonerData:private] => -1
    [useRefHandles:SymfonyComponentVarDumperClonerData:private] => -1
)

EOTXT;
        
$this->assertStringMatchesFormat($expectedprint_r($clonetrue));
    }

    public function 
testCaster()
    {
        
$cloner = new VarCloner(array(
            
'*' => function ($obj$array) {
                return array(
'foo' => 123);
            },
            
__CLASS__ => function ($obj$array) {
                ++
$array['foo'];

                return 
$array;
            },
        ));
        
$clone $cloner->cloneVar($this);

        
$expected = <<<EOTXT
SymfonyComponentVarDumperClonerData Object
(
    [data:SymfonyComponentVarDumperClonerData:private] => Array
        (
            [0] => Array
                (
                    [0] => SymfonyComponentVarDumperClonerStub Object
                        (
                            [type] => object
                            [class] => %s
                            [value] => 
                            [cut] => 0
                            [handle] => %i
                            [refCount] => 0
                            [position] => 1
                        )

                )

            [1] => Array
                (
                    [foo] => 124
                )

        )

    [maxDepth:SymfonyComponentVarDumperClonerData:private] => 20
    [maxItemsPerDepth:SymfonyComponentVarDumperClonerData:private] => -1
    [useRefHandles:SymfonyComponentVarDumperClonerData:private] => -1
)

EOTXT;
        
$this->assertStringMatchesFormat($expectedprint_r($clonetrue));
    }
}
Онлайн: 2
Реклама