| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249 |
- <?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-2012 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_MultidbTest::main');
- }
- /**
- * Zend_Loader_Autoloader
- */
- require_once 'Zend/Loader/Autoloader.php';
- /**
- * @see Zend_Application_Resource_Multidb
- */
- require_once 'Zend/Application/Resource/Multidb.php';
- require_once 'Zend/Db/Table.php';
- /**
- * @category Zend
- * @package Zend_Application
- * @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_Application
- */
- class Zend_Application_Resource_MultidbTest extends PHPUnit_Framework_TestCase
- {
- protected $_dbOptions = array('db1' => array('adapter' => 'pdo_mysql','dbname' => 'db1','password' => 'XXXX','username' => 'webuser'),
- 'db2' => array('adapter' => 'pdo_pgsql', 'dbname' => 'db2', 'password' => 'notthatpublic', 'username' => 'dba'));
- 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_Controller_Front::getInstance()->resetInstance();
- }
- public function tearDown()
- {
- Zend_Db_Table::setDefaultAdapter(null);
- Zend_Db_Table::setDefaultMetadataCache();
- // 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 testInitializationInitializesResourcePluginObject()
- {
- $resource = new Zend_Application_Resource_Multidb(array());
- $resource->setBootstrap($this->bootstrap);
- $resource->setOptions($this->_dbOptions);
- $res = $resource->init();
- $this->assertTrue($res instanceof Zend_Application_Resource_Multidb);
- }
- public function testDbsAreSetupCorrectlyObject()
- {
- $resource = new Zend_Application_Resource_Multidb(array());
- $resource->setBootstrap($this->bootstrap);
- $resource->setOptions($this->_dbOptions);
- $res = $resource->init();
- $this->assertTrue($res->getDb('db1') instanceof Zend_Db_Adapter_Pdo_Mysql);
- $this->assertTrue($res->getDb('db2') instanceof Zend_Db_Adapter_Pdo_Pgsql);
- }
- public function testGetDefaultIsSetAndReturnedObject()
- {
- $options = $this->_dbOptions;
- $options['db2']['default'] = true;
- $resource = new Zend_Application_Resource_Multidb(array());
- $resource->setBootstrap($this->bootstrap);
- $resource->setOptions($options);
- $res = $resource->init();
- $this->assertTrue($res->getDb() instanceof Zend_Db_Adapter_Pdo_Pgsql);
- $this->assertTrue($res->isDefault($res->getDb('db2')));
- $this->assertTrue($res->isDefault('db2'));
- $options = $this->_dbOptions;
- $options['db2']['isDefaultTableAdapter'] = true;
- $resource = new Zend_Application_Resource_Multidb(array());
- $resource->setBootstrap($this->bootstrap);
- $resource->setOptions($options);
- $res = $resource->init();
- $this->assertTrue($res->getDb() instanceof Zend_Db_Adapter_Pdo_Pgsql);
- $this->assertTrue($res->isDefault($res->getDb('db2')));
- $this->assertTrue($res->isDefault('db2'));
- $this->assertTrue(Zend_Db_Table::getDefaultAdapter() instanceof Zend_Db_Adapter_Pdo_Pgsql);
- }
- public function testGetDefaultRandomWhenNoDefaultWasSetObject()
- {
- $resource = new Zend_Application_Resource_Multidb(array());
- $resource->setBootstrap($this->bootstrap);
- $resource->setOptions($this->_dbOptions);
- $res = $resource->init();
- $this->assertTrue($res->getDefaultDb() instanceof Zend_Db_Adapter_Pdo_Mysql);
- $this->assertTrue($res->getDefaultDb(true) instanceof Zend_Db_Adapter_Pdo_Mysql);
- $this->assertNull($res->getDefaultDb(false));
- }
- public function testGetDbWithFaultyDbNameThrowsException()
- {
- $resource = new Zend_Application_Resource_Multidb(array());
- $resource->setBootstrap($this->bootstrap);
- $resource->setOptions($this->_dbOptions);
- $res = $resource->init();
- try {
- $res->getDb('foobar');
- $this->fail('An exception should have been thrown');
- } catch(Zend_Application_Resource_Exception $e) {
- $this->assertEquals($e->getMessage(), 'A DB adapter was tried to retrieve, but was not configured');
- }
- }
- /**
- * @group ZF-9131
- */
- public function testParamDefaultAndAdapterAreNotPassedOnAsParameter()
- {
- $resource = new Zend_Application_Resource_Multidb(array());
- $resource->setBootstrap($this->bootstrap);
- $options = $this->_dbOptions;
- $options['db2']['isDefaultTableAdapter'] = true;
- $resource->setOptions($options);
- $res = $resource->init();
- $expected = array(
- 'dbname' => 'db2',
- 'password' => 'notthatpublic',
- 'username' => 'dba',
- 'charset' => null,
- 'persistent' => false,
- 'options' => array(
- 'caseFolding' => 0,
- 'autoQuoteIdentifiers' => true,
- 'fetchMode' => 2),
- 'driver_options' => array());
- $this->assertEquals($expected, $res->getDb('db2')->getConfig());
- $options = $this->_dbOptions;
- $options['db2']['default'] = true;
- $resource->setOptions($options);
- $res = $resource->init();
- $this->assertEquals($expected, $res->getDb('db2')->getConfig());
- }
- /**
- * @group ZF-10049
- */
- public function testSetDefaultMetadataCache()
- {
- $cache = Zend_Cache::factory('Core', 'Black Hole', array(
- 'lifetime' => 120,
- 'automatic_serialization' => true
- ));
- $options = $this->_dbOptions;
- $options['defaultMetadataCache'] = $cache;
- $resource = new Zend_Application_Resource_Multidb($options);
- $resource->init();
- $this->assertTrue(Zend_Db_Table::getDefaultMetadataCache() instanceof Zend_Cache_Core);
- }
- /**
- * @group ZF-10049
- */
- public function testSetDefaultMetadataCacheFromCacheManager()
- {
- $configCache = array(
- 'database' => array(
- 'frontend' => array(
- 'name' => 'Core',
- 'options' => array(
- 'lifetime' => 120,
- 'automatic_serialization' => true
- )
- ),
- 'backend' => array(
- 'name' => 'Black Hole'
- )
- )
- );
- $this->bootstrap->registerPluginResource('cachemanager', $configCache);
- $options = $this->_dbOptions;
- $options['defaultMetadataCache'] = 'database';
- $resource = new Zend_Application_Resource_Multidb($options);
- $resource->setBootstrap($this->bootstrap);
- $resource->init();
- $this->assertTrue(Zend_Db_Table::getDefaultMetadataCache() instanceof Zend_Cache_Core);
- }
- }
- if (PHPUnit_MAIN_METHOD == 'Zend_Application_Resource_MultidbTest::main') {
- Zend_Application_Resource_MultidbTest::main();
- }
|