From c6a0dd655b26fb3ae3d13d1a89e480e8150a0d6c Mon Sep 17 00:00:00 2001 From: zYne Date: Sat, 10 Nov 2007 13:09:14 +0000 Subject: [PATCH] tests for deleting CTI records --- tests/ClassTableInheritanceTestCase.php | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/tests/ClassTableInheritanceTestCase.php b/tests/ClassTableInheritanceTestCase.php index a0a519b7b..4f02fbf92 100644 --- a/tests/ClassTableInheritanceTestCase.php +++ b/tests/ClassTableInheritanceTestCase.php @@ -186,6 +186,29 @@ class Doctrine_ClassTableInheritance_TestCase extends Doctrine_UnitTestCase $this->assertEqual($record->added, 0); $this->assertEqual($record->age, 11); } + + public function testDeleteIssuesQueriesOnAllJoinedTables() + { + $this->conn->clear(); + + $profiler = new Doctrine_Connection_Profiler(); + $this->conn->addListener($profiler); + + $record = $this->conn->getTable('CTITest')->find(1); + + $record->delete(); + + // pop the commit event + $profiler->pop(); + $this->assertEqual($profiler->pop()->getQuery(), 'DELETE FROM c_t_i_test_parent4 WHERE id = ?'); + // pop the prepare event + $profiler->pop(); + $this->assertEqual($profiler->pop()->getQuery(), 'DELETE FROM c_t_i_test_parent3 WHERE id = ?'); + // pop the prepare event + $profiler->pop(); + $this->assertEqual($profiler->pop()->getQuery(), 'DELETE FROM c_t_i_test_parent2 WHERE id = ?'); + $this->conn->addListener(new Doctrine_EventListener()); + } } class CTITestParent1 extends Doctrine_Record {