123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941 |
- <?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\Component\Form\Tests;
- use Symfony\Component\Form\FormError;
- use Symfony\Component\Security\Csrf\CsrfToken;
- abstract class AbstractDivLayoutTest extends AbstractLayoutTest
- {
- public function testRow()
- {
- $form = $this->factory->createNamed('name', 'Symfony\Component\Form\Extension\Core\Type\TextType');
- $form->addError(new FormError('[trans]Error![/trans]'));
- $view = $form->createView();
- $html = $this->renderRow($view);
- $this->assertMatchesXpath($html,
- '/div
- [
- ./label[@for="name"]
- /following-sibling::ul
- [./li[.="[trans]Error![/trans]"]]
- [count(./li)=1]
- /following-sibling::input[@id="name"]
- ]
- '
- );
- }
- public function testRowOverrideVariables()
- {
- $view = $this->factory->createNamed('name', 'Symfony\Component\Form\Extension\Core\Type\TextType')->createView();
- $html = $this->renderRow($view, array(
- 'attr' => array('class' => 'my&class'),
- 'label' => 'foo&bar',
- 'label_attr' => array('class' => 'my&label&class'),
- ));
- $this->assertMatchesXpath($html,
- '/div
- [
- ./label[@for="name"][@class="my&label&class required"][.="[trans]foo&bar[/trans]"]
- /following-sibling::input[@id="name"][@class="my&class"]
- ]
- '
- );
- }
- public function testRepeatedRow()
- {
- $form = $this->factory->createNamed('name', 'Symfony\Component\Form\Extension\Core\Type\RepeatedType');
- $form->addError(new FormError('[trans]Error![/trans]'));
- $view = $form->createView();
- $html = $this->renderRow($view);
- // The errors of the form are not rendered by intention!
- // In practice, repeated fields cannot have errors as all errors
- // on them are mapped to the first child.
- // (see RepeatedTypeValidatorExtension)
- $this->assertMatchesXpath($html,
- '/div
- [
- ./label[@for="name_first"]
- /following-sibling::input[@id="name_first"]
- ]
- /following-sibling::div
- [
- ./label[@for="name_second"]
- /following-sibling::input[@id="name_second"]
- ]
- '
- );
- }
- public function testButtonRow()
- {
- $form = $this->factory->createNamed('name', 'Symfony\Component\Form\Extension\Core\Type\ButtonType');
- $view = $form->createView();
- $html = $this->renderRow($view);
- $this->assertMatchesXpath($html,
- '/div
- [
- ./button[@type="button"][@name="name"]
- ]
- [count(//label)=0]
- '
- );
- }
- public function testRest()
- {
- $view = $this->factory->createNamedBuilder('name', 'Symfony\Component\Form\Extension\Core\Type\FormType')
- ->add('field1', 'Symfony\Component\Form\Extension\Core\Type\TextType')
- ->add('field2', 'Symfony\Component\Form\Extension\Core\Type\RepeatedType')
- ->add('field3', 'Symfony\Component\Form\Extension\Core\Type\TextType')
- ->add('field4', 'Symfony\Component\Form\Extension\Core\Type\TextType')
- ->getForm()
- ->createView();
- // Render field2 row -> does not implicitly call renderWidget because
- // it is a repeated field!
- $this->renderRow($view['field2']);
- // Render field3 widget
- $this->renderWidget($view['field3']);
- // Rest should only contain field1 and field4
- $html = $this->renderRest($view);
- $this->assertMatchesXpath($html,
- '/div
- [
- ./label[@for="name_field1"]
- /following-sibling::input[@type="text"][@id="name_field1"]
- ]
- /following-sibling::div
- [
- ./label[@for="name_field4"]
- /following-sibling::input[@type="text"][@id="name_field4"]
- ]
- [count(../div)=2]
- [count(..//label)=2]
- [count(..//input)=3]
- /following-sibling::input
- [@type="hidden"]
- [@id="name__token"]
- '
- );
- }
- public function testRestWithChildrenForms()
- {
- $child1 = $this->factory->createNamedBuilder('child1', 'Symfony\Component\Form\Extension\Core\Type\FormType')
- ->add('field1', 'Symfony\Component\Form\Extension\Core\Type\TextType')
- ->add('field2', 'Symfony\Component\Form\Extension\Core\Type\TextType');
- $child2 = $this->factory->createNamedBuilder('child2', 'Symfony\Component\Form\Extension\Core\Type\FormType')
- ->add('field1', 'Symfony\Component\Form\Extension\Core\Type\TextType')
- ->add('field2', 'Symfony\Component\Form\Extension\Core\Type\TextType');
- $view = $this->factory->createNamedBuilder('parent', 'Symfony\Component\Form\Extension\Core\Type\FormType')
- ->add($child1)
- ->add($child2)
- ->getForm()
- ->createView();
- // Render child1.field1 row
- $this->renderRow($view['child1']['field1']);
- // Render child2.field2 widget (remember that widget don't render label)
- $this->renderWidget($view['child2']['field2']);
- // Rest should only contain child1.field2 and child2.field1
- $html = $this->renderRest($view);
- $this->assertMatchesXpath($html,
- '/div
- [
- ./label[not(@for)]
- /following-sibling::div[@id="parent_child1"]
- [
- ./div
- [
- ./label[@for="parent_child1_field2"]
- /following-sibling::input[@id="parent_child1_field2"]
- ]
- ]
- ]
- /following-sibling::div
- [
- ./label[not(@for)]
- /following-sibling::div[@id="parent_child2"]
- [
- ./div
- [
- ./label[@for="parent_child2_field1"]
- /following-sibling::input[@id="parent_child2_field1"]
- ]
- ]
- ]
- [count(//label)=4]
- [count(//input[@type="text"])=2]
- /following-sibling::input[@type="hidden"][@id="parent__token"]
- '
- );
- }
- public function testRestAndRepeatedWithRow()
- {
- $view = $this->factory->createNamedBuilder('name', 'Symfony\Component\Form\Extension\Core\Type\FormType')
- ->add('first', 'Symfony\Component\Form\Extension\Core\Type\TextType')
- ->add('password', 'Symfony\Component\Form\Extension\Core\Type\RepeatedType')
- ->getForm()
- ->createView();
- $this->renderRow($view['password']);
- $html = $this->renderRest($view);
- $this->assertMatchesXpath($html,
- '/div
- [
- ./label[@for="name_first"]
- /following-sibling::input[@type="text"][@id="name_first"]
- ]
- [count(.//input)=1]
- /following-sibling::input
- [@type="hidden"]
- [@id="name__token"]
- '
- );
- }
- public function testRestAndRepeatedWithRowPerChild()
- {
- $view = $this->factory->createNamedBuilder('name', 'Symfony\Component\Form\Extension\Core\Type\FormType')
- ->add('first', 'Symfony\Component\Form\Extension\Core\Type\TextType')
- ->add('password', 'Symfony\Component\Form\Extension\Core\Type\RepeatedType')
- ->getForm()
- ->createView();
- $this->renderRow($view['password']['first']);
- $this->renderRow($view['password']['second']);
- $html = $this->renderRest($view);
- $this->assertMatchesXpath($html,
- '/div
- [
- ./label[@for="name_first"]
- /following-sibling::input[@type="text"][@id="name_first"]
- ]
- [count(.//input)=1]
- [count(.//label)=1]
- /following-sibling::input
- [@type="hidden"]
- [@id="name__token"]
- '
- );
- }
- public function testRestAndRepeatedWithWidgetPerChild()
- {
- $view = $this->factory->createNamedBuilder('name', 'Symfony\Component\Form\Extension\Core\Type\FormType')
- ->add('first', 'Symfony\Component\Form\Extension\Core\Type\TextType')
- ->add('password', 'Symfony\Component\Form\Extension\Core\Type\RepeatedType')
- ->getForm()
- ->createView();
- // The password form is considered as rendered as all its children
- // are rendered
- $this->renderWidget($view['password']['first']);
- $this->renderWidget($view['password']['second']);
- $html = $this->renderRest($view);
- $this->assertMatchesXpath($html,
- '/div
- [
- ./label[@for="name_first"]
- /following-sibling::input[@type="text"][@id="name_first"]
- ]
- [count(//input)=2]
- [count(//label)=1]
- /following-sibling::input
- [@type="hidden"]
- [@id="name__token"]
- '
- );
- }
- public function testCollection()
- {
- $form = $this->factory->createNamed('names', 'Symfony\Component\Form\Extension\Core\Type\CollectionType', array('a', 'b'), array(
- 'entry_type' => 'Symfony\Component\Form\Extension\Core\Type\TextType',
- ));
- $this->assertWidgetMatchesXpath($form->createView(), array(),
- '/div
- [
- ./div[./input[@type="text"][@value="a"]]
- /following-sibling::div[./input[@type="text"][@value="b"]]
- ]
- [count(./div[./input])=2]
- '
- );
- }
- // https://github.com/symfony/symfony/issues/5038
- public function testCollectionWithAlternatingRowTypes()
- {
- $data = array(
- array('title' => 'a'),
- array('title' => 'b'),
- );
- $form = $this->factory->createNamed('names', 'Symfony\Component\Form\Extension\Core\Type\CollectionType', $data, array(
- 'entry_type' => 'Symfony\Component\Form\Tests\Fixtures\AlternatingRowType',
- ));
- $this->assertWidgetMatchesXpath($form->createView(), array(),
- '/div
- [
- ./div[./div/div/input[@type="text"][@value="a"]]
- /following-sibling::div[./div/div/textarea[.="b"]]
- ]
- [count(./div[./div/div/input])=1]
- [count(./div[./div/div/textarea])=1]
- '
- );
- }
- public function testEmptyCollection()
- {
- $form = $this->factory->createNamed('names', 'Symfony\Component\Form\Extension\Core\Type\CollectionType', array(), array(
- 'entry_type' => 'Symfony\Component\Form\Extension\Core\Type\TextType',
- ));
- $this->assertWidgetMatchesXpath($form->createView(), array(),
- '/div
- [./input[@type="hidden"][@id="names__token"]]
- [count(./div)=0]
- '
- );
- }
- public function testCollectionRow()
- {
- $collection = $this->factory->createNamedBuilder(
- 'collection',
- 'Symfony\Component\Form\Extension\Core\Type\CollectionType',
- array('a', 'b'),
- array('entry_type' => 'Symfony\Component\Form\Extension\Core\Type\TextType')
- );
- $form = $this->factory->createNamedBuilder('form', 'Symfony\Component\Form\Extension\Core\Type\FormType')
- ->add($collection)
- ->getForm();
- $this->assertWidgetMatchesXpath($form->createView(), array(),
- '/div
- [
- ./div
- [
- ./label[not(@for)]
- /following-sibling::div
- [
- ./div
- [
- ./label[@for="form_collection_0"]
- /following-sibling::input[@type="text"][@value="a"]
- ]
- /following-sibling::div
- [
- ./label[@for="form_collection_1"]
- /following-sibling::input[@type="text"][@value="b"]
- ]
- ]
- ]
- /following-sibling::input[@type="hidden"][@id="form__token"]
- ]
- [count(.//input)=3]
- '
- );
- }
- public function testForm()
- {
- $form = $this->factory->createNamedBuilder('name', 'Symfony\Component\Form\Extension\Core\Type\FormType')
- ->setMethod('PUT')
- ->setAction('http://example.com')
- ->add('firstName', 'Symfony\Component\Form\Extension\Core\Type\TextType')
- ->add('lastName', 'Symfony\Component\Form\Extension\Core\Type\TextType')
- ->getForm();
- // include ampersands everywhere to validate escaping
- $html = $this->renderForm($form->createView(), array(
- 'id' => 'my&id',
- 'attr' => array('class' => 'my&class'),
- ));
- $this->assertMatchesXpath($html,
- '/form
- [
- ./input[@type="hidden"][@name="_method"][@value="PUT"]
- /following-sibling::div
- [
- ./div
- [
- ./label[@for="name_firstName"]
- /following-sibling::input[@type="text"][@id="name_firstName"]
- ]
- /following-sibling::div
- [
- ./label[@for="name_lastName"]
- /following-sibling::input[@type="text"][@id="name_lastName"]
- ]
- /following-sibling::input[@type="hidden"][@id="name__token"]
- ]
- [count(.//input)=3]
- [@id="my&id"]
- [@class="my&class"]
- ]
- [@method="post"]
- [@action="http://example.com"]
- [@class="my&class"]
- '
- );
- }
- public function testFormWidget()
- {
- $form = $this->factory->createNamedBuilder('name', 'Symfony\Component\Form\Extension\Core\Type\FormType')
- ->add('firstName', 'Symfony\Component\Form\Extension\Core\Type\TextType')
- ->add('lastName', 'Symfony\Component\Form\Extension\Core\Type\TextType')
- ->getForm();
- $this->assertWidgetMatchesXpath($form->createView(), array(),
- '/div
- [
- ./div
- [
- ./label[@for="name_firstName"]
- /following-sibling::input[@type="text"][@id="name_firstName"]
- ]
- /following-sibling::div
- [
- ./label[@for="name_lastName"]
- /following-sibling::input[@type="text"][@id="name_lastName"]
- ]
- /following-sibling::input[@type="hidden"][@id="name__token"]
- ]
- [count(.//input)=3]
- '
- );
- }
- // https://github.com/symfony/symfony/issues/2308
- public function testNestedFormError()
- {
- $form = $this->factory->createNamedBuilder('name', 'Symfony\Component\Form\Extension\Core\Type\FormType')
- ->add($this->factory
- ->createNamedBuilder('child', 'Symfony\Component\Form\Extension\Core\Type\FormType', null, array('error_bubbling' => false))
- ->add('grandChild', 'Symfony\Component\Form\Extension\Core\Type\FormType')
- )
- ->getForm();
- $form->get('child')->addError(new FormError('[trans]Error![/trans]'));
- $this->assertWidgetMatchesXpath($form->createView(), array(),
- '/div
- [
- ./div/label
- /following-sibling::ul[./li[.="[trans]Error![/trans]"]]
- ]
- [count(.//li[.="[trans]Error![/trans]"])=1]
- '
- );
- }
- public function testCsrf()
- {
- $this->csrfTokenManager->expects($this->any())
- ->method('getToken')
- ->will($this->returnValue(new CsrfToken('token_id', 'foo&bar')));
- $form = $this->factory->createNamedBuilder('name', 'Symfony\Component\Form\Extension\Core\Type\FormType')
- ->add($this->factory
- // No CSRF protection on nested forms
- ->createNamedBuilder('child', 'Symfony\Component\Form\Extension\Core\Type\FormType')
- ->add($this->factory->createNamedBuilder('grandchild', 'Symfony\Component\Form\Extension\Core\Type\TextType'))
- )
- ->getForm();
- $this->assertWidgetMatchesXpath($form->createView(), array(),
- '/div
- [
- ./div
- /following-sibling::input[@type="hidden"][@id="name__token"][@value="foo&bar"]
- ]
- [count(.//input[@type="hidden"])=1]
- '
- );
- }
- public function testRepeated()
- {
- $form = $this->factory->createNamed('name', 'Symfony\Component\Form\Extension\Core\Type\RepeatedType', 'foobar', array(
- 'type' => 'Symfony\Component\Form\Extension\Core\Type\TextType',
- ));
- $this->assertWidgetMatchesXpath($form->createView(), array(),
- '/div
- [
- ./div
- [
- ./label[@for="name_first"]
- /following-sibling::input[@type="text"][@id="name_first"]
- ]
- /following-sibling::div
- [
- ./label[@for="name_second"]
- /following-sibling::input[@type="text"][@id="name_second"]
- ]
- /following-sibling::input[@type="hidden"][@id="name__token"]
- ]
- [count(.//input)=3]
- '
- );
- }
- public function testRepeatedWithCustomOptions()
- {
- $form = $this->factory->createNamed('name', 'Symfony\Component\Form\Extension\Core\Type\RepeatedType', null, array(
- // the global required value cannot be overridden
- 'first_options' => array('label' => 'Test', 'required' => false),
- 'second_options' => array('label' => 'Test2'),
- ));
- $this->assertWidgetMatchesXpath($form->createView(), array(),
- '/div
- [
- ./div
- [
- ./label[@for="name_first"][.="[trans]Test[/trans]"]
- /following-sibling::input[@type="text"][@id="name_first"][@required="required"]
- ]
- /following-sibling::div
- [
- ./label[@for="name_second"][.="[trans]Test2[/trans]"]
- /following-sibling::input[@type="text"][@id="name_second"][@required="required"]
- ]
- /following-sibling::input[@type="hidden"][@id="name__token"]
- ]
- [count(.//input)=3]
- '
- );
- }
- public function testSearchInputName()
- {
- $form = $this->factory->createNamedBuilder('full', 'Symfony\Component\Form\Extension\Core\Type\FormType')
- ->add('name', 'Symfony\Component\Form\Extension\Core\Type\SearchType')
- ->getForm();
- $this->assertWidgetMatchesXpath($form->createView(), array(),
- '/div
- [
- ./div
- [
- ./label[@for="full_name"]
- /following-sibling::input[@type="search"][@id="full_name"][@name="full[name]"]
- ]
- /following-sibling::input[@type="hidden"][@id="full__token"]
- ]
- [count(//input)=2]
- '
- );
- }
- public function testLabelHasNoId()
- {
- $form = $this->factory->createNamed('name', 'Symfony\Component\Form\Extension\Core\Type\TextType');
- $html = $this->renderRow($form->createView());
- $this->assertMatchesXpath($html,
- '/div
- [
- ./label[@for="name"][not(@id)]
- /following-sibling::input[@id="name"]
- ]
- '
- );
- }
- public function testLabelIsNotRenderedWhenSetToFalse()
- {
- $form = $this->factory->createNamed('name', 'Symfony\Component\Form\Extension\Core\Type\TextType', null, array(
- 'label' => false,
- ));
- $html = $this->renderRow($form->createView());
- $this->assertMatchesXpath($html,
- '/div
- [
- ./input[@id="name"]
- ]
- [count(//label)=0]
- '
- );
- }
- /**
- * @dataProvider themeBlockInheritanceProvider
- */
- public function testThemeBlockInheritance($theme)
- {
- $view = $this->factory
- ->createNamed('name', 'Symfony\Component\Form\Extension\Core\Type\EmailType')
- ->createView()
- ;
- $this->setTheme($view, $theme);
- $this->assertMatchesXpath(
- $this->renderWidget($view),
- '/input[@type="email"][@rel="theme"]'
- );
- }
- /**
- * @dataProvider themeInheritanceProvider
- */
- public function testThemeInheritance($parentTheme, $childTheme)
- {
- $child = $this->factory->createNamedBuilder('child', 'Symfony\Component\Form\Extension\Core\Type\FormType')
- ->add('field', 'Symfony\Component\Form\Extension\Core\Type\TextType');
- $view = $this->factory->createNamedBuilder('parent', 'Symfony\Component\Form\Extension\Core\Type\FormType')
- ->add('field', 'Symfony\Component\Form\Extension\Core\Type\TextType')
- ->add($child)
- ->getForm()
- ->createView()
- ;
- $this->setTheme($view, $parentTheme);
- $this->setTheme($view['child'], $childTheme);
- $this->assertWidgetMatchesXpath($view, array(),
- '/div
- [
- ./div
- [
- ./label[.="parent"]
- /following-sibling::input[@type="text"]
- ]
- /following-sibling::div
- [
- ./label[.="child"]
- /following-sibling::div
- [
- ./div
- [
- ./label[.="child"]
- /following-sibling::input[@type="text"]
- ]
- ]
- ]
- /following-sibling::input[@type="hidden"]
- ]
- '
- );
- }
- /**
- * The block "_name_child_label" should be overridden in the theme of the
- * implemented driver.
- */
- public function testCollectionRowWithCustomBlock()
- {
- $collection = array('one', 'two', 'three');
- $form = $this->factory->createNamedBuilder('names', 'Symfony\Component\Form\Extension\Core\Type\CollectionType', $collection)
- ->getForm();
- $this->assertWidgetMatchesXpath($form->createView(), array(),
- '/div
- [
- ./div[./label[.="Custom label: [trans]0[/trans]"]]
- /following-sibling::div[./label[.="Custom label: [trans]1[/trans]"]]
- /following-sibling::div[./label[.="Custom label: [trans]2[/trans]"]]
- ]
- '
- );
- }
- /**
- * The block "_name_c_entry_label" should be overridden in the theme of the
- * implemented driver.
- */
- public function testChoiceRowWithCustomBlock()
- {
- $form = $this->factory->createNamedBuilder('name_c', 'Symfony\Component\Form\Extension\Core\Type\ChoiceType', 'a', array(
- 'choices' => array('ChoiceA' => 'a', 'ChoiceB' => 'b'),
- 'choices_as_values' => true,
- 'expanded' => true,
- ))
- ->getForm();
- $this->assertWidgetMatchesXpath($form->createView(), array(),
- '/div
- [
- ./label[.="Custom name label: [trans]ChoiceA[/trans]"]
- /following-sibling::label[.="Custom name label: [trans]ChoiceB[/trans]"]
- ]
- '
- );
- }
- public function testSingleChoiceExpandedWithLabelsAsFalse()
- {
- $form = $this->factory->createNamed('name', 'Symfony\Component\Form\Extension\Core\Type\ChoiceType', '&a', array(
- 'choices' => array('Choice&A' => '&a', 'Choice&B' => '&b'),
- 'choices_as_values' => true,
- 'choice_label' => false,
- 'multiple' => false,
- 'expanded' => true,
- ));
- $this->assertWidgetMatchesXpath($form->createView(), array(),
- '/div
- [
- ./input[@type="radio"][@name="name"][@id="name_0"][@value="&a"][@checked]
- /following-sibling::input[@type="radio"][@name="name"][@id="name_1"][@value="&b"][not(@checked)]
- /following-sibling::input[@type="hidden"][@id="name__token"]
- ]
- [count(./input)=3]
- [count(./label)=1]
- '
- );
- }
- public function testSingleChoiceExpandedWithLabelsSetByCallable()
- {
- $form = $this->factory->createNamed('name', 'Symfony\Component\Form\Extension\Core\Type\ChoiceType', '&a', array(
- 'choices' => array('Choice&A' => '&a', 'Choice&B' => '&b', 'Choice&C' => '&c'),
- 'choices_as_values' => true,
- 'choice_label' => function ($choice, $label, $value) {
- if ('&b' === $choice) {
- return false;
- }
- return 'label.'.$value;
- },
- 'multiple' => false,
- 'expanded' => true,
- ));
- $this->assertWidgetMatchesXpath($form->createView(), array(),
- '/div
- [
- ./input[@type="radio"][@name="name"][@id="name_0"][@value="&a"][@checked]
- /following-sibling::label[@for="name_0"][.="[trans]label.&a[/trans]"]
- /following-sibling::input[@type="radio"][@name="name"][@id="name_1"][@value="&b"][not(@checked)]
- /following-sibling::input[@type="radio"][@name="name"][@id="name_2"][@value="&c"][not(@checked)]
- /following-sibling::label[@for="name_2"][.="[trans]label.&c[/trans]"]
- /following-sibling::input[@type="hidden"][@id="name__token"]
- ]
- [count(./input)=4]
- [count(./label)=3]
- '
- );
- }
- public function testSingleChoiceExpandedWithLabelsSetFalseByCallable()
- {
- $form = $this->factory->createNamed('name', 'Symfony\Component\Form\Extension\Core\Type\ChoiceType', '&a', array(
- 'choices' => array('Choice&A' => '&a', 'Choice&B' => '&b'),
- 'choices_as_values' => true,
- 'choice_label' => function () {
- return false;
- },
- 'multiple' => false,
- 'expanded' => true,
- ));
- $this->assertWidgetMatchesXpath($form->createView(), array(),
- '/div
- [
- ./input[@type="radio"][@name="name"][@id="name_0"][@value="&a"][@checked]
- /following-sibling::input[@type="radio"][@name="name"][@id="name_1"][@value="&b"][not(@checked)]
- /following-sibling::input[@type="hidden"][@id="name__token"]
- ]
- [count(./input)=3]
- [count(./label)=1]
- '
- );
- }
- public function testMultipleChoiceExpandedWithLabelsAsFalse()
- {
- $form = $this->factory->createNamed('name', 'Symfony\Component\Form\Extension\Core\Type\ChoiceType', array('&a'), array(
- 'choices' => array('Choice&A' => '&a', 'Choice&B' => '&b'),
- 'choices_as_values' => true,
- 'choice_label' => false,
- 'multiple' => true,
- 'expanded' => true,
- ));
- $this->assertWidgetMatchesXpath($form->createView(), array(),
- '/div
- [
- ./input[@type="checkbox"][@name="name[]"][@id="name_0"][@value="&a"][@checked]
- /following-sibling::input[@type="checkbox"][@name="name[]"][@id="name_1"][@value="&b"][not(@checked)]
- /following-sibling::input[@type="hidden"][@id="name__token"]
- ]
- [count(./input)=3]
- [count(./label)=1]
- '
- );
- }
- public function testMultipleChoiceExpandedWithLabelsSetByCallable()
- {
- $form = $this->factory->createNamed('name', 'Symfony\Component\Form\Extension\Core\Type\ChoiceType', array('&a'), array(
- 'choices' => array('Choice&A' => '&a', 'Choice&B' => '&b', 'Choice&C' => '&c'),
- 'choices_as_values' => true,
- 'choice_label' => function ($choice, $label, $value) {
- if ('&b' === $choice) {
- return false;
- }
- return 'label.'.$value;
- },
- 'multiple' => true,
- 'expanded' => true,
- ));
- $this->assertWidgetMatchesXpath($form->createView(), array(),
- '/div
- [
- ./input[@type="checkbox"][@name="name[]"][@id="name_0"][@value="&a"][@checked]
- /following-sibling::label[@for="name_0"][.="[trans]label.&a[/trans]"]
- /following-sibling::input[@type="checkbox"][@name="name[]"][@id="name_1"][@value="&b"][not(@checked)]
- /following-sibling::input[@type="checkbox"][@name="name[]"][@id="name_2"][@value="&c"][not(@checked)]
- /following-sibling::label[@for="name_2"][.="[trans]label.&c[/trans]"]
- /following-sibling::input[@type="hidden"][@id="name__token"]
- ]
- [count(./input)=4]
- [count(./label)=3]
- '
- );
- }
- public function testMultipleChoiceExpandedWithLabelsSetFalseByCallable()
- {
- $form = $this->factory->createNamed('name', 'Symfony\Component\Form\Extension\Core\Type\ChoiceType', array('&a'), array(
- 'choices' => array('Choice&A' => '&a', 'Choice&B' => '&b'),
- 'choices_as_values' => true,
- 'choice_label' => function () {
- return false;
- },
- 'multiple' => true,
- 'expanded' => true,
- ));
- $this->assertWidgetMatchesXpath($form->createView(), array(),
- '/div
- [
- ./input[@type="checkbox"][@name="name[]"][@id="name_0"][@value="&a"][@checked]
- /following-sibling::input[@type="checkbox"][@name="name[]"][@id="name_1"][@value="&b"][not(@checked)]
- /following-sibling::input[@type="hidden"][@id="name__token"]
- ]
- [count(./input)=3]
- [count(./label)=1]
- '
- );
- }
- public function testFormEndWithRest()
- {
- $view = $this->factory->createNamedBuilder('name', 'Symfony\Component\Form\Extension\Core\Type\FormType')
- ->add('field1', 'Symfony\Component\Form\Extension\Core\Type\TextType')
- ->add('field2', 'Symfony\Component\Form\Extension\Core\Type\TextType')
- ->getForm()
- ->createView();
- $this->renderWidget($view['field1']);
- // Rest should only contain field2
- $html = $this->renderEnd($view);
- // Insert the start tag, the end tag should be rendered by the helper
- $this->assertMatchesXpath('<form>'.$html,
- '/form
- [
- ./div
- [
- ./label[@for="name_field2"]
- /following-sibling::input[@type="text"][@id="name_field2"]
- ]
- /following-sibling::input
- [@type="hidden"]
- [@id="name__token"]
- ]
- '
- );
- }
- public function testFormEndWithoutRest()
- {
- $view = $this->factory->createNamedBuilder('name', 'Symfony\Component\Form\Extension\Core\Type\FormType')
- ->add('field1', 'Symfony\Component\Form\Extension\Core\Type\TextType')
- ->add('field2', 'Symfony\Component\Form\Extension\Core\Type\TextType')
- ->getForm()
- ->createView();
- $this->renderWidget($view['field1']);
- // Rest should only contain field2, but isn't rendered
- $html = $this->renderEnd($view, array('render_rest' => false));
- $this->assertEquals('</form>', $html);
- }
- public function testWidgetContainerAttributes()
- {
- $form = $this->factory->createNamed('form', 'Symfony\Component\Form\Extension\Core\Type\FormType', null, array(
- 'attr' => array('class' => 'foobar', 'data-foo' => 'bar'),
- ));
- $form->add('text', 'Symfony\Component\Form\Extension\Core\Type\TextType');
- $html = $this->renderWidget($form->createView());
- // compare plain HTML to check the whitespace
- $this->assertContains('<div id="form" class="foobar" data-foo="bar">', $html);
- }
- public function testWidgetContainerAttributeNameRepeatedIfTrue()
- {
- $form = $this->factory->createNamed('form', 'Symfony\Component\Form\Extension\Core\Type\FormType', null, array(
- 'attr' => array('foo' => true),
- ));
- $html = $this->renderWidget($form->createView());
- // foo="foo"
- $this->assertContains('<div id="form" foo="foo">', $html);
- }
- }
|