Server IP : 66.29.132.122 / Your IP : 3.128.255.103 Web Server : LiteSpeed System : Linux business142.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : admazpex ( 531) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/root/proc/self/root/proc/thread-self/root/proc/thread-self/root/proc/self/root/proc/thread-self/root/proc/self/root/proc/self/root/opt/cloudlinux/alt-php54/root/usr/share/pear/test/Validator/Symfony/Component/Validator/Tests/Constraints/ |
Upload File : |
<?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\Validator\Tests\Constraints; use Symfony\Component\Validator\Constraints\Range; use Symfony\Component\Validator\Constraints\NotNull; use Symfony\Component\Validator\Constraints\Required; use Symfony\Component\Validator\Constraints\Optional; use Symfony\Component\Validator\Constraints\Collection; use Symfony\Component\Validator\Constraints\CollectionValidator; abstract class CollectionValidatorTest extends \PHPUnit_Framework_TestCase { protected $context; protected $validator; protected function setUp() { $this->context = $this->getMock('Symfony\Component\Validator\ExecutionContext', array(), array(), '', false); $this->validator = new CollectionValidator(); $this->validator->initialize($this->context); $this->context->expects($this->any()) ->method('getGroup') ->will($this->returnValue('MyGroup')); } protected function tearDown() { $this->context = null; $this->validator = null; } abstract protected function prepareTestData(array $contents); public function testNullIsValid() { $this->context->expects($this->never()) ->method('addViolationAt'); $this->validator->validate(null, new Collection(array('fields' => array( 'foo' => new Range(array('min' => 4)), )))); } public function testFieldsAsDefaultOption() { $data = $this->prepareTestData(array('foo' => 'foobar')); $this->context->expects($this->never()) ->method('addViolationAt'); $this->validator->validate($data, new Collection(array( 'foo' => new Range(array('min' => 4)), ))); } /** * @expectedException \Symfony\Component\Validator\Exception\UnexpectedTypeException */ public function testThrowsExceptionIfNotTraversable() { $this->validator->validate('foobar', new Collection(array('fields' => array( 'foo' => new Range(array('min' => 4)), )))); } public function testWalkSingleConstraint() { $constraint = new Range(array('min' => 4)); $array = array( 'foo' => 3, 'bar' => 5, ); $i = 1; foreach ($array as $key => $value) { $this->context->expects($this->at($i++)) ->method('validateValue') ->with($value, $constraint, '['.$key.']', 'MyGroup'); } $data = $this->prepareTestData($array); $this->context->expects($this->never()) ->method('addViolationAt'); $this->validator->validate($data, new Collection(array( 'fields' => array( 'foo' => $constraint, 'bar' => $constraint, ), ))); } public function testWalkMultipleConstraints() { $constraints = array( new Range(array('min' => 4)), new NotNull(), ); $array = array( 'foo' => 3, 'bar' => 5, ); $i = 1; foreach ($array as $key => $value) { foreach ($constraints as $constraint) { $this->context->expects($this->at($i++)) ->method('validateValue') ->with($value, $constraint, '['.$key.']', 'MyGroup'); } } $data = $this->prepareTestData($array); $this->context->expects($this->never()) ->method('addViolationAt'); $this->validator->validate($data, new Collection(array( 'fields' => array( 'foo' => $constraints, 'bar' => $constraints, ) ))); } public function testExtraFieldsDisallowed() { $data = $this->prepareTestData(array( 'foo' => 5, 'baz' => 6, )); $this->context->expects($this->once()) ->method('addViolationAt') ->with('[baz]', 'myMessage', array( '{{ field }}' => 'baz' )); $this->validator->validate($data, new Collection(array( 'fields' => array( 'foo' => new Range(array('min' => 4)), ), 'extraFieldsMessage' => 'myMessage', ))); } // bug fix public function testNullNotConsideredExtraField() { $data = $this->prepareTestData(array( 'foo' => null, )); $constraint = new Collection(array( 'fields' => array( 'foo' => new Range(array('min' => 4)), ), )); $this->context->expects($this->never()) ->method('addViolationAt'); $this->validator->validate($data, $constraint); } public function testExtraFieldsAllowed() { $data = $this->prepareTestData(array( 'foo' => 5, 'bar' => 6, )); $constraint = new Collection(array( 'fields' => array( 'foo' => new Range(array('min' => 4)), ), 'allowExtraFields' => true, )); $this->context->expects($this->never()) ->method('addViolationAt'); $this->validator->validate($data, $constraint); } public function testMissingFieldsDisallowed() { $data = $this->prepareTestData(array()); $constraint = new Collection(array( 'fields' => array( 'foo' => new Range(array('min' => 4)), ), 'missingFieldsMessage' => 'myMessage', )); $this->context->expects($this->once()) ->method('addViolationAt') ->with('[foo]', 'myMessage', array( '{{ field }}' => 'foo', )); $this->validator->validate($data, $constraint); } public function testMissingFieldsAllowed() { $data = $this->prepareTestData(array()); $constraint = new Collection(array( 'fields' => array( 'foo' => new Range(array('min' => 4)), ), 'allowMissingFields' => true, )); $this->context->expects($this->never()) ->method('addViolationAt'); $this->validator->validate($data, $constraint); } public function testOptionalFieldPresent() { $data = $this->prepareTestData(array( 'foo' => null, )); $this->context->expects($this->never()) ->method('addViolationAt'); $this->validator->validate($data, new Collection(array( 'foo' => new Optional(), ))); } public function testOptionalFieldNotPresent() { $data = $this->prepareTestData(array()); $this->context->expects($this->never()) ->method('addViolationAt'); $this->validator->validate($data, new Collection(array( 'foo' => new Optional(), ))); } public function testOptionalFieldSingleConstraint() { $array = array( 'foo' => 5, ); $constraint = new Range(array('min' => 4)); $this->context->expects($this->once()) ->method('validateValue') ->with($array['foo'], $constraint, '[foo]', 'MyGroup'); $this->context->expects($this->never()) ->method('addViolationAt'); $data = $this->prepareTestData($array); $this->validator->validate($data, new Collection(array( 'foo' => new Optional($constraint), ))); } public function testOptionalFieldMultipleConstraints() { $array = array( 'foo' => 5, ); $constraints = array( new NotNull(), new Range(array('min' => 4)), ); $i = 1; foreach ($constraints as $constraint) { $this->context->expects($this->at($i++)) ->method('validateValue') ->with($array['foo'], $constraint, '[foo]', 'MyGroup'); } $this->context->expects($this->never()) ->method('addViolationAt'); $data = $this->prepareTestData($array); $this->validator->validate($data, new Collection(array( 'foo' => new Optional($constraints), ))); } public function testRequiredFieldPresent() { $data = $this->prepareTestData(array( 'foo' => null, )); $this->context->expects($this->never()) ->method('addViolationAt'); $this->validator->validate($data, new Collection(array( 'foo' => new Required(), ))); } public function testRequiredFieldNotPresent() { $data = $this->prepareTestData(array()); $this->context->expects($this->once()) ->method('addViolationAt') ->with('[foo]', 'myMessage', array( '{{ field }}' => 'foo', )); $this->validator->validate($data, new Collection(array( 'fields' => array( 'foo' => new Required(), ), 'missingFieldsMessage' => 'myMessage', ))); } public function testRequiredFieldSingleConstraint() { $array = array( 'foo' => 5, ); $constraint = new Range(array('min' => 4)); $this->context->expects($this->once()) ->method('validateValue') ->with($array['foo'], $constraint, '[foo]', 'MyGroup'); $this->context->expects($this->never()) ->method('addViolationAt'); $data = $this->prepareTestData($array); $this->validator->validate($data, new Collection(array( 'foo' => new Required($constraint), ))); } public function testRequiredFieldMultipleConstraints() { $array = array( 'foo' => 5, ); $constraints = array( new NotNull(), new Range(array('min' => 4)), ); $i = 1; foreach ($constraints as $constraint) { $this->context->expects($this->at($i++)) ->method('validateValue') ->with($array['foo'], $constraint, '[foo]', 'MyGroup'); } $this->context->expects($this->never()) ->method('addViolationAt'); $data = $this->prepareTestData($array); $this->validator->validate($array, new Collection(array( 'foo' => new Required($constraints), ))); } public function testObjectShouldBeLeftUnchanged() { $value = new \ArrayObject(array( 'foo' => 3 )); $this->validator->validate($value, new Collection(array( 'fields' => array( 'foo' => new Range(array('min' => 2)), ) ))); $this->assertEquals(array( 'foo' => 3 ), (array) $value); } }