1
0
mirror of synced 2024-12-15 15:46:02 +03:00
doctrine2/tests/lib/mocks/Doctrine_ConnectionMock.php

80 lines
1.5 KiB
PHP
Raw Normal View History

<?php
require_once 'lib/mocks/Doctrine_SequenceMock.php';
require_once 'lib/mocks/Doctrine_DatabasePlatformMock.php';
class Doctrine_ConnectionMock extends Doctrine_Connection
{
2008-09-07 17:48:40 +04:00
protected $_driverName = 'Mysql';
private $_platformMock;
2008-09-07 17:48:40 +04:00
private $_lastInsertId = 0;
2008-08-16 23:40:59 +04:00
private $_inserts = array();
public function __construct(array $params)
{
parent::__construct($params);
}
/**
* @override
*/
2008-09-07 17:48:40 +04:00
public function getDatabasePlatform()
{
2008-09-07 17:48:40 +04:00
if ( ! $this->_platformMock) {
$this->_platformMock = new Doctrine_DatabasePlatformMock();
}
return $this->_platformMock;
}
/**
* @override
*/
2008-09-07 17:48:40 +04:00
public function insert($tableName, array $data)
{
2008-09-07 17:48:40 +04:00
$this->_inserts[$tableName][] = $data;
}
2008-08-16 23:40:59 +04:00
/**
* @override
*/
2008-09-07 17:48:40 +04:00
public function lastInsertId($seqName = null)
2008-08-16 23:40:59 +04:00
{
2008-09-07 17:48:40 +04:00
return $this->_lastInsertId;
}
/**
* @override
*/
public function quote($input, $type = null)
{
if ($type === 'string') {
return "'" . $input . "'";
}
return $input;
2008-08-16 23:40:59 +04:00
}
/* Mock API */
public function setDatabasePlatform($platform)
{
$this->_platformMock = $platform;
}
2008-09-07 17:48:40 +04:00
public function setLastInsertId($id)
{
2008-09-07 17:48:40 +04:00
$this->_lastInsertId = $id;
}
2008-08-16 23:40:59 +04:00
public function getInserts()
{
return $this->_inserts;
}
public function reset()
{
$this->_inserts = array();
2008-09-07 17:48:40 +04:00
$this->_lastInsertId = 0;
2008-08-16 23:40:59 +04:00
}
}
?>