This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/tests/Symfony/Tests/Component/Form/CountryFieldTest.php

47 lines
1.5 KiB
PHP
Raw Normal View History

2010-12-15 16:44:36 +00:00
<?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.
*/
2010-12-15 16:44:36 +00:00
namespace Symfony\Tests\Component\Form;
use Symfony\Component\Form\CountryField;
use Symfony\Component\Form\FormContext;
2010-12-15 16:44:36 +00:00
require_once __DIR__.'/TestCase.php';
class CountryFieldTest extends TestCase
2010-12-15 16:44:36 +00:00
{
public function testCountriesAreSelectable()
{
\Locale::setDefault('de_AT');
2010-12-15 16:44:36 +00:00
$field = $this->factory->getCountryField('country');
$choices = $field->getRenderer()->getVar('choices');
2010-12-15 16:44:36 +00:00
$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 = $this->factory->getCountryField('country');
$choices = $field->getRenderer()->getVar('choices');
2010-12-15 16:44:36 +00:00
$this->assertArrayNotHasKey('ZZ', $choices);
}
}