2009-01-04 19:15:32 +03:00
|
|
|
<?php
|
|
|
|
|
2009-01-22 22:38:10 +03:00
|
|
|
namespace Doctrine\Tests\Mocks;
|
2008-04-13 01:35:21 +04:00
|
|
|
|
|
|
|
/**
|
2009-12-11 00:27:20 +03:00
|
|
|
* This class is a mock of the Statement interface that can be passed in to the Hydrator
|
2008-04-13 01:35:21 +04:00
|
|
|
* to test the hydration standalone with faked result sets.
|
|
|
|
*
|
|
|
|
* @author Roman Borschel <roman@code-factory.org>
|
|
|
|
*/
|
2009-12-11 00:27:20 +03:00
|
|
|
class HydratorMockStatement implements \Doctrine\DBAL\Driver\Statement
|
2008-04-13 01:35:21 +04:00
|
|
|
{
|
|
|
|
private $_resultSet;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a new mock statement that will serve the provided fake result set to clients.
|
|
|
|
*
|
|
|
|
* @param array $resultSet The faked SQL result set.
|
|
|
|
*/
|
|
|
|
public function __construct(array $resultSet)
|
|
|
|
{
|
|
|
|
$this->_resultSet = $resultSet;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fetches all rows from the result set.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function fetchAll($fetchStyle = null, $columnIndex = null, array $ctorArgs = null)
|
|
|
|
{
|
|
|
|
return $this->_resultSet;
|
|
|
|
}
|
|
|
|
|
2008-05-18 20:21:55 +04:00
|
|
|
public function fetchColumn($columnNumber = 0)
|
|
|
|
{
|
2009-12-11 00:27:20 +03:00
|
|
|
$row = current($this->_resultSet);
|
2008-05-18 20:21:55 +04:00
|
|
|
if ( ! is_array($row)) return false;
|
|
|
|
$val = array_shift($row);
|
|
|
|
return $val !== null ? $val : false;
|
|
|
|
}
|
|
|
|
|
2008-04-13 01:35:21 +04:00
|
|
|
/**
|
|
|
|
* Fetches the next row in the result set.
|
2009-12-11 00:27:20 +03:00
|
|
|
*
|
2008-04-13 01:35:21 +04:00
|
|
|
*/
|
2009-12-11 00:27:20 +03:00
|
|
|
public function fetch($fetchStyle = null)
|
2008-04-13 01:35:21 +04:00
|
|
|
{
|
2009-12-11 00:27:20 +03:00
|
|
|
$current = current($this->_resultSet);
|
|
|
|
next($this->_resultSet);
|
|
|
|
return $current;
|
2008-04-13 01:35:21 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Closes the cursor, enabling the statement to be executed again.
|
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function closeCursor()
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setResultSet(array $resultSet)
|
|
|
|
{
|
2009-12-11 00:27:20 +03:00
|
|
|
reset($resultSet);
|
2008-04-13 01:35:21 +04:00
|
|
|
$this->_resultSet = $resultSet;
|
|
|
|
}
|
2009-12-11 00:27:20 +03:00
|
|
|
|
|
|
|
public function bindColumn($column, &$param, $type = null)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public function bindValue($param, $value, $type = null)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public function bindParam($column, &$variable, $type = null, $length = null, $driverOptions = array())
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public function columnCount()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public function errorCode()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public function errorInfo()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public function execute($params = array())
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public function rowCount()
|
|
|
|
{
|
|
|
|
}
|
2008-04-13 01:35:21 +04:00
|
|
|
}
|