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/Adapter/Pdo/PgsqlTest.php

199 lines
6.8 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 $
*/
require_once 'Zend/Db/Adapter/Pdo/TestCommon.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
* @group Zend_Db_Adapter
*/
class Zend_Db_Adapter_Pdo_PgsqlTest extends Zend_Db_Adapter_Pdo_TestCommon
{
protected $_numericDataTypes = array(
Zend_Db::INT_TYPE => Zend_Db::INT_TYPE,
Zend_Db::BIGINT_TYPE => Zend_Db::BIGINT_TYPE,
Zend_Db::FLOAT_TYPE => Zend_Db::FLOAT_TYPE,
'INTEGER' => Zend_Db::INT_TYPE,
'SERIAL' => Zend_Db::INT_TYPE,
'SMALLINT' => Zend_Db::INT_TYPE,
'BIGINT' => Zend_Db::BIGINT_TYPE,
'BIGSERIAL' => Zend_Db::BIGINT_TYPE,
'DECIMAL' => Zend_Db::FLOAT_TYPE,
'DOUBLE PRECISION' => Zend_Db::FLOAT_TYPE,
'NUMERIC' => Zend_Db::FLOAT_TYPE,
'REAL' => Zend_Db::FLOAT_TYPE
);
public function testAdapterDescribeTablePrimaryAuto()
{
$desc = $this->_db->describeTable('zfbugs');
$this->assertTrue($desc['bug_id']['PRIMARY']);
$this->assertEquals(1, $desc['bug_id']['PRIMARY_POSITION']);
$this->assertTrue($desc['bug_id']['IDENTITY']);
}
/**
* Test the Adapter's insert() method.
* This requires providing an associative array of column=>value pairs.
*/
public function testAdapterInsert()
{
$row = array (
'bug_description' => 'New bug',
'bug_status' => 'NEW',
'created_on' => '2007-04-02',
'updated_on' => '2007-04-02',
'reported_by' => 'micky',
'assigned_to' => 'goofy'
);
$rowsAffected = $this->_db->insert('zfbugs', $row);
$this->assertEquals(1, $rowsAffected);
$lastInsertId = $this->_db->lastInsertId('zfbugs', 'bug_id');
$lastSequenceId = $this->_db->lastSequenceId('zfbugs_bug_id_seq');
$this->assertEquals((string) $lastInsertId, (string) $lastSequenceId,
'Expected last insert id to be equal to last sequence id');
$this->assertEquals('5', (string) $lastInsertId,
'Expected new id to be 5');
}
public function testAdapterInsertSequence()
{
$row = array (
'product_id' => $this->_db->nextSequenceId('zfproducts_seq'),
'product_name' => 'Solaris',
);
$rowsAffected = $this->_db->insert('zfproducts', $row);
$this->assertEquals(1, $rowsAffected);
$lastInsertId = $this->_db->lastInsertId('zfproducts');
$lastSequenceId = $this->_db->lastSequenceId('zfproducts_seq');
$this->assertEquals((string) $lastInsertId, (string) $lastSequenceId,
'Expected last insert id to be equal to last sequence id');
$this->assertEquals('4', (string) $lastInsertId,
'Expected new id to be 4');
}
public function testAdapterInsertDbExpr()
{
$bugs = $this->_db->quoteIdentifier('zfbugs');
$bug_id = $this->_db->quoteIdentifier('bug_id', true);
$bug_description = $this->_db->quoteIdentifier('bug_description', true);
$expr = new Zend_Db_Expr('2+3');
$row = array (
'bug_id' => $expr,
'bug_description' => 'New bug 5',
'bug_status' => 'NEW',
'created_on' => '2007-04-02',
'updated_on' => '2007-04-02',
'reported_by' => 'micky',
'assigned_to' => 'goofy',
'verified_by' => 'dduck'
);
$rowsAffected = $this->_db->insert('zfbugs', $row);
$this->assertEquals(1, $rowsAffected);
$value = $this->_db->fetchOne("SELECT $bug_description FROM $bugs WHERE $bug_id = 5");
$this->assertEquals('New bug 5', $value);
}
/**
* Test that quote() takes an array and returns
* an imploded string of comma-separated, quoted elements.
*/
public function testAdapterQuoteArray()
{
$array = array("it's", 'all', 'right!');
$value = $this->_db->quote($array);
$this->assertEquals("'it''s', 'all', 'right!'", $value);
}
/**
* test that quote() escapes a double-quote
* character in a string.
*/
public function testAdapterQuoteDoubleQuote()
{
$value = $this->_db->quote('St John"s Wort');
$this->assertEquals("'St John\"s Wort'", $value);
}
/**
* test that quote() escapes a single-quote
* character in a string.
*/
public function testAdapterQuoteSingleQuote()
{
$string = "St John's Wort";
$value = $this->_db->quote($string);
$this->assertEquals("'St John''s Wort'", $value);
}
/**
* test that quoteInto() escapes a double-quote
* character in a string.
*/
public function testAdapterQuoteIntoDoubleQuote()
{
$value = $this->_db->quoteInto('id=?', 'St John"s Wort');
$this->assertEquals("id='St John\"s Wort'", $value);
}
/**
* test that quoteInto() escapes a single-quote
* character in a string.
*/
public function testAdapterQuoteIntoSingleQuote()
{
$value = $this->_db->quoteInto('id = ?', 'St John\'s Wort');
$this->assertEquals("id = 'St John''s Wort'", $value);
}
function getDriver()
{
return 'Pdo_Pgsql';
}
/**
* @group ZF-3972
*/
public function testCharacterVarying()
{
$this->_util->createTable('zf_pgsql_charvary',
array('pg_id' => 'character varying(4) NOT NULL',
'pg_info' => "character varying(1) NOT NULL DEFAULT 'A'::character varying"));
$description = $this->_db->describeTable('zf_pgsql_charvary');
$this->_util->dropTable('zf_pgsql_charvary');
$this->assertEquals(null , $description['pg_id']['DEFAULT']);
$this->assertEquals('A', $description['pg_info']['DEFAULT']);
}
}