1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
class Doctrine_Record_Lock_TestCase extends Doctrine_UnitTestCase {
public function prepareTables()
{
$this->tables[] = 'rec1';
$this->tables[] = 'rec2';
parent::prepareTables();
}
public function prepareData() { }
public function testDeleteRecords()
{
$rec1 = new Rec1();
$rec1->first_name = 'Some name';
$rec1->Account = new Rec2();
$rec1->Account->address = 'Some address';
$rec1->save();
$rec1->delete();
$this->pass();
}
}
class Rec1 extends Doctrine_Record
{
public function setTableDefinition()
{
$this->hasColumn('first_name', 'string', 128, array ());
}
public function setUp()
{
$this->ownsOne('Rec2 as Account', array('local' => 'id', 'foreign' => 'user_id'));
}
}
class Rec2 extends Doctrine_Record
{
public function setTableDefinition()
{
$this->hasColumn('user_id', 'integer', 10, array ( 'unique' => true,));
$this->hasColumn('address', 'string', 150, array ());
}
public function setUp()
{
$this->ownsOne('Rec1 as User', 'Rec2.user_id');
}
}