8398c9048d
code was modified slightly, so the code differs from the original downloadable 1.9.5 version
83 lines
3.1 KiB
PHP
83 lines
3.1 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: SimpleTesterTest.php 18470 2009-10-03 10:10:54Z beberlei $
|
|
*/
|
|
|
|
require_once dirname(__FILE__)."/../../../../TestHelper.php";
|
|
require_once "Zend/Test/PHPUnit/Db/SimpleTester.php";
|
|
require_once "Zend/Test/PHPUnit/Db/Connection.php";
|
|
require_once "Zend/Test/DbAdapter.php";
|
|
require_once "PHPUnit/Extensions/Database/DataSet/IDataSet.php";
|
|
require_once "Zend/Test/PHPUnit/Db/Exception.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_PHPUnit_Db_SimpleTesterTest extends PHPUnit_Framework_TestCase
|
|
{
|
|
public function testGetConnection()
|
|
{
|
|
$testAdapter = $this->getMock('Zend_Test_DbAdapter');
|
|
$testAdapter->expects($this->any())
|
|
->method('delete')
|
|
->will($this->throwException(new Exception));
|
|
|
|
$connection = new Zend_Test_PHPUnit_Db_Connection($testAdapter, "schema");
|
|
|
|
$databaseTester = new Zend_Test_PHPUnit_Db_SimpleTester($connection);
|
|
|
|
$this->assertSame($connection, $databaseTester->getConnection());
|
|
}
|
|
|
|
public function testSetupDatabase()
|
|
{
|
|
$testAdapter = $this->getMock('Zend_Test_DbAdapter');
|
|
$testAdapter->expects($this->any())
|
|
->method('delete')
|
|
->will($this->throwException(new Exception));
|
|
|
|
$connection = new Zend_Test_PHPUnit_Db_Connection($testAdapter, "schema");
|
|
|
|
$databaseTester = new Zend_Test_PHPUnit_Db_SimpleTester($connection);
|
|
|
|
$dataSet = $this->getMock('PHPUnit_Extensions_Database_DataSet_IDataSet');
|
|
$dataSet->expects($this->any())
|
|
->method('getIterator')
|
|
->will($this->returnValue($this->getMock('Iterator')));
|
|
$dataSet->expects($this->any())
|
|
->method('getReverseIterator')
|
|
->will($this->returnValue($this->getMock('Iterator')));
|
|
$databaseTester->setUpDatabase($dataSet);
|
|
}
|
|
|
|
public function testInvalidConnectionGivenThrowsException()
|
|
{
|
|
$this->setExpectedException("Zend_Test_PHPUnit_Db_Exception");
|
|
|
|
$connection = $this->getMock('PHPUnit_Extensions_Database_DB_IDatabaseConnection');
|
|
|
|
$databaseTester = new Zend_Test_PHPUnit_Db_SimpleTester($connection);
|
|
}
|
|
}
|