8398c9048d
code was modified slightly, so the code differs from the original downloadable 1.9.5 version
218 lines
6.7 KiB
PHP
218 lines
6.7 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-2007 Zend Technologies USA Inc. (http://www.zend.com)
|
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
|
* @version $Id: Firebird.php 6847 2007-11-18 05:24:21Z peptolab $
|
|
*/
|
|
|
|
|
|
/**
|
|
* @see Zend_Db_TestUtil_Common
|
|
*/
|
|
require_once 'Zend/Db/TestUtil/Common.php';
|
|
|
|
|
|
PHPUnit_Util_Filter::addFileToFilter(__FILE__);
|
|
|
|
|
|
/**
|
|
* @category Zend
|
|
* @package Zend_Db
|
|
* @subpackage Table
|
|
* @copyright Copyright (c) 2005-2007 Zend Technologies USA Inc. (http://www.zend.com)
|
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
|
*/
|
|
class Zend_Db_TestUtil_Firebird extends Zend_Db_TestUtil_Common
|
|
{
|
|
public function tearDown()
|
|
{
|
|
$this->_setUpDatabase(false);
|
|
}
|
|
|
|
|
|
private function _getConnString()
|
|
{
|
|
return '"' .
|
|
TESTS_ZEND_DB_ADAPTER_FIREBIRD_HOSTNAME .
|
|
( TESTS_ZEND_DB_ADAPTER_FIREBIRD_PORT ? '/' . TESTS_ZEND_DB_ADAPTER_FIREBIRD_PORT : '' ) .
|
|
TESTS_ZEND_DB_ADAPTER_FIREBIRD_DATABASE .
|
|
'" USER "' .
|
|
TESTS_ZEND_DB_ADAPTER_FIREBIRD_USERNAME .
|
|
'" PASSWORD "' .
|
|
TESTS_ZEND_DB_ADAPTER_FIREBIRD_PASSWORD .
|
|
'";';
|
|
|
|
}
|
|
|
|
private function _setUpDatabase($create = true)
|
|
{
|
|
$temp_file = tempnam(sys_get_temp_dir(), 'fbtest.sql');
|
|
$cmd = 'CONNECT ' . $this->_getConnString() .
|
|
'DROP DATABASE;' .
|
|
( $create ? 'CREATE DATABASE ' . $this->_getConnString() : '');
|
|
|
|
file_put_contents($temp_file, $cmd);
|
|
exec('"TESTS_ZEND_DB_ADAPTER_FIREBIRD_BINPATH" -i ' . $temp_file, $output, $return_var);
|
|
unlink($temp_file);
|
|
}
|
|
|
|
public function setUp(Zend_Db_Adapter_Abstract $db)
|
|
{
|
|
$this->_setUpDatabase();
|
|
|
|
parent::setUp($db);
|
|
|
|
|
|
$this->createSequence('zfbugs_seq');
|
|
$this->createSequence('zfproducts_seq');
|
|
|
|
$zfbugs_seq = $this->_db->quoteIdentifier('zfbugs_seq');
|
|
$zfproducts_seq = $this->_db->quoteIdentifier('zfproducts_seq');
|
|
|
|
$this->_rawQuery("SET GENERATOR $zfbugs_seq TO 4");
|
|
$this->_rawQuery("SET GENERATOR $zfproducts_seq TO 3");
|
|
}
|
|
|
|
protected function _getDataProducts()
|
|
{
|
|
return array(
|
|
array('product_id' => 1, 'product_name' => 'Windows'),
|
|
array('product_id' => 2, 'product_name' => 'Linux'),
|
|
array('product_id' => 3, 'product_name' => 'OS X'),
|
|
);
|
|
}
|
|
|
|
protected function _getColumnsBugs()
|
|
{
|
|
return array(
|
|
'bug_id' => 'IDENTITY',
|
|
'bug_description' => 'VARCHAR(100)',
|
|
'bug_status' => 'VARCHAR(20)',
|
|
'created_on' => 'TIMESTAMP',
|
|
'updated_on' => 'TIMESTAMP',
|
|
'reported_by' => 'VARCHAR(100)',
|
|
'assigned_to' => 'VARCHAR(100)',
|
|
'verified_by' => 'VARCHAR(100)'
|
|
);
|
|
}
|
|
|
|
protected function _getDataBugs()
|
|
{
|
|
return array(
|
|
array(
|
|
'bug_id' => 1,
|
|
'bug_description' => 'System needs electricity to run',
|
|
'bug_status' => 'NEW',
|
|
'created_on' => '2007-04-01',
|
|
'updated_on' => '2007-04-01',
|
|
'reported_by' => 'goofy',
|
|
'assigned_to' => 'mmouse',
|
|
'verified_by' => 'dduck'
|
|
),
|
|
array(
|
|
'bug_id' => 2,
|
|
'bug_description' => 'Implement Do What I Mean function',
|
|
'bug_status' => 'VERIFIED',
|
|
'created_on' => '2007-04-02',
|
|
'updated_on' => '2007-04-02',
|
|
'reported_by' => 'goofy',
|
|
'assigned_to' => 'mmouse',
|
|
'verified_by' => 'dduck'
|
|
),
|
|
array(
|
|
'bug_id' => 3,
|
|
'bug_description' => 'Where are my keys?',
|
|
'bug_status' => 'FIXED',
|
|
'created_on' => '2007-04-03',
|
|
'updated_on' => '2007-04-03',
|
|
'reported_by' => 'dduck',
|
|
'assigned_to' => 'mmouse',
|
|
'verified_by' => 'dduck'
|
|
),
|
|
array(
|
|
'bug_id' => 4,
|
|
'bug_description' => 'Bug no product',
|
|
'bug_status' => 'INCOMPLETE',
|
|
'created_on' => '2007-04-04',
|
|
'updated_on' => '2007-04-04',
|
|
'reported_by' => 'mmouse',
|
|
'assigned_to' => 'goofy',
|
|
'verified_by' => 'dduck'
|
|
)
|
|
);
|
|
}
|
|
|
|
protected function _getColumnsDocuments()
|
|
{
|
|
return array(
|
|
'doc_id' => 'INTEGER NOT NULL',
|
|
'doc_clob' => 'BLOB',
|
|
'doc_blob' => 'BLOB',
|
|
'PRIMARY KEY' => 'doc_id'
|
|
);
|
|
}
|
|
|
|
public function getParams(array $constants = array())
|
|
{
|
|
$constants = array(
|
|
'host' => 'TESTS_ZEND_DB_ADAPTER_FIREBIRD_HOSTNAME',
|
|
'username' => 'TESTS_ZEND_DB_ADAPTER_FIREBIRD_USERNAME',
|
|
'password' => 'TESTS_ZEND_DB_ADAPTER_FIREBIRD_PASSWORD',
|
|
'dbname' => 'TESTS_ZEND_DB_ADAPTER_FIREBIRD_DATABASE',
|
|
'port' => 'TESTS_ZEND_DB_ADAPTER_FIREBIRD_PORT'
|
|
);
|
|
return parent::getParams($constants);
|
|
}
|
|
|
|
public function getSqlType($type)
|
|
{
|
|
if ($type == 'IDENTITY') {
|
|
return 'INTEGER NOT NULL PRIMARY KEY';
|
|
}
|
|
return $type;
|
|
}
|
|
|
|
protected function _getSqlCreateSequence($sequenceName)
|
|
{
|
|
$sequenceName = $this->_db->quoteIdentifier($sequenceName);
|
|
return "CREATE GENERATOR $sequenceName";
|
|
}
|
|
|
|
protected function _getSqlDropSequence($sequenceName)
|
|
{
|
|
$sequenceName = $this->_db->quoteIdentifier($sequenceName);
|
|
return "DROP GENERATOR $sequenceName";
|
|
}
|
|
|
|
protected function _rawQuery($sql)
|
|
{
|
|
$conn = $this->_db->getConnection();
|
|
try {
|
|
ibase_query($conn, $sql);
|
|
ibase_commit($conn);
|
|
} catch (Exception $e) {
|
|
if (!stripos(' '.$sql, 'drop')){
|
|
$e = ibase_errmsg();
|
|
require_once 'Zend/Db/Exception.php';
|
|
throw new Zend_Db_Exception("SQL parse error for \"$sql\": ".$e);
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|