| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- <?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-2012 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';
- /*
- * @category Zend
- * @package Zend_Db
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2012 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
- */
- abstract class Zend_Db_Statement_Pdo_TestCommon extends Zend_Db_Statement_TestCommon
- {
- public function testStatementConstruct()
- {
- $select = $this->_db->select()
- ->from('zfproducts');
- $sql = $select->__toString();
- $stmt = new Zend_Db_Statement_Pdo($this->_db, $sql);
- $this->assertTrue($stmt instanceof Zend_Db_Statement_Pdo);
- $stmt->closeCursor();
- }
- public function testStatementConstructWithSelectObject()
- {
- $select = $this->_db->select()
- ->from('zfproducts');
- $stmt = new Zend_Db_Statement_Pdo($this->_db, $select);
- $this->assertTrue($stmt instanceof Zend_Db_Statement_Interface);
- $stmt->closeCursor();
- }
- 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_Exception');
- } catch (Zend_Exception $e) {
- $this->assertTrue($e instanceof Zend_Db_Statement_Exception,
- 'Expecting object of type Zend_Db_Statement_Exception, got '.get_class($e));
- $this->assertEquals('SQLSTATE[IM001]: Driver does not support this function: driver does not support multiple rowsets', $e->getMessage());
- }
- $stmt->closeCursor();
- }
- /**
- * @group ZF-4486
- */
- public function testStatementIsIterableThroughtForeach()
- {
- $select = $this->_db->select()->from('zfproducts');
- $stmt = $this->_db->query($select);
- $stmt->setFetchMode(Zend_Db::FETCH_OBJ);
- foreach ($stmt as $test) {
- $this->assertTrue($test instanceof stdClass);
- }
- $this->assertTrue(is_int(iterator_count($stmt)));
- }
- public function testStatementConstructExceptionBadSql()
- {
- $sql = "SELECT * FROM *";
- try {
- $stmt = $this->_db->query($sql);
- $this->fail('Expected to catch Zend_Db_Statement_Exception');
- } catch (Zend_Exception $e) {
- $this->assertTrue($e instanceof Zend_Db_Statement_Exception,
- 'Expecting object of type Zend_Db_Statement_Exception, got '.get_class($e));
- $this->assertTrue($e->hasChainedException(), 'Missing Chained Exception');
- $this->assertTrue($e->getChainedException() instanceof PDOException, 'Wrong type of Exception');
- }
- }
- /**
- *
- * @group ZF-5868
- */
- public function testStatementWillPersistBindParamsInQueryProfilerAfterExecute()
- {
- $this->_db->getProfiler()->setEnabled(true);
- $products = $this->_db->quoteIdentifier('zfproducts');
- $product_id = $this->_db->quoteIdentifier('product_id');
- $sql = "SELECT * FROM $products WHERE $product_id > :product_id ORDER BY $product_id ASC";
- $stmt = $this->_db->prepare($sql);
- $stmt->bindValue('product_id', 1);
- $stmt->execute();
- $params = $this->_db->getProfiler()->getLastQueryProfile()->getQueryParams();
- $target = array(':product_id' => 1);
- $this->assertEquals($target, $params);
- }
- }
|