| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215 |
- <?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_Application
- * @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$
- */
- if (!defined('PHPUnit_MAIN_METHOD')) {
- define('PHPUnit_MAIN_METHOD', 'Zend_Application_Resource_NavigationTest::main');
- }
- /**
- * Zend_Loader_Autoloader
- */
- require_once 'Zend/Loader/Autoloader.php';
- /**
- * @category Zend
- * @package Zend_Application
- * @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_Application
- */
- class Zend_Application_Resource_NavigationTest extends PHPUnit_Framework_TestCase
- {
- public static function main()
- {
- $suite = new PHPUnit_Framework_TestSuite(__CLASS__);
- $result = PHPUnit_TextUI_TestRunner::run($suite);
- }
- public function setUp()
- {
- // Store original autoloaders
- $this->loaders = spl_autoload_functions();
- if (!is_array($this->loaders)) {
- // spl_autoload_functions does not return empty array when no
- // autoloaders registered...
- $this->loaders = array();
- }
- Zend_Loader_Autoloader::resetInstance();
- $this->autoloader = Zend_Loader_Autoloader::getInstance();
- $this->application = new Zend_Application('testing');
- $this->bootstrap = new Zend_Application_Bootstrap_Bootstrap($this->application);
- Zend_Registry::_unsetInstance();
- }
- public function tearDown()
- {
- Zend_Navigation_Page::setDefaultPageType();
- // Restore original autoloaders
- $loaders = spl_autoload_functions();
- foreach ($loaders as $loader) {
- spl_autoload_unregister($loader);
- }
- foreach ($this->loaders as $loader) {
- spl_autoload_register($loader);
- }
- // Reset autoloader instance so it doesn't affect other tests
- Zend_Loader_Autoloader::resetInstance();
- }
- public function testInitializationInitializesNavigationObject()
- {
- $this->bootstrap->registerPluginResource('view');
- $resource = new Zend_Application_Resource_Navigation(array());
- $resource->setBootstrap($this->bootstrap);
- $resource->init();
- $this->assertTrue($resource->getContainer() instanceof Zend_Navigation_Container);
- $this->bootstrap->unregisterPluginResource('view');
- }
- public function testInitializationReturnsNavigationObject()
- {
- $this->bootstrap->registerPluginResource('view');
- $resource = new Zend_Application_Resource_Navigation(array());
- $resource->setBootstrap($this->bootstrap);
- $test = $resource->init();
- $this->assertTrue($test instanceof Zend_Navigation);
- $this->bootstrap->unregisterPluginResource('view');
- }
- public function testContainerIsStoredInViewhelper()
- {
- $options = array('pages'=> array(new Zend_Navigation_Page_Mvc(array(
- 'action' => 'index',
- 'controller' => 'index'))));
- $this->bootstrap->registerPluginResource('view');
- $resource = new Zend_Application_Resource_Navigation($options);
- $resource->setBootstrap($this->bootstrap)->init();
- $view = $this->bootstrap->getPluginResource('view')->getView();
- $number = $view->getHelper('navigation')->navigation()->count();
- $this->assertEquals($number,1);
- $this->bootstrap->unregisterPluginResource('view');
- }
- public function testContainerIsStoredInRegistry()
- {
- $options = array('pages'=> array(new Zend_Navigation_Page_Mvc(array(
- 'action' => 'index',
- 'controller' => 'index'))), 'storage' => array('registry' => true));
- $resource = new Zend_Application_Resource_Navigation($options);
- $resource->setBootstrap($this->bootstrap)->init();
- $key = Zend_Application_Resource_Navigation::DEFAULT_REGISTRY_KEY;
- $this->assertEquals(Zend_Registry::isRegistered($key),true);
- $container = Zend_Registry::get($key);
- $number = $container->count();
- $this->assertEquals($number,1);
- }
- /**
- * @group ZF-6747
- */
- public function testViewMethodIsUsedWhenAvailableInsteadOfResourcePlugin()
- {
- require_once '_files/ZfAppBootstrapCustomView.php';
- $bootstrap = new ZfAppBootstrapCustomView($this->application);
- $bootstrap->registerPluginResource('view');
- $view = $bootstrap->bootstrap('view')->view;
- $this->assertEquals($view->setInMethodByTest,true);
- }
- /**
- * @group ZF-10959
- */
- public function testDefaultPageTypeIsSet()
- {
- $this->bootstrap->registerPluginResource('view');
- $this->bootstrap->getPluginResource('view')->getView();
- $options = array('defaultPageType' => 'foobar',
- 'pages'=> array(array(
- 'action' => 'index',
- 'controller' => 'index')));
- $results = array();
- $resource = new Zend_Application_Resource_Navigation($options);
- try {
- $resource->setBootstrap($this->bootstrap)->init();
- $this->fail('An exception should have been thrown but wasn\'t');
- } catch(Zend_Exception $e) {
- $this->assertTrue(true);
- }
- $this->bootstrap->unregisterPluginResource('view');
- }
- /**
- * @group ZF-7461
- */
- public function testRegistryIsUsedWhenNumericRegistryValueIsGiven()
- {
- // Register view for cases where registry should/is not (be) used
- $this->bootstrap->registerPluginResource('view');
- $this->bootstrap->getPluginResource('view')->getView();
- $options1 = array(
- 'pages'=> array(new Zend_Navigation_Page_Mvc(array(
- 'action' => 'index',
- 'controller' => 'index'))),
- 'storage' => array('registry' => true));
- $options = array($options1,
- array_merge($options1, array('storage' => array('registry' => '1'))), // Original culprit here
- array_merge($options1, array('storage' => array('registry' => 1))),
- array_merge($options1, array('storage' => array('registry' => false))));
- $results = array();
- $key = Zend_Application_Resource_Navigation::DEFAULT_REGISTRY_KEY;
- foreach($options as $option) {
- $resource = new Zend_Application_Resource_Navigation($option);
- $resource->setBootstrap($this->bootstrap)->init();
- $results[] = Zend_Registry::get($key) instanceof Zend_Navigation;;
- Zend_Registry::set($key,null);
- }
- $this->assertEquals(array(true,true,true,false),$results);
- $this->bootstrap->unregisterPluginResource('view');
- }
- }
- if (PHPUnit_MAIN_METHOD == 'Zend_Application_Resource_NavigationTest::main') {
- Zend_Application_Resource_NavigationTest::main();
- }
|