forked from lox/pheasant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLockingTest.php
68 lines (54 loc) · 1.74 KB
/
LockingTest.php
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?php
namespace Pheasant\Tests;
use \Pheasant\Tests\Examples\Animal;
class LockingTest extends \Pheasant\Tests\MysqlTestCase
{
public function setUp()
{
parent::setUp();
$migrator = new \Pheasant\Migrate\Migrator();
$migrator
->create('animal', Animal::schema())
;
$this->queries = array();
$test = $this;
$this->connection()->filterChain()->onQuery(function($sql) use($test) {
$test->queries []= $sql;
return $sql;
});
}
public function testLockingAnInstance()
{
$animal = Animal::create(array('type'=>'Llama'));
$animal->transaction(function($animal) {
$animal->lock();
});
$this->assertTrue(in_array(
"SELECT * FROM `animal` AS `Animal` WHERE ((`id`='1')) FOR UPDATE",
$this->queries
));
}
public function testLockingAnInstanceCallsCallback()
{
$animal = Animal::create(array('type'=>'Llama'));
$object = new \stdClass();
$object->called = false;
// fudge the data in the background
$this->connection()->execute('UPDATE animal SET type="walrus" WHERE id=1');
$animal->transaction(function($animal) use($object) {
$animal->lock(function($locked) use($object) {
$object->called = true;
});
});
$this->assertTrue($object->called);
}
public function testLockingAnUnsavedInstanceThrowsExceptions()
{
$animal = new Animal();
$animal->type = 'llama';
$this->setExpectedException('\Pheasant\Locking\LockingException');
$animal->transaction(function($animal) {
$animal->lock();
});
}
}