2006-04-14 00:37:28 +04:00
|
|
|
<?php
|
|
|
|
class Doctrine_UnitTestCase extends UnitTestCase {
|
|
|
|
protected $manager;
|
2006-08-22 03:20:33 +04:00
|
|
|
protected $connection;
|
2006-04-14 00:37:28 +04:00
|
|
|
protected $objTable;
|
|
|
|
protected $new;
|
|
|
|
protected $old;
|
|
|
|
protected $dbh;
|
|
|
|
protected $listener;
|
|
|
|
protected $cache;
|
|
|
|
protected $users;
|
2006-08-07 13:55:46 +04:00
|
|
|
protected $valueHolder;
|
2006-05-19 00:44:02 +04:00
|
|
|
protected $tables = array();
|
2006-11-16 23:31:39 +03:00
|
|
|
protected $unitOfWork;
|
2006-12-28 00:20:26 +03:00
|
|
|
protected $driverName = false;
|
|
|
|
protected $generic = false;
|
|
|
|
protected $conn;
|
|
|
|
protected $adapter;
|
|
|
|
protected $export;
|
2006-12-28 03:07:32 +03:00
|
|
|
protected $expr;
|
2006-12-28 00:20:26 +03:00
|
|
|
protected $dataDict;
|
|
|
|
protected $transaction;
|
|
|
|
|
2006-04-14 00:37:28 +04:00
|
|
|
|
|
|
|
private $init = false;
|
|
|
|
|
|
|
|
public function init() {
|
|
|
|
$name = get_class($this);
|
|
|
|
|
|
|
|
$this->manager = Doctrine_Manager::getInstance();
|
2006-04-17 02:46:05 +04:00
|
|
|
$this->manager->setAttribute(Doctrine::ATTR_FETCHMODE, Doctrine::FETCH_IMMEDIATE);
|
2006-04-23 12:12:01 +04:00
|
|
|
|
2006-05-19 00:44:02 +04:00
|
|
|
|
2006-06-09 02:11:36 +04:00
|
|
|
$this->tables = array_merge($this->tables,
|
|
|
|
array("entity",
|
|
|
|
"entityReference",
|
|
|
|
"email",
|
|
|
|
"phonenumber",
|
|
|
|
"groupuser",
|
|
|
|
"album",
|
|
|
|
"song",
|
|
|
|
"element",
|
|
|
|
"error",
|
|
|
|
"description",
|
|
|
|
"address",
|
|
|
|
"account",
|
|
|
|
"task",
|
|
|
|
"resource",
|
|
|
|
"assignment",
|
|
|
|
"resourceType",
|
|
|
|
"resourceReference")
|
|
|
|
);
|
2006-04-23 12:12:01 +04:00
|
|
|
|
|
|
|
|
2006-12-28 00:20:26 +03:00
|
|
|
$class = get_class($this);
|
|
|
|
$e = explode('_', $class);
|
|
|
|
|
|
|
|
$this->driverName = 'main';
|
|
|
|
|
|
|
|
switch($e[1]) {
|
|
|
|
case 'Export':
|
|
|
|
case 'Import':
|
|
|
|
case 'Expression':
|
|
|
|
case 'Transaction':
|
|
|
|
case 'DataDict':
|
|
|
|
$this->driverName = 'Sqlite';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(count($e) > 3) {
|
|
|
|
$driver = $e[2];
|
|
|
|
switch($e[2]) {
|
|
|
|
case 'Firebird':
|
|
|
|
case 'Informix':
|
|
|
|
case 'Mysql':
|
|
|
|
case 'Mssql':
|
|
|
|
case 'Oracle':
|
|
|
|
case 'Pgsql':
|
|
|
|
case 'Sqlite':
|
|
|
|
$this->driverName = $e[2];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2006-04-23 12:12:01 +04:00
|
|
|
|
2006-12-02 17:40:47 +03:00
|
|
|
try {
|
2006-12-28 00:20:26 +03:00
|
|
|
$this->connection = $this->manager->getConnection($this->driverName);
|
2006-08-22 03:20:33 +04:00
|
|
|
$this->connection->evictTables();
|
2006-12-28 00:20:26 +03:00
|
|
|
$this->dbh = $this->adapter = $this->connection->getDbh();
|
2006-04-14 00:37:28 +04:00
|
|
|
$this->listener = $this->manager->getAttribute(Doctrine::ATTR_LISTENER);
|
2006-04-23 12:12:01 +04:00
|
|
|
|
2006-09-30 16:36:03 +04:00
|
|
|
$this->manager->setAttribute(Doctrine::ATTR_LISTENER, $this->listener);
|
2006-12-02 17:40:47 +03:00
|
|
|
} catch(Doctrine_Manager_Exception $e) {
|
2006-12-28 00:20:26 +03:00
|
|
|
if($this->driverName == 'main') {
|
|
|
|
$this->dbh = Doctrine_Db::getConnection("sqlite::memory:");
|
|
|
|
} else {
|
|
|
|
$this->dbh = $this->adapter = new AdapterMock($this->driverName);
|
|
|
|
}
|
2006-11-08 13:18:15 +03:00
|
|
|
|
2006-12-28 00:20:26 +03:00
|
|
|
$this->connection = $this->manager->openConnection($this->dbh, $this->driverName);
|
|
|
|
|
|
|
|
if($this->driverName !== 'main') {
|
|
|
|
$exc = 'Doctrine_Connection_' . ucwords($this->driverName) . '_Exception';
|
|
|
|
|
|
|
|
$this->exc = new $exc();
|
|
|
|
|
|
|
|
} else {
|
|
|
|
}
|
2006-11-08 13:18:15 +03:00
|
|
|
|
2006-06-03 13:10:43 +04:00
|
|
|
$this->listener = new Doctrine_EventListener_Debugger();
|
2006-04-14 00:37:28 +04:00
|
|
|
$this->manager->setAttribute(Doctrine::ATTR_LISTENER, $this->listener);
|
|
|
|
}
|
2006-12-28 00:20:26 +03:00
|
|
|
if($this->driverName !== 'main') {
|
|
|
|
$this->export = $this->connection->export;
|
|
|
|
$this->transaction = $this->connection->transaction;
|
|
|
|
$this->dataDict = $this->connection->dataDict;
|
2006-12-28 03:07:32 +03:00
|
|
|
$this->expr = $this->connection->expression;
|
2006-12-28 00:20:26 +03:00
|
|
|
}
|
2006-11-16 23:31:39 +03:00
|
|
|
$this->unitOfWork = $this->connection->unitOfWork;
|
2006-09-30 16:36:03 +04:00
|
|
|
$this->connection->setListener(new Doctrine_EventListener());
|
2006-08-22 03:20:33 +04:00
|
|
|
$this->query = new Doctrine_Query($this->connection);
|
2006-05-15 16:15:20 +04:00
|
|
|
$this->prepareTables();
|
|
|
|
$this->prepareData();
|
2006-08-07 13:55:46 +04:00
|
|
|
|
2006-08-22 03:20:33 +04:00
|
|
|
$this->valueHolder = new Doctrine_ValueHolder($this->connection->getTable('User'));
|
2006-12-02 17:40:47 +03:00
|
|
|
|
2006-05-15 16:15:20 +04:00
|
|
|
}
|
2006-06-03 13:10:43 +04:00
|
|
|
public function prepareTables() {
|
2006-05-15 16:15:20 +04:00
|
|
|
foreach($this->tables as $name) {
|
2006-12-28 00:20:26 +03:00
|
|
|
$query = 'DROP TABLE ' . Doctrine::tableize($name);
|
2006-06-25 22:34:53 +04:00
|
|
|
try {
|
|
|
|
$this->dbh->query($query);
|
|
|
|
} catch(PDOException $e) {
|
|
|
|
|
|
|
|
}
|
2006-04-14 00:37:28 +04:00
|
|
|
}
|
|
|
|
|
2006-05-15 16:15:20 +04:00
|
|
|
foreach($this->tables as $name) {
|
2006-05-13 12:37:52 +04:00
|
|
|
$name = ucwords($name);
|
2006-08-22 03:20:33 +04:00
|
|
|
$table = $this->connection->getTable($name);
|
2006-09-21 01:07:13 +04:00
|
|
|
|
2006-06-03 13:10:43 +04:00
|
|
|
$table->clear();
|
2006-04-14 00:37:28 +04:00
|
|
|
}
|
|
|
|
|
2006-12-28 00:20:26 +03:00
|
|
|
$this->objTable = $this->connection->getTable('User');
|
2006-04-14 00:37:28 +04:00
|
|
|
}
|
|
|
|
public function prepareData() {
|
2006-12-28 00:20:26 +03:00
|
|
|
$groups = new Doctrine_Collection($this->connection->getTable('Group'));
|
2006-04-14 00:37:28 +04:00
|
|
|
|
2006-12-28 00:20:26 +03:00
|
|
|
$groups[0]->name = 'Drama Actors';
|
2006-04-14 00:37:28 +04:00
|
|
|
|
2006-12-28 00:20:26 +03:00
|
|
|
$groups[1]->name = 'Quality Actors';
|
2006-04-22 13:08:02 +04:00
|
|
|
|
2006-04-14 00:37:28 +04:00
|
|
|
|
2006-12-28 00:20:26 +03:00
|
|
|
$groups[2]->name = 'Action Actors';
|
|
|
|
$groups[2]['Phonenumber'][0]->phonenumber = '123 123';
|
2006-04-22 13:08:02 +04:00
|
|
|
$groups->save();
|
2006-04-14 00:37:28 +04:00
|
|
|
|
2006-12-28 00:20:26 +03:00
|
|
|
$users = new Doctrine_Collection('User');
|
2006-04-14 00:37:28 +04:00
|
|
|
|
|
|
|
|
2006-12-28 00:20:26 +03:00
|
|
|
$users[0]->name = 'zYne';
|
|
|
|
$users[0]['Email']->address = 'zYne@example.com';
|
|
|
|
$users[0]['Phonenumber'][0]->phonenumber = '123 123';
|
2006-04-14 00:37:28 +04:00
|
|
|
|
2006-12-28 00:20:26 +03:00
|
|
|
$users[1]->name = 'Arnold Schwarzenegger';
|
|
|
|
$users[1]->Email->address = 'arnold@example.com';
|
|
|
|
$users[1]['Phonenumber'][0]->phonenumber = '123 123';
|
|
|
|
$users[1]['Phonenumber'][1]->phonenumber = '456 456';
|
|
|
|
$users[1]->Phonenumber[2]->phonenumber = '789 789';
|
2006-04-14 00:37:28 +04:00
|
|
|
$users[1]->Group[0] = $groups[2];
|
|
|
|
|
2006-12-28 00:20:26 +03:00
|
|
|
$users[2]->name = 'Michael Caine';
|
|
|
|
$users[2]->Email->address = 'caine@example.com';
|
|
|
|
$users[2]->Phonenumber[0]->phonenumber = '123 123';
|
|
|
|
|
|
|
|
$users[3]->name = 'Takeshi Kitano';
|
|
|
|
$users[3]->Email->address = 'kitano@example.com';
|
|
|
|
$users[3]->Phonenumber[0]->phonenumber = '111 222 333';
|
|
|
|
|
|
|
|
$users[4]->name = 'Sylvester Stallone';
|
|
|
|
$users[4]->Email->address = 'stallone@example.com';
|
|
|
|
$users[4]->Phonenumber[0]->phonenumber = '111 555 333';
|
|
|
|
$users[4]['Phonenumber'][1]->phonenumber = '123 213';
|
|
|
|
$users[4]['Phonenumber'][2]->phonenumber = '444 555';
|
|
|
|
|
|
|
|
$users[5]->name = 'Kurt Russell';
|
|
|
|
$users[5]->Email->address = 'russell@example.com';
|
|
|
|
$users[5]->Phonenumber[0]->phonenumber = '111 222 333';
|
|
|
|
|
|
|
|
$users[6]->name = 'Jean Reno';
|
|
|
|
$users[6]->Email->address = 'reno@example.com';
|
|
|
|
$users[6]->Phonenumber[0]->phonenumber = '111 222 333';
|
|
|
|
$users[6]['Phonenumber'][1]->phonenumber = '222 123';
|
|
|
|
$users[6]['Phonenumber'][2]->phonenumber = '123 456';
|
|
|
|
|
|
|
|
$users[7]->name = 'Edward Furlong';
|
|
|
|
$users[7]->Email->address = 'furlong@example.com';
|
|
|
|
$users[7]->Phonenumber[0]->phonenumber = '111 567 333';
|
2006-04-14 00:37:28 +04:00
|
|
|
|
|
|
|
$this->users = $users;
|
2006-08-22 03:20:33 +04:00
|
|
|
$this->connection->flush();
|
2006-04-14 00:37:28 +04:00
|
|
|
}
|
2006-08-22 03:20:33 +04:00
|
|
|
public function getConnection() {
|
|
|
|
return $this->connection;
|
2006-04-15 14:15:16 +04:00
|
|
|
}
|
2006-04-14 00:37:28 +04:00
|
|
|
public function clearCache() {
|
|
|
|
foreach($this->tables as $name) {
|
2006-08-22 03:20:33 +04:00
|
|
|
$table = $this->connection->getTable($name);
|
2006-04-14 00:37:28 +04:00
|
|
|
$table->getCache()->deleteAll();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public function setUp() {
|
|
|
|
if( ! $this->init) $this->init();
|
|
|
|
|
2006-05-15 16:15:20 +04:00
|
|
|
if(isset($this->objTable))
|
|
|
|
$this->objTable->clear();
|
|
|
|
|
2006-04-14 00:37:28 +04:00
|
|
|
$this->init = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|