-
Notifications
You must be signed in to change notification settings - Fork 79
/
Copy pathexport-testcase.php
516 lines (422 loc) · 15.2 KB
/
export-testcase.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
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
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
<?php
/**
* A parent test case class for the data export tests.
*/
namespace WP_Parser\Tests;
/**
* Parent test case for data export tests.
*/
class Export_UnitTestCase extends \WP_UnitTestCase {
/**
* The exported data.
*
* @var string
*/
protected $export_data;
/**
* Parse the file for the current testcase.
*/
protected function parse_file() {
$class_reflector = new \ReflectionClass( $this );
$file = $class_reflector->getFileName();
$file = rtrim( $file, 'php' ) . 'inc';
$path = dirname( $file );
$export_data = \WP_Parser\parse_files( array( $file ), $path );
$this->export_data = $export_data[0];
}
/**
* Parse the file to get the exported data before the first test.
*/
public function setUp() {
parent::setUp();
if ( ! $this->export_data ) {
$this->parse_file();
}
}
/**
* Assert that an entity contains another entity.
*
* @param array $entity The exported entity data.
* @param string $type The type of thing that this entity should contain.
* @param array $expected The expected data for the thing the entity should contain.
*/
protected function assertEntityContains( $entity, $type, $expected ) {
$this->assertArrayHasKey( $type, $entity );
foreach ( $entity[ $type ] as $exported ) {
if ( $exported['line'] == $expected['line'] ) {
foreach ( $expected as $key => $expected_value ) {
$this->assertEquals( $expected_value, $exported[ $key ] );
}
return;
}
}
$this->fail( "No matching {$type} contained by {$entity['name']}." );
}
/**
* Assert that a file contains the declaration of a hook.
*
* @param array $hook The expected export data for the hook.
*/
protected function assertFileContainsHook( $hook ) {
$this->assertEntityContains( $this->export_data, 'hooks', $hook );
}
/**
* Assert that an entity uses another entity.
*
* @param array $entity The exported entity data.
* @param string $type The type of thing that this entity should use.
* @param array $used The expected data for the thing the entity should use.
*/
protected function assertEntityUses( $entity, $type, $used ) {
if ( ! $this->entity_uses( $entity, $type, $used ) ) {
$name = isset( $entity['path'] ) ? $entity['path'] : $entity['name'];
$this->fail( "No matching {$type} used by {$name}." );
}
}
/**
* Assert that an entity doesn't use another entity.
*
* @param array $entity The exported entity data.
* @param string $type The type of thing that this entity shouldn't use.
* @param array $used The expected data for the thing the entity shouldn't use.
*/
protected function assertEntityNotUses( $entity, $type, $used ) {
if ( $this->entity_uses( $entity, $type, $used ) ) {
$name = isset( $entity['path'] ) ? $entity['path'] : $entity['name'];
$this->fail( "Matching {$type} used by {$name}." );
}
}
/**
* Assert that a function uses another entity.
*
* @param string $type The type of entity. E.g. 'functions', 'methods'.
* @param string $function_name The name of the function that uses this function.
* @param array $entity The expected exported data for the used entity.
*/
protected function assertFunctionUses( $type, $function_name, $entity ) {
$function_data = $this->find_entity_data_in(
$this->export_data
, 'functions'
, $function_name
);
$this->assertInternalType( 'array', $function_data );
$this->assertEntityUses( $function_data, $type, $entity );
}
/**
* Assert that a function doesn't use another entity.
*
* @param string $type The type of entity. E.g. 'functions', 'methods'.
* @param string $function_name The name of the function that uses this function.
* @param array $entity The expected exported data for the used entity.
*/
protected function assertFunctionNotUses( $type, $function_name, $entity ) {
$function_data = $this->find_entity_data_in(
$this->export_data
, 'functions'
, $function_name
);
$this->assertInternalType( 'array', $function_data );
$this->assertEntityNotUses( $function_data, $type, $entity );
}
/**
* Assert that a method uses another entity.
*
* @param string $type The type of entity. E.g. 'functions', 'methods'.
* @param string $class_name The name of the class that the method is used in.
* @param string $method_name The name of the method that uses this method.
* @param array $entity The expected exported data for this entity.
*/
protected function assertMethodUses( $type, $class_name, $method_name, $entity ) {
$class_data = $this->find_entity_data_in(
$this->export_data
, 'classes'
, $class_name
);
$this->assertInternalType( 'array', $class_data );
$method_data = $this->find_entity_data_in(
$class_data
, 'methods'
, $method_name
);
$this->assertInternalType( 'array', $method_data );
$this->assertEntityUses( $method_data, $type, $entity );
}
/**
* Assert that a method doesn't use another entity.
*
* @param string $type The type of entity. E.g. 'functions', 'methods'.
* @param string $class_name The name of the class that the method is used in.
* @param string $method_name The name of the method that uses this method.
* @param array $entity The expected exported data for this entity.
*/
protected function assertMethodNotUses( $type, $class_name, $method_name, $entity ) {
$class_data = $this->find_entity_data_in(
$this->export_data
, 'classes'
, $class_name
);
$this->assertInternalType( 'array', $class_data );
$method_data = $this->find_entity_data_in(
$class_data
, 'methods'
, $method_name
);
$this->assertInternalType( 'array', $method_data );
$this->assertEntityNotUses( $method_data, $type, $entity );
}
/**
* Assert that a file uses a function.
*
* @param array $function The expected export data for the function.
*/
protected function assertFileUsesFunction( $function ) {
$this->assertEntityUses( $this->export_data, 'functions', $function );
}
/**
* Assert that a function uses another function.
*
* @param string $function_name The name of the function that uses this function.
* @param array $function The expected exported data for the used function.
*/
protected function assertFunctionUsesFunction( $function_name, $function ) {
$this->assertFunctionUses( 'functions', $function_name, $function );
}
/**
* Assert that a method uses a function.
*
* @param string $class_name The name of the class that the method is used in.
* @param string $method_name The name of the method that uses this method.
* @param array $function The expected exported data for this function.
*/
protected function assertMethodUsesFunction( $class_name, $method_name, $function ) {
$this->assertMethodUses( 'functions', $class_name, $method_name, $function );
}
/**
* Assert that a file uses a function.
*
* @param array $function The expected export data for the function.
*/
protected function assertFileNotUsesFunction( $function ) {
$this->assertEntityNotUses( $this->export_data, 'functions', $function );
}
/**
* Assert that a function uses another function.
*
* @param string $function_name The name of the function that uses this function.
* @param array $function The expected exported data for the used function.
*/
protected function assertFunctionNotUsesFunction( $function_name, $function ) {
$this->assertFunctionNotUses( 'functions', $function_name, $function );
}
/**
* Assert that a method uses a function.
*
* @param string $class_name The name of the class that the method is used in.
* @param string $method_name The name of the method that uses this method.
* @param array $function The expected exported data for this function.
*/
protected function assertMethodNotUsesFunction( $class_name, $method_name, $function ) {
$this->assertMethodNotUses( 'functions', $class_name, $method_name, $function );
}
/**
* Assert that a file uses an method.
*
* @param array $method The expected export data for the method.
*/
protected function assertFileUsesMethod( $method ) {
$this->assertEntityUses( $this->export_data, 'methods', $method );
}
/**
* Assert that a function uses a method.
*
* @param string $function_name The name of the function that uses this method.
* @param array $method The expected exported data for this method.
*/
protected function assertFunctionUsesMethod( $function_name, $method ) {
$this->assertFunctionUses( 'methods', $function_name, $method );
}
/**
* Assert that a method uses a method.
*
* @param string $class_name The name of the class that the method is used in.
* @param string $method_name The name of the method that uses this method.
* @param array $method The expected exported data for this method.
*/
protected function assertMethodUsesMethod( $class_name, $method_name, $method ) {
$this->assertMethodUses( 'methods', $class_name, $method_name, $method );
}
/**
* Assert that a file uses an method.
*
* @param array $method The expected export data for the method.
*/
protected function assertFileNotUsesMethod( $method ) {
$this->assertEntityNotUses( $this->export_data, 'methods', $method );
}
/**
* Assert that a function uses a method.
*
* @param string $function_name The name of the function that uses this method.
* @param array $method The expected exported data for this method.
*/
protected function assertFunctionNotUsesMethod( $function_name, $method ) {
$this->assertFunctionNotUses( 'methods', $function_name, $method );
}
/**
* Assert that a method uses a method.
*
* @param string $class_name The name of the class that the method is used in.
* @param string $method_name The name of the method that uses this method.
* @param array $method The expected exported data for this method.
*/
protected function assertMethodNotUsesMethod( $class_name, $method_name, $method ) {
$this->assertMethodNotUses( 'methods', $class_name, $method_name, $method );
}
/**
* Assert that an entity has a docblock.
*
* @param array $entity The exported entity data.
* @param array $docs The expected data for the entity's docblock.
* @param string $doc_key The key in the entity array that should hold the docs.
*/
protected function assertEntityHasDocs( $entity, $docs, $doc_key = 'doc' ) {
$this->assertArrayHasKey( $doc_key, $entity );
foreach ( $docs as $key => $expected_value ) {
$this->assertEquals( $expected_value, $entity[ $doc_key ][ $key ] );
}
}
/**
* Assert that a file has a docblock.
*
* @param array $docs The expected data for the file's docblock.
*/
protected function assertFileHasDocs( $docs ) {
$this->assertEntityHasDocs( $this->export_data, $docs, 'file' );
}
/**
* Assert that a function has a docblock.
*
* @param array $func The function name.
* @param array $docs The expected data for the function's docblock.
*/
protected function assertFunctionHasDocs( $func, $docs ) {
$func = $this->find_entity_data_in( $this->export_data, 'functions', $func );
$this->assertEntityHasDocs( $func, $docs );
}
/**
* Assert that a class has a docblock.
*
* @param array $class The class name.
* @param array $docs The expected data for the class's docblock.
*/
protected function assertClassHasDocs( $class, $docs ) {
$class = $this->find_entity_data_in( $this->export_data, 'classes', $class );
$this->assertEntityHasDocs( $class, $docs );
}
/**
* Assert that a method has a docblock.
*
* @param string $class The name of the class that the method is used in.
* @param string $method The method name.
* @param array $docs The expected data for the method's docblock.
*/
protected function assertMethodHasDocs( $class, $method, $docs ) {
$class = $this->find_entity_data_in( $this->export_data, 'classes', $class );
$this->assertInternalType( 'array', $class );
$method = $this->find_entity_data_in( $class, 'methods', $method );
$this->assertEntityHasDocs( $method, $docs );
}
/**
* Assert that a property has a docblock.
*
* @param string $class The name of the class that the method is used in.
* @param string $property The property name.
* @param array $docs The expected data for the property's docblock.
*/
protected function assertPropertyHasDocs( $class, $property, $docs ) {
$class = $this->find_entity_data_in( $this->export_data, 'classes', $class );
$this->assertInternalType( 'array', $class );
$property = $this->find_entity_data_in( $class, 'properties', $property );
$this->assertEntityHasDocs( $property, $docs );
}
/**
* Assert that a hook has a docblock.
*
* @param array $hook The hook name.
* @param array $docs The expected data for the hook's docblock.
*/
protected function assertHookHasDocs( $hook, $docs ) {
$hook = $this->find_entity_data_in( $this->export_data, 'hooks', $hook );
$this->assertEntityHasDocs( $hook, $docs );
}
/**
* Find the exported data for an entity.
*
* @param array $data The data to search in.
* @param string $type The type of entity.
* @param string $entity_name The name of the function.
*
* @return array|false The data for the entity, or false if it couldn't be found.
*/
protected function find_entity_data_in( $data, $type, $entity ) {
if ( empty( $data[ $type ] ) ) {
return false;
}
foreach ( $data[ $type ] as $entity_data ) {
if ( $entity_data['name'] === $entity ) {
return $entity_data;
}
}
return false;
}
/**
* Compact an array of strings to a multi-line string.
*
* @param array $lines The array of lines to turn into a multi-line string.
* @return string The processed multi-line string.
*/
protected function multiline_string( array $lines ) {
return implode( "\n", $lines );
}
/**
* Compact an array of strings into a docblock string.
*
* Takes an array of string, and creates a multi-line string starting with the
* classic docblock /** and ending with the *+/ to close out the docblock. Each
* line will have the whitespace param plus ' * ' added to it.
*
* @param array $lines The array of lines to create a docblock string from.
* @param string $whitespace Optional. The whitespace to use in the docblocks.
* @return string The docblock string created from the array of lines.
*/
protected function make_docblock( array $lines, $whitespace = '' ) {
array_walk( $lines, function( &$line ) use ( $whitespace ) {
$line = ( empty( $line ) ) ? '' : ' ' . $line;
$line = $whitespace . ' *' . $line;
});
array_unshift( $lines, '/**' );
$lines[] = $whitespace . ' */';
return $this->multiline_string( $lines );
}
/**
* Check if one entity uses another entity.
*
* @param array $entity The exported entity data.
* @param string $type The type of thing that this entity should use.
* @param array $used The expected data for the thing the entity should use.
*
* @return bool Whether the entity uses the other.
*/
function entity_uses( $entity, $type, $used ) {
if ( ! isset( $entity['uses'][ $type ] ) ) {
return false;
}
foreach ( $entity['uses'][ $type ] as $exported_used ) {
if ( $exported_used['line'] == $used['line'] ) {
$this->assertEquals( $used, $exported_used );
return true;
}
}
return false;
}
}