| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169 |
- <?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_CycleTest::main() if this source file is executed directly.
- if (! defined("PHPUnit_MAIN_METHOD")) {
- define("PHPUnit_MAIN_METHOD", "Zend_View_Helper_CycleTest::main");
- }
- /** Zend_View_Helper_Cycle */
- require_once 'Zend/View/Helper/Cycle.php';
- /**
- * Test class for Zend_View_Helper_Cycle.
- *
- * @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_CycleTest extends PHPUnit_Framework_TestCase
- {
- /**
- * @var Zend_View_Helper_Cycle
- */
- public $helper;
- /**
- * Runs the test methods of this class.
- *
- * @return void
- */
- public static function main()
- {
- $suite = new PHPUnit_Framework_TestSuite("Zend_View_Helper_CycleTest");
- $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.
- *
- * @return void
- */
- public function setUp()
- {
- $this->helper = new Zend_View_Helper_Cycle();
- }
- /**
- * Tears down the fixture, for example, close a network connection.
- * This method is called after a test is executed.
- *
- * @return void
- */
- public function tearDown()
- {
- unset($this->helper);
- }
- public function testCycleMethodReturnsObjectInstance()
- {
- $cycle = $this->helper->cycle();
- $this->assertTrue($cycle instanceof Zend_View_Helper_Cycle);
- }
- public function testAssignAndGetValues()
- {
- $this->helper->assign(array('a', 1, 'asd'));
- $this->assertEquals(array('a', 1, 'asd'), $this->helper->getAll());
- }
- public function testCycleMethod()
- {
- $this->helper->cycle(array('a', 1, 'asd'));
- $this->assertEquals(array('a', 1, 'asd'), $this->helper->getAll());
- }
- public function testToString()
- {
- $this->helper->cycle(array('a', 1, 'asd'));
- $this->assertEquals('a', (string) $this->helper->toString());
- }
- public function testNextValue()
- {
- $this->helper->assign(array('a', 1, 3));
- $this->assertEquals('a', (string) $this->helper->next());
- $this->assertEquals(1, (string) $this->helper->next());
- $this->assertEquals(3, (string) $this->helper->next());
- $this->assertEquals('a', (string) $this->helper->next());
- $this->assertEquals(1, (string) $this->helper->next());
- }
- public function testPrevValue()
- {
- $this->helper->assign(array(4, 1, 3));
- $this->assertEquals(3, (string) $this->helper->prev());
- $this->assertEquals(1, (string) $this->helper->prev());
- $this->assertEquals(4, (string) $this->helper->prev());
- $this->assertEquals(3, (string) $this->helper->prev());
- $this->assertEquals(1, (string) $this->helper->prev());
- }
- public function testRewind()
- {
- $this->helper->assign(array(5, 8, 3));
- $this->assertEquals(5, (string) $this->helper->next());
- $this->assertEquals(8, (string) $this->helper->next());
- $this->helper->rewind();
- $this->assertEquals(5, (string) $this->helper->next());
- $this->assertEquals(8, (string) $this->helper->next());
- }
- public function testMixedMethods()
- {
- $this->helper->assign(array(5, 8, 3));
- $this->assertEquals(5, (string) $this->helper->next());
- $this->assertEquals(5, (string) $this->helper->current());
- $this->assertEquals(8, (string) $this->helper->next());
- $this->assertEquals(5, (string) $this->helper->prev());
- }
- public function testTwoCycles()
- {
- $this->helper->assign(array(5, 8, 3));
- $this->assertEquals(5, (string) $this->helper->next());
- $this->assertEquals(2, (string) $this->helper->cycle(array(2,38,1),'cycle2')->next());
- $this->assertEquals(8, (string) $this->helper->cycle()->next());
- $this->assertEquals(38, (string) $this->helper->setName('cycle2')->next());
- }
- public function testTwoCyclesInLoop()
- {
- $expected = array(5,4,2,3);
- $expected2 = array(7,34,8,6);
- for($i=0;$i<4;$i++) {
- $this->assertEquals($expected[$i], (string) $this->helper->cycle($expected)->next());
- $this->assertEquals($expected2[$i], (string) $this->helper->cycle($expected2,'cycle2')->next());
- }
- }
- }
- // Call Zend_View_Helper_CycleTest::main() if this source file is executed directly.
- if (PHPUnit_MAIN_METHOD == "Zend_View_Helper_CycleTest::main") {
- Zend_View_Helper_CycleTest::main();
- }
|