1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?php
- /*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Symfony\Tests\Component\Form;
- use Symfony\Component\Form\CountryField;
- use Symfony\Component\Form\FormContext;
- class CountryFieldTest extends \PHPUnit_Framework_TestCase
- {
- public function testCountriesAreSelectable()
- {
- FormContext::setLocale('de_AT');
- $field = new CountryField('country');
- $choices = $field->getOtherChoices();
- $this->assertArrayHasKey('DE', $choices);
- $this->assertEquals('Deutschland', $choices['DE']);
- $this->assertArrayHasKey('GB', $choices);
- $this->assertEquals('Vereinigtes Königreich', $choices['GB']);
- $this->assertArrayHasKey('US', $choices);
- $this->assertEquals('Vereinigte Staaten', $choices['US']);
- $this->assertArrayHasKey('FR', $choices);
- $this->assertEquals('Frankreich', $choices['FR']);
- $this->assertArrayHasKey('MY', $choices);
- $this->assertEquals('Malaysia', $choices['MY']);
- }
- public function testUnknownCountryIsNotIncluded()
- {
- $field = new CountryField('country');
- $choices = $field->getOtherChoices();
- $this->assertArrayNotHasKey('ZZ', $choices);
- }
- public function testEmptyValueOption()
- {
- // empty_value false
- $field = new CountryField('country', array('empty_value' => false));
- $choices = $field->getOtherChoices();
- $this->assertArrayNotHasKey('', $choices);
- // empty_value as a blank string
- $field = new CountryField('country', array('empty_value' => ''));
- $choices = $field->getOtherChoices();
- $this->assertArrayHasKey('', $choices);
- $this->assertEquals('', $choices['']);
- // empty_value as a normal string
- $field = new CountryField('country', array('empty_value' => 'Choose a country'));
- $choices = $field->getOtherChoices();
- $this->assertArrayHasKey('', $choices);
- $this->assertEquals('Choose a country', $choices['']);
- }
- }
|