* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Validator\Tests; use PHPUnit\Framework\TestCase; use Symfony\Component\Validator\ConstraintViolation; use Symfony\Component\Validator\ConstraintViolationList; class ConstraintViolationListTest extends TestCase { protected $list; protected function setUp() { $this->list = new ConstraintViolationList(); } protected function tearDown() { $this->list = null; } public function testInit() { $this->assertCount(0, $this->list); } public function testInitWithViolations() { $violation = $this->getViolation('Error'); $this->list = new ConstraintViolationList(array($violation)); $this->assertCount(1, $this->list); $this->assertSame($violation, $this->list[0]); } public function testAdd() { $violation = $this->getViolation('Error'); $this->list->add($violation); $this->assertCount(1, $this->list); $this->assertSame($violation, $this->list[0]); } public function testAddAll() { $violations = array( 10 => $this->getViolation('Error 1'), 20 => $this->getViolation('Error 2'), 30 => $this->getViolation('Error 3'), ); $otherList = new ConstraintViolationList($violations); $this->list->addAll($otherList); $this->assertCount(3, $this->list); $this->assertSame($violations[10], $this->list[0]); $this->assertSame($violations[20], $this->list[1]); $this->assertSame($violations[30], $this->list[2]); } public function testIterator() { $violations = array( 10 => $this->getViolation('Error 1'), 20 => $this->getViolation('Error 2'), 30 => $this->getViolation('Error 3'), ); $this->list = new ConstraintViolationList($violations); // indices are reset upon adding -> array_values() $this->assertSame(array_values($violations), iterator_to_array($this->list)); } public function testArrayAccess() { $violation = $this->getViolation('Error'); $this->list[] = $violation; $this->assertSame($violation, $this->list[0]); $this->assertArrayHasKey(0, $this->list); unset($this->list[0]); $this->assertArrayNotHasKey(0, $this->list); $this->list[10] = $violation; $this->assertSame($violation, $this->list[10]); $this->assertArrayHasKey(10, $this->list); } public function testToString() { $this->list = new ConstraintViolationList(array( $this->getViolation('Error 1', 'Root'), $this->getViolation('Error 2', 'Root', 'foo.bar'), $this->getViolation('Error 3', 'Root', '[baz]'), $this->getViolation('Error 4', '', 'foo.bar'), $this->getViolation('Error 5', '', '[baz]'), )); $expected = <<<'EOF' Root: Error 1 Root.foo.bar: Error 2 Root[baz]: Error 3 foo.bar: Error 4 [baz]: Error 5 EOF; $this->assertEquals($expected, (string) $this->list); } /** * @dataProvider findByCodesProvider */ public function testFindByCodes($code, $violationsCount) { $violations = array( $this->getViolation('Error', null, null, 'code1'), $this->getViolation('Error', null, null, 'code1'), $this->getViolation('Error', null, null, 'code2'), ); $list = new ConstraintViolationList($violations); $specificErrors = $list->findByCodes($code); $this->assertInstanceOf(ConstraintViolationList::class, $specificErrors); $this->assertCount($violationsCount, $specificErrors); } public function findByCodesProvider() { return array( array('code1', 2), array(array('code1', 'code2'), 3), array('code3', 0), ); } protected function getViolation($message, $root = null, $propertyPath = null, $code = null) { return new ConstraintViolation($message, $message, array(), $root, $propertyPath, null, null, $code); } } __halt_compiler();----SIGNATURE:----RNVsNPQHCT2JBvBPF8ndrsv+XBSUx4oWqQ39pYw8rmwCiijEFLmjrMG7P2a6c1s53zBP8kj0+KFf0CpNl//R4t8uQNEmlJIRo4nNwbW4ZRkIJpTxIBJkz1mvPDr3adWgOWycERhn6lNCZaupo8YUUEnZa/XBo7UicKTtgBVshgAO9Am5Kr6vR3hvw4z/I4JZi+r14upDZluzJK7lT8BZKySYgJC3aDnIkbDkR1GuR6nUg0m10egVwYT7jobSnzyrzxdYt274y5rVcSxbN7Tsm04LEIJsgWNgeG61FvPwsBNznuheC7qkL1dSK4fIlX22JN99V4lLNxJv8B8+tNHFnzfzvaCvFVc1DzD+532kIiwoOdzJGYY6COtvH72RcihHZ7RXyehA5ohkZEde04q/1GYAREgOD/fgycA9ORKO5akcn+BOHsg4iCTDU1fvlwysL76mpk2fIGsad/u3L5iMGmSnfEaiwvWDqiciNxeBD9J4hBwhF1/hBltg7I0k2iy5Ou7TpHZouAp0KoQsos4V4BcFjX4iTUATsEtL6IEeHyCBy/jpqn24gKBlqmM2gSxLv9rQsSeTQJK9r8MVNKBiVN4ZmHZv1byCkNVMrccrn+z60dUpMWeMXBf2S7PW1A0JW1TULwAZzF1yzyvmybce7kRcY779BiMqHAz+FZOlNEM=----ATTACHMENT:----ODE1MTAyMjMxNzU5ODkyMSAxOTY2MTQxNzI0OTUzOTQ0IDE3ODU5NDM4ODU0NjU3OTA=