* * 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\Intl\Util\IntlTestHelper; use Symfony\Component\Validator\Constraints\Country; use Symfony\Component\Validator\Constraints\CountryValidator; use Symfony\Component\Validator\Test\ConstraintValidatorTestCase; class CountryValidatorTest extends ConstraintValidatorTestCase { protected function createValidator() { return new CountryValidator(); } public function testNullIsValid() { $this->validator->validate(null, new Country()); $this->assertNoViolation(); } public function testEmptyStringIsValid() { $this->validator->validate('', new Country()); $this->assertNoViolation(); } /** * @expectedException \Symfony\Component\Validator\Exception\UnexpectedTypeException */ public function testExpectsStringCompatibleType() { $this->validator->validate(new \stdClass(), new Country()); } /** * @dataProvider getValidCountries */ public function testValidCountries($country) { $this->validator->validate($country, new Country()); $this->assertNoViolation(); } public function getValidCountries() { return array( array('GB'), array('AT'), array('MY'), ); } /** * @dataProvider getInvalidCountries */ public function testInvalidCountries($country) { $constraint = new Country(array( 'message' => 'myMessage', )); $this->validator->validate($country, $constraint); $this->buildViolation('myMessage') ->setParameter('{{ value }}', '"'.$country.'"') ->setCode(Country::NO_SUCH_COUNTRY_ERROR) ->assertRaised(); } public function getInvalidCountries() { return array( array('foobar'), array('EN'), ); } public function testValidateUsingCountrySpecificLocale() { // in order to test with "en_GB" IntlTestHelper::requireFullIntl($this, false); \Locale::setDefault('en_GB'); $existingCountry = 'GB'; $this->validator->validate($existingCountry, new Country()); $this->assertNoViolation(); } } __halt_compiler();----SIGNATURE:----nUaUwQweJr9GGJ/xoPDg3HABq6z+nJhFARqh7ZF7pZD7CKxmzJ3g65WBQXaZwWhHoQejn8vqcz9v4r95mtjdyIOKF139PUQK0lqfQtAArEHwWyP/8Fe7sN7XczBSsUlKER6CXOy8vVcmeXwBury9iWCncgAFhox8q/2PKw8lCIRkPfD4CNP/rcAfWx5ZGRu6aWTxvxqIZsCisGAeYUSToacY8nuHGBmtMJ3phpF8vWfo7Gg3EDbj0yRDi+ht5Pq20Sc3K1fifcac59/fBl2fyq8IJ1Rm71v6bFoypY4CSTaHYTqpO2DbA1cWCFhf42Fo/CoJwbaLE9Uw3vduHBLbVty7624YOWhdprZ/9VV7h2ThfAZQBLNN+pVWD+15KLLKJHj4HTCOcUD1qb+gJFkeobo7REb3EyutQGYgwizI5ZGUl/q8J8hYHQnaizeZqt5M6o5Jr+0wPKlzTNY4Sdh0bg/lffTTpfRlOVBieHknvLANvI3pNRC8of3ctG8UyVcQJq/CzQOoE6K0vs1euWiMzYlDQk875lkNFtnARtiHf/ogmC6mG9Khfdkw+KlHSxpar+E9JnFYVjynb8NZP+5pv5BnMllHKzE1laBoW3ODobAhBh7aZ6XZ5wMvZrJLx+ieVz1YG9SMVsVtiRFKNUMX+22EKDFIcjclQ8VM4IJIVG0=----ATTACHMENT:----NjQxNDYxOTQ3ODkwNjMwOCA0Mjg1MDU5Mjc5MjMwMTU2IDUxMTY3MjI5ODM4OTM2NDc=