. */ /** * Doctrine_AuditLog_TestCase * * @package Doctrine * @author Konsta Vesterinen * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @category Object Relational Mapping * @link www.phpdoctrine.com * @since 1.0 * @version $Revision$ */ class Doctrine_AuditLog_TestCase extends Doctrine_UnitTestCase { public function prepareData() { } public function prepareTables() { } public function testUpdateTriggerSqlReturnsProperQuery() { $table = $this->conn->getTable('User'); $auditLog = new Doctrine_AuditLog(); $sql = $auditLog->updateTriggerSql($table); $this->assertEqual($sql, 'CREATE TRIGGER entity_dut UPDATE ON entity BEGIN INSERT INTO entity_dvt (id, name, loginname, password, type, created, updated, email_id) VALUES (old.id, old.name, old.loginname, old.password, old.type, old.created, old.updated, old.email_id); END;'); } public function testDeleteTriggerSqlReturnsProperQuery() { $table = $this->conn->getTable('User'); $auditLog = new Doctrine_AuditLog(); $sql = $auditLog->deleteTriggerSql($table); $this->assertEqual($sql, 'CREATE TRIGGER entity_ddt DELETE ON entity BEGIN INSERT INTO entity_dvt (id, name, loginname, password, type, created, updated, email_id) VALUES (old.id, old.name, old.loginname, old.password, old.type, old.created, old.updated, old.email_id); END;'); } }