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/Test/DbStatementTest.php

167 lines
4.6 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_Test
* @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: DbStatementTest.php 17363 2009-08-03 07:40:18Z bkarwin $
*/
require_once dirname(__FILE__)."/../../TestHelper.php";
require_once "Zend/Test/DbAdapter.php";
require_once "Zend/Test/DbStatement.php";
/**
* @category Zend
* @package Zend_Test
* @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_Test
*/
class Zend_Test_DbStatementTest extends PHPUnit_Framework_TestCase
{
public function testRowCountDefault()
{
$stmt = new Zend_Test_DbStatement();
$this->assertEquals(0, $stmt->rowCount());
}
public function testSetRowCount()
{
$stmt = new Zend_Test_DbStatement();
$stmt->setRowCount(10);
$this->assertEquals(10, $stmt->rowCount());
}
public function testCreateSelectStatementWithRows()
{
$rows = array("foo", "bar");
$stmt = Zend_Test_DbStatement::createSelectStatement($rows);
$this->assertType('Zend_Test_DbStatement', $stmt);
$this->assertEquals($rows, $stmt->fetchAll());
}
public function testCreateInsertStatementWithRowCount()
{
$stmt = Zend_Test_DbStatement::createInsertStatement(1234);
$this->assertType('Zend_Test_DbStatement', $stmt);
$this->assertEquals(1234, $stmt->rowCount());
}
public function testCreateUpdateStatementWithRowCount()
{
$stmt = Zend_Test_DbStatement::createUpdateStatement(1234);
$this->assertType('Zend_Test_DbStatement', $stmt);
$this->assertEquals(1234, $stmt->rowCount());
}
public function testCreateDeleteStatementWithRowCount()
{
$stmt = Zend_Test_DbStatement::createDeleteStatement(1234);
$this->assertType('Zend_Test_DbStatement', $stmt);
$this->assertEquals(1234, $stmt->rowCount());
}
public function testSetFetchRow()
{
$row = array("foo");
$stmt = new Zend_Test_DbStatement();
$stmt->append($row);
$this->assertEquals($row, $stmt->fetch());
}
public function testFetchDefault()
{
$stmt = new Zend_Test_DbStatement();
$this->assertFalse($stmt->fetch());
}
public function testFetchResult_FromEmptyResultStack()
{
$row = array("foo");
$stmt = new Zend_Test_DbStatement();
$stmt->append($row);
$stmt->append($row);
$this->assertTrue($stmt->fetch() !== false);
$this->assertTrue($stmt->fetch() !== false);
$this->assertFalse($stmt->fetch());
}
public function testFetchColumnDefault()
{
$stmt = new Zend_Test_DbStatement();
$this->assertFalse($stmt->fetchColumn());
}
public function testFetchColumn()
{
$row = array("foo" => "bar", "bar" => "baz");
$stmt = new Zend_Test_DbStatement();
$stmt->append($row);
$this->assertEquals("baz", $stmt->fetchColumn(1));
}
public function testFetchColumn_OutOfBounds()
{
$this->setExpectedException("Zend_Db_Statement_Exception");
$row = array("foo" => "bar", "bar" => "baz");
$stmt = new Zend_Test_DbStatement();
$stmt->append($row);
$stmt->fetchColumn(1234);
}
public function testFetchObject()
{
$row = array("foo" => "bar", "bar" => "baz");
$stmt = new Zend_Test_DbStatement();
$stmt->append($row);
$object = $stmt->fetchObject();
$this->assertType('stdClass', $object);
$this->assertEquals('bar', $object->foo);
$this->assertEquals('baz', $object->bar);
}
public function testFetchObject_ClassNotExists_ThrowsException()
{
$this->setExpectedException("Zend_Db_Statement_Exception");
$row = array("foo" => "bar", "bar" => "baz");
$stmt = new Zend_Test_DbStatement();
$stmt->append($row);
$object = $stmt->fetchObject("anInvalidClassName");
}
}