| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <?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_Test
- * @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$
- */
- /**
- * @see Zend_Test_PHPUnit_Constraint_DomQuery
- */
- require_once 'Zend/Test/PHPUnit/Constraint/DomQuery.php';
- /**
- * @category Zend
- * @package Zend_Test
- * @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_Test
- * @group Zend_Test_PHPUnit
- */
- class Zend_Test_PHPUnit_Constraint_DomQueryTest extends PHPUnit_Framework_TestCase
- {
- /**
- * @group ZF-4010
- */
- public function testShouldAllowMatchingOfAttributeValues()
- {
- $html = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- <html>
- <head>
- <title>ZF Issue ZF-4010</title>
- </head>
- <body>
- <form>
- <fieldset id="fieldset-input"><legend>Inputs</legend>
- <ol>
- <li><input type="text" name="input[0]" id="input-0" value="value1" /></li>
- <li><input type="text" name="input[1]" id="input-1" value="value2" /></li>
- <li><input type="text" name="input[2]" id="input-2" value="" /></li>
- </ol>
- </fieldset>
- </form>
- </body>
- </html>';
- $assertion = new Zend_Test_PHPUnit_Constraint_DomQuery('input#input-0 @value');
- $result = $assertion->evaluate($html,
- Zend_Test_PHPUnit_Constraint_DomQuery::ASSERT_CONTENT_CONTAINS, 'value1');
- $this->assertTrue($result);
- }
-
- /**
- * @group issue-303
- */
- public function testShouldAllowMatchingZeroCounts()
- {
- $html = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- <html>
- <head>
- <title>ZF Issue ZF-4010</title>
- </head>
- <body>
- <form>
- <fieldset id="fieldset-input"><legend>Inputs</legend>
- <ol>
- <li><input type="text" name="input[0]" id="input-0" value="value1" /></li>
- <li><input type="text" name="input[1]" id="input-1" value="value2" /></li>
- <li><input type="text" name="input[2]" id="input-2" value="" /></li>
- </ol>
- </fieldset>
- </form>
- </body>
- </html>';
- $assertion = new Zend_Test_PHPUnit_Constraint_DomQuery('input#input-3 @value');
- $result = $assertion->evaluate($html,
- Zend_Test_PHPUnit_Constraint_DomQuery::ASSERT_CONTENT_COUNT, 0);
- $this->assertTrue($result);
- }
- }
|