public
Description: MIT licensed pieces
Homepage: http://mark-story.com
Clone URL: git://github.com/markstory/story-scribbles.git
story-scribbles / cakephp / components / menu / menu.test.php
100755 437 lines (402 sloc) 10.324 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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
<?php
/**
* Menu Component Test
*
* Copyright 2008, Mark Story.
* 823 millwood rd.
* toronto, ontario M4G 1W3
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright 2008, Mark Story.
* @link http://mark-story.com
* @version 1.0
* @author Mark Story <mark@mark-story.com>
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
*/
App::import('Component', array('Menu', 'Acl', 'Auth'));
App::import('Controller', 'AppController');
 
class TestMenuComponent extends MenuComponent {
var $cacheKey = 'test_menu_storage';
 
function testMergeMenu($cachedMenus) {
return $this->_mergeMenuCache($cachedMenus);
}
 
function testFormatMenu($menus) {
return $this->_formatMenu($menus);
}
 
/**
* Fake getControllers to reflect things in TestCase
*
* @return void
**/
function getControllers() {
return array('Controller1', 'Controller2');
}
 
}
 
 
class TestMenuController extends AppController {
var $components = array('TestMenu');
}
 
class AuthUser extends CakeTestModel {
var $name = 'AuthUser';
}
 
class Controller1Controller extends Controller {
function action1() {}
function action2() {}
}
class Controller2Controller extends Controller {
function action1() {}
function action2() {}
function admin_action(){}
}
 
