2006-11-23 02:35:34 +03:00
|
|
|
<?php
|
|
|
|
class AdapterMock implements Doctrine_Adapter_Interface {
|
|
|
|
private $name;
|
|
|
|
|
|
|
|
private $queries = array();
|
|
|
|
|
2006-12-22 01:06:08 +03:00
|
|
|
private $exception = array();
|
2006-11-23 02:35:34 +03:00
|
|
|
|
|
|
|
public function __construct($name) {
|
|
|
|
$this->name = $name;
|
|
|
|
}
|
|
|
|
public function getName() {
|
|
|
|
return $this->name;
|
|
|
|
}
|
|
|
|
public function pop() {
|
|
|
|
return array_pop($this->queries);
|
|
|
|
}
|
2006-12-28 00:20:26 +03:00
|
|
|
public function forceException($name, $message = '', $code = 0) {
|
2006-12-22 01:06:08 +03:00
|
|
|
$this->exception = array($name, $message, $code);
|
|
|
|
}
|
2006-11-23 02:35:34 +03:00
|
|
|
public function prepare($prepareString){
|
|
|
|
return new AdapterStatementMock;
|
|
|
|
}
|
|
|
|
public function query($queryString) {
|
|
|
|
$this->queries[] = $queryString;
|
2006-12-22 01:06:08 +03:00
|
|
|
|
|
|
|
$e = $this->exception;
|
|
|
|
|
|
|
|
if( ! empty($e)) {
|
|
|
|
$name = $e[0];
|
|
|
|
|
|
|
|
$this->exception = array();
|
|
|
|
|
|
|
|
throw new $name($e[1], $e[2]);
|
|
|
|
}
|
|
|
|
|
2006-11-23 02:35:34 +03:00
|
|
|
return new AdapterStatementMock;
|
|
|
|
}
|
2006-12-02 17:40:47 +03:00
|
|
|
public function getAll() {
|
|
|
|
return $this->queries;
|
|
|
|
}
|
2006-11-29 02:26:44 +03:00
|
|
|
public function quote($input) {
|
|
|
|
return "'" . addslashes($input) . "'";
|
|
|
|
}
|
2006-11-23 02:35:34 +03:00
|
|
|
public function exec($statement) {
|
|
|
|
$this->queries[] = $statement;
|
2006-12-22 01:06:08 +03:00
|
|
|
|
|
|
|
$e = $this->exception;
|
|
|
|
|
|
|
|
if( ! empty($e)) {
|
|
|
|
$name = $e[0];
|
|
|
|
|
|
|
|
$this->exception = array();
|
|
|
|
|
|
|
|
throw new $name($e[1], $e[2]);
|
|
|
|
}
|
|
|
|
|
2006-11-23 02:35:34 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
public function lastInsertId(){ }
|
|
|
|
public function beginTransaction(){
|
|
|
|
$this->queries[] = 'BEGIN TRANSACTION';
|
|
|
|
}
|
|
|
|
public function commit(){
|
|
|
|
$this->queries[] = 'COMMIT';
|
|
|
|
}
|
|
|
|
public function rollBack(){ }
|
|
|
|
public function errorCode(){ }
|
|
|
|
public function errorInfo(){ }
|
|
|
|
public function getAttribute($attribute) {
|
|
|
|
if($attribute == PDO::ATTR_DRIVER_NAME)
|
2006-12-28 00:20:26 +03:00
|
|
|
return strtolower($this->name);
|
2006-11-23 02:35:34 +03:00
|
|
|
}
|
|
|
|
public function setAttribute($attribute, $value) {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
class AdapterStatementMock {
|
|
|
|
public function fetch($fetchMode) {
|
|
|
|
return array();
|
|
|
|
}
|
|
|
|
public function fetchAll($fetchMode) {
|
|
|
|
return array();
|
|
|
|
}
|
2006-12-28 00:20:26 +03:00
|
|
|
public function execute() {
|
|
|
|
return true;
|
|
|
|
}
|
2006-11-23 02:35:34 +03:00
|
|
|
}
|
2007-01-06 01:07:50 +03:00
|
|
|
|
2006-11-23 02:35:34 +03:00
|
|
|
class Doctrine_Driver_UnitTestCase extends UnitTestCase {
|
|
|
|
protected $driverName = false;
|
|
|
|
protected $generic = false;
|
|
|
|
protected $manager;
|
|
|
|
protected $conn;
|
|
|
|
protected $adapter;
|
|
|
|
protected $export;
|
|
|
|
protected $dataDict;
|
|
|
|
protected $transaction;
|
|
|
|
|
|
|
|
public function __construct($driverName, $generic = false) {
|
2006-11-25 02:23:52 +03:00
|
|
|
|
2006-11-23 02:35:34 +03:00
|
|
|
$this->driverName = $driverName;
|
|
|
|
$this->generic = $generic;
|
|
|
|
}
|
2006-11-25 02:23:52 +03:00
|
|
|
public function assertDeclarationType($type, $type2) {
|
|
|
|
$dec = $this->getDeclaration($type);
|
|
|
|
if( ! is_array($type2))
|
|
|
|
$type2 = array($type2);
|
|
|
|
$this->assertEqual($dec[0], $type2);
|
|
|
|
}
|
|
|
|
public function getDeclaration($type) {
|
2006-11-30 00:09:02 +03:00
|
|
|
return $this->dataDict->getPortableDeclaration(array('type' => $type, 'name' => 'colname', 'length' => 1, 'fixed' => true));
|
2006-11-25 02:23:52 +03:00
|
|
|
}
|
2006-12-28 00:20:26 +03:00
|
|
|
public function setDriverName($driverName) {
|
|
|
|
$this->driverName = $driverName;
|
|
|
|
}
|
2006-11-23 02:35:34 +03:00
|
|
|
public function init() {
|
|
|
|
$this->adapter = new AdapterMock($this->driverName);
|
|
|
|
$this->manager = Doctrine_Manager::getInstance();
|
|
|
|
$this->manager->setDefaultAttributes();
|
|
|
|
$this->conn = $this->manager->openConnection($this->adapter);
|
2006-11-25 02:23:52 +03:00
|
|
|
|
2006-11-23 02:35:34 +03:00
|
|
|
if( ! $this->generic) {
|
|
|
|
$this->export = $this->conn->export;
|
|
|
|
|
2006-11-25 02:23:52 +03:00
|
|
|
$name = $this->adapter->getName();
|
|
|
|
|
2006-11-24 02:23:24 +03:00
|
|
|
if($this->adapter->getName() == 'oci')
|
2006-11-25 02:23:52 +03:00
|
|
|
$name = 'Oracle';
|
|
|
|
|
|
|
|
$tx = 'Doctrine_Transaction_' . ucwords($name);
|
|
|
|
$dataDict = 'Doctrine_DataDict_' . ucwords($name);
|
2006-12-28 00:20:26 +03:00
|
|
|
|
|
|
|
$exc = 'Doctrine_Connection_' . ucwords($name) . '_Exception';
|
|
|
|
|
|
|
|
$this->exc = new $exc();
|
2006-11-24 02:23:24 +03:00
|
|
|
if(class_exists($tx))
|
2006-11-25 02:23:52 +03:00
|
|
|
$this->transaction = new $tx($this->conn);
|
|
|
|
if(class_exists($dataDict)) {
|
|
|
|
$this->dataDict = new $dataDict($this->conn);
|
2006-12-22 01:06:08 +03:00
|
|
|
}
|
2006-11-23 02:35:34 +03:00
|
|
|
//$this->dataDict = $this->conn->dataDict;
|
|
|
|
} else {
|
|
|
|
$this->export = new Doctrine_Export($this->conn);
|
|
|
|
$this->transaction = new Doctrine_Transaction($this->conn);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setUp() {
|
|
|
|
static $init = false;
|
|
|
|
if( ! $init) {
|
|
|
|
$this->init();
|
|
|
|
$init = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|