1
0
mirror of synced 2024-12-14 23:26:04 +03:00
doctrine2/tests/Doctrine/Tests/Mocks/ConnectionMock.php

75 lines
1.4 KiB
PHP
Raw Normal View History

<?php
namespace Doctrine\Tests\Mocks;
2009-01-04 19:15:32 +03:00
class ConnectionMock extends \Doctrine\DBAL\Connection
{
private $_platformMock;
2008-09-07 17:48:40 +04:00
private $_lastInsertId = 0;
2008-08-16 23:40:59 +04:00
private $_inserts = array();
2008-09-12 21:25:38 +04:00
public function __construct() {
$this->_platformMock = new DatabasePlatformMock();
2008-09-12 21:25:38 +04:00
$this->_platform = $this->_platformMock;
}
/**
* @override
*/
2008-09-07 17:48:40 +04:00
public function getDatabasePlatform()
{
2008-09-07 17:48:40 +04:00
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
}
}