123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228 |
- <?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 AbstractTableLayoutTest extends AbstractLayoutTest
- {
- public function testRow()
- {
- $form = $this->factory->create('text', 'name');
- $form->addError(new FormError('Error!'));
- $context = $form->getContext();
- $html = $this->renderRow($context);
- $this->assertMatchesXpath($html,
- '/tr
- [
- ./td
- [./label[@for="name"]]
- /following-sibling::td
- [
- ./ul
- [./li[.="[trans]Error![/trans]"]]
- [count(./li)=1]
- /following-sibling::input[@id="name"]
- ]
- ]
- '
- );
- }
- public function testRepeatedRow()
- {
- $form = $this->factory->create('repeated', 'name');
- $html = $this->renderRow($form->getContext());
- $this->assertMatchesXpath($html,
- '/tr
- [
- ./td
- [./label[@for="name_first"]]
- /following-sibling::td
- [./input[@id="name_first"]]
- ]
- /following-sibling::tr
- [
- ./td
- [./label[@for="name_second"]]
- /following-sibling::td
- [./input[@id="name_second"]]
- ]
- [count(../tr)=2]
- '
- );
- }
- public function testRepeatedRowWithErrors()
- {
- $form = $this->factory->create('repeated', 'name');
- $form->addError(new FormError('Error!'));
- $context = $form->getContext();
- $html = $this->renderRow($context);
- $this->assertMatchesXpath($html,
- '/tr
- [./td[@colspan="2"]/ul
- [./li[.="[trans]Error![/trans]"]]
- ]
- /following-sibling::tr
- [
- ./td
- [./label[@for="name_first"]]
- /following-sibling::td
- [./input[@id="name_first"]]
- ]
- /following-sibling::tr
- [
- ./td
- [./label[@for="name_second"]]
- /following-sibling::td
- [./input[@id="name_second"]]
- ]
- [count(../tr)=3]
- '
- );
- }
- public function testRest()
- {
- $context = $this->factory->createBuilder('form', 'name')
- ->add('field1', 'text')
- ->add('field2', 'repeated')
- ->add('field3', 'text')
- ->add('field4', 'text')
- ->getForm()
- ->getContext();
- // Render field2 row -> does not implicitely call renderWidget because
- // it is a repeated field!
- $this->renderRow($context['field2']);
- // Render field3 widget
- $this->renderWidget($context['field3']);
- // Rest should only contain field1 and field4
- $html = $this->renderRest($context);
- $this->assertMatchesXpath($html,
- '/tr[@style="display: none"]
- [./td[@colspan="2"]/input
- [@type="hidden"]
- [@id="name__token"]
- ]
- /following-sibling::tr
- [
- ./td
- [./label[@for="name_field1"]]
- /following-sibling::td
- [./input[@id="name_field1"]]
- ]
- /following-sibling::tr
- [
- ./td
- [./label[@for="name_field4"]]
- /following-sibling::td
- [./input[@id="name_field4"]]
- ]
- [count(../tr)=3]
- [count(..//label)=2]
- [count(..//input)=3]
- '
- );
- }
- public function testCollection()
- {
- $form = $this->factory->create('collection', 'name', array(
- 'type' => 'text',
- 'data' => array('a', 'b'),
- ));
- $this->assertWidgetMatchesXpath($form->getContext(), array(),
- '/table
- [
- ./tr[./td/input[@type="text"][@value="a"]]
- /following-sibling::tr[./td/input[@type="text"][@value="b"]]
- ]
- [count(./tr[./td/input])=2]
- '
- );
- }
- public function testForm()
- {
- $context = $this->factory->createBuilder('form', 'name')
- ->add('firstName', 'text')
- ->add('lastName', 'text')
- ->getForm()
- ->getContext();
- $this->assertWidgetMatchesXpath($context, array(),
- '/table
- [
- ./tr[@style="display: none"]
- [./td[@colspan="2"]/input
- [@type="hidden"]
- [@id="name__token"]
- ]
- /following-sibling::tr
- [
- ./td
- [./label[@for="name_firstName"]]
- /following-sibling::td
- [./input[@id="name_firstName"]]
- ]
- /following-sibling::tr
- [
- ./td
- [./label[@for="name_lastName"]]
- /following-sibling::td
- [./input[@id="name_lastName"]]
- ]
- ]
- [count(.//input)=3]
- '
- );
- }
- public function testRepeated()
- {
- $form = $this->factory->create('repeated', 'name', array(
- 'type' => 'text',
- 'data' => 'foobar',
- ));
- $this->assertWidgetMatchesXpath($form->getContext(), array(),
- '/table
- [
- ./tr
- [
- ./td
- [./label[@for="name_first"]]
- /following-sibling::td
- [./input[@id="name_first"]]
- ]
- /following-sibling::tr
- [
- ./td
- [./label[@for="name_second"]]
- /following-sibling::td
- [./input[@id="name_second"]]
- ]
- ]
- [count(.//input)=2]
- '
- );
- }
- }
|