| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463 |
- <?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-2012 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @version $Id$
- */
- require_once dirname(__FILE__) . '/TestAbstract.php';
- require_once 'Zend/View/Helper/Navigation.php';
- /**
- * Tests Zend_View_Helper_Navigation
- *
- * @category Zend
- * @package Zend_View
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2012 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_Navigation_NavigationTest
- extends Zend_View_Helper_Navigation_TestAbstract
- {
- /**
- * Class name for view helper to test
- *
- * @var string
- */
- protected $_helperName = 'Zend_View_Helper_Navigation';
- /**
- * View helper
- *
- * @var Zend_View_Helper_Navigation
- */
- protected $_helper;
- public function testHelperEntryPointWithoutAnyParams()
- {
- $returned = $this->_helper->navigation();
- $this->assertEquals($this->_helper, $returned);
- $this->assertEquals($this->_nav1, $returned->getContainer());
- }
- public function testHelperEntryPointWithContainerParam()
- {
- $returned = $this->_helper->navigation($this->_nav2);
- $this->assertEquals($this->_helper, $returned);
- $this->assertEquals($this->_nav2, $returned->getContainer());
- }
- public function testShouldProxyToMenuHelperByDeafult()
- {
- // setup
- $oldReg = null;
- if (Zend_Registry::isRegistered(self::REGISTRY_KEY)) {
- $oldReg = Zend_Registry::get(self::REGISTRY_KEY);
- }
- Zend_Registry::set(self::REGISTRY_KEY, $this->_nav1);
- $this->_helper->setContainer(null);
- // result
- $expected = $this->_getExpected('menu/default1.html');
- $actual = $this->_helper->render();
- // teardown
- Zend_Registry::set(self::REGISTRY_KEY, $oldReg);
- $this->assertEquals($expected, $actual);
- }
- public function testHasContainer()
- {
- $oldContainer = $this->_helper->getContainer();
- $this->_helper->setContainer(null);
- $this->assertFalse($this->_helper->hasContainer());
- $this->_helper->setContainer($oldContainer);
- }
- public function testInjectingContainer()
- {
- // setup
- $this->_helper->setContainer($this->_nav2);
- $expected = array(
- 'menu' => $this->_getExpected('menu/default2.html'),
- 'breadcrumbs' => $this->_getExpected('bc/default.html')
- );
- $actual = array();
- // result
- $actual['menu'] = $this->_helper->render();
- $this->_helper->setContainer($this->_nav1);
- $actual['breadcrumbs'] = $this->_helper->breadcrumbs()->render();
- $this->assertEquals($expected, $actual);
- }
- public function testDisablingContainerInjection()
- {
- // setup
- $this->_helper->setInjectContainer(false);
- $this->_helper->menu()->setContainer(null);
- $this->_helper->breadcrumbs()->setContainer(null);
- $this->_helper->setContainer($this->_nav2);
- // result
- $expected = array(
- 'menu' => '',
- 'breadcrumbs' => ''
- );
- $actual = array(
- 'menu' => $this->_helper->render(),
- 'breadcrumbs' => $this->_helper->breadcrumbs()->render()
- );
- $this->assertEquals($expected, $actual);
- }
- public function testInjectingAcl()
- {
- // setup
- $acl = $this->_getAcl();
- $this->_helper->setAcl($acl['acl']);
- $this->_helper->setRole($acl['role']);
- $expected = $this->_getExpected('menu/acl.html');
- $actual = $this->_helper->render();
- $this->assertEquals($expected, $actual);
- }
- public function testDisablingAclInjection()
- {
- // setup
- $acl = $this->_getAcl();
- $this->_helper->setAcl($acl['acl']);
- $this->_helper->setRole($acl['role']);
- $this->_helper->setInjectAcl(false);
- $expected = $this->_getExpected('menu/default1.html');
- $actual = $this->_helper->render();
- $this->assertEquals($expected, $actual);
- }
- public function testInjectingTranslator()
- {
- $this->_helper->setTranslator($this->_getTranslator());
- $expected = $this->_getExpected('menu/translated.html');
- $actual = $this->_helper->render();
- $this->assertEquals($expected, $actual);
- }
- public function testDisablingTranslatorInjection()
- {
- $this->_helper->setTranslator($this->_getTranslator());
- $this->_helper->setInjectTranslator(false);
- $expected = $this->_getExpected('menu/default1.html');
- $actual = $this->_helper->render();
- $this->assertEquals($expected, $actual);
- }
- public function testSpecifyingDefaultProxy()
- {
- $expected = array(
- 'breadcrumbs' => $this->_getExpected('bc/default.html'),
- 'menu' => $this->_getExpected('menu/default1.html')
- );
- $actual = array();
- // result
- $this->_helper->setDefaultProxy('breadcrumbs');
- $actual['breadcrumbs'] = $this->_helper->render($this->_nav1);
- $this->_helper->setDefaultProxy('menu');
- $actual['menu'] = $this->_helper->render($this->_nav1);
- $this->assertEquals($expected, $actual);
- }
- public function testGetAclReturnsNullIfNoAclInstance()
- {
- $this->assertNull($this->_helper->getAcl());
- }
- public function testGetAclReturnsAclInstanceSetWithSetAcl()
- {
- $acl = new Zend_Acl();
- $this->_helper->setAcl($acl);
- $this->assertEquals($acl, $this->_helper->getAcl());
- }
- public function testGetAclReturnsAclInstanceSetWithSetDefaultAcl()
- {
- $acl = new Zend_Acl();
- Zend_View_Helper_Navigation_HelperAbstract::setDefaultAcl($acl);
- $actual = $this->_helper->getAcl();
- Zend_View_Helper_Navigation_HelperAbstract::setDefaultAcl(null);
- $this->assertEquals($acl, $actual);
- }
- public function testSetDefaultAclAcceptsNull()
- {
- $acl = new Zend_Acl();
- Zend_View_Helper_Navigation_HelperAbstract::setDefaultAcl($acl);
- Zend_View_Helper_Navigation_HelperAbstract::setDefaultAcl(null);
- $this->assertNull($this->_helper->getAcl());
- }
- public function testSetDefaultAclAcceptsNoParam()
- {
- $acl = new Zend_Acl();
- Zend_View_Helper_Navigation_HelperAbstract::setDefaultAcl($acl);
- Zend_View_Helper_Navigation_HelperAbstract::setDefaultAcl();
- $this->assertNull($this->_helper->getAcl());
- }
- public function testSetRoleAcceptsString()
- {
- $this->_helper->setRole('member');
- $this->assertEquals('member', $this->_helper->getRole());
- }
- public function testSetRoleAcceptsRoleInterface()
- {
- $role = new Zend_Acl_Role('member');
- $this->_helper->setRole($role);
- $this->assertEquals($role, $this->_helper->getRole());
- }
- public function testSetRoleAcceptsNull()
- {
- $this->_helper->setRole('member')->setRole(null);
- $this->assertNull($this->_helper->getRole());
- }
- public function testSetRoleAcceptsNoParam()
- {
- $this->_helper->setRole('member')->setRole();
- $this->assertNull($this->_helper->getRole());
- }
- public function testSetRoleThrowsExceptionWhenGivenAnInt()
- {
- try {
- $this->_helper->setRole(1337);
- $this->fail('An invalid argument was given, but a ' .
- 'Zend_View_Exception was not thrown');
- } catch (Zend_View_Exception $e) {
- $this->assertContains('$role must be a string', $e->getMessage());
- }
- }
- public function testSetRoleThrowsExceptionWhenGivenAnArbitraryObject()
- {
- try {
- $this->_helper->setRole(new stdClass());
- $this->fail('An invalid argument was given, but a ' .
- 'Zend_View_Exception was not thrown');
- } catch (Zend_View_Exception $e) {
- $this->assertContains('$role must be a string', $e->getMessage());
- }
- }
- public function testSetDefaultRoleAcceptsString()
- {
- $expected = 'member';
- Zend_View_Helper_Navigation_HelperAbstract::setDefaultRole($expected);
- $actual = $this->_helper->getRole();
- Zend_View_Helper_Navigation_HelperAbstract::setDefaultRole(null);
- $this->assertEquals($expected, $actual);
- }
- public function testSetDefaultRoleAcceptsRoleInterface()
- {
- $expected = new Zend_Acl_Role('member');
- Zend_View_Helper_Navigation_HelperAbstract::setDefaultRole($expected);
- $actual = $this->_helper->getRole();
- Zend_View_Helper_Navigation_HelperAbstract::setDefaultRole(null);
- $this->assertEquals($expected, $actual);
- }
- public function testSetDefaultRoleAcceptsNull()
- {
- Zend_View_Helper_Navigation_HelperAbstract::setDefaultRole(null);
- $this->assertNull($this->_helper->getRole());
- }
- public function testSetDefaultRoleAcceptsNoParam()
- {
- Zend_View_Helper_Navigation_HelperAbstract::setDefaultRole();
- $this->assertNull($this->_helper->getRole());
- }
- public function testSetDefaultRoleThrowsExceptionWhenGivenAnInt()
- {
- try {
- Zend_View_Helper_Navigation_HelperAbstract::setDefaultRole(1337);
- $this->fail('An invalid argument was given, but a ' .
- 'Zend_View_Exception was not thrown');
- } catch (Zend_View_Exception $e) {
- $this->assertContains('$role must be', $e->getMessage());
- }
- }
- public function testSetDefaultRoleThrowsExceptionWhenGivenAnArbitraryObject()
- {
- try {
- Zend_View_Helper_Navigation_HelperAbstract::setDefaultRole(new stdClass());
- $this->fail('An invalid argument was given, but a ' .
- 'Zend_View_Exception was not thrown');
- } catch (Zend_View_Exception $e) {
- $this->assertContains('$role must be', $e->getMessage());
- }
- }
- private $_errorMessage;
- public function toStringErrorHandler($code, $msg, $file, $line, array $c)
- {
- $this->_errorMessage = $msg;
- }
- public function testMagicToStringShouldNotThrowException()
- {
- set_error_handler(array($this, 'toStringErrorHandler'));
- $this->_helper->menu()->setPartial(array(1337));
- $this->_helper->__toString();
- restore_error_handler();
- $this->assertContains('array must contain two values', $this->_errorMessage);
- }
- public function testPageIdShouldBeNormalized()
- {
- $nl = Zend_View_Helper_Navigation::EOL;
- $container = new Zend_Navigation(array(
- array(
- 'label' => 'Page 1',
- 'id' => 'p1',
- 'uri' => 'p1'
- ),
- array(
- 'label' => 'Page 2',
- 'id' => 'p2',
- 'uri' => 'p2'
- )
- ));
- $expected = '<ul class="navigation">' . $nl
- . ' <li>' . $nl
- . ' <a id="menu-p1" href="p1">Page 1</a>' . $nl
- . ' </li>' . $nl
- . ' <li>' . $nl
- . ' <a id="menu-p2" href="p2">Page 2</a>' . $nl
- . ' </li>' . $nl
- . '</ul>';
- $actual = $this->_helper->render($container);
- $this->assertEquals($expected, $actual);
- }
-
- /**
- * @group ZF-10458
- */
- public function testFindCustomHelper()
- {
- $this->_helper->view->addHelperPath(
- $this->_files . '/helpers',
- 'My_View_Helper_Navigation'
- );
-
- $this->assertTrue(
- $this->_helper->findHelper('menu') instanceof
- My_View_Helper_Navigation_Menu
- );
- }
-
- /**
- * @group ZF-10458
- */
- public function testAddHelperPath()
- {
- $this->_helper->view->addHelperPath(
- $this->_files . '/helpers',
- 'My_View_Helper_Navigation'
- );
-
- $expected = array(
- 'Zend_View_Helper_' => array(
- 'Zend/View/Helper/',
- ),
- 'My_View_Helper_Navigation_' => array(
- $this->_files . '/helpers/',
- ),
- );
-
- $this->assertSame($expected, $this->_helper->view->getHelperPaths());
- }
-
- /**
- * @group ZF-10458
- */
- public function testRenderCustomHelper()
- {
- $this->_helper->view->addHelperPath(
- $this->_files . '/helpers',
- 'My_View_Helper_Navigation'
- );
-
- $this->assertSame('<menu/>', (string) $this->_helper->menu());
- }
- /**
- * @group ZF-6854
- */
- public function testRenderInvisibleItem()
- {
- $container = new Zend_Navigation(array(
- array(
- 'label' => 'Page 1',
- 'id' => 'p1',
- 'uri' => 'p1'
- ),
- array(
- 'label' => 'Page 2',
- 'id' => 'p2',
- 'uri' => 'p2',
- 'visible' => false
- )
- ));
- $render = $this->_helper->menu()->render($container);
- $this->assertFalse(strpos($render, 'p2'));
- $this->_helper->menu()->setRenderInvisible();
- $render = $this->_helper->menu()->render($container);
- $this->assertTrue(strpos($render, 'p2') !== false);
- }
- }
|