-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRouterTest.php
More file actions
305 lines (264 loc) · 7.85 KB
/
RouterTest.php
File metadata and controls
305 lines (264 loc) · 7.85 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
<?php
/**
* @author : Jakiboy
* @package : FloatPHP
* @subpackage : Classes Http Component Tests
* @version : 1.5.x
* @copyright : (c) 2018 - 2025 Jihad Sinnaour <me@jihadsinnaour.com>
* @link : https://floatphp.com
* @license : MIT
*
* This file if a part of FloatPHP Framework.
*/
declare(strict_types=1);
namespace FloatPHP\Tests\Classes\Http;
use PHPUnit\Framework\TestCase;
use FloatPHP\Classes\Http\Router;
/**
* Router class tests.
*/
final class RouterTest extends TestCase
{
private Router $router;
protected function setUp(): void
{
$this->router = new Router();
}
/**
* Test router initialization.
*/
public function testRouterInitialization(): void
{
$router = new Router();
$this->assertInstanceOf(Router::class, $router);
}
/**
* Test router initialization with routes.
*/
public function testRouterInitializationWithRoutes(): void
{
$routes = [
['GET', '/', 'HomeController@index', 'home'],
['POST', '/users', 'UserController@create', 'users.create']
];
$router = new Router($routes);
$this->assertInstanceOf(Router::class, $router);
}
/**
* Test router initialization with base path.
*/
public function testRouterInitializationWithBasePath(): void
{
$router = new Router([], '/api/v1');
$this->assertInstanceOf(Router::class, $router);
}
/**
* Test router initialization with custom types.
*/
public function testRouterInitializationWithCustomTypes(): void
{
$customTypes = [
'slug' => '[a-z0-9\-]+',
'uuid' => '[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}'
];
$router = new Router([], '', $customTypes);
$this->assertInstanceOf(Router::class, $router);
}
/**
* Test get routes.
*/
public function testGetRoutes(): void
{
$routes = $this->router->getRoutes();
$this->assertIsArray($routes);
}
/**
* Test add routes method exists.
*/
public function testAddRoutesMethodExists(): void
{
$this->assertTrue(method_exists(Router::class, 'addRoutes'));
}
/**
* Test set base path.
*/
public function testSetBase(): void
{
$this->router->setBase('/api');
$this->assertInstanceOf(Router::class, $this->router);
}
/**
* Test map method exists.
*/
public function testMapMethodExists(): void
{
$this->assertTrue(method_exists(Router::class, 'map'));
}
/**
* Test match method exists.
*/
public function testMatchMethodExists(): void
{
$this->assertTrue(method_exists(Router::class, 'match'));
}
/**
* Test generate method exists.
*/
public function testGenerateMethodExists(): void
{
$this->assertTrue(method_exists(Router::class, 'generate'));
}
/**
* Test router constants.
*/
public function testRouterConstants(): void
{
$this->assertEquals('', Router::BASE);
$this->assertIsString(Router::REGEX);
$this->assertIsArray(Router::TYPES);
}
/**
* Test default route types.
*/
public function testDefaultRouteTypes(): void
{
$types = Router::TYPES;
$this->assertArrayHasKey('i', $types);
$this->assertArrayHasKey('a', $types);
$this->assertArrayHasKey('h', $types);
$this->assertArrayHasKey('*', $types);
$this->assertArrayHasKey('**', $types);
$this->assertArrayHasKey('', $types);
$this->assertEquals('[0-9]++', $types['i']);
$this->assertEquals('[0-9A-Za-z]++', $types['a']);
$this->assertEquals('[0-9A-Fa-f]++', $types['h']);
$this->assertEquals('.+?', $types['*']);
$this->assertEquals('.++', $types['**']);
$this->assertEquals('[^/\.]++',$types['']);
}
/**
* Test regex pattern.
*/
public function testRegexPattern(): void
{
$regex = Router::REGEX;
$this->assertIsString($regex);
$this->assertStringStartsWith('`', $regex);
$this->assertStringEndsWith('`', $regex);
}
/**
* Test router with simple routes.
*/
public function testRouterWithSimpleRoutes(): void
{
$routes = [
['GET', '/', 'home'],
['POST', '/login', 'login'],
['GET', '/users', 'users.index']
];
$router = new Router($routes);
$routesList = $router->getRoutes();
$this->assertIsArray($routesList);
}
/**
* Test router with parametric routes.
*/
public function testRouterWithParametricRoutes(): void
{
$routes = [
['GET', '/users/[i:id]', 'users.show'],
['GET', '/posts/[a:slug]', 'posts.show'],
['GET', '/categories/[*:path]', 'categories.show']
];
$router = new Router($routes);
$this->assertInstanceOf(Router::class, $router);
}
/**
* Test router with named routes.
*/
public function testRouterWithNamedRoutes(): void
{
$routes = [
['GET', '/', 'HomeController@index', 'home'],
['GET', '/about', 'PageController@about', 'about'],
['POST', '/contact', 'ContactController@send', 'contact.send']
];
$router = new Router($routes);
$this->assertInstanceOf(Router::class, $router);
}
/**
* Test router with complex routes.
*/
public function testRouterWithComplexRoutes(): void
{
$routes = [
['GET|POST', '/api/users/[i:id]/posts/[i:post_id]?', 'ApiController@userPost'],
['PUT|PATCH', '/api/users/[i:id]', 'ApiController@updateUser'],
['DELETE', '/api/users/[i:id]', 'ApiController@deleteUser']
];
$router = new Router($routes);
$this->assertInstanceOf(Router::class, $router);
}
/**
* Test router with middleware.
*/
public function testRouterWithMiddleware(): void
{
$routes = [
['GET', '/admin/*', 'AdminController@index', 'admin', ['auth', 'admin']],
['GET', '/dashboard', 'DashboardController@index', 'dashboard', ['auth']]
];
$router = new Router($routes);
$this->assertInstanceOf(Router::class, $router);
}
/**
* Test router error handling.
*/
public function testRouterErrorHandling(): void
{
$this->expectException(\FloatPHP\Exceptions\Classes\RouterException::class);
// Pass invalid routes (not traversable)
$invalidRoutes = 'not_an_array';
$router = new Router();
$router->addRoutes($invalidRoutes);
}
/**
* Test empty base path.
*/
public function testEmptyBasePath(): void
{
$router = new Router([], '');
$this->assertInstanceOf(Router::class, $router);
}
/**
* Test base path with slashes.
*/
public function testBasePathWithSlashes(): void
{
$router = new Router([], '/api/v1/');
$this->assertInstanceOf(Router::class, $router);
}
/**
* Test route with optional parameters.
*/
public function testRouteWithOptionalParameters(): void
{
$routes = [
['GET', '/posts/[i:year]?/[i:month]?/[a:slug]?', 'posts.archive']
];
$router = new Router($routes);
$this->assertInstanceOf(Router::class, $router);
}
/**
* Test route with wildcards.
*/
public function testRouteWithWildcards(): void
{
$routes = [
['GET', '/files/**', 'files.serve'],
['GET', '/assets/*', 'assets.serve']
];
$router = new Router($routes);
$this->assertInstanceOf(Router::class, $router);
}
}