-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathfunctions.php
More file actions
490 lines (458 loc) · 17.4 KB
/
Copy pathfunctions.php
File metadata and controls
490 lines (458 loc) · 17.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
<?php
/**
* Confirms the presence of required environment variables.
*
* For the test runner to function correctly, a few requirements must be met:
* - A database configuration must be provided using the documented environment
* variables.
* - The preparation and test directories must be the same when running
* locally (not making use of an SSH connection).
*
* @param bool $check_db Optional. Whether to confirm `WPT_DB_*` environment
* variables are present. Default true.
*
* @return void This function does not return a value but will halt execution
* if any required environment variable is missing.
*
* @uses getenv() to retrieve environment variable values.
* @uses error_message() to display error messages for missing variables.
* @uses log_message() to log a success message when all checks pass.
*/
function check_required_env( $check_db = true ) {
$required = array(
'WPT_PREPARE_DIR',
'WPT_TEST_DIR',
'WPT_DB_NAME',
'WPT_DB_USER',
'WPT_DB_PASSWORD',
'WPT_DB_HOST',
);
foreach ( $required as $var ) {
if ( ! $check_db && 0 === strpos( $var, 'WPT_DB_' ) ) {
continue;
}
if ( false === getenv( $var ) ) {
error_message( $var . ' must be set as an environment variable.' );
}
}
if ( empty( getenv( 'WPT_SSH_CONNECT' ) )
&& getenv( 'WPT_TEST_DIR' ) !== getenv( 'WPT_PREPARE_DIR' ) ) {
error_message( 'WPT_TEST_DIR must be the same as WPT_PREPARE_DIR when running locally.' );
}
log_message( 'Environment variables pass checks.' );
}
/**
* Parses environment variables used to configure the test runner.
*
* @return array[] {
* Test runner configuration options.
*
* @type array ...$0 {
* An associative array of test runner configuration options.
*
* @type string $WPT_TEST_DIR Path to the directory where wordpress-develop is placed for testing
* after being prepared. Default '/tmp/wp-test-runner'.
* @type string $WPT_PREPARE_DIR Path to the temporary directory where wordpress-develop is cloned
* and configured. Default '/tmp/wp-test-runner'.
* @type string $WPT_SSH_CONNECT List of inner blocks. An array of arrays that
* have the same structure as this one.
* @type string $WPT_SSH_OPTIONS HTML from inside block comment delimiters.
* @type string $WPT_PHP_EXECUTABLE List of string fragments and null markers where
* inner blocks were found.
* @type string $WPT_RM_TEST_DIR_CMD Command for removing the test directory.
* @type string $WPT_REPORT_API_KEY API key for submitting test results.
* @type bool $WPT_DEBUG_MODE Whether debug mode is enabled.
* }
* }
*/
function setup_runner_env_vars() {
$test_dir = trim( getenv( 'WPT_TEST_DIR' ) );
$prepare_dir = trim( getenv( 'WPT_PREPARE_DIR' ) );
$ssh_options = trim( getenv( 'WPT_SSH_OPTIONS' ) );
$php_exec = trim( getenv( 'WPT_PHP_EXECUTABLE' ) );
$rm_test_dir = trim( getenv( 'WPT_RM_TEST_DIR_CMD' ) );
$runner_configuration = array(
'WPT_TEST_DIR' => '' !== $test_dir ? $test_dir : '/tmp/wp-test-runner',
);
return array_merge(
$runner_configuration,
array(
'WPT_PREPARE_DIR' => '' !== $prepare_dir ? $prepare_dir : '/tmp/wp-test-runner',
'WPT_SSH_CONNECT' => trim( getenv( 'WPT_SSH_CONNECT' ) ),
'WPT_SSH_OPTIONS' => '' !== $ssh_options ? $ssh_options : '-o StrictHostKeyChecking=no',
'WPT_PHP_EXECUTABLE' => '' !== $php_exec ? $php_exec : 'php',
'WPT_RM_TEST_DIR_CMD' => '' !== $rm_test_dir ? $rm_test_dir : 'rm -r ' . $runner_configuration['WPT_TEST_DIR'],
'WPT_REPORT_API_KEY' => trim( getenv( 'WPT_REPORT_API_KEY' ) ),
'WPT_DEBUG' => (bool) getenv( 'WPT_DEBUG' ),
)
);
}
/**
* Executes a set of shell commands.
*
* Each command is logged before being executed.
*
* When a non-zero return code is encountered, the error message is displayed
* and the runner will fail.
*
* @param array $operations A list of shell commands (strings) to execute.
* Each command should be a valid shell command and properly escaped for safety.
* The commands are executed in the order they appear in the array.
*
* @return void This function does not return a value. However, it will output
* the result of each shell command to the standard output and log the
* execution. It will also halt on the first command that fails, displaying an
* error message.
*
* @uses log_message() to log each operation before execution. This can be used
* for debugging or auditing purposes.
*
* @uses passthru() to execute the shell command, which provides direct output
* to the browser. Be aware that using this function with untrusted input can
* lead to security vulnerabilities, such as command injection attacks.
*
* @uses error_message() to display an error message if a shell command fails.
* The execution stops at the first failure.
*/
function perform_operations( $operations ) {
foreach ( $operations as $operation ) {
log_message( $operation );
passthru( $operation, $return_code );
// Check for command execution failure.
if ( 0 !== $return_code ) {
error_message( 'Failed to perform operation: ' . $operation . '.' );
return;
}
}
}
/**
* Writes a message to the standard output (STDOUT).
*
* The message is appended with PHP_EOL to ensure proper line breaks on
* different operating systems.
*
* @param string $message The message to be logged.
*
* @return void This function does not return a value. It directly writes the
* message to STDOUT, which is typically visible in the console or terminal
* where the PHP script is executed.
*
* @uses fwrite() to write the message to STDOUT. This is a low-level file
* operation function that works with various file streams, including standard
* output, standard error, and regular files.
*/
function log_message( $message ) {
fwrite( STDOUT, $message . PHP_EOL );
}
/**
* Displays an error message and terminates the test runner execution.
*
* The error message is prefixed with "Error: " and appended with PHP_EOL
* before being written to the standard output (STDOUT).
*
* After outputting the error message, the script will be terminated with a
* status code of 1.
*
* @param string $message The error message to be logged. This string will be
* output as provided, but prefixed with "Error: " to indicate its nature,
* followed by a system-specific newline character.
*
* @return void This function does not return a value. It directly writes the
* error message to STDERR and then terminates the script execution using
* `exit(1)`, indicating an error condition to the environment.
*
* @uses fwrite() to write the error message to STDERR. This function is used
* for low-level writing to file streams or output streams, in this case,
* STDERR, which is specifically for error reporting.
*/
function error_message( $message ) {
fwrite( STDERR, 'Error: ' . $message . PHP_EOL );
exit( 1 );
}
/**
* Ensures a single trailing slash is present at the end of a given string.
*
* File system operations often expect a single trailing slash when referring
* to directories or paths. This ensures that only one trailing slash is
* present at the end of a given string.
*
* @param string $string The input string to which a trailing slash will be
* added. This could be a file path, URL, or any other string that requires a
* trailing slash for proper formatting or usage.
*
* @return string The modified string with a single trailing slash appended at
* the end. If the input string already has one or more trailing slashes, they
* will be trimmed to a single slash.
*
* @uses rtrim() to remove any existing trailing slashes from the input string
* before appending a new trailing slash. This ensures that the result
* consistently has exactly one trailing slash, regardless of the input string's
* initial state.
*/
function trailingslashit( $str ) {
return rtrim( $str, '/' ) . '/';
}
/**
* Extracts test results from a JUnit XML string.
*
* This extracts the relevant information from the test results into a format
* accepted and understood by the WordPress Test Reporter plugin.
*
* The data specifically extracted is:
* - Total number of tests.
* - Number of failures.
* - Number of errors.
* - Overall execution time.
*
* @param string $xml_string The JUnit XML data as a string. This should be
* well-formed XML representing the results of test executions, typically
* generated by testing frameworks compatible with JUnit reporting.
*
* @return string A JSON encoded string that represents a summary of the test
* results, including overall metrics and detailed information about each failed
* or errored test case. The JSON structure will include keys for 'tests',
* 'failures', 'errors', 'time', and 'testsuites', where 'testsuites' is an
* array of test suites that contains the failures or errors.
*
* @uses simplexml_load_string() to parse the JUnit XML data into an object for
* easy access and manipulation of the XML elements.
*
* @uses xpath() to query specific elements within the XML structure,
* particularly to find test suites with failures or errors.
*
* @uses json_encode() to convert the array structure containing the test
* results into a JSON formatted string.
*/
function process_junit_xml( $xml_string ) {
if ( empty( $xml_string ) ) {
return '';
return '';
}
$xml = simplexml_load_string( $xml_string );
$xml_string = null;
$project = $xml->testsuite;
$results = array();
$results = array(
'tests' => (string) $project['tests'],
'failures' => (string) $project['failures'],
'errors' => (string) $project['errors'],
'time' => (string) $project['time'],
);
$results['testsuites'] = array();
$testsuites = $xml->xpath( '//testsuites//testsuite[ ( count( testcase ) > 0 ) and ( @errors > 0 or @failures > 0 ) ]' );
foreach ( $testsuites as $testsuite ) {
$result = array(
'name' => (string) $testsuite['name'],
'tests' => (string) $testsuite['tests'],
'failures' => (string) $testsuite['failures'],
'errors' => (string) $testsuite['errors'],
);
if ( empty( $result['failures'] ) && empty( $result['errors'] ) ) {
continue;
}
$failures = array();
foreach ( $testsuite->testcase as $testcase ) {
// Capture both failure and error children.
foreach ( array( 'failure', 'error' ) as $key ) {
if ( isset( $testcase->{$key} ) ) {
$failures[ (string) $testcase['name'] ] = array(
'name' => (string) $testcase['name'],
$key => (string) $testcase->{$key},
);
}
}
}
if ( $failures ) {
$results['testsuites'][ (string) $testsuite['name'] ] = $result;
$results['testsuites'][ (string) $testsuite['name'] ]['testcases'] = $failures;
}
}
return json_encode( $results );
}
/**
* Submits test results to a reporting API endpoint.
*
* This submits test results and related metadata to a site running the
* WordPress Test Reporter plugin using cURL.
*
* Reports are always submitted to WordPress.org Unless the WPT_REPORT_URL
* environment variable is set.
*
* @param string $results The test results in a processed format (e.g., JSON)
* ready for submission to the reporting API.
*
* @param string $rev The SVN revision associated with the test results. This
* often corresponds to a specific code commit or build identifier.
*
* @param string $message The SVN commit message associated with the revision,
* providing context or notes about the changes.
*
* @param string $env The environment data in JSON format, detailing the
* conditions under which the tests were run, such as operating system, PHP
* version, etc.
*
* @param string $api_key The API key for authenticating with the reporting API,
* ensuring secure and authorized access.
*
* @return array An array containing two elements: the HTTP status code of the
* response (int) and the body of the response (string) from the reporting API.
* This can be used to verify successful submission or to handle errors.
*
* @uses curl_init(), curl_setopt(), and curl_exec() to perform the HTTP POST
* request to the reporting API.
*
* @uses json_encode() to encode the data payload as a JSON string for
* submission.
*
* @uses base64_encode() to encode the API key for HTTP Basic Authentication in
* the Authorization header.
*/
function upload_results( $results, $rev, $message, $env, $api_key ) {
$wpt_report_url = getenv( 'WPT_REPORT_URL' );
if ( ! $wpt_report_url ) {
$wpt_report_url = 'https://make.wordpress.org/hosting/wp-json/wp-unit-test-api/v1/results';
}
$process = curl_init( $wpt_report_url );
$access_token = base64_encode( $api_key );
$data = array(
'results' => $results,
'commit' => $rev,
'message' => $message,
'env' => $env,
);
$data_string = json_encode( $data );
// Set CURL options.
curl_setopt( $process, CURLOPT_TIMEOUT, 30 );
curl_setopt( $process, CURLOPT_POST, 1 );
curl_setopt( $process, CURLOPT_CUSTOMREQUEST, 'POST' );
curl_setopt( $process, CURLOPT_USERAGENT, 'WordPress PHPUnit Test Runner' );
curl_setopt( $process, CURLOPT_POSTFIELDS, $data_string );
curl_setopt( $process, CURLOPT_RETURNTRANSFER, true );
curl_setopt(
$process,
CURLOPT_HTTPHEADER,
array(
"Authorization: Basic $access_token",
'Content-Type: application/json',
'Content-Length: ' . strlen( $data_string ),
)
);
$return = curl_exec( $process );
$status_code = curl_getinfo( $process, CURLINFO_HTTP_CODE );
curl_close( $process );
return array( $status_code, $return );
}
/**
Collects details about the testing environment.
*
* The versions of PHP, PHP modules, database software, and system utilities
* can impact the results of the test suite. This gathers the relevant details
* to include in test report submissions.
*
* @return array An associative array containing detailed environment
* information. The array includes:
* - 'php_version': The current PHP version.
* - 'php_modules': An associative array of selected PHP modules and their versions.
* - 'system_utils': Versions of certain system utilities such as 'curl', 'imagemagick',
* 'graphicsmagick', and 'openssl'.
* - 'mysql_version': The version of MySQL installed.
* - 'os_name': The name of the operating system.
* - 'os_version': The version of the operating system.
*
* @uses phpversion() to get the PHP version and module versions.
*
* @uses shell_exec() to execute system commands for retrieving MySQL version,
* OS details, and versions of utilities like curl and OpenSSL.
*
* @uses class_exists() to check for the availability of the Imagick and Gmagick
* classes for version detection.
*/
function get_env_details() {
$gd_info = array();
if ( extension_loaded( 'gd' ) ) {
$gd_info = gd_info();
}
$imagick_info = array();
if ( extension_loaded( 'imagick' ) ) {
$imagick_info = Imagick::queryFormats();
}
$env = array(
'php_version' => phpversion(),
'php_modules' => array(),
'gd_info' => $gd_info,
'imagick_info' => $imagick_info,
'mysql_version' => trim( shell_exec( 'mysql --version' ) ),
'system_utils' => array(),
'os_name' => trim( shell_exec( 'uname -s' ) ),
'os_version' => trim( shell_exec( 'uname -r' ) ),
);
unset( $gd_info, $imagick_info );
$php_modules = array(
'bcmath',
'ctype',
'curl',
'date',
'dom',
'exif',
'fileinfo',
'filter',
'ftp',
'gd',
'gettext',
'gmagick',
'hash',
'iconv',
'imagick',
'imap',
'intl',
'json',
'libsodium',
'libxml',
'mbstring',
'mcrypt',
'mod_xml',
'mysqli',
'mysqlnd',
'openssl',
'pcre',
'pdo_mysql',
'soap',
'sockets',
'sodium',
'xml',
'xmlreader',
'zip',
'zlib',
);
foreach ( $php_modules as $php_module ) {
$env['php_modules'][ $php_module ] = phpversion( $php_module );
}
function curl_selected_bits( $k ) {
return in_array( $k, array( 'version', 'ssl_version', 'libz_version' ), true );
}
$curl_bits = curl_version();
$env['system_utils']['curl'] = implode( ' ', array_values( array_filter( $curl_bits, 'curl_selected_bits', ARRAY_FILTER_USE_KEY ) ) );
$wpt_db_host = trim( getenv( 'WPT_DB_HOST' ) );
if ( ! $wpt_db_host ) {
$wpt_db_host = 'localhost';
}
$wpt_db_user = trim( getenv( 'WPT_DB_USER' ) );
$wpt_db_password = trim( getenv( 'WPT_DB_PASSWORD' ) );
$wpt_db_name = trim( getenv( 'WPT_DB_NAME' ) );
//$mysqli = new mysqli( $wpt_db_host, $wpt_db_user, $wpt_db_password, $wpt_db_name );
//$env['mysql_version'] = $mysqli->query("SELECT VERSION()")->fetch_row()[0];
//$mysqli->close();
if ( class_exists( 'Imagick' ) ) {
$imagick = new Imagick();
$version = $imagick->getVersion();
preg_match( '/Magick (\d+\.\d+\.\d+-\d+|\d+\.\d+\.\d+|\d+\.\d+\-\d+|\d+\.\d+)/', $version['versionString'], $version );
$env['system_utils']['imagemagick'] = $version[1];
} elseif ( class_exists( 'Gmagick' ) ) {
$gmagick = new Gmagick();
$version = $gmagick->getversion();
preg_match( '/Magick (\d+\.\d+\.\d+-\d+|\d+\.\d+\.\d+|\d+\.\d+\-\d+|\d+\.\d+)/', $version['versionString'], $version );
$env['system_utils']['graphicsmagick'] = $version[1];
}
$env['system_utils']['openssl'] = str_replace( 'OpenSSL ', '', trim( shell_exec( 'openssl version' ) ) );
return $env;
}