-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPsa_Group_Test.php
More file actions
228 lines (149 loc) · 4.21 KB
/
Copy pathPsa_Group_Test.php
File metadata and controls
228 lines (149 loc) · 4.21 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
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
<?php
include_once 'psa_init.php';
class Psa_Group_Test extends PHPUnit_Framework_TestCase{
protected function setUp(){
run_sql_file();
}
// tearDown()
public function testRestoreByID(){
$group = new Psa_Group('psa');
$group->restore();
$this->assertEquals(1, $group->id);
}
public function testRestoreByName(){
$group = new Psa_Group(1);
$group->restore();
$this->assertEquals('psa', $group->name);
}
public function testCreate(){
$group = new Psa_Group('new');
$group->name = 'TestName';
$group->save();
$group = new Psa_Group('TestName');
$group->restore();
$this->assertEquals(2, $group->id);
$group = new Psa_Group(2);
$group->restore();
$this->assertEquals('TestName', $group->name);
}
public function testRename(){
$group = new Psa_Group(1);
$group->name = 'TestRename';
$group->save();
$group = new Psa_Group(1);
$group->restore();
$this->assertEquals('TestRename', $group->name);
}
public function testChangeID(){
$group = new Psa_Group('new');
$group->name = 'testChangeID';
$group->save();
$group = new Psa_Group('testChangeID');
$group->id = 20;
$group->save();
$group = new Psa_Group(20);
$group->restore();
$this->assertEquals('testChangeID', $group->name);
}
/**
* @expectedException Psa_Group_Exception
*/
public function testDeleteByID(){
psa_delete_group(1);
$group = new Psa_Group(1);
$group->restore();
}
/**
* @expectedException Psa_Group_Exception
*/
public function testDeleteByName(){
psa_delete_group('psa');
$group = new Psa_Group(1);
$group->restore();
}
public function testDeleteSeveral(){
$group = new Psa_Group('new');
$group->name = 'testDeleteSeveralByID1';
$group->save();
$group = new Psa_Group('new');
$group->name = 'testDeleteSeveralByID2';
$id = $group->save();
psa_delete_group(array('psa', 'testDeleteSeveralByID1', $id));
try{
$group = new Psa_Group(1);
$group->restore();
}catch(Psa_Group_Exception $e){
}
if($group->name)
$this->fail('Failed delete group psa');
try{
$group = new Psa_Group('testDeleteSeveralByID1');
$group->restore();
}catch(Psa_Group_Exception $e){
}
if($group->id)
$this->fail('Failed delete group testDeleteSeveralByID1');
try{
$group = new Psa_Group($id);
$group->restore();
}catch(Psa_Group_Exception $e){
}
if($group->name)
$this->fail('Failed delete group testDeleteSeveralByID2');
}
public function testDeleteUnexisting(){
$this->assertEquals(-1, psa_delete_group('xxxxxxx'));
}
public function testDeleteSeveralUnexisting(){
$this->assertEquals(-1, psa_delete_group(array('xxxxxxx', 123, 'psa')));
}
/**
* @expectedException Psa_Group_Exception
*/
public function testRestoreUnexisting(){
$group = new Psa_Group(123);
$group->restore();
}
public function testAddRemoveUser(){
$group = new Psa_Group(1);
$this->assertEquals(1, $group->remove_user(1));
$this->assertEquals(0, psa_is_user_in_group(1, 1));
$group = new Psa_Group(1);
$this->assertEquals(1, $group->add_user(1));
$this->assertEquals(1, psa_is_user_in_group(1, 1));
}
public function testAddUsers(){
$group = new Psa_Group(1);
$this->assertEquals(-1, $group->add_user(array(3, 2, 1)));
}
public function testAddUnexistingUser(){
$group = new Psa_Group(1);
$this->assertEquals(-1, $group->add_user(123));
}
public function testRemoveUsers(){
$group = new Psa_Group(1);
$this->assertEquals(-1, $group->remove_user(array(3, 2, 1)));
$this->assertEquals(0, psa_is_user_in_group(1, 1));
}
public function testRemoveUnexistingUser(){
$group = new Psa_Group(1);
$this->assertEquals(-1, $group->remove_user(123));
}
public function testExtend(){
global $TCFG;
run_sql_file('test2');
$group = new TestGroup('TestGroup');
$group->restore();
$this->assertEquals('aaa', $group->custom_col1);
$group->custom_col2 = 'eee';
$group->save();
$group->restore();
$this->assertEquals('eee', $group->custom_col2);
$this->assertEquals('ccc', $group->custom_col3);
}
}
class TestGroup extends Psa_Group{
public function __construct($group_id_or_groupname){
parent::__construct($group_id_or_groupname, array('id', 'name', 'custom_col1', 'custom_col2', 'custom_col3'));
}
}