You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cacert-testmgr/external/ZendFramework-1.9.5/tests/Zend/Db/TestUtil/Pdo/Pgsql.php

146 lines
4.4 KiB
PHTML

<?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: Pgsql.php 17363 2009-08-03 07:40:18Z bkarwin $
*/
/**
* @see Zend_Db_TestUtil_Pdo_Common
*/
require_once 'Zend/Db/TestUtil/Pdo/Common.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
*/
class Zend_Db_TestUtil_Pdo_Pgsql extends Zend_Db_TestUtil_Pdo_Common
{
public function setUp(Zend_Db_Adapter_Abstract $db)
{
$this->_db = $db;
$this->createSequence('zfproducts_seq');
parent::setUp($db);
}
public function getParams(array $constants = array())
{
$constants = array (
'host' => 'TESTS_ZEND_DB_ADAPTER_PDO_PGSQL_HOSTNAME',
'username' => 'TESTS_ZEND_DB_ADAPTER_PDO_PGSQL_USERNAME',
'password' => 'TESTS_ZEND_DB_ADAPTER_PDO_PGSQL_PASSWORD',
'dbname' => 'TESTS_ZEND_DB_ADAPTER_PDO_PGSQL_DATABASE'
);
return parent::getParams($constants);
}
public function getSchema()
{
return 'public';
}
/**
* For PostgreSQL, override the Products table to use an
* explicit sequence-based column.
*/
protected function _getColumnsProducts()
{
return array(
'product_id' => 'INT NOT NULL PRIMARY KEY',
'product_name' => 'VARCHAR(100)'
);
}
protected function _getDataProducts()
{
$data = parent::_getDataProducts();
foreach ($data as &$row) {
$row['product_id'] = new Zend_Db_Expr('NEXTVAL('.$this->_db->quote('zfproducts_seq').')');
}
return $data;
}
public function getSqlType($type)
{
if ($type == 'IDENTITY') {
return 'SERIAL PRIMARY KEY';
}
if ($type == 'DATETIME') {
return 'TIMESTAMP';
}
if ($type == 'CLOB') {
return 'TEXT';
}
if ($type == 'BLOB') {
return 'TEXT';
}
return $type;
}
protected function _getSqlCreateTable($tableName)
{
$tableList = $this->_db->fetchCol('SELECT relname AS table_name FROM pg_class '
. $this->_db->quoteInto(' WHERE relkind = \'r\' AND relname = ?', $tableName)
);
if (in_array($tableName, $tableList)) {
return null;
}
return 'CREATE TABLE ' . $this->_db->quoteIdentifier($tableName);
}
protected function _getSqlDropTable($tableName)
{
$tableList = $this->_db->fetchCol('SELECT relname AS table_name FROM pg_class '
. $this->_db->quoteInto(' WHERE relkind = \'r\' AND relname = ?', $tableName)
);
if (in_array($tableName, $tableList)) {
return 'DROP TABLE ' . $this->_db->quoteIdentifier($tableName) . ' CASCADE';
}
return null;
}
protected function _getSqlCreateSequence($sequenceName)
{
$seqList = $this->_db->fetchCol('SELECT relname AS sequence_name FROM pg_class '
. $this->_db->quoteInto(' WHERE relkind = \'S\' AND relname = ?', $sequenceName)
);
if (in_array($sequenceName, $seqList)) {
return null;
}
return 'CREATE SEQUENCE ' . $this->_db->quoteIdentifier($sequenceName);
}
protected function _getSqlDropSequence($sequenceName)
{
$seqList = $this->_db->fetchCol('SELECT relname AS sequence_name FROM pg_class '
. $this->_db->quoteInto(' WHERE relkind = \'S\' AND relname = ?', $sequenceName)
);
if (in_array($sequenceName, $seqList)) {
return 'DROP SEQUENCE ' . $this->_db->quoteIdentifier($sequenceName);
}
return null;
}
}