
| Current Path : /var/www/html1/vendor/symfony/validator/Tests/Constraints/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html1/vendor/symfony/validator/Tests/Constraints/AllValidatorTest.php |
<?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\All;
use Symfony\Component\Validator\Constraints\AllValidator;
use Symfony\Component\Validator\Constraints\NotNull;
use Symfony\Component\Validator\Constraints\Range;
use Symfony\Component\Validator\Test\ConstraintValidatorTestCase;
class AllValidatorTest extends ConstraintValidatorTestCase
{
protected function createValidator()
{
return new AllValidator();
}
public function testNullIsValid()
{
$this->validator->validate(null, new All(new Range(['min' => 4])));
$this->assertNoViolation();
}
public function testThrowsExceptionIfNotTraversable()
{
$this->expectException('Symfony\Component\Validator\Exception\UnexpectedTypeException');
$this->validator->validate('foo.barbar', new All(new Range(['min' => 4])));
}
/**
* @dataProvider getValidArguments
*/
public function testWalkSingleConstraint($array)
{
$constraint = new Range(['min' => 4]);
$i = 0;
foreach ($array as $key => $value) {
$this->expectValidateValueAt($i++, '['.$key.']', $value, [$constraint]);
}
$this->validator->validate($array, new All($constraint));
$this->assertNoViolation();
}
/**
* @dataProvider getValidArguments
*/
public function testWalkMultipleConstraints($array)
{
$constraint1 = new Range(['min' => 4]);
$constraint2 = new NotNull();
$constraints = [$constraint1, $constraint2];
$i = 0;
foreach ($array as $key => $value) {
$this->expectValidateValueAt($i++, '['.$key.']', $value, [$constraint1, $constraint2]);
}
$this->validator->validate($array, new All($constraints));
$this->assertNoViolation();
}
public function getValidArguments()
{
return [
[[5, 6, 7]],
[new \ArrayObject([5, 6, 7])],
];
}
}