1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048 |
- <?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/FixedDataTransformer.php';
- require_once __DIR__.'/Fixtures/FixedFilterListener.php';
- use Symfony\Component\Form\Form;
- use Symfony\Component\Form\FormView;
- use Symfony\Component\Form\FormBuilder;
- use Symfony\Component\Form\FormError;
- use Symfony\Component\Form\Exception\TransformationFailedException;
- use Symfony\Component\HttpFoundation\Request;
- use Symfony\Component\HttpFoundation\File\UploadedFile;
- use Symfony\Component\EventDispatcher\EventDispatcher;
- use Symfony\Component\EventDispatcher\EventDispatcherInterface;
- use Symfony\Tests\Component\Form\Fixtures\FixedDataTransformer;
- use Symfony\Tests\Component\Form\Fixtures\FixedFilterListener;
- class FormTest extends \PHPUnit_Framework_TestCase
- {
- private $dispatcher;
- private $factory;
- private $builder;
- private $form;
- protected function setUp()
- {
- $this->dispatcher = $this->getMock('Symfony\Component\EventDispatcher\EventDispatcherInterface');
- $this->factory = $this->getMock('Symfony\Component\Form\FormFactoryInterface');
- $this->form = $this->getBuilder()->getForm();
- }
- /**
- * @expectedException Symfony\Component\Form\Exception\UnexpectedTypeException
- */
- public function testConstructExpectsValidValidators()
- {
- $validators = array(new \stdClass());
- new Form('name', $this->dispatcher, array(), array(), array(), null, $validators);
- }
- public function testDataIsInitializedEmpty()
- {
- $norm = new FixedDataTransformer(array(
- '' => 'foo',
- ));
- $client = new FixedDataTransformer(array(
- 'foo' => 'bar',
- ));
- $form = new Form('name', $this->dispatcher, array(), array($client), array($norm));
- $this->assertNull($form->getData());
- $this->assertSame('foo', $form->getNormData());
- $this->assertSame('bar', $form->getClientData());
- }
- public function testErrorsBubbleUpIfEnabled()
- {
- $error = new FormError('Error!');
- $parent = $this->form;
- $form = $this->getBuilder()->setErrorBubbling(true)->getForm();
- $form->setParent($parent);
- $form->addError($error);
- $this->assertEquals(array(), $form->getErrors());
- $this->assertEquals(array($error), $parent->getErrors());
- }
- public function testErrorsDontBubbleUpIfDisabled()
- {
- $error = new FormError('Error!');
- $parent = $this->form;
- $form = $this->getBuilder()->setErrorBubbling(false)->getForm();
- $form->setParent($parent);
- $form->addError($error);
- $this->assertEquals(array($error), $form->getErrors());
- $this->assertEquals(array(), $parent->getErrors());
- }
- public function testValidIfAllChildrenAreValid()
- {
- $this->form->add($this->getValidForm('firstName'));
- $this->form->add($this->getValidForm('lastName'));
- $this->form->bind(array(
- 'firstName' => 'Bernhard',
- 'lastName' => 'Schussek',
- ));
- $this->assertTrue($this->form->isValid());
- }
- public function testInvalidIfChildrenIsInvalid()
- {
- $this->form->add($this->getValidForm('firstName'));
- $this->form->add($this->getInvalidForm('lastName'));
- $this->form->bind(array(
- 'firstName' => 'Bernhard',
- 'lastName' => 'Schussek',
- ));
- $this->assertFalse($this->form->isValid());
- }
- public function testBind()
- {
- $child = $this->getMockForm('firstName');
- $this->form->add($child);
- $child->expects($this->once())
- ->method('bind')
- ->with($this->equalTo('Bernhard'));
- $this->form->bind(array('firstName' => 'Bernhard'));
- $this->assertEquals(array('firstName' => 'Bernhard'), $this->form->getData());
- }
- public function testBindForwardsNullIfValueIsMissing()
- {
- $child = $this->getMockForm('firstName');
- $this->form->add($child);
- $child->expects($this->once())
- ->method('bind')
- ->with($this->equalTo(null));
- $this->form->bind(array());
- }
- public function testBindIsIgnoredIfReadOnly()
- {
- $form = $this->getBuilder()
- ->setReadOnly(true)
- ->setData('initial')
- ->getForm();
- $form->bind('new');
- $this->assertEquals('initial', $form->getData());
- $this->assertTrue($form->isBound());
- }
- public function testNeverRequiredIfParentNotRequired()
- {
- $parent = $this->getBuilder()->setRequired(false)->getForm();
- $child = $this->getBuilder()->setRequired(true)->getForm();
- $child->setParent($parent);
- $this->assertFalse($child->isRequired());
- }
- public function testRequired()
- {
- $parent = $this->getBuilder()->setRequired(true)->getForm();
- $child = $this->getBuilder()->setRequired(true)->getForm();
- $child->setParent($parent);
- $this->assertTrue($child->isRequired());
- }
- public function testNotRequired()
- {
- $parent = $this->getBuilder()->setRequired(true)->getForm();
- $child = $this->getBuilder()->setRequired(false)->getForm();
- $child->setParent($parent);
- $this->assertFalse($child->isRequired());
- }
- public function testAlwaysReadOnlyIfParentReadOnly()
- {
- $parent = $this->getBuilder()->setReadOnly(true)->getForm();
- $child = $this->getBuilder()->setReadOnly(false)->getForm();
- $child->setParent($parent);
- $this->assertTrue($child->isReadOnly());
- }
- public function testReadOnly()
- {
- $parent = $this->getBuilder()->setReadOnly(false)->getForm();
- $child = $this->getBuilder()->setReadOnly(true)->getForm();
- $child->setParent($parent);
- $this->assertTrue($child->isReadOnly());
- }
- public function testNotReadOnly()
- {
- $parent = $this->getBuilder()->setReadOnly(false)->getForm();
- $child = $this->getBuilder()->setReadOnly(false)->getForm();
- $child->setParent($parent);
- $this->assertFalse($child->isReadOnly());
- }
- public function testCloneChildren()
- {
- $child = $this->getBuilder('child')->getForm();
- $this->form->add($child);
- $clone = clone $this->form;
- $this->assertNotSame($this->form, $clone);
- $this->assertNotSame($child, $clone['child']);
- }
- public function testGetRootReturnsRootOfParent()
- {
- $parent = $this->getMockForm();
- $parent->expects($this->once())
- ->method('getRoot')
- ->will($this->returnValue('ROOT'));
- $this->form->setParent($parent);
- $this->assertEquals('ROOT', $this->form->getRoot());
- }
- public function testGetRootReturnsSelfIfNoParent()
- {
- $this->assertSame($this->form, $this->form->getRoot());
- }
- public function testEmptyIfEmptyArray()
- {
- $this->form->setData(array());
- $this->assertTrue($this->form->isEmpty());
- }
- public function testEmptyIfNull()
- {
- $this->form->setData(null);
- $this->assertTrue($this->form->isEmpty());
- }
- public function testEmptyIfEmptyString()
- {
- $this->form->setData('');
- $this->assertTrue($this->form->isEmpty());
- }
- public function testNotEmptyIfText()
- {
- $this->form->setData('foobar');
- $this->assertFalse($this->form->isEmpty());
- }
- public function testNotEmptyIfChildNotEmpty()
- {
- $child = $this->getMockForm();
- $child->expects($this->once())
- ->method('isEmpty')
- ->will($this->returnValue(false));
- $this->form->setData(null);
- $this->form->add($child);
- $this->assertFalse($this->form->isEmpty());
- }
- public function testValidIfBound()
- {
- $this->form->bind('foobar');
- $this->assertTrue($this->form->isValid());
- }
- public function testValidIfBoundAndReadOnly()
- {
- $form = $this->getBuilder()->setReadOnly(true)->getForm();
- $form->bind('foobar');
- $this->assertTrue($form->isValid());
- }
- public function testValidIfBoundAndReadOnlyWithChildren()
- {
- $this->factory->expects($this->once())
- ->method('createNamedBuilder')
- ->with('text', 'name', null, array())
- ->will($this->returnValue($this->getBuilder('name')));
- $form = $this->getBuilder('person')
- ->setReadOnly(true)
- ->add('name', 'text')
- ->getForm();
- $form->bind(array('name' => 'Jacques Doe'));
- $this->assertTrue($form->isValid());
- }
- public function testNotValidIfNotBound()
- {
- $this->assertFalse($this->form->isValid());
- }
- public function testNotValidIfErrors()
- {
- $this->form->bind('foobar');
- $this->form->addError(new FormError('Error!'));
- $this->assertFalse($this->form->isValid());
- }
- public function testNotValidIfChildNotValid()
- {
- $child = $this->getMockForm();
- $child->expects($this->once())
- ->method('isValid')
- ->will($this->returnValue(false));
- $this->form->bind('foobar');
- $this->form->add($child);
- $this->assertFalse($this->form->isValid());
- }
- public function testHasErrors()
- {
- $this->form->addError(new FormError('Error!'));
- $this->assertTrue($this->form->hasErrors());
- }
- public function testHasNoErrors()
- {
- $this->assertFalse($this->form->hasErrors());
- }
- public function testHasChildren()
- {
- $this->form->add($this->getBuilder()->getForm());
- $this->assertTrue($this->form->hasChildren());
- }
- public function testHasNoChildren()
- {
- $this->assertFalse($this->form->hasChildren());
- }
- public function testAdd()
- {
- $child = $this->getBuilder('foo')->getForm();
- $this->form->add($child);
- $this->assertSame($this->form, $child->getParent());
- $this->assertSame(array('foo' => $child), $this->form->getChildren());
- }
- public function testRemove()
- {
- $child = $this->getBuilder('foo')->getForm();
- $this->form->add($child);
- $this->form->remove('foo');
- $this->assertNull($child->getParent());
- $this->assertFalse($this->form->hasChildren());
- }
- public function testRemoveIgnoresUnknownName()
- {
- $this->form->remove('notexisting');
- }
- public function testArrayAccess()
- {
- $child = $this->getBuilder('foo')->getForm();
- $this->form[] = $child;
- $this->assertTrue(isset($this->form['foo']));
- $this->assertSame($child, $this->form['foo']);
- unset($this->form['foo']);
- $this->assertFalse(isset($this->form['foo']));
- }
- public function testCountable()
- {
- $this->form->add($this->getBuilder('foo')->getForm());
- $this->form->add($this->getBuilder('bar')->getForm());
- $this->assertEquals(2, count($this->form));
- }
- public function testIterator()
- {
- $this->form->add($this->getBuilder('foo')->getForm());
- $this->form->add($this->getBuilder('bar')->getForm());
- $this->assertSame($this->form->getChildren(), iterator_to_array($this->form));
- }
- public function testBound()
- {
- $this->form->bind('foobar');
- $this->assertTrue($this->form->isBound());
- }
- public function testNotBound()
- {
- $this->assertFalse($this->form->isBound());
- }
- public function testSetDataExecutesTransformationChain()
- {
- // use real event dispatcher now
- $form = $this->getBuilder('name', new EventDispatcher())
- ->addEventSubscriber(new FixedFilterListener(array(
- 'onSetData' => array(
- 'app' => 'filtered',
- ),
- )))
- ->appendNormTransformer(new FixedDataTransformer(array(
- '' => '',
- 'filtered' => 'norm',
- )))
- ->appendClientTransformer(new FixedDataTransformer(array(
- '' => '',
- 'norm' => 'client',
- )))
- ->getForm();
- $form->setData('app');
- $this->assertEquals('filtered', $form->getData());
- $this->assertEquals('norm', $form->getNormData());
- $this->assertEquals('client', $form->getClientData());
- }
- public function testSetDataExecutesClientTransformersInOrder()
- {
- $form = $this->getBuilder()
- ->appendClientTransformer(new FixedDataTransformer(array(
- '' => '',
- 'first' => 'second',
- )))
- ->appendClientTransformer(new FixedDataTransformer(array(
- '' => '',
- 'second' => 'third',
- )))
- ->getForm();
- $form->setData('first');
- $this->assertEquals('third', $form->getClientData());
- }
- public function testSetDataExecutesNormTransformersInOrder()
- {
- $form = $this->getBuilder()
- ->appendNormTransformer(new FixedDataTransformer(array(
- '' => '',
- 'first' => 'second',
- )))
- ->appendNormTransformer(new FixedDataTransformer(array(
- '' => '',
- 'second' => 'third',
- )))
- ->getForm();
- $form->setData('first');
- $this->assertEquals('third', $form->getNormData());
- }
- /*
- * When there is no data transformer, the data must have the same format
- * in all three representations
- */
- public function testSetDataConvertsScalarToStringIfNoTransformer()
- {
- $form = $this->getBuilder()->getForm();
- $form->setData(1);
- $this->assertSame('1', $form->getData());
- $this->assertSame('1', $form->getNormData());
- $this->assertSame('1', $form->getClientData());
- }
- /*
- * Data in client format should, if possible, always be a string to
- * facilitate differentiation between '0' and ''
- */
- public function testSetDataConvertsScalarToStringIfOnlyNormTransformer()
- {
- $form = $this->getBuilder()
- ->appendNormTransformer(new FixedDataTransformer(array(
- '' => '',
- 1 => 23,
- )))
- ->getForm();
- $form->setData(1);
- $this->assertSame(1, $form->getData());
- $this->assertSame(23, $form->getNormData());
- $this->assertSame('23', $form->getClientData());
- }
- /*
- * NULL remains NULL in app and norm format to remove the need to treat
- * empty values and NULL explicitely in the application
- */
- public function testSetDataConvertsNullToStringIfNoTransformer()
- {
- $form = $this->getBuilder()->getForm();
- $form->setData(null);
- $this->assertNull($form->getData());
- $this->assertNull($form->getNormData());
- $this->assertSame('', $form->getClientData());
- }
- public function testBindConvertsEmptyToNullIfNoTransformer()
- {
- $form = $this->getBuilder()->getForm();
- $form->bind('');
- $this->assertNull($form->getData());
- $this->assertNull($form->getNormData());
- $this->assertSame('', $form->getClientData());
- }
- public function testBindExecutesTransformationChain()
- {
- // use real event dispatcher now
- $form = $this->getBuilder('name', new EventDispatcher())
- ->addEventSubscriber(new FixedFilterListener(array(
- 'onBindClientData' => array(
- 'client' => 'filteredclient',
- ),
- 'onBindNormData' => array(
- 'norm' => 'filterednorm',
- ),
- )))
- ->appendClientTransformer(new FixedDataTransformer(array(
- '' => '',
- // direction is reversed!
- 'norm' => 'filteredclient',
- 'filterednorm' => 'cleanedclient'
- )))
- ->appendNormTransformer(new FixedDataTransformer(array(
- '' => '',
- // direction is reversed!
- 'app' => 'filterednorm',
- )))
- ->getForm();
- $form->setData('app');
- $this->assertEquals('app', $form->getData());
- $this->assertEquals('filterednorm', $form->getNormData());
- $this->assertEquals('cleanedclient', $form->getClientData());
- }
- public function testBindExecutesClientTransformersInReverseOrder()
- {
- $form = $this->getBuilder()
- ->appendClientTransformer(new FixedDataTransformer(array(
- '' => '',
- 'third' => 'second',
- )))
- ->appendClientTransformer(new FixedDataTransformer(array(
- '' => '',
- 'second' => 'first',
- )))
- ->getForm();
- $form->bind('first');
- $this->assertEquals('third', $form->getNormData());
- }
- public function testBindExecutesNormTransformersInReverseOrder()
- {
- $form = $this->getBuilder()
- ->appendNormTransformer(new FixedDataTransformer(array(
- '' => '',
- 'third' => 'second',
- )))
- ->appendNormTransformer(new FixedDataTransformer(array(
- '' => '',
- 'second' => 'first',
- )))
- ->getForm();
- $form->bind('first');
- $this->assertEquals('third', $form->getData());
- }
- public function testSynchronizedByDefault()
- {
- $this->assertTrue($this->form->isSynchronized());
- }
- public function testSynchronizedAfterBinding()
- {
- $this->form->bind('foobar');
- $this->assertTrue($this->form->isSynchronized());
- }
- public function testNotSynchronizedIfTransformationFailed()
- {
- $transformer = $this->getDataTransformer();
- $transformer->expects($this->once())
- ->method('reverseTransform')
- ->will($this->throwException(new TransformationFailedException()));
- $form = $this->getBuilder()
- ->appendClientTransformer($transformer)
- ->getForm();
- $form->bind('foobar');
- $this->assertFalse($form->isSynchronized());
- }
- public function testEmptyDataCreatedBeforeTransforming()
- {
- $form = $this->getBuilder()
- ->setEmptyData('foo')
- ->appendClientTransformer(new FixedDataTransformer(array(
- '' => '',
- // direction is reversed!
- 'bar' => 'foo',
- )))
- ->getForm();
- $form->bind('');
- $this->assertEquals('bar', $form->getData());
- }
- public function testEmptyDataFromClosure()
- {
- $test = $this;
- $form = $this->getBuilder()
- ->setEmptyData(function ($form) use ($test) {
- // the form instance is passed to the closure to allow use
- // of form data when creating the empty value
- $test->assertInstanceOf('Symfony\Component\Form\FormInterface', $form);
- return 'foo';
- })
- ->appendClientTransformer(new FixedDataTransformer(array(
- '' => '',
- // direction is reversed!
- 'bar' => 'foo',
- )))
- ->getForm();
- $form->bind('');
- $this->assertEquals('bar', $form->getData());
- }
- public function testAddMapsClientDataToForm()
- {
- $mapper = $this->getDataMapper();
- $form = $this->getBuilder()
- ->setDataMapper($mapper)
- ->appendClientTransformer(new FixedDataTransformer(array(
- '' => '',
- 'foo' => 'bar',
- )))
- ->setData('foo')
- ->getForm();
- $child = $this->getBuilder()->getForm();
- $mapper->expects($this->once())
- ->method('mapDataToForm')
- ->with('bar', $child);
- $form->add($child);
- }
- public function testSetDataMapsClientDataToChildren()
- {
- $mapper = $this->getDataMapper();
- $form = $this->getBuilder()
- ->setDataMapper($mapper)
- ->appendClientTransformer(new FixedDataTransformer(array(
- '' => '',
- 'foo' => 'bar',
- )))
- ->getForm();
- $form->add($child1 = $this->getBuilder('firstName')->getForm());
- $form->add($child2 = $this->getBuilder('lastName')->getForm());
- $mapper->expects($this->once())
- ->method('mapDataToForms')
- ->with('bar', array('firstName' => $child1, 'lastName' => $child2));
- $form->setData('foo');
- }
- public function testBindMapsBoundChildrenOntoExistingClientData()
- {
- $test = $this;
- $mapper = $this->getDataMapper();
- $form = $this->getBuilder()
- ->setDataMapper($mapper)
- ->appendClientTransformer(new FixedDataTransformer(array(
- '' => '',
- 'foo' => 'bar',
- )))
- ->setData('foo')
- ->getForm();
- $form->add($child1 = $this->getBuilder('firstName')->getForm());
- $form->add($child2 = $this->getBuilder('lastName')->getForm());
- $mapper->expects($this->once())
- ->method('mapFormsToData')
- ->with(array('firstName' => $child1, 'lastName' => $child2), 'bar')
- ->will($this->returnCallback(function ($children, $bar) use ($test) {
- $test->assertEquals('Bernhard', $children['firstName']->getData());
- $test->assertEquals('Schussek', $children['lastName']->getData());
- }));
- $form->bind(array(
- 'firstName' => 'Bernhard',
- 'lastName' => 'Schussek',
- ));
- }
- public function testBindMapsBoundChildrenOntoEmptyData()
- {
- $test = $this;
- $mapper = $this->getDataMapper();
- $object = new \stdClass();
- $form = $this->getBuilder()
- ->setDataMapper($mapper)
- ->setEmptyData($object)
- ->setData(null)
- ->getForm();
- $form->add($child = $this->getBuilder('name')->getForm());
- $mapper->expects($this->once())
- ->method('mapFormsToData')
- ->with(array('name' => $child), $object);
- $form->bind(array(
- 'name' => 'Bernhard',
- ));
- }
- public function testBindValidatesAfterTransformation()
- {
- $test = $this;
- $validator = $this->getFormValidator();
- $form = $this->getBuilder()
- ->addValidator($validator)
- ->getForm();
- $validator->expects($this->once())
- ->method('validate')
- ->with($form)
- ->will($this->returnCallback(function ($form) use ($test) {
- $test->assertEquals('foobar', $form->getData());
- }));
- $form->bind('foobar');
- }
- public function requestMethodProvider()
- {
- return array(
- array('POST'),
- array('PUT'),
- );
- }
- /**
- * @dataProvider requestMethodProvider
- */
- public function testBindPostOrPutRequest($method)
- {
- $path = tempnam(sys_get_temp_dir(), 'sf2');
- touch($path);
- $values = array(
- 'author' => array(
- 'name' => 'Bernhard',
- 'image' => array('filename' => 'foobar.png'),
- ),
- );
- $files = array(
- 'author' => array(
- 'error' => array('image' => UPLOAD_ERR_OK),
- 'name' => array('image' => 'upload.png'),
- 'size' => array('image' => 123),
- 'tmp_name' => array('image' => $path),
- 'type' => array('image' => 'image/png'),
- ),
- );
- $request = new Request(array(), $values, array(), array(), $files, array(
- 'REQUEST_METHOD' => $method,
- ));
- $form = $this->getBuilder('author')->getForm();
- $form->add($this->getBuilder('name')->getForm());
- $form->add($this->getBuilder('image')->getForm());
- $form->bindRequest($request);
- $file = new UploadedFile($path, 'upload.png', 'image/png', 123, UPLOAD_ERR_OK);
- $this->assertEquals('Bernhard', $form['name']->getData());
- $this->assertEquals($file, $form['image']->getData());
- unlink($path);
- }
- public function testBindGetRequest()
- {
- $values = array(
- 'author' => array(
- 'firstName' => 'Bernhard',
- 'lastName' => 'Schussek',
- ),
- );
- $request = new Request($values, array(), array(), array(), array(), array(
- 'REQUEST_METHOD' => 'GET',
- ));
- $form = $this->getBuilder('author')->getForm();
- $form->add($this->getBuilder('firstName')->getForm());
- $form->add($this->getBuilder('lastName')->getForm());
- $form->bindRequest($request);
- $this->assertEquals('Bernhard', $form['firstName']->getData());
- $this->assertEquals('Schussek', $form['lastName']->getData());
- }
- public function testBindResetsErrors()
- {
- $form = $this->getBuilder()->getForm();
- $form->addError(new FormError('Error!'));
- $form->bind('foobar');
- $this->assertSame(array(), $form->getErrors());
- }
- public function testCreateView()
- {
- $test = $this;
- $type1 = $this->getMock('Symfony\Component\Form\FormTypeInterface');
- $type1Extension = $this->getMock('Symfony\Component\Form\FormTypeExtensionInterface');
- $type1->expects($this->any())
- ->method('getExtensions')
- ->will($this->returnValue(array($type1Extension)));
- $type2 = $this->getMock('Symfony\Component\Form\FormTypeInterface');
- $type2Extension = $this->getMock('Symfony\Component\Form\FormTypeExtensionInterface');
- $type2->expects($this->any())
- ->method('getExtensions')
- ->will($this->returnValue(array($type2Extension)));
- $calls = array();
- $type1->expects($this->once())
- ->method('buildView')
- ->will($this->returnCallback(function (FormView $view, Form $form) use ($test, &$calls) {
- $calls[] = 'type1::buildView';
- $test->assertTrue($view->hasParent());
- $test->assertFalse($view->hasChildren());
- }));
- $type1Extension->expects($this->once())
- ->method('buildView')
- ->will($this->returnCallback(function (FormView $view, Form $form) use ($test, &$calls) {
- $calls[] = 'type1ext::buildView';
- $test->assertTrue($view->hasParent());
- $test->assertFalse($view->hasChildren());
- }));
- $type2->expects($this->once())
- ->method('buildView')
- ->will($this->returnCallback(function (FormView $view, Form $form) use ($test, &$calls) {
- $calls[] = 'type2::buildView';
- $test->assertTrue($view->hasParent());
- $test->assertFalse($view->hasChildren());
- }));
- $type2Extension->expects($this->once())
- ->method('buildView')
- ->will($this->returnCallback(function (FormView $view, Form $form) use ($test, &$calls) {
- $calls[] = 'type2ext::buildView';
- $test->assertTrue($view->hasParent());
- $test->assertFalse($view->hasChildren());
- }));
- $type1->expects($this->once())
- ->method('buildViewBottomUp')
- ->will($this->returnCallback(function (FormView $view, Form $form) use ($test, &$calls) {
- $calls[] = 'type1::buildViewBottomUp';
- $test->assertTrue($view->hasChildren());
- }));
- $type1Extension->expects($this->once())
- ->method('buildViewBottomUp')
- ->will($this->returnCallback(function (FormView $view, Form $form) use ($test, &$calls) {
- $calls[] = 'type1ext::buildViewBottomUp';
- $test->assertTrue($view->hasChildren());
- }));
- $type2->expects($this->once())
- ->method('buildViewBottomUp')
- ->will($this->returnCallback(function (FormView $view, Form $form) use ($test, &$calls) {
- $calls[] = 'type2::buildViewBottomUp';
- $test->assertTrue($view->hasChildren());
- }));
- $type2Extension->expects($this->once())
- ->method('buildViewBottomUp')
- ->will($this->returnCallback(function (FormView $view, Form $form) use ($test, &$calls) {
- $calls[] = 'type2ext::buildViewBottomUp';
- $test->assertTrue($view->hasChildren());
- }));
- $form = $this->getBuilder()->setTypes(array($type1, $type2))->getForm();
- $form->setParent($this->getBuilder()->getForm());
- $form->add($this->getBuilder()->getForm());
- $form->createView();
- $this->assertEquals(array(
- 0 => 'type1::buildView',
- 1 => 'type1ext::buildView',
- 2 => 'type2::buildView',
- 3 => 'type2ext::buildView',
- 4 => 'type1::buildViewBottomUp',
- 5 => 'type1ext::buildViewBottomUp',
- 6 => 'type2::buildViewBottomUp',
- 7 => 'type2ext::buildViewBottomUp',
- ), $calls);
- }
- public function testCreateViewAcceptsParent()
- {
- $parent = new FormView();
- $form = $this->getBuilder()->getForm();
- $view = $form->createView($parent);
- $this->assertSame($parent, $view->getParent());
- }
- protected function getBuilder($name = 'name', EventDispatcherInterface $dispatcher = null)
- {
- return new FormBuilder($name, $this->factory, $dispatcher ?: $this->dispatcher);
- }
- protected function getMockForm($name = 'name')
- {
- $form = $this->getMock('Symfony\Tests\Component\Form\FormInterface');
- $form->expects($this->any())
- ->method('getName')
- ->will($this->returnValue($name));
- return $form;
- }
- protected function getValidForm($name)
- {
- $form = $this->getMockForm($name);
- $form->expects($this->any())
- ->method('isValid')
- ->will($this->returnValue(true));
- return $form;
- }
- protected function getInvalidForm($name)
- {
- $form = $this->getMockForm($name);
- $form->expects($this->any())
- ->method('isValid')
- ->will($this->returnValue(false));
- return $form;
- }
- protected function getDataMapper()
- {
- return $this->getMock('Symfony\Component\Form\DataMapperInterface');
- }
- protected function getDataTransformer()
- {
- return $this->getMock('Symfony\Component\Form\DataTransformerInterface');
- }
- protected function getFormValidator()
- {
- return $this->getMock('Symfony\Component\Form\FormValidatorInterface');
- }
- }
|