| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <?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-2014 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @version $Id$
- */
- require_once "Zend/Test/DbAdapter.php";
- require_once "Zend/Test/PHPUnit/Db/Operation/Insert.php";
- require_once "PHPUnit/Extensions/Database/DataSet/FlatXmlDataSet.php";
- require_once 'PHPUnit/Extensions/Database/DataSet/IDataSet.php';
- require_once 'PHPUnit/Extensions/Database/DB/IDatabaseConnection.php';
- /**
- * @category Zend
- * @package Zend_Test
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2014 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_Operation_InsertTest extends PHPUnit_Framework_TestCase
- {
- private $operation = null;
- public function setUp()
- {
- $this->operation = new Zend_Test_PHPUnit_Db_Operation_Insert();
- }
- public function testInsertDataSetUsingAdapterInsert()
- {
- $dataSet = new PHPUnit_Extensions_Database_DataSet_FlatXmlDataSet(dirname(__FILE__)."/_files/insertFixture.xml");
- $testAdapter = $this->getMock('Zend_Test_DbAdapter');
- $testAdapter->expects($this->at(0))
- ->method('insert')
- ->with('foo', array('foo' => 'foo', 'bar' => 'bar', 'baz' => 'baz'));
- $testAdapter->expects($this->at(1))
- ->method('insert')
- ->with('foo', array('foo' => 'bar', 'bar' => 'bar', 'baz' => 'bar'));
- $testAdapter->expects($this->at(2))
- ->method('insert')
- ->with('foo', array('foo' => 'baz', 'bar' => 'baz', 'baz' => 'baz'));
- $connection = new Zend_Test_PHPUnit_Db_Connection($testAdapter, "schema");
- $this->operation->execute($connection, $dataSet);
- }
- public function testInsertExceptionIsTransformed()
- {
- $this->setExpectedException('PHPUnit_Extensions_Database_Operation_Exception');
- $dataSet = new PHPUnit_Extensions_Database_DataSet_FlatXmlDataSet(dirname(__FILE__)."/_files/insertFixture.xml");
- $testAdapter = $this->getMock('Zend_Test_DbAdapter');
- $testAdapter->expects($this->any())->method('insert')->will($this->throwException(new Exception()));
- $connection = new Zend_Test_PHPUnit_Db_Connection($testAdapter, "schema");
- $this->operation->execute($connection, $dataSet);
- }
- public function testInvalidConnectionGivenThrowsException()
- {
- $this->setExpectedException("Zend_Test_PHPUnit_Db_Exception");
- $dataSet = $this->getMock('PHPUnit_Extensions_Database_DataSet_IDataSet');
- $connection = $this->getMock('PHPUnit_Extensions_Database_DB_IDatabaseConnection');
- $this->operation->execute($connection, $dataSet);
- }
- }
|