| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186 |
- <?php
- /**
- * Zend Framework
- *
- * LICENSE
- *
- * This source file is subject to the new BSD license that is bundled
- * with this package in the file LICENSE.txt.
- * It is also available through the world-wide-web at this URL:
- * http://framework.zend.com/license/new-bsd
- * If you did not receive a copy of the license and are unable to
- * obtain it through the world-wide-web, please send an email
- * to license@zend.com so we can send you a copy immediately.
- *
- * @category Zend
- * @package Zend_View
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @version $Id$
- */
- // Call Zend_View_Helper_FormTest::main() if this source file is executed directly.
- if (!defined("PHPUnit_MAIN_METHOD")) {
- define("PHPUnit_MAIN_METHOD", "Zend_View_Helper_FormTest::main");
- }
- require_once 'Zend/View.php';
- require_once 'Zend/View/Helper/Form.php';
- /**
- * Test class for Zend_View_Helper_Form.
- *
- * @category Zend
- * @package Zend_View
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @group Zend_View
- * @group Zend_View_Helper
- */
- class Zend_View_Helper_FormTest extends PHPUnit_Framework_TestCase
- {
- /**
- * Runs the test methods of this class.
- *
- * @access public
- * @static
- */
- public static function main()
- {
- $suite = new PHPUnit_Framework_TestSuite("Zend_View_Helper_FormTest");
- $result = PHPUnit_TextUI_TestRunner::run($suite);
- }
- /**
- * Sets up the fixture, for example, open a network connection.
- * This method is called before a test is executed.
- *
- * @access protected
- */
- protected function setUp()
- {
- $this->view = new Zend_View();
- $this->helper = new Zend_View_Helper_Form();
- $this->helper->setView($this->view);
- }
- /**
- * Tears down the fixture, for example, close a network connection.
- * This method is called after a test is executed.
- *
- * @access protected
- */
- protected function tearDown()
- {
- }
- public function testFormWithSaneInput()
- {
- $form = $this->helper->form('foo', array('action' => '/foo', 'method' => 'get'));
- $this->assertRegexp('/<form[^>]*(id="foo")/', $form);
- $this->assertRegexp('/<form[^>]*(action="\/foo")/', $form);
- $this->assertRegexp('/<form[^>]*(method="get")/', $form);
- }
- public function testFormWithInputNeedingEscapesUsesViewEscaping()
- {
- $form = $this->helper->form('<&foo');
- $this->assertContains($this->view->escape('<&foo'), $form);
- }
- /**
- * @group ZF-3832
- */
- public function testEmptyIdShouldNotRenderIdAttribute()
- {
- $form = $this->helper->form('', array('action' => '/foo', 'method' => 'get'));
- $this->assertNotRegexp('/<form[^>]*(id="")/', $form);
- $form = $this->helper->form('', array('action' => '/foo', 'method' => 'get', 'id' => null));
- $this->assertNotRegexp('/<form[^>]*(id="")/', $form);
- }
-
- /**
- * @group ZF-10791
- */
- public function testPassingNameAsAttributeShouldOverrideFormName()
- {
- $form = $this->helper->form('OrigName', array('action' => '/foo', 'method' => 'get', 'name' => 'SomeNameAttr'));
- $this->assertNotRegexp('/<form[^>]*(name="OrigName")/', $form);
- $this->assertRegexp('/<form[^>]*(name="SomeNameAttr")/', $form);
- }
-
- /**
- * @group ZF-10791
- */
- public function testNotSpecifyingFormNameShouldNotRenderNameAttrib()
- {
- $form = $this->helper->form('', array('action' => '/foo', 'method' => 'get'));
- $this->assertNotRegexp('/<form[^>]*(name=".*")/', $form);
- }
-
- /**
- * @group ZF-10791
- */
- public function testSpecifyingFormNameShouldRenderNameAttrib()
- {
- $form = $this->helper->form('FormName', array('action' => '/foo', 'method' => 'get'));
- $this->assertRegexp('/<form[^>]*(name="FormName")/', $form);
- }
-
- /**
- * @group ZF-10791
- */
- public function testPassingEmptyNameAttributeToUnnamedFormShouldNotRenderNameAttrib()
- {
- $form = $this->helper->form('', array('action' => '/foo', 'method' => 'get', 'name' => NULL));
- $this->assertNotRegexp('/<form[^>]*(name=".*")/', $form);
- }
-
- /**
- * @group ZF-10791
- */
- public function testPassingEmptyNameAttributeToNamedFormShouldNotOverrideNameAttrib()
- {
- $form = $this->helper->form('RealName', array('action' => '/foo', 'method' => 'get', 'name' => NULL));
- $this->assertRegexp('/<form[^>]*(name="RealName")/', $form);
- }
-
- /**
- * @group ZF-10791
- */
- public function testNameAttributeShouldBeOmittedWhenUsingXhtml1Strict()
- {
- $this->view->doctype('XHTML1_STRICT');
- $form = $this->helper->form('FormName', array('action' => '/foo', 'method' => 'get'));
- $this->assertNotRegexp('/<form[^>]*(name="FormName")/', $form);
- }
-
- /**
- * @group ZF-10791
- */
- public function testNameAttributeShouldBeOmittedWhenUsingXhtml11()
- {
- $this->view->doctype('XHTML11');
- $form = $this->helper->form('FormName', array('action' => '/foo', 'method' => 'get'));
- $this->assertNotRegexp('/<form[^>]*(name="FormName")/', $form);
- }
- public function testEmptyActionShouldNotRenderActionAttributeInHTML5()
- {
- $this->view->doctype(Zend_View_Helper_Doctype::HTML5);
- $form = $this->helper->form('', array('action' => ''));
- $this->assertNotRegexp('/<form[^>]*(action="")/', $form);
- $form = $this->helper->form('', array('action' => null));
- $this->assertNotRegexp('/<form[^>]*(action="")/', $form);
- $form = $this->helper->form('');
- $this->assertNotRegexp('/<form[^>]*(action="")/', $form);
- }
- }
- // Call Zend_View_Helper_FormTest::main() if this source file is executed directly.
- if (PHPUnit_MAIN_METHOD == "Zend_View_Helper_FormTest::main") {
- Zend_View_Helper_FormTest::main();
- }
|