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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
<?php
class Group_test extends CI_TestCase {
/**
* @var object Database/Query Builder holder
*/
protected $db;
public function set_up()
{
$this->db = Mock_Database_Schema_Skeleton::init(DB_DRIVER);
Mock_Database_Schema_Skeleton::create_tables();
Mock_Database_Schema_Skeleton::create_data();
}
// ------------------------------------------------------------------------
/**
* @see ./mocks/schema/skeleton.php
*/
public function test_group_by()
{
$jobs = $this->db->select('name')
->from('job')
->group_by('name')
->get()
->result_array();
$this->assertEquals(4, count($jobs));
}
// ------------------------------------------------------------------------
/**
* @see ./mocks/schema/skeleton.php
*/
public function test_having_by()
{
$jobs = $this->db->select('name')
->from('job')
->group_by('name')
->having('SUM(id) > 2')
->get()
->result_array();
$this->assertEquals(2, count($jobs));
}
// ------------------------------------------------------------------------
/**
* @see ./mocks/schema/skeleton.php
*/
public function test_having_in()
{
$jobs = $this->db->select('name')
->from('job')
->group_by('name')
->having_in('SUM(id)', array(1, 2, 5))
->get()
->result_array();
$this->assertEquals(2, count($jobs));
}
// ------------------------------------------------------------------------
/**
* @see ./mocks/schema/skeleton.php
*/
public function test_or_having_in()
{
$jobs = $this->db->select('name')
->from('job')
->group_by('name')
->or_having_in('SUM(id)', array(1, 5))
->or_having_in('SUM(id)', array(2, 6))
->get()
->result_array();
$this->assertEquals(2, count($jobs));
}
// ------------------------------------------------------------------------
/**
* @see ./mocks/schema/skeleton.php
*/
public function test_having_not_in()
{
$jobs = $this->db->select('name')
->from('job')
->group_by('name')
->having_not_in('SUM(id)', array(3, 6))
->get()
->result_array();
$this->assertEquals(3, count($jobs));
}
// ------------------------------------------------------------------------
/**
* @see ./mocks/schema/skeleton.php
*/
public function test_or_having_not_in()
{
$jobs = $this->db->select('name')
->from('job')
->group_by('name')
->or_having_not_in('SUM(id)', array(1, 2, 3))
->or_having_not_in('SUM(id)', array(1, 3, 4))
->get()
->result_array();
$this->assertEquals(2, count($jobs));
}
}
|