8398c9048d
code was modified slightly, so the code differs from the original downloadable 1.9.5 version
127 lines
3 KiB
PHP
127 lines
3 KiB
PHP
<?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 ZendX
|
|
* @package ZendX_Db
|
|
* @subpackage UnitTests
|
|
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
|
* @version $Id: $
|
|
*/
|
|
|
|
|
|
/**
|
|
* Test helper
|
|
*/
|
|
|
|
|
|
require_once dirname(__FILE__) . '/../../TestHelper.php';
|
|
|
|
/**
|
|
* @see Zend_Loader
|
|
*/
|
|
require_once 'Zend/Loader.php';
|
|
|
|
/**
|
|
* @see Zend_Db
|
|
*/
|
|
require_once 'Zend/Db.php';
|
|
|
|
/**
|
|
* PHPUnit_Framework_TestCase
|
|
*/
|
|
require_once 'PHPUnit/Framework/TestCase.php';
|
|
|
|
/**
|
|
* PHPUnit_Util_Filter
|
|
*/
|
|
require_once 'PHPUnit/Util/Filter.php';
|
|
|
|
|
|
PHPUnit_Util_Filter::addFileToFilter(__FILE__);
|
|
|
|
|
|
/**
|
|
* @category ZendX
|
|
* @package ZendX_Db
|
|
* @subpackage UnitTests
|
|
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
|
*/
|
|
abstract class ZendX_Db_TestSetup extends PHPUnit_Framework_TestCase
|
|
{
|
|
/**
|
|
* @var ZendX_Db_TestUtil
|
|
*/
|
|
protected $_util = null;
|
|
|
|
/**
|
|
* @var Zend_Db_Adapter_Abstract
|
|
*/
|
|
protected $_db = null;
|
|
|
|
public abstract function getDriver();
|
|
|
|
/**
|
|
* Subclasses should call parent::setUp() before
|
|
* doing their own logic, e.g. creating metadata.
|
|
*/
|
|
public function setUp()
|
|
{
|
|
$this->_setUpTestUtil();
|
|
$this->_setUpAdapter();
|
|
$this->_util->setUp($this->_db);
|
|
}
|
|
|
|
/**
|
|
* Get a TestUtil class for the current RDBMS brand.
|
|
*/
|
|
protected function _setUpTestUtil()
|
|
{
|
|
$driver = $this->getDriver();
|
|
$utilClass = "ZendX_Db_TestUtil_{$driver}";
|
|
Zend_Loader::loadClass($utilClass);
|
|
$this->_util = new $utilClass();
|
|
}
|
|
|
|
/**
|
|
* Open a new database connection
|
|
*/
|
|
protected function _setUpAdapter()
|
|
{
|
|
$params = $this->_util->getParams();
|
|
$params['adapterNamespace'] = 'ZendX_Db_Adapter';
|
|
$this->_db = Zend_Db::($this->getDriver(), $params);
|
|
try {
|
|
$conn = $this->_db->getConnection();
|
|
} catch (Zend_Exception $e) {
|
|
$this->_db = null;
|
|
$this->assertType('Zend_Db_Adapter_Exception', $e,
|
|
'Expecting Zend_Db_Adapter_Exception, got ' . get_class($e));
|
|
$this->markTestSkipped($e->getMessage());
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Subclasses should call parent::tearDown() after
|
|
* doing their own logic, e.g. deleting metadata.
|
|
*/
|
|
public function tearDown()
|
|
{
|
|
$this->_util->tearDown();
|
|
$this->_db = null;
|
|
}
|
|
|
|
}
|