| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253 |
- <?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_DbTest::main');
- }
- /**
- * Zend_Loader_Autoloader
- */
- require_once 'Zend/Loader/Autoloader.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_DbTest 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);
- }
- public function tearDown()
- {
- 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 testAdapterIsNullByDefault()
- {
- require_once 'Zend/Application/Resource/Db.php';
- $resource = new Zend_Application_Resource_Db();
- $this->assertNull($resource->getAdapter());
- }
- public function testDbIsNullByDefault()
- {
- require_once 'Zend/Application/Resource/Db.php';
- $resource = new Zend_Application_Resource_Db();
- $this->assertNull($resource->getDbAdapter());
- }
- public function testParamsAreEmptyByDefault()
- {
- require_once 'Zend/Application/Resource/Db.php';
- $resource = new Zend_Application_Resource_Db();
- $params = $resource->getParams();
- $this->assertTrue(empty($params));
- }
- public function testIsDefaultTableAdapter()
- {
- require_once 'Zend/Application/Resource/Db.php';
- $resource = new Zend_Application_Resource_Db();
- $this->assertTrue($resource->isDefaultTableAdapter());
- }
- public function testPassingDatabaseConfigurationSetsObjectState()
- {
- require_once 'Zend/Application/Resource/Db.php';
- $config = array(
- 'adapter' => 'Pdo_Sqlite',
- 'params' => array(
- 'dbname' => ':memory:',
- ),
- 'isDefaultTableAdapter' => false,
- );
- $resource = new Zend_Application_Resource_Db($config);
- $this->assertFalse($resource->isDefaultTableAdapter());
- $this->assertEquals($config['adapter'], $resource->getAdapter());
- $this->assertEquals($config['params'], $resource->getParams());
- }
- public function testInitShouldInitializeDbAdapter()
- {
- require_once 'Zend/Application/Resource/Db.php';
- $config = array(
- 'adapter' => 'Pdo_Sqlite',
- 'params' => array(
- 'dbname' => ':memory:',
- ),
- 'isDefaultTableAdapter' => false,
- );
- $resource = new Zend_Application_Resource_Db($config);
- $resource->init();
- $db = $resource->getDbAdapter();
- $this->assertTrue($db instanceof Zend_Db_Adapter_Pdo_Sqlite);
- }
- /**
- * @group ZF-10033
- */
- public function testSetDefaultMetadataCache()
- {
- $cache = Zend_Cache::factory('Core', 'Black Hole', array(
- 'lifetime' => 120,
- 'automatic_serialization' => true
- ));
- $config = array(
- 'adapter' => 'PDO_SQLite',
- 'params' => array(
- 'dbname' => ':memory:',
- ),
- 'defaultMetadataCache' => $cache,
- );
- $resource = new Zend_Application_Resource_Db($config);
- $resource->init();
- $this->assertTrue(Zend_Db_Table::getDefaultMetadataCache() instanceof Zend_Cache_Core);
- }
- /**
- * @group ZF-10033
- */
- 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);
- $config = array(
- 'bootstrap' => $this->bootstrap,
- 'adapter' => 'PDO_SQLite',
- 'params' => array(
- 'dbname' => ':memory:',
- ),
- 'defaultMetadataCache' => 'database',
- );
- $resource = new Zend_Application_Resource_Db($config);
- $resource->init();
- $this->assertTrue(Zend_Db_Table::getDefaultMetadataCache() instanceof Zend_Cache_Core);
- }
- /**
- * @group ZF-6620
- */
- public function testSetOptionFetchMode()
- {
- $config = array(
- 'bootstrap' => $this->bootstrap,
- 'adapter' => 'PDO_SQLite',
- 'params' => array(
- 'dbname' => ':memory:',
- 'options' => array(
- 'fetchMode' => 'obj'
- )
- ),
- );
- $resource = new Zend_Application_Resource_Db($config);
- $db = $resource->init();
- $this->assertEquals($db->getFetchMode(), Zend_Db::FETCH_OBJ);
- }
- /**
- * @group ZF-10543
- */
- public function testSetDefaultMetadataCacheThroughBootstrap()
- {
- $options = array(
- 'resources' => array(
- 'db' => array(
- 'adapter' => 'Pdo_Sqlite',
- 'params' => array(
- 'dbname' => ':memory:'
- ),
- 'defaultMetadataCache' => 'default'
- ),
- 'cachemanager' => array(
- 'default' => array(
- 'backend' => array('name' => 'black-hole')
- )
- )
- )
- );
- $this->bootstrap->setOptions($options);
- $this->bootstrap->bootstrap();
- $resource = $this->bootstrap->getResource('cachemanager');
- $this->assertEquals($resource->getCache('default'), Zend_Db_Table::getDefaultMetadataCache());
- }
- }
- if (PHPUnit_MAIN_METHOD == 'Zend_Application_Resource_DbTest::main') {
- Zend_Application_Resource_DbTest::main();
- }
|