-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmissing-route-tests.php
396 lines (311 loc) · 7.18 KB
/
missing-route-tests.php
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
<?php
/**
* Get a list of routes organized by the route name
*/
function routes()
{
$routesByKey = [];
$routes = Route::getRoutes();
foreach ($routes as $route)
{
$action = simple_route_action($route);
if ($action) $routesByKey[$action] = $route;
}
return $routesByKey;
}
/**
* easy way to get the route name
* stripped of it's namespace (if it has one)
*/
function simple_route_action($route)
{
$name = $route->getActionName();
$action = $route->getAction();
if ($name && $action && array_key_exists('namespace', $action))
{
$name = remove_beginning($action['namespace'] . '\\', $name);
}
return $name;
}
/**
* this removes substr from the beginning of this string
*/
function remove_beginning($substr, $string)
{
if (strpos($string, $substr) === 0)
{
return substr($string, strlen($substr));
}
return $string;
}
/**
* find the namespace of this code
*
* namespace method from gist
* https://gist.github.com/naholyr/1885879
*/
function namespaceOf($src)
{
$tokens = token_get_all($src);
$count = count($tokens);
$i = 0;
$namespace = '';
$namespace_ok = false;
while ($i < $count) {
$token = $tokens[$i];
if (is_array($token) && $token[0] === T_NAMESPACE) {
// Found namespace declaration
while (++$i < $count) {
if ($tokens[$i] === ';') {
$namespace_ok = true;
$namespace = trim($namespace);
break;
}
$namespace .= is_array($tokens[$i]) ? $tokens[$i][1] : $tokens[$i];
}
break;
}
$i++;
}
if (!$namespace_ok) {
return null;
} else {
return $namespace;
}
}
/**
* find the class name (with namespace) for
* this file
*/
function classOf($file)
{
$src = file_get_contents($file->getRealPath());
$namespace = namespaceOf($src);
$className = trim($file->getBaseName(), '.' . $file->getExtension());
if ($namespace == null)
{
return $className;
}
return $namespace . "\\" . $className;
}
/**
* get the reflection class for this file
*/
function reflectionOf($file)
{
$className = classOf($file);
require_once $file->getRealPath();
return new ReflectionClass($className);
}
/**
* get the annotations of a single class method
*/
function annotationsOfMethod($method)
{
$comments = $method->getDocComment();
preg_match_all('#@(.*?)\n#s', $comments, $annotations);
return $annotations[1];
}
/**
* get all the annotations in a given file
*/
function annotationsOf($file)
{
$annotations = [];
$reflection = reflectionOf($file);
foreach ($reflection->getMethods() as $method)
{
$annotations = array_merge($annotations, annotationsOfMethod($method));
}
return $annotations;
}
/**
* filters out only the route annotations,
* that is what we are interested in
*/
function filterOutRouteAnnotations($annotations)
{
$filtered = [];
foreach ($annotations as $annotation)
{
if (starts_with($annotation, 'action '))
{
$filtered[] = explode(' ', remove_beginning('action ', trim($annotation)))[0];
}
}
return array_unique($filtered);
}
/**
* we get a list of tested laravel routes
* by using annotations in our test cases
*/
function allTestedRoutes()
{
$base = getcwd();
$annotations = [];
$finder = new \Symfony\Component\Finder\Finder();
$finder->files()->name('*Test.php')->in("{$base}/tests");
foreach ($finder as $file)
{
try {
$annotations = array_merge($annotations, annotationsOf($file));
} catch (Exception $e) {
print ' --- got an error on ' . $file->getBaseName() . PHP_EOL;
// do nothing, something was probably jacked
// up with the class...
}
}
return filterOutRouteAnnotations($annotations);
}
/**
* This function colors the text output on
* the console for us
*/
function color($str, $fgColor = null, $bgColor = null)
{
$colored = '';
$fg = [
'black' => '0;30',
'dark_gray' => '1;30',
'blue' => '0;34',
'light_blue' => '1;34',
'green' => '0;32',
'light_green' => '1;32',
'cyan' => '0;36',
'light_cyan' => '1;36',
'red' => '0;31',
'light_red' => '1;31',
'purple' => '0;35',
'light_purple' => '1;35',
'brown' => '0;33',
'yellow' => '1;33',
'light_gray' => '0;37',
'white' => '1;37',
];
$bg = [
'black' => '40',
'red' => '41',
'green' => '42',
'yellow' => '43',
'blue' => '44',
'magenta' => '45',
'cyan' => '46',
'light_gray' => '47',
];
if (isset($fg[$fgColor]))
{
$fgColor = $fg[$fgColor];
}
if (isset($bg[$bgColor]))
{
$bgColor = $bg[$bgColor];
}
if ($fgColor)
{
$colored .= "\033[{$fgColor}m";
}
if ($bgColor)
{
$colored .= "\033[{$bgColor}m";
}
return $colored . $str . "\033[0m";
}
/**
* helper for end of line
*/
function eol($str, $fgColor = null, $bgColor = null)
{
print color($str, $fgColor, $bgColor) . PHP_EOL;
}
/**
* prints a test for the route with color/style formatting
*/
function print_test_for_route($route)
{
$method = $route->methods()[0];
$uri = '/' . $route->uri();
$action = simple_route_action($route);
$routeName = $route->getName();
$name = $route->getName() ?: simple_route_action($route);
$funcName = strtolower(str_replace(['.', '-', '\\', '@'], '_', $name));
if (!$action) return;
$dataLine = null;
$callParams = color("'{$method}', \"{$uri}\"", 'yellow');
$assertParams = '200, $response->status()';
$incompleteParams = color("'This test is incomplete'", 'yellow');
if (strtoupper($method) != 'GET')
{
$callParams .= ', $data';
$dataLine = ' $data = [];';
$assertParams = '302, $response->status()';
}
eol('');
eol("/**", 'dark_gray');
if ($routeName) eol(" * @route {$routeName}", 'dark_gray');
eol(" * @action {$action}", 'dark_gray');
eol(" */", 'dark_gray');
eol(
color('public', 'light_red') . ' ' .
color('function', 'light_cyan') . ' ' .
color ("test_{$funcName}", 'light_green'). '()'
);
eol('{');
eol(' $this->markTestIncomplete(' . $incompleteParams . ');');
if ($dataLine) eol($dataLine);
eol(' $response = $this->call(' . $callParams . ');');
eol(' $this->assertEquals(' . $assertParams . ');');
eol('}');
eol('');
}
/**
* prints untested routes for us so we can copy
* and paste them into our routes file
*/
function print_untested($untested, $routes)
{
if (count($untested) == 0)
{
return eol('All routes appear tested.', 'light_blue');
}
foreach ($untested as $name)
{
print_test_for_route($routes[$name]);
}
}
/**
* prints invalid named routes found
*/
function print_invalid($invalid)
{
if (count($invalid) == 0) return;
eol('');
eol('WARNING', 'yellow');
eol('You have ' . color('@action', 'green') . ' annotations ');
eol('for route names that do not exist ');
eol('in your Laravel application: ');
foreach ($invalid as $name)
{
eol(" $name", 'red');
}
}
/**
* Runs the main prog for us (c++ style baby!)
*/
function main()
{
$routes = routes();
$routeNames = array_keys($routes);
$tested = allTestedRoutes();
$untested = array_diff($routeNames, $tested);
$invalid = array_diff($tested, $routeNames);
print_untested($untested, $routes);
print_invalid($invalid);
}
/**
* include dependencies and run the main method
*/
$base = getcwd();
require "{$base}/bootstrap/autoload.php";
$app = require "$base/bootstrap/app.php";
$app->make(Illuminate\Contracts\Console\Kernel::class)->bootstrap();
main();