1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/tests/DBTestCase.php
2007-01-12 11:38:03 +00:00

307 lines
12 KiB
PHP

<?php
require_once("../draft/DB.php");
class Doctrine_Db_TestLogger implements Doctrine_Overloadable {
private $messages = array();
public function __call($m, $a) {
$this->messages[] = $m;
}
public function pop() {
return array_pop($this->messages);
}
public function getAll() {
return $this->messages;
}
}
class Doctrine_Db_TestValidListener extends Doctrine_Db_EventListener { }
class Doctrine_Db_TestInvalidListener { }
class Doctrine_Db_TestCase extends Doctrine_UnitTestCase {
protected $dbh;
public function prepareData() { }
public function prepareTables() { }
public function init() { }
public function testInitialize() {
$this->dbh = new Doctrine_Db('sqlite::memory:');
$this->dbh->exec('CREATE TABLE entity (id INTEGER, name TEXT)');
$this->dbh->exec("INSERT INTO entity (id, name) VALUES (1, 'zYne')");
$this->dbh->exec("INSERT INTO entity (id, name) VALUES (2, 'John')");
$this->assertEqual($this->dbh->getAttribute(PDO::ATTR_DRIVER_NAME), 'sqlite');
}
public function testAddValidEventListener() {
$this->dbh->setListener(new Doctrine_Db_EventListener());
$this->assertTrue($this->dbh->getListener() instanceof Doctrine_Db_EventListener);
try {
$ret = $this->dbh->addListener(new Doctrine_Db_TestLogger());
$this->pass();
$this->assertTrue($ret instanceof Doctrine_Db);
} catch(Doctrine_Db_Exception $e) {
$this->fail();
}
$this->assertTrue($this->dbh->getListener() instanceof Doctrine_Db_EventListener_Chain);
$this->assertTrue($this->dbh->getListener()->get(0) instanceof Doctrine_Db_TestLogger);
try {
$ret = $this->dbh->addListener(new Doctrine_Db_TestValidListener());
$this->pass();
$this->assertTrue($ret instanceof Doctrine_Db);
} catch(Doctrine_Db_Exception $e) {
$this->fail();
}
$this->assertTrue($this->dbh->getListener() instanceof Doctrine_Db_EventListener_Chain);
$this->assertTrue($this->dbh->getListener()->get(0) instanceof Doctrine_Db_TestLogger);
$this->assertTrue($this->dbh->getListener()->get(1) instanceof Doctrine_Db_TestValidListener);
try {
$ret = $this->dbh->addListener(new Doctrine_Db_EventListener_Chain(), 'chain');
$this->pass();
$this->assertTrue($ret instanceof Doctrine_Db);
} catch(Doctrine_Db_Exception $e) {
$this->fail();
}
$this->assertTrue($this->dbh->getListener() instanceof Doctrine_Db_EventListener_Chain);
$this->assertTrue($this->dbh->getListener()->get(0) instanceof Doctrine_Db_TestLogger);
$this->assertTrue($this->dbh->getListener()->get(1) instanceof Doctrine_Db_TestValidListener);
$this->assertTrue($this->dbh->getListener()->get('chain') instanceof Doctrine_Db_EventListener_Chain);
// replacing
try {
$ret = $this->dbh->addListener(new Doctrine_Db_EventListener_Chain(), 'chain');
$this->pass();
$this->assertTrue($ret instanceof Doctrine_Db);
} catch(Doctrine_Db_Exception $e) {
$this->fail();
}
$this->assertTrue($this->dbh->getListener() instanceof Doctrine_Db_EventListener_Chain);
$this->assertTrue($this->dbh->getListener()->get(0) instanceof Doctrine_Db_TestLogger);
$this->assertTrue($this->dbh->getListener()->get(1) instanceof Doctrine_Db_TestValidListener);
$this->assertTrue($this->dbh->getListener()->get('chain') instanceof Doctrine_Db_EventListener_Chain);
}
public function testListeningEventsWithSingleListener() {
$this->dbh->setListener(new Doctrine_Db_TestLogger());
$listener = $this->dbh->getListener();
$stmt = $this->dbh->prepare('INSERT INTO entity (id) VALUES(?)');
$this->assertEqual($listener->pop(), 'onPrepare');
$this->assertEqual($listener->pop(), 'onPrePrepare');
$stmt->execute(array(1));
$this->assertEqual($listener->pop(), 'onExecute');
$this->assertEqual($listener->pop(), 'onPreExecute');
$this->dbh->exec('DELETE FROM entity');
$this->assertEqual($listener->pop(), 'onExec');
$this->assertEqual($listener->pop(), 'onPreExec');
$this->dbh->beginTransaction();
$this->assertEqual($listener->pop(), 'onBeginTransaction');
$this->assertEqual($listener->pop(), 'onPreBeginTransaction');
$this->dbh->query('INSERT INTO entity (id) VALUES (1)');
$this->dbh->commit();
$this->assertEqual($listener->pop(), 'onCommit');
$this->assertEqual($listener->pop(), 'onPreCommit');
$this->assertEqual($listener->pop(), 'onQuery');
$this->assertEqual($listener->pop(), 'onPreQuery');
}
public function testListeningQueryEventsWithListenerChain() {
$this->dbh->query('DROP TABLE entity');
$this->dbh->addListener(new Doctrine_Db_TestLogger());
$this->dbh->addListener(new Doctrine_Db_TestLogger());
$this->dbh->query('CREATE TABLE entity (id INT)');
$listener = $this->dbh->getListener()->get(0);
$listener2 = $this->dbh->getListener()->get(1);
$this->assertEqual($listener->pop(), 'onQuery');
$this->assertEqual($listener->pop(), 'onPreQuery');
$this->assertEqual($listener2->pop(), 'onQuery');
$this->assertEqual($listener2->pop(), 'onPreQuery');
}
public function testListeningPrepareEventsWithListenerChain() {
$stmt = $this->dbh->prepare('INSERT INTO entity (id) VALUES(?)');
$listener = $this->dbh->getListener()->get(0);
$listener2 = $this->dbh->getListener()->get(1);
$this->assertEqual($listener->pop(), 'onPrepare');
$this->assertEqual($listener->pop(), 'onPrePrepare');
$this->assertEqual($listener2->pop(), 'onPrepare');
$this->assertEqual($listener2->pop(), 'onPrePrepare');
$stmt->execute(array(1));
$this->assertEqual($listener->pop(), 'onExecute');
$this->assertEqual($listener->pop(), 'onPreExecute');
$this->assertEqual($listener2->pop(), 'onExecute');
$this->assertEqual($listener2->pop(), 'onPreExecute');
}
public function testListeningExecEventsWithListenerChain() {
$this->dbh->exec('DELETE FROM entity');
$listener = $this->dbh->getListener()->get(0);
$listener2 = $this->dbh->getListener()->get(1);
$this->assertEqual($listener->pop(), 'onExec');
$this->assertEqual($listener->pop(), 'onPreExec');
$this->assertEqual($listener2->pop(), 'onExec');
$this->assertEqual($listener2->pop(), 'onPreExec');
}
public function testListeningTransactionEventsWithListenerChain() {
$this->dbh->beginTransaction();
$listener = $this->dbh->getListener()->get(0);
$listener2 = $this->dbh->getListener()->get(1);
$this->assertEqual($listener->pop(), 'onBeginTransaction');
$this->assertEqual($listener->pop(), 'onPreBeginTransaction');
$this->assertEqual($listener2->pop(), 'onBeginTransaction');
$this->assertEqual($listener2->pop(), 'onPreBeginTransaction');
$this->dbh->query('INSERT INTO entity (id) VALUES (1)');
$this->dbh->commit();
$this->assertEqual($listener->pop(), 'onCommit');
$this->assertEqual($listener->pop(), 'onPreCommit');
$this->assertEqual($listener->pop(), 'onQuery');
$this->assertEqual($listener->pop(), 'onPreQuery');
$this->dbh->query('DROP TABLE entity');
}
public function testSetValidEventListener() {
try {
$this->dbh->setListener(new Doctrine_Db_TestLogger());
$this->pass();
} catch(Doctrine_Db_Exception $e) {
$this->fail();
}
$this->assertTrue($this->dbh->getListener() instanceof Doctrine_Db_TestLogger);
try {
$this->dbh->setListener(new Doctrine_Db_TestValidListener());
$this->pass();
} catch(Doctrine_Db_Exception $e) {
$this->fail();
}
$this->assertTrue($this->dbh->getListener() instanceof Doctrine_Db_TestValidListener);
try {
$this->dbh->setListener(new Doctrine_Db_EventListener_Chain());
$this->pass();
} catch(Doctrine_Db_Exception $e) {
$this->fail();
}
$this->assertTrue($this->dbh->getListener() instanceof Doctrine_Db_EventListener_Chain);
try {
$this->dbh->setListener(new Doctrine_Db_EventListener());
$this->pass();
} catch(Doctrine_Db_Exception $e) {
$this->fail();
}
$this->assertTrue($this->dbh->getListener() instanceof Doctrine_Db_EventListener);
}
public function testSetInvalidEventListener() {
try {
$this->dbh->setListener(new Doctrine_Db_TestInvalidListener());
$this->fail();
} catch(Doctrine_Db_Exception $e) {
$this->pass();
}
}
public function testInvalidDSN() {
try {
$this->dbh = Doctrine_Db::getConnection('');
$this->fail();
} catch(Doctrine_Db_Exception $e) {
$this->pass();
}
try {
$this->dbh = Doctrine_Db::getConnection('unknown');
$this->fail();
} catch(Doctrine_Db_Exception $e) {
$this->pass();
}
try {
$this->dbh = Doctrine_Db::getConnection(0);
$this->fail();
} catch(Doctrine_Db_Exception $e) {
$this->pass();
}
}
public function testInvalidScheme() {
try {
$this->dbh = Doctrine_Db::getConnection('unknown://:memory:');
$this->fail();
} catch(Doctrine_Db_Exception $e) {
$this->pass();
}
}
public function testInvalidHost() {
try {
$this->dbh = Doctrine_Db::getConnection('mysql://user:password@');
$this->fail();
} catch(Doctrine_Db_Exception $e) {
$this->pass();
}
}
public function testInvalidDatabase() {
try {
$this->dbh = Doctrine_Db::getConnection('mysql://user:password@host/');
$this->fail();
} catch(Doctrine_Db_Exception $e) {
$this->pass();
}
}
public function testGetConnectionPdoLikeDSN() {
$this->dbh = Doctrine_Db::getConnection('mysql:host=localhost;dbname=test', 'root', 'password');
$this->assertEqual($this->dbh->getOption('dsn'), 'mysql:host=localhost;dbname=test');
$this->assertEqual($this->dbh->getOption('username'), 'root');
$this->assertEqual($this->dbh->getOption('password'), 'password');
$this->dbh = Doctrine_Db::getConnection('sqlite::memory:');
$this->assertEqual($this->dbh->getOption('dsn'), 'sqlite::memory:');
$this->assertEqual($this->dbh->getOption('username'), false);
$this->assertEqual($this->dbh->getOption('password'), false);
}
public function testDriverName() {
}
public function testGetConnectionWithPearLikeDSN() {
$this->dbh = Doctrine_Db::getConnection('mysql://zYne:password@localhost/test');
$this->assertEqual($this->dbh->getOption('dsn'), 'mysql:host=localhost;dbname=test');
$this->assertEqual($this->dbh->getOption('username'), 'zYne');
$this->assertEqual($this->dbh->getOption('password'), 'password');
$this->dbh = Doctrine_Db::getConnection('sqlite://:memory:');
$this->assertEqual($this->dbh->getOption('dsn'), 'sqlite::memory:');
$this->assertEqual($this->dbh->getOption('username'), false);
$this->assertEqual($this->dbh->getOption('password'), false);
}
}