123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668 |
- <?php
- namespace Symfony\Tests\Component\Form;
- require_once __DIR__ . '/Fixtures/Author.php';
- require_once __DIR__ . '/Fixtures/TestField.php';
- use Symfony\Component\Form\Field;
- use Symfony\Component\Form\FieldInterface;
- use Symfony\Component\Form\FieldGroup;
- use Symfony\Component\Form\PropertyPath;
- use Symfony\Tests\Component\Form\Fixtures\Author;
- use Symfony\Tests\Component\Form\Fixtures\TestField;
- abstract class FieldGroupTest_Field implements FieldInterface
- {
- public $locales = array();
- public function setLocale($locale)
- {
- $this->locales[] = $locale;
- }
- }
- class FieldGroupTest extends \PHPUnit_Framework_TestCase
- {
- public function testSupportsArrayAccess()
- {
- $group = new FieldGroup('author');
- $group->add($this->createMockField('firstName'));
- $this->assertEquals($group->get('firstName'), $group['firstName']);
- $this->assertTrue(isset($group['firstName']));
- }
- public function testSupportsUnset()
- {
- $group = new FieldGroup('author');
- $group->add($this->createMockField('firstName'));
- unset($group['firstName']);
- $this->assertFalse(isset($group['firstName']));
- }
- public function testDoesNotSupportAddingFields()
- {
- $group = new FieldGroup('author');
- $this->setExpectedException('LogicException');
- $group[] = $this->createMockField('lastName');
- }
- public function testSupportsCountable()
- {
- $group = new FieldGroup('group');
- $group->add($this->createMockField('firstName'));
- $group->add($this->createMockField('lastName'));
- $this->assertEquals(2, count($group));
- $group->add($this->createMockField('australian'));
- $this->assertEquals(3, count($group));
- }
- public function testSupportsIterable()
- {
- $group = new FieldGroup('group');
- $group->add($field1 = $this->createMockField('field1'));
- $group->add($field2 = $this->createMockField('field2'));
- $group->add($field3 = $this->createMockField('field3'));
- $expected = array(
- 'field1' => $field1,
- 'field2' => $field2,
- 'field3' => $field3,
- );
- $this->assertEquals($expected, iterator_to_array($group));
- }
- public function testIsBound()
- {
- $group = new FieldGroup('author');
- $this->assertFalse($group->isBound());
- $group->bind(array('firstName' => 'Bernhard'));
- $this->assertTrue($group->isBound());
- }
- public function testValidIfAllFieldsAreValid()
- {
- $group = new FieldGroup('author');
- $group->add($this->createValidMockField('firstName'));
- $group->add($this->createValidMockField('lastName'));
- $group->bind(array('firstName' => 'Bernhard', 'lastName' => 'Potencier'));
- $this->assertTrue($group->isValid());
- }
- public function testInvalidIfFieldIsInvalid()
- {
- $group = new FieldGroup('author');
- $group->add($this->createInvalidMockField('firstName'));
- $group->add($this->createValidMockField('lastName'));
- $group->bind(array('firstName' => 'Bernhard', 'lastName' => 'Potencier'));
- $this->assertFalse($group->isValid());
- }
- public function testInvalidIfBoundWithExtraFields()
- {
- $group = new FieldGroup('author');
- $group->add($this->createValidMockField('firstName'));
- $group->add($this->createValidMockField('lastName'));
- $group->bind(array('foo' => 'bar', 'firstName' => 'Bernhard', 'lastName' => 'Potencier'));
- $this->assertTrue($group->isBoundWithExtraFields());
- }
- public function testBindForwardsBoundValues()
- {
- $field = $this->createMockField('firstName');
- $field->expects($this->once())
- ->method('bind')
- ->with($this->equalTo('Bernhard'));
- $group = new FieldGroup('author');
- $group->add($field);
- $group->bind(array('firstName' => 'Bernhard'));
- }
- public function testBindForwardsNullIfValueIsMissing()
- {
- $field = $this->createMockField('firstName');
- $field->expects($this->once())
- ->method('bind')
- ->with($this->equalTo(null));
- $group = new FieldGroup('author');
- $group->add($field);
- $group->bind(array());
- }
- public function testAddErrorMapsFieldValidationErrorsOntoFields()
- {
- $field = $this->createMockField('firstName');
- $field->expects($this->once())
- ->method('addError')
- ->with($this->equalTo('Message'));
- $group = new FieldGroup('author');
- $group->add($field);
- $group->addError('Message', array(), new PropertyPath('fields[firstName].data'), FieldGroup::FIELD_ERROR);
- }
- public function testAddErrorMapsFieldValidationErrorsOntoFieldsWithinNestedFieldGroups()
- {
- $field = $this->createMockField('firstName');
- $field->expects($this->once())
- ->method('addError')
- ->with($this->equalTo('Message'));
- $group = new FieldGroup('author');
- $innerGroup = new FieldGroup('names');
- $innerGroup->add($field);
- $group->add($innerGroup);
- $group->addError('Message', array(), new PropertyPath('fields[names].fields[firstName].data'), FieldGroup::FIELD_ERROR);
- }
- public function testAddErrorKeepsFieldValidationErrorsIfFieldNotFound()
- {
- $field = $this->createMockField('foo');
- $field->expects($this->never())
- ->method('addError');
- $group = new FieldGroup('author');
- $group->add($field);
- $group->addError('Message', array(), new PropertyPath('fields[bar].data'), FieldGroup::FIELD_ERROR);
- $this->assertEquals(array(array('Message', array())), $group->getErrors());
- }
- public function testAddErrorKeepsFieldValidationErrorsIfFieldIsHidden()
- {
- $field = $this->createMockField('firstName');
- $field->expects($this->any())
- ->method('isHidden')
- ->will($this->returnValue(true));
- $field->expects($this->never())
- ->method('addError');
- $group = new FieldGroup('author');
- $group->add($field);
- $group->addError('Message', array(), new PropertyPath('fields[firstName].data'), FieldGroup::FIELD_ERROR);
- $this->assertEquals(array(array('Message', array())), $group->getErrors());
- }
- public function testAddErrorMapsDataValidationErrorsOntoFields()
- {
- // path is expected to point at "firstName"
- $expectedPath = new PropertyPath('firstName');
- $field = $this->createMockField('firstName');
- $field->expects($this->any())
- ->method('getPropertyPath')
- ->will($this->returnValue(new PropertyPath('firstName')));
- $field->expects($this->once())
- ->method('addError')
- ->with($this->equalTo('Message'), array(), $this->equalTo($expectedPath), $this->equalTo(FieldGroup::DATA_ERROR));
- $group = new FieldGroup('author');
- $group->add($field);
- $group->addError('Message', array(), new PropertyPath('firstName'), FieldGroup::DATA_ERROR);
- }
- public function testAddErrorKeepsDataValidationErrorsIfFieldNotFound()
- {
- $field = $this->createMockField('foo');
- $field->expects($this->any())
- ->method('getPropertyPath')
- ->will($this->returnValue(new PropertyPath('foo')));
- $field->expects($this->never())
- ->method('addError');
- $group = new FieldGroup('author');
- $group->add($field);
- $group->addError('Message', array(), new PropertyPath('bar'), FieldGroup::DATA_ERROR);
- }
- public function testAddErrorKeepsDataValidationErrorsIfFieldIsHidden()
- {
- $field = $this->createMockField('firstName');
- $field->expects($this->any())
- ->method('isHidden')
- ->will($this->returnValue(true));
- $field->expects($this->any())
- ->method('getPropertyPath')
- ->will($this->returnValue(new PropertyPath('firstName')));
- $field->expects($this->never())
- ->method('addError');
- $group = new FieldGroup('author');
- $group->add($field);
- $group->addError('Message', array(), new PropertyPath('firstName'), FieldGroup::DATA_ERROR);
- }
- public function testAddErrorMapsDataValidationErrorsOntoNestedFields()
- {
- // path is expected to point at "street"
- $expectedPath = new PropertyPath('address.street');
- $expectedPath->next();
- $field = $this->createMockField('address');
- $field->expects($this->any())
- ->method('getPropertyPath')
- ->will($this->returnValue(new PropertyPath('address')));
- $field->expects($this->once())
- ->method('addError')
- ->with($this->equalTo('Message'), array(), $this->equalTo($expectedPath), $this->equalTo(FieldGroup::DATA_ERROR));
- $group = new FieldGroup('author');
- $group->add($field);
- $group->addError('Message', array(), new PropertyPath('address.street'), FieldGroup::DATA_ERROR);
- }
- public function testAddErrorMapsErrorsOntoFieldsInAnonymousGroups()
- {
- // path is expected to point at "address"
- $expectedPath = new PropertyPath('address');
- $field = $this->createMockField('address');
- $field->expects($this->any())
- ->method('getPropertyPath')
- ->will($this->returnValue(new PropertyPath('address')));
- $field->expects($this->once())
- ->method('addError')
- ->with($this->equalTo('Message'), array(), $this->equalTo($expectedPath), $this->equalTo(FieldGroup::DATA_ERROR));
- $group = new FieldGroup('author');
- $group2 = new FieldGroup('anonymous', array('property_path' => null));
- $group2->add($field);
- $group->add($group2);
- $group->addError('Message', array(), new PropertyPath('address'), FieldGroup::DATA_ERROR);
- }
- public function testAddThrowsExceptionIfAlreadyBound()
- {
- $group = new FieldGroup('author');
- $group->add($this->createMockField('firstName'));
- $group->bind(array('firstName' => 'Bernhard'));
- $this->setExpectedException('Symfony\Component\Form\Exception\AlreadyBoundException');
- $group->add($this->createMockField('lastName'));
- }
- public function testAddSetsFieldParent()
- {
- $group = new FieldGroup('author');
- $field = $this->createMockField('firstName');
- $field->expects($this->once())
- ->method('setParent');
- // PHPUnit fails to compare infinitely recursive objects
- //->with($this->equalTo($group));
- $group->add($field);
- }
- public function testRemoveUnsetsFieldParent()
- {
- $group = new FieldGroup('author');
- $field = $this->createMockField('firstName');
- $field->expects($this->exactly(2))
- ->method('setParent');
- // PHPUnit fails to compare subsequent method calls with different arguments
- $group->add($field);
- $group->remove('firstName');
- }
- public function testMergeAddsFieldsFromAnotherGroup()
- {
- $group1 = new FieldGroup('author');
- $group1->add($field1 = new TestField('firstName'));
- $group2 = new FieldGroup('publisher');
- $group2->add($field2 = new TestField('lastName'));
- $group1->merge($group2);
- $this->assertTrue($group1->has('lastName'));
- $this->assertEquals(new PropertyPath('publisher.lastName'), $group1->get('lastName')->getPropertyPath());
- }
- public function testMergeThrowsExceptionIfOtherGroupAlreadyBound()
- {
- $group1 = new FieldGroup('author');
- $group2 = new FieldGroup('publisher');
- $group2->add($this->createMockField('firstName'));
- $group2->bind(array('firstName' => 'Bernhard'));
- $this->setExpectedException('Symfony\Component\Form\Exception\AlreadyBoundException');
- $group1->merge($group2);
- }
- public function testAddUpdatesFieldFromTransformedData()
- {
- $originalAuthor = new Author();
- $transformedAuthor = new Author();
- // the authors should differ to make sure the test works
- $transformedAuthor->firstName = 'Foo';
- $group = new FieldGroup('author');
- $transformer = $this->createMockTransformer();
- $transformer->expects($this->once())
- ->method('transform')
- ->with($this->equalTo($originalAuthor))
- ->will($this->returnValue($transformedAuthor));
- $group->setValueTransformer($transformer);
- $group->setData($originalAuthor);
- $field = $this->createMockField('firstName');
- $field->expects($this->any())
- ->method('getPropertyPath')
- ->will($this->returnValue(new PropertyPath('firstName')));
- $field->expects($this->once())
- ->method('updateFromObject')
- ->with($this->equalTo($transformedAuthor));
- $group->add($field);
- }
- public function testAddDoesNotUpdateFieldsWithEmptyPropertyPath()
- {
- $group = new FieldGroup('author');
- $group->setData(new Author());
- $field = $this->createMockField('firstName');
- $field->expects($this->any())
- ->method('getPropertyPath')
- ->will($this->returnValue(null));
- $field->expects($this->never())
- ->method('updateFromObject');
- $group->add($field);
- }
- public function testAddDoesNotUpdateFieldIfTransformedDataIsEmpty()
- {
- $originalAuthor = new Author();
- $group = new FieldGroup('author');
- $transformer = $this->createMockTransformer();
- $transformer->expects($this->once())
- ->method('transform')
- ->with($this->equalTo($originalAuthor))
- ->will($this->returnValue(''));
- $group->setValueTransformer($transformer);
- $group->setData($originalAuthor);
- $field = $this->createMockField('firstName');
- $field->expects($this->never())
- ->method('updateFromObject');
- $group->add($field);
- }
- public function testSetDataUpdatesAllFieldsFromTransformedData()
- {
- $originalAuthor = new Author();
- $transformedAuthor = new Author();
- // the authors should differ to make sure the test works
- $transformedAuthor->firstName = 'Foo';
- $group = new FieldGroup('author');
- $transformer = $this->createMockTransformer();
- $transformer->expects($this->once())
- ->method('transform')
- ->with($this->equalTo($originalAuthor))
- ->will($this->returnValue($transformedAuthor));
- $group->setValueTransformer($transformer);
- $field = $this->createMockField('firstName');
- $field->expects($this->once())
- ->method('updateFromObject')
- ->with($this->equalTo($transformedAuthor));
- $group->add($field);
- $field = $this->createMockField('lastName');
- $field->expects($this->once())
- ->method('updateFromObject')
- ->with($this->equalTo($transformedAuthor));
- $group->add($field);
- $group->setData($originalAuthor);
- }
- public function testSetDataThrowsAnExceptionIfArgumentIsNotObjectOrArray()
- {
- $group = new FieldGroup('author');
- $this->setExpectedException('InvalidArgumentException');
- $group->setData('foobar');
- }
- public function testBindUpdatesTransformedDataFromAllFields()
- {
- $originalAuthor = new Author();
- $transformedAuthor = new Author();
- // the authors should differ to make sure the test works
- $transformedAuthor->firstName = 'Foo';
- $group = new FieldGroup('author');
- $transformer = $this->createMockTransformer();
- $transformer->expects($this->once())
- ->method('transform')
- ->with($this->equalTo($originalAuthor))
- ->will($this->returnValue($transformedAuthor));
- $group->setValueTransformer($transformer);
- $group->setData($originalAuthor);
- $field = $this->createMockField('firstName');
- $field->expects($this->once())
- ->method('updateObject')
- ->with($this->equalTo($transformedAuthor));
- $group->add($field);
- $field = $this->createMockField('lastName');
- $field->expects($this->once())
- ->method('updateObject')
- ->with($this->equalTo($transformedAuthor));
- $group->add($field);
- $group->bind(array()); // irrelevant
- }
- public function testGetDataReturnsObject()
- {
- $group = new FieldGroup('author');
- $object = new \stdClass();
- $group->setData($object);
- $this->assertEquals($object, $group->getData());
- }
- public function testGetDisplayedDataForwardsCall()
- {
- $field = $this->createValidMockField('firstName');
- $field->expects($this->atLeastOnce())
- ->method('getDisplayedData')
- ->will($this->returnValue('Bernhard'));
- $group = new FieldGroup('author');
- $group->add($field);
- $this->assertEquals(array('firstName' => 'Bernhard'), $group->getDisplayedData());
- }
- public function testIsMultipartIfAnyFieldIsMultipart()
- {
- $group = new FieldGroup('author');
- $group->add($this->createMultipartMockField('firstName'));
- $group->add($this->createNonMultipartMockField('lastName'));
- $this->assertTrue($group->isMultipart());
- }
- public function testIsNotMultipartIfNoFieldIsMultipart()
- {
- $group = new FieldGroup('author');
- $group->add($this->createNonMultipartMockField('firstName'));
- $group->add($this->createNonMultipartMockField('lastName'));
- $this->assertFalse($group->isMultipart());
- }
- public function testLocaleIsPassedToField_SetBeforeAddingTheField()
- {
- $field = $this->getMock('Symfony\Component\Form\Field', array(), array(), '', false, false);
- $field->expects($this->any())
- ->method('getKey')
- ->will($this->returnValue('firstName'));
- $field->expects($this->once())
- ->method('setLocale')
- ->with($this->equalTo('de_DE'));
- $group = new FieldGroup('author');
- $group->setLocale('de_DE');
- $group->add($field);
- }
- public function testLocaleIsPassedToField_SetAfterAddingTheField()
- {
- $field = $this->getMockForAbstractClass(__NAMESPACE__ . '\FieldGroupTest_Field', array(), '', false, false);
- $field->expects($this->any())
- ->method('getKey')
- ->will($this->returnValue('firstName'));
- // DOESN'T WORK!
- // $field = $this->getMock(__NAMESPACE__ . '\Fixtures\Field', array(), array(), '', false, false);
- // $field->expects($this->once())
- // ->method('setLocale')
- // ->with($this->equalTo('de_AT'));
- // $field->expects($this->once())
- // ->method('setLocale')
- // ->with($this->equalTo('de_DE'));
- $group = new FieldGroup('author');
- $group->add($field);
- $group->setLocale('de_DE');
- $this->assertEquals(array(class_exists('\Locale', false) ? \Locale::getDefault() : 'en', 'de_DE'), $field->locales);
- }
- public function testSupportsClone()
- {
- $group = new FieldGroup('author');
- $group->add($this->createMockField('firstName'));
- $clone = clone $group;
- $this->assertNotSame($clone['firstName'], $group['firstName']);
- }
- public function testBindWithoutPriorSetData()
- {
- return; // TODO
- $field = $this->createMockField('firstName');
- $field->expects($this->any())
- ->method('getData')
- ->will($this->returnValue('Bernhard'));
- $group = new FieldGroup('author');
- $group->add($field);
- $group->bind(array('firstName' => 'Bernhard'));
- $this->assertEquals(array('firstName' => 'Bernhard'), $group->getData());
- }
- protected function createMockField($key)
- {
- $field = $this->getMock(
- 'Symfony\Component\Form\FieldInterface',
- array(),
- array(),
- '',
- false, // don't use constructor
- false // don't call parent::__clone
- );
- $field->expects($this->any())
- ->method('getKey')
- ->will($this->returnValue($key));
- return $field;
- }
- protected function createInvalidMockField($key)
- {
- $field = $this->createMockField($key);
- $field->expects($this->any())
- ->method('isValid')
- ->will($this->returnValue(false));
- return $field;
- }
- protected function createValidMockField($key)
- {
- $field = $this->createMockField($key);
- $field->expects($this->any())
- ->method('isValid')
- ->will($this->returnValue(true));
- return $field;
- }
- protected function createNonMultipartMockField($key)
- {
- $field = $this->createMockField($key);
- $field->expects($this->any())
- ->method('isMultipart')
- ->will($this->returnValue(false));
- return $field;
- }
- protected function createMultipartMockField($key)
- {
- $field = $this->createMockField($key);
- $field->expects($this->any())
- ->method('isMultipart')
- ->will($this->returnValue(true));
- return $field;
- }
- protected function createMockTransformer()
- {
- return $this->getMock('Symfony\Component\Form\ValueTransformer\ValueTransformerInterface', array(), array(), '', false, false);
- }
- }
|