123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588 |
- <?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\Form;
- require_once __DIR__ . '/Fixtures/Author.php';
- require_once __DIR__ . '/Fixtures/TestField.php';
- require_once __DIR__ . '/Fixtures/InvalidField.php';
- require_once __DIR__ . '/Fixtures/RequiredOptionsField.php';
- use Symfony\Component\Form\ValueTransformer\ValueTransformerInterface;
- use Symfony\Component\Form\PropertyPath;
- use Symfony\Component\Form\FieldError;
- use Symfony\Component\Form\Form;
- use Symfony\Component\Form\ValueTransformer\TransformationFailedException;
- use Symfony\Tests\Component\Form\Fixtures\Author;
- use Symfony\Tests\Component\Form\Fixtures\TestField;
- use Symfony\Tests\Component\Form\Fixtures\InvalidField;
- use Symfony\Tests\Component\Form\Fixtures\RequiredOptionsField;
- class FieldTest extends \PHPUnit_Framework_TestCase
- {
- protected $field;
- protected function setUp()
- {
- $this->field = new TestField('title');
- }
- public function testGetPropertyPath_defaultPath()
- {
- $field = new TestField('title');
- $this->assertEquals(new PropertyPath('title'), $field->getPropertyPath());
- }
- public function testGetPropertyPath_pathIsZero()
- {
- $field = new TestField('title', array('property_path' => '0'));
- $this->assertEquals(new PropertyPath('0'), $field->getPropertyPath());
- }
- public function testGetPropertyPath_pathIsEmpty()
- {
- $field = new TestField('title', array('property_path' => ''));
- $this->assertEquals(null, $field->getPropertyPath());
- }
- public function testGetPropertyPath_pathIsNull()
- {
- $field = new TestField('title', array('property_path' => null));
- $this->assertEquals(null, $field->getPropertyPath());
- }
- public function testPassRequiredAsOption()
- {
- $field = new TestField('title', array('required' => false));
- $this->assertFalse($field->isRequired());
- $field = new TestField('title', array('required' => true));
- $this->assertTrue($field->isRequired());
- }
- public function testPassDisabledAsOption()
- {
- $field = new TestField('title', array('disabled' => false));
- $this->assertFalse($field->isDisabled());
- $field = new TestField('title', array('disabled' => true));
- $this->assertTrue($field->isDisabled());
- }
- public function testFieldIsDisabledIfParentIsDisabled()
- {
- $field = new TestField('title', array('disabled' => false));
- $field->setParent(new TestField('title', array('disabled' => true)));
- $this->assertTrue($field->isDisabled());
- }
- public function testFieldWithNoErrorsIsValid()
- {
- $this->field->submit('data');
- $this->assertTrue($this->field->isValid());
- }
- public function testFieldWithErrorsIsInvalid()
- {
- $this->field->submit('data');
- $this->field->addError(new FieldError('Some error'));
- $this->assertFalse($this->field->isValid());
- }
- public function testSubmitResetsErrors()
- {
- $this->field->addError(new FieldError('Some error'));
- $this->field->submit('data');
- $this->assertTrue($this->field->isValid());
- }
- public function testUnsubmittedFieldIsInvalid()
- {
- $this->assertFalse($this->field->isValid());
- }
- public function testGetNameReturnsKey()
- {
- $this->assertEquals('title', $this->field->getName());
- }
- public function testGetNameIncludesParent()
- {
- $this->field->setParent($this->createMockGroupWithName('news[article]'));
- $this->assertEquals('news[article][title]', $this->field->getName());
- }
- public function testGetIdReturnsKey()
- {
- $this->assertEquals('title', $this->field->getId());
- }
- public function testGetIdIncludesParent()
- {
- $this->field->setParent($this->createMockGroupWithId('news_article'));
- $this->assertEquals('news_article_title', $this->field->getId());
- }
- public function testIsRequiredReturnsOwnValueIfNoParent()
- {
- $this->field->setRequired(true);
- $this->assertTrue($this->field->isRequired());
- $this->field->setRequired(false);
- $this->assertFalse($this->field->isRequired());
- }
- public function testIsRequiredReturnsOwnValueIfParentIsRequired()
- {
- $group = $this->createMockGroup();
- $group->expects($this->any())
- ->method('isRequired')
- ->will($this->returnValue(true));
- $this->field->setParent($group);
- $this->field->setRequired(true);
- $this->assertTrue($this->field->isRequired());
- $this->field->setRequired(false);
- $this->assertFalse($this->field->isRequired());
- }
- public function testIsRequiredReturnsFalseIfParentIsNotRequired()
- {
- $group = $this->createMockGroup();
- $group->expects($this->any())
- ->method('isRequired')
- ->will($this->returnValue(false));
- $this->field->setParent($group);
- $this->field->setRequired(true);
- $this->assertFalse($this->field->isRequired());
- }
- public function testExceptionIfUnknownOption()
- {
- $this->setExpectedException('Symfony\Component\Form\Exception\InvalidOptionsException');
- new RequiredOptionsField('name', array('bar' => 'baz', 'moo' => 'maa'));
- }
- public function testExceptionIfMissingOption()
- {
- $this->setExpectedException('Symfony\Component\Form\Exception\MissingOptionsException');
- new RequiredOptionsField('name');
- }
- public function testIsSubmitted()
- {
- $this->assertFalse($this->field->isSubmitted());
- $this->field->submit('symfony');
- $this->assertTrue($this->field->isSubmitted());
- }
- public function testDefaultValuesAreTransformedCorrectly()
- {
- $field = new TestField('name');
- $this->assertEquals(null, $this->field->getData());
- $this->assertEquals('', $this->field->getDisplayedData());
- }
- public function testValuesAreTransformedCorrectlyIfNull_noValueTransformer()
- {
- $this->field->setData(null);
- $this->assertSame(null, $this->field->getData());
- $this->assertSame('', $this->field->getDisplayedData());
- }
- public function testValuesAreTransformedCorrectlyIfNotNull_noValueTransformer()
- {
- $this->field->setData(123);
- $this->assertSame(123, $this->field->getData());
- $this->assertSame('123', $this->field->getDisplayedData());
- }
- public function testSubmittedValuesAreTransformedCorrectly()
- {
- $valueTransformer = $this->createMockTransformer();
- $normTransformer = $this->createMockTransformer();
- $field = $this->getMock(
- 'Symfony\Tests\Component\Form\Fixtures\TestField',
- array('processData'), // only mock processData()
- array('title', array(
- 'value_transformer' => $valueTransformer,
- 'normalization_transformer' => $normTransformer,
- ))
- );
- // 1a. The value is converted to a string and passed to the value transformer
- $valueTransformer->expects($this->once())
- ->method('reverseTransform')
- ->with($this->identicalTo('0'))
- ->will($this->returnValue('reverse[0]'));
- // 2. The output of the reverse transformation is passed to processData()
- // The processed data is accessible through getNormalizedData()
- $field->expects($this->once())
- ->method('processData')
- ->with($this->equalTo('reverse[0]'))
- ->will($this->returnValue('processed[reverse[0]]'));
- // 3. The processed data is denormalized and then accessible through
- // getData()
- $normTransformer->expects($this->once())
- ->method('reverseTransform')
- ->with($this->identicalTo('processed[reverse[0]]'))
- ->will($this->returnValue('denorm[processed[reverse[0]]]'));
- // 4. The processed data is transformed again and then accessible
- // through getDisplayedData()
- $valueTransformer->expects($this->once())
- ->method('transform')
- ->with($this->equalTo('processed[reverse[0]]'))
- ->will($this->returnValue('transform[processed[reverse[0]]]'));
- $field->submit(0);
- $this->assertEquals('denorm[processed[reverse[0]]]', $field->getData());
- $this->assertEquals('processed[reverse[0]]', $field->getNormalizedData());
- $this->assertEquals('transform[processed[reverse[0]]]', $field->getDisplayedData());
- }
- public function testSubmittedValuesAreTransformedCorrectlyIfEmpty_processDataReturnsValue()
- {
- $transformer = $this->createMockTransformer();
- $field = $this->getMock(
- 'Symfony\Tests\Component\Form\Fixtures\TestField',
- array('processData'), // only mock processData()
- array('title', array(
- 'value_transformer' => $transformer,
- ))
- );
- // 1. Empty values are converted to NULL by convention
- $transformer->expects($this->once())
- ->method('reverseTransform')
- ->with($this->identicalTo(''))
- ->will($this->returnValue(null));
- // 2. NULL is passed to processData()
- $field->expects($this->once())
- ->method('processData')
- ->with($this->identicalTo(null))
- ->will($this->returnValue('processed'));
- // 3. The processed data is transformed (for displayed data)
- $transformer->expects($this->once())
- ->method('transform')
- ->with($this->equalTo('processed'))
- ->will($this->returnValue('transform[processed]'));
- $field->submit('');
- $this->assertSame('processed', $field->getData());
- $this->assertEquals('transform[processed]', $field->getDisplayedData());
- }
- public function testSubmittedValuesAreTransformedCorrectlyIfEmpty_processDataReturnsNull()
- {
- $transformer = $this->createMockTransformer();
- $field = new TestField('title', array(
- 'value_transformer' => $transformer,
- ));
- // 1. Empty values are converted to NULL by convention
- $transformer->expects($this->once())
- ->method('reverseTransform')
- ->with($this->identicalTo(''))
- ->will($this->returnValue(null));
- // 2. The processed data is NULL and therefore transformed to an empty
- // string by convention
- $transformer->expects($this->once())
- ->method('transform')
- ->with($this->identicalTo(null))
- ->will($this->returnValue(''));
- $field->submit('');
- $this->assertSame(null, $field->getData());
- $this->assertEquals('', $field->getDisplayedData());
- }
- public function testSubmittedValuesAreTransformedCorrectlyIfEmpty_processDataReturnsNull_noValueTransformer()
- {
- $this->field->submit('');
- $this->assertSame(null, $this->field->getData());
- $this->assertEquals('', $this->field->getDisplayedData());
- }
- public function testValuesAreTransformedCorrectly()
- {
- // The value is first passed to the normalization transformer...
- $normTransformer = $this->createMockTransformer();
- $normTransformer->expects($this->exactly(2))
- ->method('transform')
- // Impossible to test with PHPUnit because called twice
- // ->with($this->identicalTo(0))
- ->will($this->returnValue('norm[0]'));
- // ...and then to the value transformer
- $valueTransformer = $this->createMockTransformer();
- $valueTransformer->expects($this->exactly(2))
- ->method('transform')
- // Impossible to test with PHPUnit because called twice
- // ->with($this->identicalTo('norm[0]'))
- ->will($this->returnValue('transform[norm[0]]'));
- $field = new TestField('title', array(
- 'value_transformer' => $valueTransformer,
- 'normalization_transformer' => $normTransformer,
- ));
- $field->setData(0);
- $this->assertEquals(0, $field->getData());
- $this->assertEquals('norm[0]', $field->getNormalizedData());
- $this->assertEquals('transform[norm[0]]', $field->getDisplayedData());
- }
- public function testSubmittedValuesAreTrimmedBeforeTransforming()
- {
- // The value is passed to the value transformer
- $transformer = $this->createMockTransformer();
- $transformer->expects($this->once())
- ->method('reverseTransform')
- ->with($this->identicalTo('a'))
- ->will($this->returnValue('reverse[a]'));
- $transformer->expects($this->exactly(2))
- ->method('transform')
- // Impossible to test with PHPUnit because called twice
- // ->with($this->identicalTo('reverse[a]'))
- ->will($this->returnValue('a'));
- $field = new TestField('title', array(
- 'value_transformer' => $transformer,
- ));
- $field->submit(' a ');
- $this->assertEquals('a', $field->getDisplayedData());
- $this->assertEquals('reverse[a]', $field->getData());
- }
- public function testSubmittedValuesAreNotTrimmedBeforeTransformingIfDisabled()
- {
- // The value is passed to the value transformer
- $transformer = $this->createMockTransformer();
- $transformer->expects($this->once())
- ->method('reverseTransform')
- ->with($this->identicalTo(' a '))
- ->will($this->returnValue('reverse[ a ]'));
- $transformer->expects($this->exactly(2))
- ->method('transform')
- // Impossible to test with PHPUnit because called twice
- // ->with($this->identicalTo('reverse[ a ]'))
- ->will($this->returnValue(' a '));
- $field = new TestField('title', array(
- 'trim' => false,
- 'value_transformer' => $transformer,
- ));
- $field->submit(' a ');
- $this->assertEquals(' a ', $field->getDisplayedData());
- $this->assertEquals('reverse[ a ]', $field->getData());
- }
- /*
- * This is important so that submit() can work even if setData() was not called
- * before
- */
- public function testWritePropertyTreatsEmptyValuesAsArrays()
- {
- $array = null;
- $field = new TestField('firstName');
- $field->submit('Bernhard');
- $field->writeProperty($array);
- $this->assertEquals(array('firstName' => 'Bernhard'), $array);
- }
- public function testWritePropertyDoesNotWritePropertyIfPropertyPathIsEmpty()
- {
- $object = new Author();
- $field = new TestField('firstName', array('property_path' => null));
- $field->submit('Bernhard');
- $field->writeProperty($object);
- $this->assertEquals(null, $object->firstName);
- }
- public function testIsTransformationSuccessfulReturnsTrueIfReverseTransformSucceeded()
- {
- $field = new TestField('title', array(
- 'trim' => false,
- ));
- $field->submit('a');
- $this->assertEquals('a', $field->getDisplayedData());
- $this->assertTrue($field->isTransformationSuccessful());
- }
- public function testIsTransformationSuccessfulReturnsFalseIfReverseTransformThrowsException()
- {
- // The value is passed to the value transformer
- $transformer = $this->createMockTransformer();
- $transformer->expects($this->once())
- ->method('reverseTransform')
- ->will($this->throwException(new TransformationFailedException()));
- $field = new TestField('title', array(
- 'trim' => false,
- 'value_transformer' => $transformer,
- ));
- $field->submit('a');
- $this->assertEquals('a', $field->getDisplayedData());
- $this->assertFalse($field->isTransformationSuccessful());
- }
- public function testGetRootReturnsRootOfParentIfSet()
- {
- $parent = $this->createMockGroup();
- $parent->expects($this->any())
- ->method('getRoot')
- ->will($this->returnValue('ROOT'));
- $this->field->setParent($parent);
- $this->assertEquals('ROOT', $this->field->getRoot());
- }
- public function testFieldsInitializedWithDataAreNotUpdatedWhenAddedToForms()
- {
- $author = new Author();
- $author->firstName = 'Bernhard';
- $field = new TestField('firstName', array(
- 'data' => 'foobar',
- ));
- $form = new Form('author', array(
- 'data' => $author,
- ));
- $form->add($field);
- $this->assertEquals('foobar', $field->getData());
- }
- public function testGetRootReturnsFieldIfNoParent()
- {
- $this->assertEquals($this->field, $this->field->getRoot());
- }
- public function testIsEmptyReturnsTrueIfNull()
- {
- $this->field->setData(null);
- $this->assertTrue($this->field->isEmpty());
- }
- public function testIsEmptyReturnsTrueIfEmptyString()
- {
- $this->field->setData('');
- $this->assertTrue($this->field->isEmpty());
- }
- public function testIsEmptyReturnsFalseIfZero()
- {
- $this->field->setData(0);
- $this->assertFalse($this->field->isEmpty());
- }
- protected function createMockTransformer()
- {
- return $this->getMock('Symfony\Component\Form\ValueTransformer\ValueTransformerInterface', array(), array(), '', false, false);
- }
- protected function createMockTransformerTransformingTo($value)
- {
- $transformer = $this->createMockTransformer();
- $transformer->expects($this->any())
- ->method('reverseTransform')
- ->will($this->returnValue($value));
- return $transformer;
- }
- protected function createMockGroup()
- {
- return $this->getMock(
- 'Symfony\Component\Form\Form',
- array(),
- array(),
- '',
- false // don't call constructor
- );
- }
- protected function createMockGroupWithName($name)
- {
- $group = $this->createMockGroup();
- $group->expects($this->any())
- ->method('getName')
- ->will($this->returnValue($name));
- return $group;
- }
- protected function createMockGroupWithId($id)
- {
- $group = $this->createMockGroup();
- $group->expects($this->any())
- ->method('getId')
- ->will($this->returnValue($id));
- return $group;
- }
- }
|