123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470 |
- <?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;
- use Symfony\Component\Form\FormError;
- abstract class AbstractDivLayoutTest extends AbstractLayoutTest
- {
- public function testRow()
- {
- $form = $this->factory->createNamed('text', 'name');
- $form->addError(new FormError('Error!'));
- $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('text', 'name')->createView();
- $html = $this->renderRow($view, array('label' => 'foo&bar'));
- $this->assertMatchesXpath($html,
- '/div
- [
- ./label[@for="name"][.="[trans]foo&bar[/trans]"]
- /following-sibling::input[@id="name"]
- ]
- '
- );
- }
- public function testRepeatedRow()
- {
- $form = $this->factory->createNamed('repeated', 'name');
- $form->addError(new FormError('Error!'));
- $view = $form->createView();
- $html = $this->renderRow($view);
- $this->assertMatchesXpath($html,
- '/ul
- [./li[.="[trans]Error![/trans]"]]
- [count(./li)=1]
- /following-sibling::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 testRest()
- {
- $view = $this->factory->createNamedBuilder('form', 'name')
- ->add('field1', 'text')
- ->add('field2', 'repeated')
- ->add('field3', 'text')
- ->add('field4', 'text')
- ->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,
- '/input
- [@type="hidden"]
- [@id="name__token"]
- /following-sibling::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]
- '
- );
- }
- public function testRestWithChildrenForms()
- {
- $child1 = $this->factory->createNamedBuilder('form', 'child1')
- ->add('field1', 'text')
- ->add('field2', 'text')
- ->getForm();
- $child2 = $this->factory->createNamedBuilder('form', 'child2')
- ->add('field1', 'text')
- ->add('field2', 'text')
- ->getForm();
- $view = $this->factory->createNamedBuilder('form', 'parent')
- ->getForm()
- ->add($child1)
- ->add($child2)
- ->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,
- '/input[@type="hidden"][@id="parent__token"]
- /following-sibling::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]
- '
- );
- }
- public function testRestAndRepeatedWithRow()
- {
- $view = $this->factory->createNamedBuilder('form', 'name')
- ->add('first', 'text')
- ->add('password', 'repeated')
- ->getForm()
- ->createView();
- $this->renderRow($view['password']);
- $html = $this->renderRest($view);
- $this->assertMatchesXpath($html,
- '/input
- [@type="hidden"]
- [@id="name__token"]
- /following-sibling::div
- [
- ./label[@for="name_first"]
- /following-sibling::input[@type="text"][@id="name_first"]
- ]
- [count(.//input)=1]
- '
- );
- }
- public function testRestAndRepeatedWithRowPerField()
- {
- $view = $this->factory->createNamedBuilder('form', 'name')
- ->add('first', 'text')
- ->add('password', 'repeated')
- ->getForm()
- ->createView();
- $this->renderRow($view['password']['first']);
- $this->renderRow($view['password']['second']);
- $html = $this->renderRest($view);
- $this->assertMatchesXpath($html,
- '/input
- [@type="hidden"]
- [@id="name__token"]
- /following-sibling::div
- [
- ./label[@for="name_first"]
- /following-sibling::input[@type="text"][@id="name_first"]
- ]
- [count(.//input)=1]
- [count(.//label)=1]
- '
- );
- }
- public function testRestAndRepeatedWithWidgetPerField()
- {
- $view = $this->factory->createNamedBuilder('form', 'name')
- ->add('first', 'text')
- ->add('password', 'repeated')
- ->getForm()
- ->createView();
- // The password form is considered as rendered as all its childrend
- // are rendered
- $this->renderWidget($view['password']['first']);
- $this->renderWidget($view['password']['second']);
- $html = $this->renderRest($view);
- $this->assertMatchesXpath($html,
- '/input
- [@type="hidden"]
- [@id="name__token"]
- /following-sibling::div
- [
- ./label[@for="name_first"]
- /following-sibling::input[@type="text"][@id="name_first"]
- ]
- [count(//input)=2]
- [count(//label)=1]
- '
- );
- }
- public function testCollection()
- {
- $form = $this->factory->createNamed('collection', 'name', array('a', 'b'), array(
- 'type' => 'text',
- ));
- $this->assertWidgetMatchesXpath($form->createView(), array(),
- '/div
- [
- ./div[./input[@type="text"][@value="a"]]
- /following-sibling::div[./input[@type="text"][@value="b"]]
- ]
- [count(./div[./input])=2]
- '
- );
- }
- public function testCollectionRow()
- {
- $collection = $this->factory->createNamedBuilder(
- 'collection',
- 'collection',
- array('a', 'b'),
- array('type' => 'text')
- );
- $form = $this->factory->createNamedBuilder('form', 'form')
- ->add($collection)
- ->getForm();
- $this->assertWidgetMatchesXpath($form->createView(), array(),
- '/div
- [
- ./input[@type="hidden"][@id="form__token"]
- /following-sibling::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"]
- ]
- ]
- ]
- ]
- [count(.//input)=3]
- '
- );
- }
- public function testForm()
- {
- $form = $this->factory->createNamedBuilder('form', 'name')
- ->add('firstName', 'text')
- ->add('lastName', 'text')
- ->getForm();
- $this->assertWidgetMatchesXpath($form->createView(), array(),
- '/div
- [
- ./input[@type="hidden"][@id="name__token"]
- /following-sibling::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"]
- ]
- ]
- [count(.//input)=3]
- '
- );
- }
- public function testRepeated()
- {
- $form = $this->factory->createNamed('repeated', 'name', 'foobar', array(
- 'type' => 'text',
- ));
- $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"]
- ]
- ]
- [count(.//input)=2]
- '
- );
- }
- public function testSearchInputName()
- {
- $form = $this->factory->createNamedBuilder('form', 'full')
- ->add('name', 'search')
- ->getForm();
- $this->assertWidgetMatchesXpath($form->createView(), array(),
- '/div
- [
- ./input[@type="hidden"][@id="full__token"]
- /following-sibling::div
- [
- ./label[@for="full_name"]
- /following-sibling::input[@type="search"][@id="full_name"][@name="full[name]"]
- ]
- ]
- [count(//input)=2]
- '
- );
- }
- public function testLabelHasNoId()
- {
- $form = $this->factory->createNamed('text', 'name');
- $html = $this->renderRow($form->createView());
- $this->assertMatchesXpath($html,
- '/div
- [
- ./label[@for="name"][not(@id)]
- /following-sibling::input[@id="name"]
- ]
- '
- );
- }
- /**
- * @dataProvider themeBlockInheritanceProvider
- */
- public function testThemeBlockInheritance($theme)
- {
- $view = $this->factory
- ->createNamed('email', 'name')
- ->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('form', 'child')
- ->add('field', 'text')
- ->getForm();
- $view = $this->factory->createNamedBuilder('form', 'parent')
- ->add('field', 'text')
- ->getForm()
- ->add($child)
- ->createView()
- ;
- $this->setTheme($view, $parentTheme);
- $this->setTheme($view['child'], $childTheme);
- $this->assertWidgetMatchesXpath($view, array(),
- '/div
- [
- ./input[@type="hidden"]
- /following-sibling::div
- [
- ./label[.="parent"]
- /following-sibling::input[@type="text"]
- ]
- /following-sibling::div
- [
- ./label
- /following-sibling::div
- [
- ./div
- [
- ./label[.="child"]
- /following-sibling::input[@type="text"]
- ]
- ]
- ]
- ]
- '
- );
- }
- }
|