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/Statement/OracleTest.php

135 lines
4.8 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 $
*/
require_once 'Zend/Db/Statement/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_Statement
*/
class Zend_Db_Statement_OracleTest extends Zend_Db_Statement_TestCommon
{
public function testStatementBindParamByPosition()
{
$this->markTestSkipped($this->getDriver() . ' does not support bound parameters by position');
}
public function testStatementBindValueByPosition()
{
$this->markTestSkipped($this->getDriver() . ' does not support bound parameters by position');
}
public function testStatementErrorCodeKeyViolation()
{
$this->markTestIncomplete($this->getDriver() . ' does not return error codes correctly.');
}
public function testStatementErrorInfoKeyViolation()
{
$this->markTestIncomplete($this->getDriver() . ' does not return error codes correctly.');
}
public function testStatementExecuteWithParams()
{
$products = $this->_db->quoteIdentifier('zfproducts');
$product_id = $this->_db->quoteIdentifier('product_id');
$product_name = $this->_db->quoteIdentifier('product_name');
$stmt = $this->_db->prepare("INSERT INTO $products ($product_id, $product_name) VALUES (:product_id, :product_name)");
$stmt->execute(array('product_id' => 4, 'product_name' => 'Solaris'));
$select = $this->_db->select()
->from('zfproducts')
->where("$product_id = 4");
$result = $this->_db->fetchAll($select);
$stmt->closeCursor();
$this->assertEquals(array(array('product_id'=>4, 'product_name'=>'Solaris')), $result);
}
public function testStatementFetchAllStyleBoth()
{
$this->markTestIncomplete($this->getDriver() . ' driver does not support fetchAll(FETCH_BOTH)');
}
public function testStatementGetColumnMeta()
{
$this->markTestIncomplete($this->getDriver() . ' has not implemented getColumnMeta() yet [ZF-1424]');
}
public function testStatementNextRowset()
{
$select = $this->_db->select()
->from('zfproducts');
$stmt = $this->_db->prepare($select->__toString());
try {
$stmt->nextRowset();
$this->fail('Expected to catch Zend_Db_Statement_Oracle_Exception');
} catch (Zend_Exception $e) {
$this->assertType('Zend_Db_Statement_Oracle_Exception', $e,
'Expecting object of type Zend_Db_Statement_Oracle_Exception, got '.get_class($e));
$this->assertEquals('HYC00 Optional feature not implemented', $e->getMessage());
}
$stmt->closeCursor();
}
/**
* @group ZF-5927
*/
public function testStatementReturnNullWithEmptyField()
{
$products = $this->_db->quoteIdentifier('zfproducts');
$product_id = $this->_db->quoteIdentifier('product_id');
$product_name = $this->_db->quoteIdentifier('product_name');
$stmt = $this->_db->prepare("INSERT INTO $products ($product_id, $product_name) VALUES (:product_id, :product_name)");
$stmt->execute(array('product_id' => 4, 'product_name' => null));
$select = $this->_db->select()
->from('zfproducts')
->where("$product_id = 4");
$result = $this->_db->fetchAll($select);
$this->assertTrue(array_key_exists('product_name', $result[0]), 'fetchAll must return null for empty fields with Oracle');
$result = $this->_db->fetchRow($select);
$this->assertTrue(array_key_exists('product_name', $result), 'fetchRow must return null for empty fields with Oracle');
}
public function testStatementSetFetchModeBoth()
{
$this->markTestIncomplete($this->getDriver() . ' does not implement FETCH_BOTH correctly.');
}
public function getDriver()
{
return 'Oracle';
}
}