/tests/Zend/Application/Resource/ModulesTest.php
https://github.com/christophervalles/Zend-Framework-Skeleton · PHP · 217 lines · 139 code · 27 blank · 51 comment · 4 complexity · 8c7894ff73aa2499c14db137ef7896d0 MD5 · raw file
- <?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-2011 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @version $Id: ModulesTest.php 24227 2011-07-12 19:41:46Z matthew $
- */
- if (!defined('PHPUnit_MAIN_METHOD')) {
- define('PHPUnit_MAIN_METHOD', 'Zend_Application_Resource_ModulesTest::main');
- }
- /**
- * Zend_Loader_Autoloader
- */
- require_once 'Zend/Loader/Autoloader.php';
- /**
- * @category Zend
- * @package Zend_Application
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2011 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_ModulesTest 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');
- require_once dirname(__FILE__) . '/../_files/ZfAppBootstrap.php';
- $this->bootstrap = new ZfAppBootstrap($this->application);
- $this->front = Zend_Controller_Front::getInstance();
- $this->front->resetInstance();
- }
- public function tearDown()
- {
- // 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 testInitializationTriggersNothingIfNoModulesRegistered()
- {
- require_once 'Zend/Application/Resource/Modules.php';
- $this->bootstrap->registerPluginResource('Frontcontroller', array());
- $resource = new Zend_Application_Resource_Modules(array());
- $resource->setBootstrap($this->bootstrap);
- $resource->init();
- $this->assertFalse(isset($this->bootstrap->default));
- $this->assertFalse(isset($this->bootstrap->foo));
- $this->assertFalse(isset($this->bootstrap->bar));
- }
- /**
- * @group ZF-6803
- * @group ZF-7158
- */
- public function testInitializationTriggersDefaultModuleBootstrapWhenDiffersFromApplicationBootstrap()
- {
- require_once 'Zend/Application/Resource/Modules.php';
- $this->bootstrap->registerPluginResource('Frontcontroller', array(
- 'moduleDirectory' => dirname(__FILE__) . '/../_files/modules',
- ));
- $resource = new Zend_Application_Resource_Modules(array());
- $resource->setBootstrap($this->bootstrap);
- $resource->init();
- $this->assertTrue(isset($this->bootstrap->default));
- }
- public function testInitializationShouldTriggerModuleBootstrapsWhenTheyExist()
- {
- require_once 'Zend/Application/Resource/Modules.php';
- $this->bootstrap->registerPluginResource('Frontcontroller', array(
- 'moduleDirectory' => dirname(__FILE__) . '/../_files/modules',
- ));
- $resource = new Zend_Application_Resource_Modules(array());
- $resource->setBootstrap($this->bootstrap);
- $resource->init();
- $this->assertTrue($this->bootstrap->foo, 'foo failed');
- $this->assertTrue($this->bootstrap->bar, 'bar failed');
- }
- /**
- * @group ZF-6803
- * @group ZF-7158
- */
- public function testInitializationShouldSkipModulesWithoutBootstraps()
- {
- require_once 'Zend/Application/Resource/Modules.php';
- $this->bootstrap->registerPluginResource('Frontcontroller', array(
- 'moduleDirectory' => dirname(__FILE__) . '/../_files/modules',
- ));
- $resource = new Zend_Application_Resource_Modules(array());
- $resource->setBootstrap($this->bootstrap);
- $resource->init();
- $bootstraps = $resource->getExecutedBootstraps();
- $this->assertEquals(4, count((array)$bootstraps));
- $this->assertArrayHasKey('bar', (array)$bootstraps);
- $this->assertArrayHasKey('foo-bar', (array)$bootstraps);
- $this->assertArrayHasKey('foo', (array)$bootstraps);
- $this->assertArrayHasKey('default', (array)$bootstraps);
- }
- /**
- * @group ZF-6803
- * @group ZF-7158
- */
- public function testShouldReturnExecutedBootstrapsWhenComplete()
- {
- require_once 'Zend/Application/Resource/Modules.php';
- $this->bootstrap->registerPluginResource('Frontcontroller', array(
- 'moduleDirectory' => dirname(__FILE__) . '/../_files/modules',
- ));
- $resource = new Zend_Application_Resource_Modules(array());
- $resource->setBootstrap($this->bootstrap);
- $bootstraps = $resource->init();
- $this->assertEquals(4, count((array)$bootstraps));
- $this->assertArrayHasKey('bar', (array)$bootstraps);
- $this->assertArrayHasKey('foo-bar', (array)$bootstraps);
- $this->assertArrayHasKey('foo', (array)$bootstraps);
- $this->assertArrayHasKey('default', (array)$bootstraps);
- }
-
- public function testBootstrapBootstrapsIsOwnMethod()
- {
- require_once 'Zend/Application/Resource/Modules.php';
- $this->bootstrap->registerPluginResource('Frontcontroller', array(
- 'moduleDirectory' => dirname(__FILE__) . '/../_files/modules',
- ));
- $resource = new ZendTest_Application_Resource_ModulesHalf(array());
- $resource->setBootstrap($this->bootstrap);
- $bootstraps = $resource->init();
- $this->assertEquals(3, count((array)$bootstraps));
- }
- /**
- * @group ZF-11548
- */
- public function testGetExecutedBootstrapsShouldReturnArrayObject()
- {
- require_once 'Zend/Application/Resource/Modules.php';
- $this->bootstrap->registerPluginResource('Frontcontroller', array(
- 'moduleDirectory' => dirname(__FILE__) . '/../_files/modules',
- ));
- $resource = new Zend_Application_Resource_Modules(array());
- $resource->setBootstrap($this->bootstrap);
- $resource->init();
- $bootstraps = $resource->getExecutedBootstraps();
- $this->assertType('ArrayObject', $bootstraps);
- }
- }
- require_once 'Zend/Application/Resource/Modules.php';
- class ZendTest_Application_Resource_ModulesHalf
- extends Zend_Application_Resource_Modules
- {
- protected function bootstrapBootstraps($bootstraps)
- {
- array_pop($bootstraps);
- return parent::bootstrapBootstraps($bootstraps);
- }
- }
- if (PHPUnit_MAIN_METHOD == 'Zend_Application_Resource_ModulesTest::main') {
- Zend_Application_Resource_ModulesTest::main();
- }