-
-
Notifications
You must be signed in to change notification settings - Fork 184
Expand file tree
/
Copy pathQueryBuilderTest.php
More file actions
90 lines (73 loc) · 2.18 KB
/
QueryBuilderTest.php
File metadata and controls
90 lines (73 loc) · 2.18 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<?php namespace Pixie;
use PDO;
use Mockery as m;
use Pixie\QueryBuilder\QueryBuilderHandler;
class QueryBuilder extends TestCase
{
/**
* @var QueryBuilderHandler
*/
protected $builder;
public function setUp()
{
parent::setUp();
$this->builder = new QueryBuilderHandler($this->mockConnection);
}
public function testRawQuery()
{
$query = 'select * from cb_my_table where id = ? and name = ?';
$bindings = array(5, 'usman');
$queryArr = $this->builder->query($query, $bindings)->get();
$this->assertEquals(
array(
$query,
array(array(5, PDO::PARAM_INT), array('usman', PDO::PARAM_STR)),
),
$queryArr
);
}
public function testInsertQueryReturnsIdForInsert()
{
$this->mockPdoStatement
->expects($this->once())
->method('rowCount')
->will($this->returnValue(1));
$this->mockPdo
->expects($this->once())
->method('lastInsertId')
->will($this->returnValue(11));
$id = $this->builder->table('test')->insert(array(
'id' => 5,
'name' => 'usman'
));
$this->assertEquals(11, $id);
}
public function testInsertQueryReturnsIdForInsertIgnore()
{
$this->mockPdoStatement
->expects($this->once())
->method('rowCount')
->will($this->returnValue(1));
$this->mockPdo
->expects($this->once())
->method('lastInsertId')
->will($this->returnValue(11));
$id = $this->builder->table('test')->insertIgnore(array(
'id' => 5,
'name' => 'usman'
));
$this->assertEquals(11, $id);
}
public function testInsertQueryReturnsNullForIgnoredInsert()
{
$this->mockPdoStatement
->expects($this->once())
->method('rowCount')
->will($this->returnValue(0));
$id = $this->builder->table('test')->insertIgnore(array(
'id' => 5,
'name' => 'usman'
));
$this->assertEquals(null, $id);
}
}