123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290 |
- <?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\PropertyAccess\Tests;
- use Symfony\Component\PropertyAccess\PropertyPath;
- use Symfony\Component\PropertyAccess\PropertyPathBuilder;
- /**
- * @author Bernhard Schussek <bschussek@gmail.com>
- */
- class PropertyPathBuilderTest extends \PHPUnit_Framework_TestCase
- {
- /**
- * @var string
- */
- const PREFIX = 'old1[old2].old3[old4][old5].old6';
- /**
- * @var PropertyPathBuilder
- */
- private $builder;
- protected function setUp()
- {
- $this->builder = new PropertyPathBuilder(new PropertyPath(self::PREFIX));
- }
- public function testCreateEmpty()
- {
- $builder = new PropertyPathBuilder();
- $this->assertNull($builder->getPropertyPath());
- }
- public function testCreateCopyPath()
- {
- $this->assertEquals(new PropertyPath(self::PREFIX), $this->builder->getPropertyPath());
- }
- public function testAppendIndex()
- {
- $this->builder->appendIndex('new1');
- $path = new PropertyPath(self::PREFIX.'[new1]');
- $this->assertEquals($path, $this->builder->getPropertyPath());
- }
- public function testAppendProperty()
- {
- $this->builder->appendProperty('new1');
- $path = new PropertyPath(self::PREFIX.'.new1');
- $this->assertEquals($path, $this->builder->getPropertyPath());
- }
- public function testAppend()
- {
- $this->builder->append(new PropertyPath('new1[new2]'));
- $path = new PropertyPath(self::PREFIX.'.new1[new2]');
- $this->assertEquals($path, $this->builder->getPropertyPath());
- }
- public function testAppendUsingString()
- {
- $this->builder->append('new1[new2]');
- $path = new PropertyPath(self::PREFIX.'.new1[new2]');
- $this->assertEquals($path, $this->builder->getPropertyPath());
- }
- public function testAppendWithOffset()
- {
- $this->builder->append(new PropertyPath('new1[new2].new3'), 1);
- $path = new PropertyPath(self::PREFIX.'[new2].new3');
- $this->assertEquals($path, $this->builder->getPropertyPath());
- }
- public function testAppendWithOffsetAndLength()
- {
- $this->builder->append(new PropertyPath('new1[new2].new3'), 1, 1);
- $path = new PropertyPath(self::PREFIX.'[new2]');
- $this->assertEquals($path, $this->builder->getPropertyPath());
- }
- public function testReplaceByIndex()
- {
- $this->builder->replaceByIndex(1, 'new1');
- $path = new PropertyPath('old1[new1].old3[old4][old5].old6');
- $this->assertEquals($path, $this->builder->getPropertyPath());
- }
- public function testReplaceByIndexWithoutName()
- {
- $this->builder->replaceByIndex(0);
- $path = new PropertyPath('[old1][old2].old3[old4][old5].old6');
- $this->assertEquals($path, $this->builder->getPropertyPath());
- }
- /**
- * @expectedException \OutOfBoundsException
- */
- public function testReplaceByIndexDoesNotAllowInvalidOffsets()
- {
- $this->builder->replaceByIndex(6, 'new1');
- }
- /**
- * @expectedException \OutOfBoundsException
- */
- public function testReplaceByIndexDoesNotAllowNegativeOffsets()
- {
- $this->builder->replaceByIndex(-1, 'new1');
- }
- public function testReplaceByProperty()
- {
- $this->builder->replaceByProperty(1, 'new1');
- $path = new PropertyPath('old1.new1.old3[old4][old5].old6');
- $this->assertEquals($path, $this->builder->getPropertyPath());
- }
- public function testReplaceByPropertyWithoutName()
- {
- $this->builder->replaceByProperty(1);
- $path = new PropertyPath('old1.old2.old3[old4][old5].old6');
- $this->assertEquals($path, $this->builder->getPropertyPath());
- }
- /**
- * @expectedException \OutOfBoundsException
- */
- public function testReplaceByPropertyDoesNotAllowInvalidOffsets()
- {
- $this->builder->replaceByProperty(6, 'new1');
- }
- /**
- * @expectedException \OutOfBoundsException
- */
- public function testReplaceByPropertyDoesNotAllowNegativeOffsets()
- {
- $this->builder->replaceByProperty(-1, 'new1');
- }
- public function testReplace()
- {
- $this->builder->replace(1, 1, new PropertyPath('new1[new2].new3'));
- $path = new PropertyPath('old1.new1[new2].new3.old3[old4][old5].old6');
- $this->assertEquals($path, $this->builder->getPropertyPath());
- }
- public function testReplaceUsingString()
- {
- $this->builder->replace(1, 1, 'new1[new2].new3');
- $path = new PropertyPath('old1.new1[new2].new3.old3[old4][old5].old6');
- $this->assertEquals($path, $this->builder->getPropertyPath());
- }
- public function testReplaceNegative()
- {
- $this->builder->replace(-1, 1, new PropertyPath('new1[new2].new3'));
- $path = new PropertyPath('old1[old2].old3[old4][old5].new1[new2].new3');
- $this->assertEquals($path, $this->builder->getPropertyPath());
- }
- /**
- * @dataProvider provideInvalidOffsets
- * @expectedException \OutOfBoundsException
- */
- public function testReplaceDoesNotAllowInvalidOffsets($offset)
- {
- $this->builder->replace($offset, 1, new PropertyPath('new1[new2].new3'));
- }
- public function provideInvalidOffsets()
- {
- return array(
- array(6),
- array(-7),
- );
- }
- public function testReplaceWithLengthGreaterOne()
- {
- $this->builder->replace(0, 2, new PropertyPath('new1[new2].new3'));
- $path = new PropertyPath('new1[new2].new3.old3[old4][old5].old6');
- $this->assertEquals($path, $this->builder->getPropertyPath());
- }
- public function testReplaceSubstring()
- {
- $this->builder->replace(1, 1, new PropertyPath('new1[new2].new3.new4[new5]'), 1, 3);
- $path = new PropertyPath('old1[new2].new3.new4.old3[old4][old5].old6');
- $this->assertEquals($path, $this->builder->getPropertyPath());
- }
- public function testReplaceSubstringWithLengthGreaterOne()
- {
- $this->builder->replace(1, 2, new PropertyPath('new1[new2].new3.new4[new5]'), 1, 3);
- $path = new PropertyPath('old1[new2].new3.new4[old4][old5].old6');
- $this->assertEquals($path, $this->builder->getPropertyPath());
- }
- // https://github.com/symfony/symfony/issues/5605
- public function testReplaceWithLongerPath()
- {
- // error occurs when path contains at least two more elements
- // than the builder
- $path = new PropertyPath('new1.new2.new3');
- $builder = new PropertyPathBuilder(new PropertyPath('old1'));
- $builder->replace(0, 1, $path);
- $this->assertEquals($path, $builder->getPropertyPath());
- }
- public function testReplaceWithLongerPathKeepsOrder()
- {
- $path = new PropertyPath('new1.new2.new3');
- $expected = new PropertyPath('new1.new2.new3.old2');
- $builder = new PropertyPathBuilder(new PropertyPath('old1.old2'));
- $builder->replace(0, 1, $path);
- $this->assertEquals($expected, $builder->getPropertyPath());
- }
- public function testRemove()
- {
- $this->builder->remove(3);
- $path = new PropertyPath('old1[old2].old3[old5].old6');
- $this->assertEquals($path, $this->builder->getPropertyPath());
- }
- /**
- * @expectedException \OutOfBoundsException
- */
- public function testRemoveDoesNotAllowInvalidOffsets()
- {
- $this->builder->remove(6);
- }
- /**
- * @expectedException \OutOfBoundsException
- */
- public function testRemoveDoesNotAllowNegativeOffsets()
- {
- $this->builder->remove(-1);
- }
- }
|