| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199 |
- <?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 'Zend/Acl.php';
- require_once 'Zend/Acl/Resource.php';
- require_once 'Zend/Acl/Role.php';
- require_once 'Zend/Controller/Front.php';
- require_once 'Zend/Config/Xml.php';
- require_once 'Zend/Registry.php';
- require_once 'Zend/Translate.php';
- require_once 'Zend/View.php';
- require_once 'Zend/Navigation.php';
- /**
- * Base class for navigation view helper tests
- *
- * @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
- */
- abstract class Zend_View_Helper_Navigation_TestAbstract
- extends PHPUnit_Framework_TestCase
- {
- const REGISTRY_KEY = 'Zend_Navigation';
- /**
- * Path to files needed for test
- *
- * @var string
- */
- protected $_files;
- /**
- * Class name for view helper to test
- *
- * @var string
- */
- protected $_helperName;
- /**
- * View helper
- *
- * @var Zend_View_Helper_Navigation_HelperAbstract
- */
- protected $_helper;
- /**
- * The first container in the config file (_files/navigation.xml)
- *
- * @var Zend_Navigation
- */
- protected $_nav1;
- /**
- * The second container in the config file (_files/navigation.xml)
- *
- * @var Zend_Navigation
- */
- protected $_nav2;
- /**
- * The third container in the config file (_files/navigation.xml)
- *
- * @var Zend_Navigation
- */
- protected $_nav3;
- private $_oldControllerDir;
- /**
- * Prepares the environment before running a test
- *
- */
- protected function setUp()
- {
- $cwd = dirname(__FILE__);
- // read navigation config
- $this->_files = $cwd . '/_files';
- $config = new Zend_Config_Xml($this->_files . '/navigation.xml');
- // setup containers from config
- $this->_nav1 = new Zend_Navigation($config->get('nav_test1'));
- $this->_nav2 = new Zend_Navigation($config->get('nav_test2'));
- $this->_nav3 = new Zend_Navigation($config->get('nav_test3'));
- // setup view
- $view = new Zend_View();
- $view->setScriptPath($cwd . '/_files/mvc/views');
- // setup front
- $front = Zend_Controller_Front::getInstance();
- $this->_oldControllerDir = $front->getControllerDirectory('test');
- $front->setControllerDirectory($cwd . '/_files/mvc/controllers');
- // create helper
- $this->_helper = new $this->_helperName();
- $this->_helper->setView($view);
- // set nav1 in helper as default
- $this->_helper->setContainer($this->_nav1);
- }
- /**
- * Cleans up the environment after running a test
- *
- */
- protected function tearDown()
- {
- $front = Zend_Controller_Front::getInstance();
- if ($this->_oldControllerDir) {
- $front->setControllerDirectory($this->_oldControllerDir, 'test');
- } else {
- $front->removeControllerDirectory('test');
- }
- }
- /**
- * Returns the contens of the exepcted $file
- * @param string $file
- * @return string
- */
- protected function _getExpected($file)
- {
- return file_get_contents($this->_files . '/expected/' . $file);
- }
- /**
- * Sets up ACL
- *
- * @return Zend_Acl
- */
- protected function _getAcl()
- {
- $acl = new Zend_Acl();
- $acl->addRole(new Zend_Acl_Role('guest'));
- $acl->addRole(new Zend_Acl_Role('member'), 'guest');
- $acl->addRole(new Zend_Acl_Role('admin'), 'member');
- $acl->addRole(new Zend_Acl_Role('special'), 'member');
- $acl->add(new Zend_Acl_Resource('guest_foo'));
- $acl->add(new Zend_Acl_Resource('member_foo'), 'guest_foo');
- $acl->add(new Zend_Acl_Resource('admin_foo', 'member_foo'));
- $acl->add(new Zend_Acl_Resource('special_foo'), 'member_foo');
- $acl->allow('guest', 'guest_foo');
- $acl->allow('member', 'member_foo');
- $acl->allow('admin', 'admin_foo');
- $acl->allow('special', 'special_foo');
- $acl->allow('special', 'admin_foo', 'read');
- return array('acl' => $acl, 'role' => 'special');
- }
- /**
- * Returns translator
- *
- * @return Zend_Translate
- */
- protected function _getTranslator()
- {
- $data = array(
- 'Page 1' => 'Side 1',
- 'Page 1.1' => 'Side 1.1',
- 'Page 2' => 'Side 2',
- 'Page 2.3' => 'Side 2.3',
- 'Page 2.3.3.1' => 'Side 2.3.3.1',
- 'Home' => 'Hjem',
- 'Go home' => 'Gå hjem'
- );
- return new Zend_Translate('array', $data, 'nb_NO');
- }
- }
|