Mock::generate('AclComponent', 'MenuTestMockAclComponent');
/**
* Menu Component Test Case
*
* @package default
* @author Mark Story
**/
class MenuComponentTestCase extends CakeTestCase {
 
/**
* undocumented function
*
* @return void
**/
function setUp() {
$this->Menu = new TestMenuComponent();
$this->Controller = new TestMenuController();
$this->Menu->Acl = new MenuTestMockAclComponent();
$this->Menu->Auth = new AuthComponent();
$this->_admin = Configure::read('Routing.admin');
Configure::write('Routing.admin', 'admin');
}
 
/**
* initialize uses hidden features in components
*
* @return void
**/
function testInitialize() {
$settings = array(
'cacheKey' => 'my_test_key',
'aclPath' => 'myAclPath/',
'defaultMenuParent' => '__root__'
);
$this->Menu->initialize($this->Controller, $settings);
$this->assertEqual($this->Menu->cacheKey, $settings['cacheKey']);
$this->assertEqual($this->Menu->aclPath, $settings['aclPath']);
}
 
/**
* testWriteCache
*
* @access public
* @return void
*/
function testWriteCache() {
$this->Menu->generateRawMenus();
$result = $this->Menu->writeCache();
$this->assertTrue($result);
}
 
/**
* Test Add Menu Method
*
* @return void
**/
function testAddMenu() {
$menu = array(
'url' => array(
'controller' => 'posts',
'action' => 'delete'
),
);
$this->Menu->addMenu($menu);
$expected = array(
'url' => array(
'controller' => 'posts',
'action' => 'delete',
),
'id' => 'posts-delete',
'parent' => null,
'title' => 'Delete',
'weight' => 0
);
$this->assertEqual($this->Menu->rawMenus[0], $expected);
$this->Menu->rawMenus = array();
 
$menu = array(
'url' => array(
'controller' => 'posts',
'action' => 'delete',
),
'id' => 'funky-id',
'parent' => 'posts',
'weight' => 0
);
$this->Menu->addMenu($menu);
$expected = array(
'url' => array(
'controller' => 'posts',
'action' => 'delete',
),
'id' => 'funky-id',
'parent' => 'posts',
'title' => 'Delete',
'weight' => 0
);
$this->assertEqual($this->Menu->rawMenus[0], $expected);
$this->Menu->rawMenus = array();
}
/**
* Test the merging of cached records and those add in beforeFilter()
*
* @access public
* @return void
*/
function testMergeMenus() {
$cached = array(
array(
'parent' => null,
'id' => 'comments',
'title' => 'Comments',
'url' => array(
'controller' => 'comments',
'action' => 'index',
'admin' => false
),
),
array(
'parent' => null,
'id' => 'comments-add',
'title' => 'Add',
'url' => array(
'controller' => 'comments',
'action' => 'add',
'admin' => false
),
),
array(
'parent' => 'posts',
'id' => 'posts-add',
'title' => 'Add',
'url' => array(
'controller' => 'posts',
'action' => 'add',
'admin' => false,
),
),
array(
'parent' => null,
'id' => 'posts',
'title' => 'Posts',
'url' => array(
'controller' => 'posts',
'action' => 'index',
'admin' => false
),
),
);
$this->Menu->addMenu(array(
'parent' => null,
'title' => 'Dashboard',
'url' => array('controller' => 'users', 'action' => 'home')
));
$result = $this->Menu->testMergeMenu($cached);
$this->assertTrue(count($result), 5);
$this->assertEqual($result[4]['title'], 'Dashboard');
$this->Menu->rawMenus = array();
 
 
$this->Menu->addMenu(array(
'parent' => 'comments',
'title' => 'Test Add',
'url' => array(
'controller' => 'comments',
'action' => 'safety'
),
));
$result = $this->Menu->testMergeMenu($cached);
$this->assertEqual(count($result), 5);
$this->assertEqual($result[4]['title'], 'Test Add');
}
 
/**
* undocumented function
*
* @return void
**/
function testFilterMethods() {
$this->Menu->createExclusions();
$methods = array('add', 'buildFoo', 'admin_view', 'bother');
$result = $this->Menu->filterMethods($methods);
$this->assertEqual($result, array('add', 'buildFoo', 'bother'));
 
$methods[] = '__secret';
$methods[] = '_hidden';
$result = $this->Menu->filterMethods($methods);
$this->assertEqual($result, array('add', 'buildFoo', 'bother'));
 
$result = $this->Menu->filterMethods($methods, array('buildFoo'));
$this->assertEqual($result, array('add', 'bother'));
}
 
/**
* test Menu Generation
*
* @return void
**/
function testConstructMenu() {
$aro = array(
'AuthUser' => array('id' => 1)
);
$this->Menu->Acl->setReturnValue('check', true);
$this->Menu->Acl->expectCallCount('check', '7');
 
$this->Menu->constructMenu($aro);
 
$this->assertFalse(empty($this->Menu->menu));
Cache::set(array('duration' => $this->Menu->cacheTime));
$this->assertTrue(is_array(Cache::read('AuthUser1_'. $this->Menu->cacheKey)));
$result = $this->Menu->menu;
 
$this->assertEqual(count($result), 2);
$this->assertEqual(count($result[0]['children']), 2);
$this->assertEqual(count($result[1]['children']), 3);
 
Cache::delete('AuthUser1_'.$this->Menu->cacheKey);
}
 
function testConstructMenuWithFails() {
$aro = array(
'AuthUser' => array('id' => 1)
);
$this->Menu->Acl->setReturnValue('check', true);
$this->Menu->Acl->setReturnValueAt(2, 'check', false);
$this->Menu->Acl->expectCallCount('check', '7');
 
$this->Menu->constructMenu($aro);
 
$this->assertFalse(empty($this->Menu->menu));
Cache::set(array('duration' => $this->Menu->cacheTime));
$this->assertTrue(is_array(Cache::read('AuthUser1_'. $this->Menu->cacheKey)));
$result = $this->Menu->menu;
$this->assertEqual(count($result), 1);
$this->assertEqual(count($result[0]['children']), 3);
 
Cache::delete('AuthUser1_'.$this->Menu->cacheKey);
}
/**
* testLoadCache
*
* @access public
* @return void
*/
function testLoadCache() {
$this->Menu->generateRawMenus();
$this->Menu->writeCache();
$this->Menu->rawMenus = array();
 
$result = $this->Menu->loadCache();
$this->assertTrue($result);
$this->assertFalse(empty($this->Menu->rawMenus));
}
/**
* testClearCache
*
* @access public
* @return void
*/
function testClearCache() {
$this->Menu->generateRawMenus();
$this->Menu->writeCache();
Cache::set(array('duration' => $this->Menu->cacheTime));
$this->assertTrue(is_array(Cache::read($this->Menu->cacheKey)));
}
/**
* testformatMenu
*
* @return void
**/
function testFormatMenu() {
$this->Menu->generateRawMenus();
$result = $this->Menu->testFormatMenu($this->Menu->rawMenus);
$this->assertEqual(count($result), 2); //2 controllers in test.
$this->assertEqual(count($result[0]['children']), 2); // actions in first controller
$this->assertEqual(count($result[1]['children']), 3); //actions second controller
 
$expected = array(
'id' => 'controller2-action1',
'parent' => 'controller2',
'url' => array(
'controller' => 'controller2',
'action' => 'action1',
'admin' => false,
),
'title' => 'Action1',
'weight' => 0,
'children' => array(),
);
$this->assertEqual($result[1]['children'][0], $expected);
}
/**
* Generate the Raw Menus
*
* @return void
**/
function testGenerateRawMenus() {
$this->Menu->generateRawMenus();
$result = $this->Menu->rawMenus;
$this->assertEqual(count($result), 7);
 
$expected = array(
'id' => 'controller1-action1',
'parent' => 'controller1',
'url' => array(
'controller' => 'controller1',
'action' => 'action1',
'admin' => false,
),
'title' => 'Action1',
'weight' => 0
);
$this->assertEqual($result[0], $expected);
 
$expected = array(
'id' => 'controller1',
'parent' => '',
'url' => array(
'controller' => 'controller1',
'action' => 'index',
'admin' => false,
),
'title' => 'Controller1',
'weight' => 0,
);
$this->assertEqual($result[2], $expected);
}
/**
* test Sorting by weight.
*
* @access public
* @return void
*/
function testWeightSorting() {
$this->Menu->Acl->setReturnValue('check', true);
$this->Menu->addMenu(array(
'title' => 'First',
'url' => array(
'controller' => 'posts',
'action' => 'delete'
),
'weight' => 1,
));
$this->Menu->addMenu(array(
'title' => 'Third',
'url' => array(
'controller' => 'posts',
'action' => 'more_stuff'
),
'weight' => 4,
));
$this->Menu->addMenu(array(
'title' => 'Second',
'url' => array(
'controller' => 'posts',
'action' => 'do_stuff'
),
'weight' => 2,
));
$this->Menu->constructMenu(array('User' => array('id' => 1)));
$result = $this->Menu->menu;
$this->assertEqual($result[2]['title'], 'First');
$this->assertEqual($result[3]['title'], 'Second');
$this->assertEqual($result[4]['title'], 'Third');
 
Cache::delete('User1_'.$this->Menu->cacheKey);
}
 
function tearDown() {
ClassRegistry::flush();
$this->Menu->clearCache();
Configure::write('Routing.admin', $this->_admin);
unset($this->Menu, $this->Controller);
}
}
?>