12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?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\Tests\Component\Validator;
- use Symfony\Component\Validator\Validator;
- use Symfony\Component\Validator\ValidatorContext;
- class ValidatorContextTest extends \PHPUnit_Framework_TestCase
- {
- protected $context;
- protected function setUp()
- {
- $this->context = new ValidatorContext();
- }
- protected function tearDown()
- {
- $this->context = null;
- }
- public function testSetClassMetadataFactory()
- {
- $factory = $this->getMock('Symfony\Component\Validator\Mapping\ClassMetadataFactoryInterface');
- $result = $this->context->setClassMetadataFactory($factory);
- $this->assertSame($this->context, $result);
- $this->assertSame($factory, $this->context->getClassMetadataFactory());
- }
- public function testSetConstraintValidatorFactory()
- {
- $factory = $this->getMock('Symfony\Component\Validator\ConstraintValidatorFactoryInterface');
- $result = $this->context->setConstraintValidatorFactory($factory);
- $this->assertSame($this->context, $result);
- $this->assertSame($factory, $this->context->getConstraintValidatorFactory());
- }
- public function testGetValidator()
- {
- $metadataFactory = $this->getMock('Symfony\Component\Validator\Mapping\ClassMetadataFactoryInterface');
- $validatorFactory = $this->getMock('Symfony\Component\Validator\ConstraintValidatorFactoryInterface');
- $validator = $this->context
- ->setClassMetadataFactory($metadataFactory)
- ->setConstraintValidatorFactory($validatorFactory)
- ->getValidator();
- $this->assertEquals(new Validator($metadataFactory, $validatorFactory), $validator);
- }
- }
|