123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032 |
- <?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 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');
- }
- }
|