124 lines
3 KiB
PHP
124 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 Zend
|
||
|
* @package Zend_Db
|
||
|
* @subpackage UnitTests
|
||
|
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
|
||
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||
|
* @version $Id: TestSetup.php 17363 2009-08-03 07:40:18Z bkarwin $
|
||
|
*/
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Test helper
|
||
|
*/
|
||
|
require_once dirname(dirname(dirname(__FILE__))) . DIRECTORY_SEPARATOR . '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 Zend
|
||
|
* @package Zend_Db
|
||
|
* @subpackage UnitTests
|
||
|
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
|
||
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||
|
* @group Zend_Db
|
||
|
*/
|
||
|
abstract class Zend_Db_TestSetup extends PHPUnit_Framework_TestCase
|
||
|
{
|
||
|
/**
|
||
|
* @var Zend_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 = "Zend_Db_TestUtil_{$driver}";
|
||
|
Zend_Loader::loadClass($utilClass);
|
||
|
$this->_util = new $utilClass();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Open a new database connection
|
||
|
*/
|
||
|
protected function _setUpAdapter()
|
||
|
{
|
||
|
$this->_db = Zend_Db::factory($this->getDriver(), $this->_util->getParams());
|
||
|
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;
|
||
|
}
|
||
|
|
||
|
}
|