-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbootstrap.php
More file actions
520 lines (454 loc) · 13.7 KB
/
Copy pathbootstrap.php
File metadata and controls
520 lines (454 loc) · 13.7 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
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
<?php
/**
* PHPUnit bootstrap for local test runs.
*
* @package EngineScript_Site_Optimizer
*/
if ( ! defined( 'ABSPATH' ) ) {
define( 'ABSPATH', __DIR__ . '/wordpress/' );
}
if ( ! class_exists( 'WP_Scripts' ) ) {
/**
* Minimal WP_Scripts test double.
*/
class WP_Scripts {
/**
* Registered scripts.
*
* @var array<string, object>
*/
public array $registered = array();
}
}
if ( ! function_exists( 'plugin_dir_path' ) ) {
/**
* Get the filesystem path for a plugin file.
*
* @param string $file Plugin file.
* @return string Directory path.
*/
function plugin_dir_path( string $file ): string {
return rtrim( dirname( $file ), DIRECTORY_SEPARATOR ) . DIRECTORY_SEPARATOR;
}
}
if ( ! function_exists( 'plugin_basename' ) ) {
/**
* Get a plugin basename for tests.
*
* @param string $file Plugin file.
* @return string Basename.
*/
function plugin_basename( string $file ): string {
return basename( $file );
}
}
if ( ! function_exists( 'add_action' ) ) {
/**
* Register an action callback.
*
* @param string $hook Hook name.
* @param callable|string|array{0: object|string, 1: string} $callback Callback.
* @param int $priority Hook priority.
* @param int $accepted_args Accepted args.
* @return bool True.
*/
function add_action( string $hook, callable|string|array $callback, int $priority = 10, int $accepted_args = 1 ): bool {
return add_filter( $hook, $callback, $priority, $accepted_args );
}
}
if ( ! function_exists( 'add_filter' ) ) {
/**
* Register a filter callback.
*
* @param string $hook Hook name.
* @param callable|string|array{0: object|string, 1: string} $callback Callback.
* @param int $priority Hook priority.
* @param int $accepted_args Accepted args.
* @return bool True.
*/
function add_filter( string $hook, callable|string|array $callback, int $priority = 10, int $accepted_args = 1 ): bool {
unset( $hook, $callback, $priority, $accepted_args );
return true;
}
}
if ( ! function_exists( 'remove_action' ) ) {
/**
* Remove an action callback.
*
* @param string $hook Hook name.
* @param callable|string|array{0: object|string, 1: string} $callback Callback.
* @param int $priority Hook priority.
* @return bool True.
*/
function remove_action( string $hook, callable|string|array $callback, int $priority = 10 ): bool {
return remove_filter( $hook, $callback, $priority );
}
}
if ( ! function_exists( 'remove_filter' ) ) {
/**
* Remove a filter callback.
*
* @param string $hook Hook name.
* @param callable|string|array{0: object|string, 1: string} $callback Callback.
* @param int $priority Hook priority.
* @return bool True.
*/
function remove_filter( string $hook, callable|string|array $callback, int $priority = 10 ): bool {
unset( $hook, $callback, $priority );
return true;
}
}
if ( ! function_exists( 'register_activation_hook' ) ) {
/**
* Register activation hook.
*
* @param string $file Plugin file.
* @param callable|string|array{0: object|string, 1: string} $callback Callback.
*/
function register_activation_hook( string $file, callable|string|array $callback ): void {
global $es_optimizer_test_activation_hooks;
if ( ! is_array( $es_optimizer_test_activation_hooks ) ) {
$es_optimizer_test_activation_hooks = array();
}
if ( ! isset( $es_optimizer_test_activation_hooks[ $file ] ) || ! is_array( $es_optimizer_test_activation_hooks[ $file ] ) ) {
$es_optimizer_test_activation_hooks[ $file ] = array();
}
$es_optimizer_test_activation_hooks[ $file ][] = $callback;
}
}
if ( ! function_exists( 'register_deactivation_hook' ) ) {
/**
* Register deactivation hook.
*
* @param string $file Plugin file.
* @param callable|string|array{0: object|string, 1: string} $callback Callback.
*/
function register_deactivation_hook( string $file, callable|string|array $callback ): void {
global $es_optimizer_test_deactivation_hooks;
if ( ! is_array( $es_optimizer_test_deactivation_hooks ) ) {
$es_optimizer_test_deactivation_hooks = array();
}
if ( ! isset( $es_optimizer_test_deactivation_hooks[ $file ] ) || ! is_array( $es_optimizer_test_deactivation_hooks[ $file ] ) ) {
$es_optimizer_test_deactivation_hooks[ $file ] = array();
}
$es_optimizer_test_deactivation_hooks[ $file ][] = $callback;
}
}
if ( ! function_exists( 'get_option' ) ) {
/**
* Get an option from the test option store.
*
* @param string $option Option name.
* @param mixed $default Default value.
* @return mixed Option value.
*/
function get_option( string $option, mixed $default = false ): mixed {
global $es_optimizer_test_options;
if ( ! is_array( $es_optimizer_test_options ) ) {
return $default;
}
return array_key_exists( $option, $es_optimizer_test_options ) ? $es_optimizer_test_options[ $option ] : $default;
}
}
if ( ! function_exists( 'add_option' ) ) {
/**
* Add an option to the test option store.
*
* @param string $option Option name.
* @param mixed $value Option value.
* @param string $deprecated Deprecated parameter, not used.
* @param bool|string|null $autoload Autoload setting.
* @return bool True.
*/
function add_option( string $option, mixed $value = '', string $deprecated = '', bool|string|null $autoload = null ): bool {
global $es_optimizer_test_options;
unset( $deprecated, $autoload );
if ( ! is_array( $es_optimizer_test_options ) ) {
$es_optimizer_test_options = array();
}
if ( array_key_exists( $option, $es_optimizer_test_options ) ) {
return false;
}
$es_optimizer_test_options[ $option ] = $value;
return true;
}
}
if ( ! function_exists( 'update_option' ) ) {
/**
* Update an option in the test option store.
*
* @param string $option Option name.
* @param mixed $value Option value.
* @param bool|string|null $autoload Autoload setting.
* @return bool True.
*/
function update_option( string $option, mixed $value, bool|string|null $autoload = null ): bool {
global $es_optimizer_test_options;
unset( $autoload );
if ( ! is_array( $es_optimizer_test_options ) ) {
$es_optimizer_test_options = array();
}
$es_optimizer_test_options[ $option ] = $value;
return true;
}
}
if ( ! function_exists( 'delete_option' ) ) {
/**
* Delete an option from the test option store.
*
* @param string $option Option name.
* @return bool True.
*/
function delete_option( string $option ): bool {
global $es_optimizer_test_options;
if ( ! is_array( $es_optimizer_test_options ) || ! array_key_exists( $option, $es_optimizer_test_options ) ) {
return false;
}
unset( $es_optimizer_test_options[ $option ] );
return true;
}
}
if ( ! function_exists( 'wp_unslash' ) ) {
/**
* Remove slashes from a value.
*
* @param mixed $value Value to unslash.
* @return mixed Unslashed value.
*/
function wp_unslash( mixed $value ): mixed {
if ( is_array( $value ) ) {
return array_map( 'wp_unslash', $value );
}
if ( is_object( $value ) ) {
foreach ( get_object_vars( $value ) as $key => $property_value ) {
$value->$key = wp_unslash( $property_value );
}
return $value;
}
return is_string( $value ) ? stripslashes( $value ) : $value;
}
}
if ( ! function_exists( 'sanitize_textarea_field' ) ) {
/**
* Sanitize textarea text for tests.
*
* @param string $value Value to sanitize.
* @return string Sanitized value.
*/
function sanitize_textarea_field( string $value ): string {
return trim( wp_strip_all_tags( $value ) );
}
}
if ( ! function_exists( 'wp_strip_all_tags' ) ) {
/**
* Strip all HTML tags.
*
* @param string $value Value to strip.
* @param bool $remove_breaks Whether to remove line breaks and whitespace.
* @return string Stripped value.
*/
function wp_strip_all_tags( string $value, bool $remove_breaks = false ): string {
$value = strip_tags( $value );
if ( $remove_breaks ) {
$normalized_value = preg_replace( '/[\r\n\t ]+/', ' ', $value );
if ( null === $normalized_value ) {
throw new RuntimeException( 'Failed to normalize stripped tag whitespace: ' . preg_last_error_msg() );
}
$value = $normalized_value;
}
return trim( $value );
}
}
if ( ! function_exists( 'esc_url_raw' ) ) {
/**
* Sanitize a URL for tests.
*
* @param string $url URL.
* @param array<int, string>|null $protocols Allowed protocols.
* @return string Sanitized URL.
*/
function esc_url_raw( string $url, ?array $protocols = null ): string {
$url = trim( $url );
$scheme = parse_url( $url, PHP_URL_SCHEME );
$allowed_protocols = $protocols ?? array();
if ( false === $scheme ) {
return '';
}
if ( ! empty( $allowed_protocols ) && is_string( $scheme ) && ! in_array( $scheme, $allowed_protocols, true ) ) {
return '';
}
return filter_var( $url, FILTER_VALIDATE_URL ) ? $url : '';
}
}
if ( ! function_exists( 'sanitize_url' ) ) {
/**
* Sanitize a URL for tests.
*
* @param string $url URL.
* @param array<int, string>|null $protocols Allowed protocols.
* @return string Sanitized URL.
*/
function sanitize_url( string $url, ?array $protocols = null ): string {
return esc_url_raw( $url, $protocols );
}
}
if ( ! function_exists( 'wp_parse_url' ) ) {
/**
* Parse a URL.
*
* @param string $url URL.
* @param int $component URL component.
* @return array<string, mixed>|string|int|false|null Parsed URL.
*/
function wp_parse_url( string $url, int $component = -1 ): mixed {
$to_unset = array();
if ( str_starts_with( $url, '//' ) ) {
$to_unset[] = 'scheme';
$url = 'placeholder:' . $url;
} elseif ( str_starts_with( $url, '/' ) ) {
$to_unset[] = 'scheme';
$to_unset[] = 'host';
$url = 'placeholder://placeholder' . $url;
}
$parts = parse_url( $url );
if ( false === $parts ) {
return false;
}
foreach ( $to_unset as $key ) {
unset( $parts[ $key ] );
}
if ( -1 === $component ) {
return $parts;
}
$translation = array(
PHP_URL_SCHEME => 'scheme',
PHP_URL_HOST => 'host',
PHP_URL_PORT => 'port',
PHP_URL_USER => 'user',
PHP_URL_PASS => 'pass',
PHP_URL_PATH => 'path',
PHP_URL_QUERY => 'query',
PHP_URL_FRAGMENT => 'fragment',
);
$key = $translation[ $component ] ?? false;
return false !== $key && isset( $parts[ $key ] ) ? $parts[ $key ] : null;
}
}
if ( ! function_exists( 'rest_is_ip_address' ) ) {
/**
* Check whether a value is an IP address.
*
* @param string $ip IP address.
* @return string|false IP address when valid; false otherwise.
*/
function rest_is_ip_address( string $ip ): string|false {
$validated_ip = filter_var( $ip, FILTER_VALIDATE_IP );
return is_string( $validated_ip ) ? $validated_ip : false;
}
}
if ( ! function_exists( '__' ) ) {
/**
* Return translated text.
*
* @param string $text Text.
* @param string $domain Text domain.
* @return string Text.
*/
function __( string $text, string $domain = 'default' ): string {
unset( $domain );
return $text;
}
}
if ( ! function_exists( 'esc_html' ) ) {
/**
* Escape HTML text.
*
* @param string $text Text.
* @return string Escaped text.
*/
function esc_html( string $text ): string {
return htmlspecialchars( $text, ENT_QUOTES, 'UTF-8' );
}
}
if ( ! function_exists( 'esc_html__' ) ) {
/**
* Return escaped translated text.
*
* @param string $text Text.
* @param string $domain Text domain.
* @return string Escaped text.
*/
function esc_html__( string $text, string $domain = 'default' ): string {
unset( $domain );
return esc_html( $text );
}
}
if ( ! function_exists( 'add_settings_error' ) ) {
/**
* Register a settings error.
*
* @param string $setting Setting slug.
* @param string $code Error code.
* @param string $message Error message.
* @param string $type Error type.
*/
function add_settings_error( string $setting, string $code, string $message, string $type = 'error' ): void {
global $wp_settings_errors;
if ( ! is_array( $wp_settings_errors ) ) {
$wp_settings_errors = array();
}
$wp_settings_errors[] = array(
'setting' => $setting,
'code' => $code,
'message' => $message,
'type' => $type,
);
}
}
if ( ! function_exists( 'is_admin' ) ) {
/**
* Check whether current request is admin.
*
* @return bool False for tests.
*/
function is_admin(): bool {
return false;
}
}
if ( ! function_exists( 'wp_doing_ajax' ) ) {
/**
* Check whether current request is AJAX.
*
* @return bool False for tests.
*/
function wp_doing_ajax(): bool {
return false;
}
}
if ( ! function_exists( 'apply_filters' ) ) {
/**
* Apply filters.
*
* @param string $hook Hook name.
* @param mixed $value Value.
* @param mixed ...$args Additional filter arguments.
* @return mixed Filtered value.
*/
function apply_filters( string $hook, mixed $value, mixed ...$args ): mixed {
unset( $hook, $args );
return $value;
}
}
if ( ! function_exists( '__return_null' ) ) {
/**
* Return null.
*
* The native null return type is intentional; this project requires PHP 8.2+.
*
* @return null
*/
function __return_null(): null {
return null;
}
}
require dirname( __DIR__ ) . '/enginescript-site-optimizer.php';