forked from laruence/yaf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
013.phpt
135 lines (113 loc) · 3.08 KB
/
013.phpt
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
--TEST--
Check for Yaf_Router and Config Routes
--SKIPIF--
<?php if (!extension_loaded("yaf")) print "skip"; ?>
--INI--
yaf.use_namespace=0
--FILE--
<?php
$file = dirname(__FILE__) . "/simple.ini";
$config = new Yaf_Config_Ini($file, 'extra');
$routes = $config->routes;
print_r($routes);
$router = new Yaf_Router();
$router->addConfig($routes);
print_r($router->getRoutes());
?>
--EXPECTF--
Yaf_Config_Ini Object
(
[_config:protected] => Array
(
[regex] => Array
(
[type] => regex
[match] => ^/ap/(.*)
[route] => Array
(
[controller] => Index
[action] => action
)
[map] => Array
(
[0] => name
[1] => name
[2] => value
)
)
[simple] => Array
(
[type] => simple
[controller] => c
[module] => m
[action] => a
)
[supervar] => Array
(
[type] => supervar
[varname] => c
)
[rewrite] => Array
(
[type] => rewrite
[match] => /yaf/:name/:value
[route] => Array
(
[controller] => Index
[action] => action
)
)
)
[_readonly:protected] => 1
)
Array
(
[_default] => Yaf_Route_Static Object
(
)
[regex] => Yaf_Route_Regex Object
(
[_route:protected] => ^/ap/(.*)
[_default:protected] => Array
(
[controller] => Index
[action] => action
)
[_maps:protected] => Array
(
[0] => name
[1] => name
[2] => value
)
[_verify:protected] => Array
(
[controller] => Index
[action] => action
)
[_reverse:protected] =>
)
[simple] => Yaf_Route_Simple Object
(
[controller:protected] => c
[module:protected] => m
[action:protected] => a
)
[supervar] => Yaf_Route_Supervar Object
(
[_var_name:protected] => c
)
[rewrite] => Yaf_Route_Rewrite Object
(
[_route:protected] => /yaf/:name/:value
[_default:protected] => Array
(
[controller] => Index
[action] => action
)
[_verify:protected] => Array
(
[controller] => Index
[action] => action
)
)
)