-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathSystemInfoTest.php
More file actions
494 lines (433 loc) · 13.4 KB
/
SystemInfoTest.php
File metadata and controls
494 lines (433 loc) · 13.4 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
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
<?php
/**
* Test cases for the SystemInfo class.
*
* @package accessibility-checker
*/
use EqualizeDigital\AccessibilityChecker\SystemInfo\SystemInfo;
/**
* Tests for SystemInfo static helper methods.
*/
class SystemInfoTest extends WP_UnitTestCase {
/**
* Returns normalized tags for a theme.
*
* @param WP_Theme $theme Theme object.
* @return array<int, string>
*/
private function get_theme_tags( WP_Theme $theme ) {
$tags = $theme->get( 'Tags' );
return is_array( $tags ) ? $tags : [];
}
/**
* Computes expected accessibility-ready status from theme and parent tags.
*
* @param WP_Theme $theme Theme object.
* @return bool
*/
private function compute_expected_accessibility_ready( WP_Theme $theme ) {
$tags = $this->get_theme_tags( $theme );
if ( $theme->parent() ) {
$tags = array_merge( $tags, $this->get_theme_tags( $theme->parent() ) );
}
return in_array( 'accessibility-ready', $tags, true );
}
/**
* Finds the first installed theme matching the given predicate.
*
* @param callable $predicate Matcher callback.
* @return WP_Theme|null
*/
private function find_installed_theme( $predicate ) {
foreach ( wp_get_themes() as $theme ) {
if ( ! $theme instanceof WP_Theme || ! $theme->exists() ) {
continue;
}
if ( call_user_func( $predicate, $theme ) ) {
return $theme;
}
}
return null;
}
/**
* A plugin living in its own directory should return the directory name.
*
* @return void
*/
public function testGetPluginSlugFromPathReturnsDirectoryNameForStandardPlugin() {
$path = WP_PLUGIN_DIR . '/my-plugin/my-plugin.php';
$result = SystemInfo::get_plugin_slug_from_path( $path );
$this->assertSame( 'my-plugin', $result );
}
/**
* A single-file plugin (directly in the plugins root) returns the filename without extension.
*
* @return void
*/
public function testGetPluginSlugFromPathReturnsBareFilenameForSingleFilePlugin() {
$path = WP_PLUGIN_DIR . '/hello.php';
$result = SystemInfo::get_plugin_slug_from_path( $path );
$this->assertSame( 'hello', $result );
}
/**
* An empty string returns an empty string without error.
*
* @return void
*/
public function testGetPluginSlugFromPathReturnsEmptyStringForEmptyInput() {
$result = SystemInfo::get_plugin_slug_from_path( '' );
$this->assertSame( '', $result );
}
/**
* A non-string value returns an empty string without error.
*
* @return void
*/
public function testGetPluginSlugFromPathReturnsEmptyStringForNonStringInput() {
// @phpstan-ignore-next-line
$result = SystemInfo::get_plugin_slug_from_path( null );
$this->assertSame( '', $result );
}
/**
* The return value is always an array.
*
* @return void
*/
public function testGetActivePluginsReturnsArray() {
$result = SystemInfo::get_active_plugins();
$this->assertIsArray( $result );
}
/**
* Every entry must contain name, slug, and version keys.
*
* @return void
*/
public function testGetActivePluginsEntriesHaveRequiredKeys() {
$result = SystemInfo::get_active_plugins();
$this->assertIsArray( $result );
if ( [] === $result ) {
$this->assertEmpty( $result );
return;
}
foreach ( $result as $plugin ) {
$this->assertArrayHasKey( 'name', $plugin );
$this->assertArrayHasKey( 'slug', $plugin );
$this->assertArrayHasKey( 'version', $plugin );
}
}
/**
* Every entry must have string values for name, slug, and version.
*
* @return void
*/
public function testGetActivePluginsEntriesAreAllStrings() {
$result = SystemInfo::get_active_plugins();
$this->assertIsArray( $result );
if ( [] === $result ) {
$this->assertEmpty( $result );
return;
}
foreach ( $result as $plugin ) {
$this->assertIsString( $plugin['name'] );
$this->assertIsString( $plugin['slug'] );
$this->assertIsString( $plugin['version'] );
}
}
/**
* Active plugin slugs match WordPress active-and-valid plugin list.
*
* @return void
*/
public function testGetActivePluginsMatchesActiveAndValidPluginList() {
$expected_slugs = [];
$active_paths = wp_get_active_and_valid_plugins();
if ( is_array( $active_paths ) ) {
$expected_slugs = array_map( [ SystemInfo::class, 'get_plugin_slug_from_path' ], $active_paths );
}
$actual_slugs = array_map(
static function ( $plugin ) {
return is_array( $plugin ) && isset( $plugin['slug'] ) ? $plugin['slug'] : '';
},
SystemInfo::get_active_plugins()
);
sort( $expected_slugs );
sort( $actual_slugs );
$this->assertSame( $expected_slugs, $actual_slugs );
}
/**
* A non-WP_Theme value returns an empty array.
*
* @return void
*/
public function testGetThemeDataCollectionReturnsEmptyArrayForNonThemeObject() {
// @phpstan-ignore-next-line
$this->assertSame( [], SystemInfo::get_theme_data_collection( null ) );
// @phpstan-ignore-next-line
$this->assertSame( [], SystemInfo::get_theme_data_collection( 'twentytwentyfour' ) );
// @phpstan-ignore-next-line
$this->assertSame( [], SystemInfo::get_theme_data_collection( [] ) );
}
/**
* A valid WP_Theme object produces the four expected keys.
*
* @return void
*/
public function testGetThemeDataCollectionReturnsStructuredArrayForValidTheme() {
$theme = wp_get_theme();
$result = SystemInfo::get_theme_data_collection( $theme );
$this->assertArrayHasKey( 'name', $result );
$this->assertArrayHasKey( 'slug', $result );
$this->assertArrayHasKey( 'version', $result );
$this->assertArrayHasKey( 'tags', $result );
}
/**
* The slug value matches the theme's stylesheet directory name.
*
* @return void
*/
public function testGetThemeDataCollectionSlugMatchesStylesheet() {
$theme = wp_get_theme();
$result = SystemInfo::get_theme_data_collection( $theme );
$this->assertSame( $theme->get_stylesheet(), $result['slug'] );
}
/**
* The name value matches the theme's Name header.
*
* @return void
*/
public function testGetThemeDataCollectionNameMatchesThemeName() {
$theme = wp_get_theme();
$result = SystemInfo::get_theme_data_collection( $theme );
$this->assertSame( $theme->get( 'Name' ), $result['name'] );
}
/**
* That is_theme_accessibility_ready() matches expected tag evaluation on the active theme.
*
* @return void
*/
public function testIsThemeAccessibilityReadyMatchesComputedExpectationForActiveTheme() {
$theme = wp_get_theme();
$expected = $this->compute_expected_accessibility_ready( $theme );
$actual = SystemInfo::is_theme_accessibility_ready( $theme );
$this->assertSame( $expected, $actual );
}
/**
* A theme tagged accessibility-ready returns true.
*
* @return void
*/
public function testIsThemeAccessibilityReadyReturnsTrueForInstalledAccessibilityReadyTheme() {
$theme = $this->find_installed_theme(
function ( $candidate ) {
return in_array( 'accessibility-ready', $this->get_theme_tags( $candidate ), true );
}
);
if ( ! $theme ) {
$this->markTestSkipped( 'No installed theme with accessibility-ready tag found.' );
}
$this->assertTrue( SystemInfo::is_theme_accessibility_ready( $theme ) );
}
/**
* A theme and parent without accessibility-ready tags return false.
*
* @return void
*/
public function testIsThemeAccessibilityReadyReturnsFalseForInstalledThemeWithoutAnyReadyTag() {
$theme = $this->find_installed_theme(
function ( $candidate ) {
if ( in_array( 'accessibility-ready', $this->get_theme_tags( $candidate ), true ) ) {
return false;
}
if ( ! $candidate->parent() ) {
return true;
}
return ! in_array( 'accessibility-ready', $this->get_theme_tags( $candidate->parent() ), true );
}
);
if ( ! $theme ) {
$this->markTestSkipped( 'No installed theme found where both child and parent lack accessibility-ready tag.' );
}
$this->assertFalse( SystemInfo::is_theme_accessibility_ready( $theme ) );
}
/**
* A child theme without the tag returns true when parent has accessibility-ready tag.
*
* @return void
*/
public function testIsThemeAccessibilityReadyReturnsTrueWhenInstalledParentThemeHasTag() {
$theme = $this->find_installed_theme(
function ( $candidate ) {
if ( ! $candidate->parent() ) {
return false;
}
$child_has_tag = in_array( 'accessibility-ready', $this->get_theme_tags( $candidate ), true );
$parent_has_tag = in_array( 'accessibility-ready', $this->get_theme_tags( $candidate->parent() ), true );
return ! $child_has_tag && $parent_has_tag;
}
);
if ( ! $theme ) {
$this->markTestSkipped( 'No installed child theme found where only parent is accessibility-ready.' );
}
$this->assertTrue( SystemInfo::is_theme_accessibility_ready( $theme ) );
}
/**
* The active theme array contains all required top-level keys.
*
* @return void
*/
public function testGetActiveThemeReturnsExpectedKeys() {
$result = SystemInfo::get_active_theme();
$this->assertArrayHasKey( 'name', $result );
$this->assertArrayHasKey( 'slug', $result );
$this->assertArrayHasKey( 'version', $result );
$this->assertArrayHasKey( 'tags', $result );
$this->assertArrayHasKey( 'accessibility_ready', $result );
$this->assertArrayHasKey( 'parent_theme', $result );
}
/**
* The accessibility_ready key is a boolean.
*
* @return void
*/
public function testGetActiveThemeAccessibilityReadyIsBool() {
$result = SystemInfo::get_active_theme();
$this->assertIsBool( $result['accessibility_ready'] );
}
/**
* The parent_theme key is an array (empty for non-child themes).
*
* @return void
*/
public function testGetActiveThemeParentThemeIsArray() {
$result = SystemInfo::get_active_theme();
$this->assertIsArray( $result['parent_theme'] );
}
/**
* Returns a non-empty string.
*
* @return void
*/
public function testGetEnvironmentTypeReturnsNonEmptyString() {
$result = SystemInfo::get_environment_type();
$this->assertIsString( $result );
$this->assertNotEmpty( $result );
}
/**
* Return value is one of WordPress's recognised environment types.
*
* @return void
*/
public function testGetEnvironmentTypeReturnsRecognisedValue() {
$allowed = [ 'local', 'development', 'staging', 'production' ];
$this->assertContains( SystemInfo::get_environment_type(), $allowed );
}
/**
* Returns a non-empty string.
*
* @return void
*/
public function testGetWordpressVersionReturnsNonEmptyString() {
$result = SystemInfo::get_wordpress_version();
$this->assertIsString( $result );
$this->assertNotEmpty( $result );
}
/**
* Matches the value returned by get_bloginfo( 'version' ).
*
* @return void
*/
public function testGetWordpressVersionMatchesBloginfo() {
$this->assertSame( get_bloginfo( 'version' ), SystemInfo::get_wordpress_version() );
}
/**
* Returns a non-empty string.
*
* @return void
*/
public function testGetPhpVersionReturnsNonEmptyString() {
$result = SystemInfo::get_php_version();
$this->assertIsString( $result );
$this->assertNotEmpty( $result );
}
/**
* Matches phpversion().
*
* @return void
*/
public function testGetPhpVersionMatchesPhpversion() {
$this->assertSame( phpversion(), SystemInfo::get_php_version() );
}
/**
* Returns an array with all five expected keys.
*
* @return void
*/
public function testGetLicenseRequestContextReturnsExpectedKeys() {
$result = SystemInfo::get_license_request_context();
$this->assertArrayHasKey( 'environment', $result );
$this->assertArrayHasKey( 'wp_version', $result );
$this->assertArrayHasKey( 'php_version', $result );
$this->assertArrayHasKey( 'active_plugins', $result );
$this->assertArrayHasKey( 'active_theme', $result );
}
/**
* An active_plugins is a valid JSON string decoding to an array.
*
* @return void
*/
public function testGetLicenseRequestContextActivePluginsIsJsonString() {
$result = SystemInfo::get_license_request_context();
$decoded = json_decode( $result['active_plugins'], true );
$this->assertIsString( $result['active_plugins'] );
$this->assertNotNull( $decoded );
$this->assertIsArray( $decoded );
}
/**
* An active_theme is a valid JSON string decoding to an array.
*
* @return void
*/
public function testGetLicenseRequestContextActiveThemeIsJsonString() {
$result = SystemInfo::get_license_request_context();
$decoded = json_decode( $result['active_theme'], true );
$this->assertIsString( $result['active_theme'] );
$this->assertNotNull( $decoded );
$this->assertIsArray( $decoded );
}
/**
* An environment key matches get_environment_type() called directly.
*
* @return void
*/
public function testGetLicenseRequestContextEnvironmentMatchesDirectCall() {
$result = SystemInfo::get_license_request_context();
$this->assertSame( SystemInfo::get_environment_type(), $result['environment'] );
}
/**
* A wp_version key matches get_wordpress_version() called directly.
*
* @return void
*/
public function testGetLicenseRequestContextWpVersionMatchesDirectCall() {
$result = SystemInfo::get_license_request_context();
$this->assertSame( SystemInfo::get_wordpress_version(), $result['wp_version'] );
}
/**
* A php_version key matches get_php_version() called directly.
*
* @return void
*/
public function testGetLicenseRequestContextPhpVersionMatchesDirectCall() {
$result = SystemInfo::get_license_request_context();
$this->assertSame( SystemInfo::get_php_version(), $result['php_version'] );
}
/**
* The full context array contains exactly five keys and no extras.
*
* @return void
*/
public function testGetLicenseRequestContextHasExactlyFiveKeys() {
$result = SystemInfo::get_license_request_context();
$this->assertCount( 5, $result );
}
}