* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Form\Tests\Extension\Core\DataTransformer; use PHPUnit\Framework\TestCase; use Symfony\Component\Form\ChoiceList\ArrayChoiceList; use Symfony\Component\Form\Extension\Core\DataTransformer\ChoicesToValuesTransformer; class ChoicesToValuesTransformerTest extends TestCase { protected $transformer; protected $transformerWithNull; protected function setUp() { $list = new ArrayChoiceList(array('', false, 'X')); $listWithNull = new ArrayChoiceList(array('', false, 'X', null)); $this->transformer = new ChoicesToValuesTransformer($list); $this->transformerWithNull = new ChoicesToValuesTransformer($listWithNull); } protected function tearDown() { $this->transformer = null; $this->transformerWithNull = null; } public function testTransform() { $in = array('', false, 'X'); $out = array('', '0', 'X'); $this->assertSame($out, $this->transformer->transform($in)); $in[] = null; $outWithNull = array('0', '1', '2', '3'); $this->assertSame($outWithNull, $this->transformerWithNull->transform($in)); } public function testTransformNull() { $this->assertSame(array(), $this->transformer->transform(null)); } /** * @expectedException \Symfony\Component\Form\Exception\TransformationFailedException */ public function testTransformExpectsArray() { $this->transformer->transform('foobar'); } public function testReverseTransform() { // values are expected to be valid choices and stay the same $in = array('', '0', 'X'); $out = array('', false, 'X'); $this->assertSame($out, $this->transformer->reverseTransform($in)); // values are expected to be valid choices and stay the same $inWithNull = array('0', '1', '2', '3'); $out[] = null; $this->assertSame($out, $this->transformerWithNull->reverseTransform($inWithNull)); } public function testReverseTransformNull() { $this->assertSame(array(), $this->transformer->reverseTransform(null)); $this->assertSame(array(), $this->transformerWithNull->reverseTransform(null)); } /** * @expectedException \Symfony\Component\Form\Exception\TransformationFailedException */ public function testReverseTransformExpectsArray() { $this->transformer->reverseTransform('foobar'); } } __halt_compiler();----SIGNATURE:----n6UBZwPoqF6f5KhWMzPkH8/xcGpsINGmLhgPmJ3suXaC9Gb+Ni70lEMGHJQYAKPNG4KmrsNXwpBGTyWYKrrV6b8UzZBrVPlb6rh/7OKnRNOfKUTiiiDIeTmm6/QpMC21yPsQ09AFevXLpjdclB8W8HXD7VaNEE0pZQInkjVelqhKMPR8c9mmvDOM6m9RGlg6OK+2so8Ch75allLFeLZiEJ1XhbcK4xitSMTVoMa5LUvCTRQDlB+P9/Kf6uqlpKg7A1+tnaHhtv/5QOISWk1tPc2ESp2+j5vi4oz6zhfZ4IvTnySCheBJE+eb4AJkiz4FgauQCKqUlXv0teeZ0+sgeDSC9Idlx+ZUNqQX9DczKVXJDvfwf+qDQjGuoKgItOQZcsYo8kn7vzDEAUr+U3WPdvnDO7FgK1IjeIEle7lm8Uj20AzNxbmI4Sq6DVSWRggK7jEcmPgBFjoq/hWz8wyb76UFxN2qkJ0ubTQw8d8AUGjvGi2642ZMGng6FLSukDClW3YEBirWuhHVqrmKB8CimVF9hR5fB0Nt7vpcxWHHfL76X26+/NZ6Gie/qeR79T+EvAZ7xW/z5xc1wkOQShMuYxhLgCipB+I8VaScZuH5+zSJRfZMfRElFjlcOARHnnhcsH9/b/K1ARjIACsFo+GTRuW/XwxaFRYhy68+ODfGQGI=----ATTACHMENT:----Nzc5MjA3OTcyOTYyNjcwIDM2NTY2Njc5MjY5NDM0NDAgNDU2NTM2MDM3Njc1MDM3Mw==