2012-06-07 00:49:47 +08:00
#!/usr/bin/env php
2000-08-28 03:46:06 +08:00
< ? php
2000-08-29 17:12:44 +08:00
/*
+----------------------------------------------------------------------+
2019-01-30 17:03:12 +08:00
| Copyright ( c ) The PHP Group |
2000-08-29 17:12:44 +08:00
+----------------------------------------------------------------------+
2006-01-01 20:51:34 +08:00
| This source file is subject to version 3.01 of the PHP license , |
2000-08-29 17:12:44 +08:00
| that is bundled with this package in the file LICENSE , and is |
2003-06-11 04:04:29 +08:00
| available through the world - wide - web at the following url : |
2024-07-07 10:23:08 +08:00
| https :// www . php . net / license / 3_01 . txt |
2000-08-29 17:12:44 +08:00
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world - wide - web , please send a note to |
| license @ php . net so we can mail you a copy immediately . |
+----------------------------------------------------------------------+
2002-11-02 20:44:36 +08:00
| Authors : Ilia Alshanetsky < iliaa @ php . net > |
2002-10-13 03:29:56 +08:00
| Preston L . Bannister < pbannister @ php . net > |
2002-09-12 03:42:59 +08:00
| Marcus Boerger < helly @ php . net > |
2002-10-13 03:29:56 +08:00
| Derick Rethans < derick @ php . net > |
| Sander Roobol < sander @ php . net > |
2019-02-18 02:47:22 +08:00
| Andrea Faulds < ajf @ ajf . me > |
2003-03-18 20:06:09 +08:00
| ( based on version by : Stig Bakken < ssb @ php . net > ) |
2000-08-29 17:12:44 +08:00
| ( based on the PHP 3 test framework by Rasmus Lerdorf ) |
+----------------------------------------------------------------------+
*/
2019-02-16 08:05:04 +08:00
/* Let there be no top - level code beyond this point :
* Only functions and classes , thanks !
2019-03-26 03:50:14 +08:00
*
2021-02-06 04:31:31 +08:00
* Minimum required PHP version : 7.4 . 0
2003-01-07 23:21:34 +08:00
*/
2008-07-25 17:32:23 +08:00
2020-08-07 02:37:36 +08:00
function show_usage () : void
2020-05-12 20:21:12 +08:00
{
echo <<< HELP
Synopsis :
php run - tests . php [ options ] [ files ] [ directories ]
Options :
- j < workers > Run up to < workers > simultaneous testing processes in parallel for
quicker testing on systems with multiple logical processors .
Note that this is experimental feature .
- l < file > Read the testfiles to be executed from < file >. After the test
has finished all failed tests are written to the same < file >.
If the list is empty and no further test is specified then
all tests are executed ( same as : - r < file > - w < file > ) .
- r < file > Read the testfiles to be executed from < file >.
- w < file > Write a list of all failed tests to < file >.
- a < file > Same as - w but append rather then truncating < file >.
- W < file > Write a list of all tests and their result status to < file >.
- c < file > Look for php . ini in directory < file > or use < file > as ini .
- n Pass - n option to the php binary ( Do not use a php . ini ) .
- d foo = bar Pass - d option to the php binary ( Define INI entry foo
with value 'bar' ) .
- g Comma separated list of groups to show during test run
( possible values : PASS , FAIL , XFAIL , XLEAK , SKIP , BORK , WARN , LEAK , REDIRECT ) .
- m Test for memory leaks with Valgrind ( equivalent to - M memcheck ) .
- M < tool > Test for errors with Valgrind tool .
- p < php > Specify PHP executable to run .
- P Use PHP_BINARY as PHP executable to run ( default ) .
- q Quiet , no user interaction ( same as environment NO_INTERACTION ) .
- s < file > Write output to < file >.
2024-04-29 03:47:13 +08:00
- x Sets 'SKIP_SLOW_TESTS' environment variable .
2020-05-12 20:21:12 +08:00
2024-04-29 03:47:13 +08:00
-- online Prevents setting the 'SKIP_ONLINE_TESTS' environment variable .
-- offline Sets 'SKIP_ONLINE_TESTS' environment variable ( default ) .
2020-05-12 20:21:12 +08:00
-- verbose
- v Verbose mode .
-- help
- h This Help .
-- temp - source < sdir > -- temp - target < tdir > [ -- temp - urlbase < url > ]
Write temporary files to < tdir > by replacing < sdir > from the
2020-06-18 17:40:40 +08:00
filenames to generate with < tdir >. In general you want to make
< sdir > the path to your source files and < tdir > some patch in
your web page hierarchy with < url > pointing to < tdir >.
2020-05-12 20:21:12 +08:00
-- keep - [ all | php | skip | clean ]
Do not delete 'all' files , 'php' test file , 'skip' or 'clean'
file .
2022-03-24 22:41:03 +08:00
-- set - timeout < n >
2022-03-29 16:20:21 +08:00
Set timeout for individual tests , where < n > is the number of
2020-05-12 20:21:12 +08:00
seconds . The default value is 60 seconds , or 300 seconds when
testing for memory leaks .
2022-03-24 22:41:03 +08:00
-- context < n >
2020-08-10 10:07:33 +08:00
Sets the number of lines of surrounding context to print for diffs .
The default value is 3.
2020-05-12 20:21:12 +08:00
-- show - [ all | php | skip | clean | exp | diff | out | mem ]
Show 'all' files , 'php' test file , 'skip' or 'clean' file . You
can also use this to show the output 'out' , the expected result
'exp' , the difference between them 'diff' or the valgrind log
'mem' . The result types get written independent of the log format ,
however 'diff' only exists when a test fails .
2022-03-24 22:41:03 +08:00
-- show - slow < n >
2022-03-29 16:20:21 +08:00
Show all tests that took longer than < n > milliseconds to run .
2020-05-12 20:21:12 +08:00
-- no - clean Do not execute clean section if any .
2020-08-09 23:26:51 +08:00
-- color
-- no - color Do / Don ' t colorize the result type in the test result .
2020-08-01 02:02:59 +08:00
2022-08-12 02:58:15 +08:00
-- progress
-- no - progress Do / Don ' t show the current progress .
2020-11-15 22:19:38 +08:00
-- repeat [ n ]
Run the tests multiple times in the same process and check the
output of the last execution ( CLI SAPI only ) .
2021-07-16 20:39:47 +08:00
-- bless Bless failed tests using scripts / dev / bless_tests . php .
2020-05-12 20:21:12 +08:00
HELP ;
}
2019-02-16 08:05:04 +08:00
/**
* One function to rule them all , one function to find them , one function to
* bring them all and in the darkness bind them .
* This is the entry point and exit point überfunction . It contains all the
* code that was previously found at the top level . It could and should be
* refactored to be smaller and more manageable .
*/
2020-08-07 02:37:36 +08:00
function main () : void
2019-02-16 08:05:04 +08:00
{
2020-02-03 20:41:31 +08:00
/* This list was derived in a naïve mechanical fashion . If a member
* looks like it doesn 't belong, it probably doesn' t ; cull at will .
*/
global $DETAILED , $PHP_FAILED_TESTS , $SHOW_ONLY_GROUPS , $argc , $argv , $cfg ,
2023-12-07 09:24:31 +08:00
$end_time , $environment ,
2020-02-03 20:41:31 +08:00
$exts_skipped , $exts_tested , $exts_to_test , $failed_tests_file ,
2023-12-07 09:24:31 +08:00
$ignored_by_ext , $ini_overwrites , $colorize ,
$log_format , $no_clean , $no_file_cache ,
$pass_options , $php , $php_cgi , $preload ,
$result_tests_file , $slow_min_ms , $start_time ,
$temp_source , $temp_target , $test_cnt ,
$test_files , $test_idx , $test_results , $testfile ,
$valgrind , $sum_results , $shuffle , $file_cache , $num_repeats ,
$show_progress ;
2020-02-03 20:41:31 +08:00
// Parallel testing
global $workers , $workerID ;
2020-08-10 10:07:33 +08:00
global $context_line_count ;
2020-02-03 20:41:31 +08:00
2021-02-06 04:31:31 +08:00
// Temporary for the duration of refactoring
2023-10-31 21:56:06 +08:00
/** @var JUnit $junit */
2021-02-06 04:31:31 +08:00
global $junit ;
2020-02-03 20:41:45 +08:00
define ( 'IS_WINDOWS' , substr ( PHP_OS , 0 , 3 ) == " WIN " );
2020-02-03 20:41:31 +08:00
$workerID = 0 ;
if ( getenv ( " TEST_PHP_WORKER " )) {
$workerID = intval ( getenv ( " TEST_PHP_WORKER " ));
run_worker ();
return ;
}
define ( 'INIT_DIR' , getcwd ());
2020-05-21 03:20:06 +08:00
// Change into the PHP source directory.
2020-02-03 20:41:31 +08:00
if ( getenv ( 'TEST_PHP_SRCDIR' )) {
@ chdir ( getenv ( 'TEST_PHP_SRCDIR' ));
}
2020-05-21 03:20:06 +08:00
define ( 'TEST_PHP_SRCDIR' , getcwd ());
2003-02-19 04:07:59 +08:00
2020-05-21 03:20:06 +08:00
check_proc_open_function_exists ();
2020-02-03 20:41:31 +08:00
// If timezone is not set, use UTC.
if ( ini_get ( 'date.timezone' ) == '' ) {
date_default_timezone_set ( 'UTC' );
}
// Delete some security related environment variables
putenv ( 'SSH_CLIENT=deleted' );
putenv ( 'SSH_AUTH_SOCK=deleted' );
putenv ( 'SSH_TTY=deleted' );
putenv ( 'SSH_CONNECTION=deleted' );
set_time_limit ( 0 );
ini_set ( 'pcre.backtrack_limit' , PHP_INT_MAX );
2020-05-21 03:20:06 +08:00
init_output_buffers ();
2020-02-03 20:41:31 +08:00
error_reporting ( E_ALL );
2020-08-10 03:45:04 +08:00
$environment = $_ENV ? ? [];
2020-05-21 03:20:06 +08:00
// Some configurations like php.ini-development set variables_order="GPCS"
// not "EGPCS", in which case $_ENV is NOT populated. Detect if the $_ENV
// was empty and handle it by explicitly populating through getenv().
2020-02-03 20:41:31 +08:00
if ( empty ( $environment )) {
$environment = getenv ();
}
2020-05-21 03:20:06 +08:00
2020-02-03 20:41:31 +08:00
if ( empty ( $environment [ 'TEMP' ])) {
$environment [ 'TEMP' ] = sys_get_temp_dir ();
if ( empty ( $environment [ 'TEMP' ])) {
2020-05-21 03:20:06 +08:00
// For example, OpCache on Windows will fail in this case because
// child processes (for tests) will not get a TEMP variable, so
// GetTempPath() will fallback to c:\windows, while GetTempPath()
// will return %TEMP% for parent (likely a different path). The
// parent will initialize the OpCache in that path, and child will
// fail to reattach to the OpCache because it will be using the
// wrong path.
2020-02-03 20:41:31 +08:00
die ( " TEMP environment is NOT set " );
2022-07-10 00:54:04 +08:00
}
if ( count ( $environment ) == 1 ) {
// Not having other environment variables, only having TEMP, is
// probably ok, but strange and may make a difference in the
// test pass rate, so warn the user.
2022-07-16 16:05:58 +08:00
echo " WARNING: Only 1 environment variable will be available to tests(TEMP environment variable) " , PHP_EOL ;
2020-02-03 20:41:31 +08:00
}
}
run-tests: cs fixes (cleanup)
I used php-cs-fixer to do the cs fixes. The configuration I used is
posted below. The reason I disabled some of the rules is because they
create too much noise and would make it difficult to review. But please
feel free to close this PR and run the php-cs-fixer yourself.
<?php
$config = PhpCsFixer\Config::create();
$config->setRiskyAllowed(false);
$config->setRules([
'@PSR2' => true,
'@Symfony' => true,
'array_syntax' => false,
'binary_operator_spaces' => false,
'blank_line_before_statement' => false,
'concat_space' => false,
'increment_style' => false,
'phpdoc_align' => false,
'single_quote' => false,
'trailing_comma_in_multiline_array' => false,
'unary_operator_spaces' => false,
'yoda_style' => false,
]);
$finder = PhpCsFixer\Finder::create();
$finder->in(getcwd());
$finder->exclude('Zend');
$finder->exclude('build');
$finder->exclude('ext');
$finder->exclude('pear');
$finder->exclude('sapi');
$finder->exclude('scripts');
$finder->exclude('win32');
$config->setFinder($finder);
return $config;
Closes GH-5557.
2020-05-13 00:24:21 +08:00
2020-02-03 20:41:45 +08:00
if ( IS_WINDOWS && empty ( $environment [ " SystemRoot " ])) {
2020-02-03 20:41:31 +08:00
$environment [ " SystemRoot " ] = getenv ( " SystemRoot " );
}
if ( getenv ( 'TEST_PHP_LOG_FORMAT' )) {
$log_format = strtoupper ( getenv ( 'TEST_PHP_LOG_FORMAT' ));
} else {
$log_format = 'LEODS' ;
}
// Check whether a detailed log is wanted.
if ( getenv ( 'TEST_PHP_DETAILED' )) {
$DETAILED = getenv ( 'TEST_PHP_DETAILED' );
} else {
$DETAILED = 0 ;
}
2021-02-06 04:31:31 +08:00
$junit = new JUnit ( $environment , $workerID );
2020-02-03 20:41:31 +08:00
if ( getenv ( 'SHOW_ONLY_GROUPS' )) {
$SHOW_ONLY_GROUPS = explode ( " , " , getenv ( 'SHOW_ONLY_GROUPS' ));
} else {
2020-08-10 03:45:04 +08:00
$SHOW_ONLY_GROUPS = [];
2020-02-03 20:41:31 +08:00
}
// Check whether user test dirs are requested.
2023-12-07 09:24:31 +08:00
$user_tests = [];
2020-02-03 20:41:31 +08:00
if ( getenv ( 'TEST_PHP_USER' )) {
$user_tests = explode ( ',' , getenv ( 'TEST_PHP_USER' ));
}
2020-08-10 03:45:04 +08:00
$exts_to_test = [];
$ini_overwrites = [
2020-02-03 20:41:31 +08:00
'output_handler=' ,
'open_basedir=' ,
'disable_functions=' ,
'output_buffering=Off' ,
'error_reporting=' . E_ALL ,
'display_errors=1' ,
'display_startup_errors=1' ,
'log_errors=0' ,
'html_errors=0' ,
'track_errors=0' ,
'report_memleaks=1' ,
'report_zend_debug=0' ,
'docref_root=' ,
'docref_ext=.html' ,
'error_prepend_string=' ,
'error_append_string=' ,
'auto_prepend_file=' ,
'auto_append_file=' ,
'ignore_repeated_errors=0' ,
'precision=14' ,
2020-02-12 17:27:28 +08:00
'serialize_precision=-1' ,
2020-02-03 20:41:31 +08:00
'memory_limit=128M' ,
'opcache.fast_shutdown=0' ,
'opcache.file_update_protection=0' ,
'opcache.revalidate_freq=0' ,
2020-07-08 21:49:51 +08:00
'opcache.jit_hot_loop=1' ,
'opcache.jit_hot_func=1' ,
'opcache.jit_hot_return=1' ,
'opcache.jit_hot_side_exit=1' ,
2023-11-15 03:00:51 +08:00
'opcache.jit_max_root_traces=100000' ,
'opcache.jit_max_side_traces=100000' ,
'opcache.jit_max_exit_counters=100000' ,
'opcache.protect_memory=1' ,
2020-02-03 20:41:31 +08:00
'zend.assertions=1' ,
'zend.exception_ignore_args=0' ,
2020-06-25 21:44:12 +08:00
'zend.exception_string_param_max_len=15' ,
2020-04-15 17:27:03 +08:00
'short_open_tag=0' ,
2020-08-10 03:45:04 +08:00
];
2020-02-03 20:41:31 +08:00
$no_file_cache = '-d opcache.file_cache= -d opcache.file_cache_only=0' ;
// Determine the tests to be run.
2020-08-10 03:45:04 +08:00
$test_files = [];
$redir_tests = [];
$test_results = [];
$PHP_FAILED_TESTS = [
'BORKED' => [],
'FAILED' => [],
'WARNED' => [],
'LEAKED' => [],
'XFAILED' => [],
'XLEAKED' => [],
'SLOW' => []
];
2020-02-03 20:41:31 +08:00
// If parameters given assume they represent selected tests to run.
$result_tests_file = false ;
$failed_tests_file = false ;
$pass_option_n = false ;
$pass_options = '' ;
$output_file = INIT_DIR . '/php_test_results_' . date ( 'Ymd_Hi' ) . '.txt' ;
$just_save_results = false ;
$valgrind = null ;
$temp_source = null ;
$temp_target = null ;
$conf_passed = null ;
$no_clean = false ;
2020-08-01 02:02:59 +08:00
$colorize = true ;
if ( function_exists ( 'sapi_windows_vt100_support' ) && ! sapi_windows_vt100_support ( STDOUT , true )) {
$colorize = false ;
}
2021-02-01 12:56:59 +08:00
if ( array_key_exists ( 'NO_COLOR' , $environment )) {
2020-08-09 23:26:51 +08:00
$colorize = false ;
}
2020-05-20 23:45:14 +08:00
$selected_tests = false ;
2020-02-03 20:41:31 +08:00
$slow_min_ms = INF ;
$preload = false ;
2020-05-20 16:04:57 +08:00
$file_cache = null ;
2020-02-03 20:41:31 +08:00
$shuffle = false ;
2021-07-16 20:39:47 +08:00
$bless = false ;
2020-02-03 20:41:31 +08:00
$workers = null ;
2020-08-10 10:07:33 +08:00
$context_line_count = 3 ;
2020-10-21 21:01:47 +08:00
$num_repeats = 1 ;
2022-08-12 02:58:15 +08:00
$show_progress = true ;
2022-09-27 17:49:08 +08:00
$ignored_by_ext = [];
2024-04-29 03:47:13 +08:00
$online = null ;
2020-02-03 20:41:31 +08:00
2020-08-10 03:45:04 +08:00
$cfgtypes = [ 'show' , 'keep' ];
$cfgfiles = [ 'skip' , 'php' , 'clean' , 'out' , 'diff' , 'exp' , 'mem' ];
$cfg = [];
2020-02-03 20:41:31 +08:00
foreach ( $cfgtypes as $type ) {
2020-08-10 03:45:04 +08:00
$cfg [ $type ] = [];
2020-02-03 20:41:31 +08:00
foreach ( $cfgfiles as $file ) {
$cfg [ $type ][ $file ] = false ;
}
}
if ( ! isset ( $argc , $argv ) || ! $argc ) {
2020-08-10 03:45:04 +08:00
$argv = [ __FILE__ ];
2020-02-03 20:41:31 +08:00
$argc = 1 ;
}
if ( getenv ( 'TEST_PHP_ARGS' )) {
$argv = array_merge ( $argv , explode ( ' ' , getenv ( 'TEST_PHP_ARGS' )));
$argc = count ( $argv );
}
for ( $i = 1 ; $i < $argc ; $i ++ ) {
$is_switch = false ;
$switch = substr ( $argv [ $i ], 1 , 1 );
$repeat = substr ( $argv [ $i ], 0 , 1 ) == '-' ;
while ( $repeat ) {
if ( ! $is_switch ) {
$switch = substr ( $argv [ $i ], 1 , 1 );
}
$is_switch = true ;
2023-10-27 16:15:16 +08:00
foreach ( $cfgtypes as $type ) {
if ( strpos ( $switch , '--' . $type ) === 0 ) {
foreach ( $cfgfiles as $file ) {
if ( $switch == '--' . $type . '-' . $file ) {
$cfg [ $type ][ $file ] = true ;
$is_switch = false ;
break ;
2020-02-03 20:41:31 +08:00
}
}
}
}
if ( ! $is_switch ) {
$is_switch = true ;
break ;
}
$repeat = false ;
switch ( $switch ) {
case 'j' :
$workers = substr ( $argv [ $i ], 2 );
2022-07-10 00:56:36 +08:00
if ( $workers == 0 || ! preg_match ( '/^\d+$/' , $workers )) {
2020-02-03 20:41:31 +08:00
error ( " ' $workers ' is not a valid number of workers, try e.g. -j16 for 16 workers " );
}
$workers = intval ( $workers , 10 );
// Don't use parallel testing infrastructure if there is only one worker.
if ( $workers === 1 ) {
$workers = null ;
}
break ;
case 'r' :
case 'l' :
$test_list = file ( $argv [ ++ $i ]);
if ( $test_list ) {
foreach ( $test_list as $test ) {
2020-08-10 03:45:04 +08:00
$matches = [];
2020-02-03 20:41:31 +08:00
if ( preg_match ( '/^#.*\[(.*)\]\:\s+(.*)$/' , $test , $matches )) {
2020-08-10 03:45:04 +08:00
$redir_tests [] = [ $matches [ 1 ], $matches [ 2 ]];
2022-07-10 00:54:04 +08:00
} elseif ( strlen ( $test )) {
$test_files [] = trim ( $test );
2020-02-03 20:41:31 +08:00
}
}
}
if ( $switch != 'l' ) {
break ;
}
$i -- ;
run-tests: cs fixes (cleanup)
I used php-cs-fixer to do the cs fixes. The configuration I used is
posted below. The reason I disabled some of the rules is because they
create too much noise and would make it difficult to review. But please
feel free to close this PR and run the php-cs-fixer yourself.
<?php
$config = PhpCsFixer\Config::create();
$config->setRiskyAllowed(false);
$config->setRules([
'@PSR2' => true,
'@Symfony' => true,
'array_syntax' => false,
'binary_operator_spaces' => false,
'blank_line_before_statement' => false,
'concat_space' => false,
'increment_style' => false,
'phpdoc_align' => false,
'single_quote' => false,
'trailing_comma_in_multiline_array' => false,
'unary_operator_spaces' => false,
'yoda_style' => false,
]);
$finder = PhpCsFixer\Finder::create();
$finder->in(getcwd());
$finder->exclude('Zend');
$finder->exclude('build');
$finder->exclude('ext');
$finder->exclude('pear');
$finder->exclude('sapi');
$finder->exclude('scripts');
$finder->exclude('win32');
$config->setFinder($finder);
return $config;
Closes GH-5557.
2020-05-13 00:24:21 +08:00
// no break
2020-02-03 20:41:31 +08:00
case 'w' :
$failed_tests_file = fopen ( $argv [ ++ $i ], 'w+t' );
break ;
case 'a' :
$failed_tests_file = fopen ( $argv [ ++ $i ], 'a+t' );
break ;
case 'W' :
$result_tests_file = fopen ( $argv [ ++ $i ], 'w+t' );
break ;
case 'c' :
$conf_passed = $argv [ ++ $i ];
break ;
case 'd' :
$ini_overwrites [] = $argv [ ++ $i ];
break ;
case 'g' :
$SHOW_ONLY_GROUPS = explode ( " , " , $argv [ ++ $i ]);
break ;
case '--keep-all' :
foreach ( $cfgfiles as $file ) {
$cfg [ 'keep' ][ $file ] = true ;
}
break ;
case 'm' :
run-tests: cs fixes (cleanup)
I used php-cs-fixer to do the cs fixes. The configuration I used is
posted below. The reason I disabled some of the rules is because they
create too much noise and would make it difficult to review. But please
feel free to close this PR and run the php-cs-fixer yourself.
<?php
$config = PhpCsFixer\Config::create();
$config->setRiskyAllowed(false);
$config->setRules([
'@PSR2' => true,
'@Symfony' => true,
'array_syntax' => false,
'binary_operator_spaces' => false,
'blank_line_before_statement' => false,
'concat_space' => false,
'increment_style' => false,
'phpdoc_align' => false,
'single_quote' => false,
'trailing_comma_in_multiline_array' => false,
'unary_operator_spaces' => false,
'yoda_style' => false,
]);
$finder = PhpCsFixer\Finder::create();
$finder->in(getcwd());
$finder->exclude('Zend');
$finder->exclude('build');
$finder->exclude('ext');
$finder->exclude('pear');
$finder->exclude('sapi');
$finder->exclude('scripts');
$finder->exclude('win32');
$config->setFinder($finder);
return $config;
Closes GH-5557.
2020-05-13 00:24:21 +08:00
$valgrind = new RuntestsValgrind ( $environment );
2020-02-03 20:41:31 +08:00
break ;
case 'M' :
run-tests: cs fixes (cleanup)
I used php-cs-fixer to do the cs fixes. The configuration I used is
posted below. The reason I disabled some of the rules is because they
create too much noise and would make it difficult to review. But please
feel free to close this PR and run the php-cs-fixer yourself.
<?php
$config = PhpCsFixer\Config::create();
$config->setRiskyAllowed(false);
$config->setRules([
'@PSR2' => true,
'@Symfony' => true,
'array_syntax' => false,
'binary_operator_spaces' => false,
'blank_line_before_statement' => false,
'concat_space' => false,
'increment_style' => false,
'phpdoc_align' => false,
'single_quote' => false,
'trailing_comma_in_multiline_array' => false,
'unary_operator_spaces' => false,
'yoda_style' => false,
]);
$finder = PhpCsFixer\Finder::create();
$finder->in(getcwd());
$finder->exclude('Zend');
$finder->exclude('build');
$finder->exclude('ext');
$finder->exclude('pear');
$finder->exclude('sapi');
$finder->exclude('scripts');
$finder->exclude('win32');
$config->setFinder($finder);
return $config;
Closes GH-5557.
2020-05-13 00:24:21 +08:00
$valgrind = new RuntestsValgrind ( $environment , $argv [ ++ $i ]);
2020-02-03 20:41:31 +08:00
break ;
case 'n' :
if ( ! $pass_option_n ) {
$pass_options .= ' -n' ;
}
$pass_option_n = true ;
break ;
case 'e' :
$pass_options .= ' -e' ;
break ;
case '--preload' :
$preload = true ;
2021-07-30 21:23:39 +08:00
$environment [ 'SKIP_PRELOAD' ] = 1 ;
2020-02-03 20:41:31 +08:00
break ;
2020-05-20 16:04:57 +08:00
case '--file-cache-prime' :
$file_cache = 'prime' ;
break ;
case '--file-cache-use' :
$file_cache = 'use' ;
break ;
2020-02-03 20:41:31 +08:00
case '--no-clean' :
$no_clean = true ;
break ;
2020-08-09 23:26:51 +08:00
case '--color' :
$colorize = true ;
break ;
2020-08-01 02:02:59 +08:00
case '--no-color' :
$colorize = false ;
break ;
2020-02-03 20:41:31 +08:00
case 'p' :
$php = $argv [ ++ $i ];
putenv ( " TEST_PHP_EXECUTABLE= $php " );
$environment [ 'TEST_PHP_EXECUTABLE' ] = $php ;
break ;
case 'P' :
$php = PHP_BINARY ;
putenv ( " TEST_PHP_EXECUTABLE= $php " );
$environment [ 'TEST_PHP_EXECUTABLE' ] = $php ;
break ;
case 'q' :
putenv ( 'NO_INTERACTION=1' );
$environment [ 'NO_INTERACTION' ] = 1 ;
break ;
case 's' :
$output_file = $argv [ ++ $i ];
$just_save_results = true ;
break ;
case '--set-timeout' :
2022-03-24 22:41:03 +08:00
$timeout = $argv [ ++ $i ] ? ? '' ;
if ( ! preg_match ( '/^\d+$/' , $timeout )) {
error ( " ' $timeout ' is not a valid number of seconds, try e.g. --set-timeout 60 for 1 minute " );
}
$environment [ 'TEST_TIMEOUT' ] = intval ( $timeout , 10 );
2020-02-03 20:41:31 +08:00
break ;
2020-08-10 10:07:33 +08:00
case '--context' :
$context_line_count = $argv [ ++ $i ] ? ? '' ;
if ( ! preg_match ( '/^\d+$/' , $context_line_count )) {
error ( " ' $context_line_count ' is not a valid number of lines of context, try e.g. --context 3 for 3 lines " );
}
$context_line_count = intval ( $context_line_count , 10 );
break ;
2020-02-03 20:41:31 +08:00
case '--show-all' :
foreach ( $cfgfiles as $file ) {
$cfg [ 'show' ][ $file ] = true ;
}
break ;
case '--show-slow' :
2022-03-24 22:41:03 +08:00
$slow_min_ms = $argv [ ++ $i ] ? ? '' ;
if ( ! preg_match ( '/^\d+$/' , $slow_min_ms )) {
error ( " ' $slow_min_ms ' is not a valid number of milliseconds, try e.g. --show-slow 1000 for 1 second " );
}
$slow_min_ms = intval ( $slow_min_ms , 10 );
2020-02-03 20:41:31 +08:00
break ;
case '--temp-source' :
$temp_source = $argv [ ++ $i ];
break ;
case '--temp-target' :
$temp_target = $argv [ ++ $i ];
break ;
case 'v' :
case '--verbose' :
$DETAILED = true ;
break ;
case 'x' :
$environment [ 'SKIP_SLOW_TESTS' ] = 1 ;
break ;
2024-04-29 03:47:13 +08:00
case '--online' :
$online = true ;
break ;
2020-02-03 20:41:31 +08:00
case '--offline' :
2024-04-29 03:47:13 +08:00
$online = false ;
2020-02-03 20:41:31 +08:00
break ;
case '--shuffle' :
$shuffle = true ;
break ;
case '--asan' :
2020-10-15 16:40:23 +08:00
case '--msan' :
2020-02-03 20:41:31 +08:00
$environment [ 'USE_ZEND_ALLOC' ] = 0 ;
$environment [ 'USE_TRACKED_ALLOC' ] = 1 ;
$environment [ 'SKIP_ASAN' ] = 1 ;
$environment [ 'SKIP_PERF_SENSITIVE' ] = 1 ;
2020-10-15 16:40:23 +08:00
if ( $switch === '--msan' ) {
$environment [ 'SKIP_MSAN' ] = 1 ;
2023-03-15 17:46:15 +08:00
$environment [ 'MSAN_OPTIONS' ] = 'intercept_tls_get_addr=0' ;
2020-10-15 16:40:23 +08:00
}
2023-03-15 17:46:15 +08:00
2022-10-30 18:20:12 +08:00
$lsanSuppressions = __DIR__ . '/.github/lsan-suppressions.txt' ;
2020-02-03 20:41:31 +08:00
if ( file_exists ( $lsanSuppressions )) {
2023-03-15 17:46:15 +08:00
$environment [ 'LSAN_OPTIONS' ] = 'suppressions=' . $lsanSuppressions
. ':print_suppressions=0' ;
2020-02-03 20:41:31 +08:00
}
break ;
2020-10-21 21:01:47 +08:00
case '--repeat' :
$num_repeats = ( int ) $argv [ ++ $i ];
$environment [ 'SKIP_REPEAT' ] = 1 ;
break ;
2021-07-16 20:39:47 +08:00
case '--bless' :
$bless = true ;
break ;
2020-02-03 20:41:31 +08:00
case '-' :
// repeat check with full switch
$switch = $argv [ $i ];
if ( $switch != '-' ) {
$repeat = true ;
}
break ;
2022-08-12 02:58:15 +08:00
case '--progress' :
$show_progress = true ;
break ;
case '--no-progress' :
$show_progress = false ;
break ;
2020-02-03 20:41:31 +08:00
case '--version' :
echo '$Id$' . " \n " ;
exit ( 1 );
default :
echo " Illegal switch ' $switch ' specified! \n " ;
run-tests: cs fixes (cleanup)
I used php-cs-fixer to do the cs fixes. The configuration I used is
posted below. The reason I disabled some of the rules is because they
create too much noise and would make it difficult to review. But please
feel free to close this PR and run the php-cs-fixer yourself.
<?php
$config = PhpCsFixer\Config::create();
$config->setRiskyAllowed(false);
$config->setRules([
'@PSR2' => true,
'@Symfony' => true,
'array_syntax' => false,
'binary_operator_spaces' => false,
'blank_line_before_statement' => false,
'concat_space' => false,
'increment_style' => false,
'phpdoc_align' => false,
'single_quote' => false,
'trailing_comma_in_multiline_array' => false,
'unary_operator_spaces' => false,
'yoda_style' => false,
]);
$finder = PhpCsFixer\Finder::create();
$finder->in(getcwd());
$finder->exclude('Zend');
$finder->exclude('build');
$finder->exclude('ext');
$finder->exclude('pear');
$finder->exclude('sapi');
$finder->exclude('scripts');
$finder->exclude('win32');
$config->setFinder($finder);
return $config;
Closes GH-5557.
2020-05-13 00:24:21 +08:00
// no break
2020-02-03 20:41:31 +08:00
case 'h' :
case '-help' :
case '--help' :
2020-05-12 20:21:12 +08:00
show_usage ();
2020-02-03 20:41:31 +08:00
exit ( 1 );
}
}
if ( ! $is_switch ) {
2020-05-20 23:45:14 +08:00
$selected_tests = true ;
2020-02-03 20:41:31 +08:00
$testfile = realpath ( $argv [ $i ]);
if ( ! $testfile && strpos ( $argv [ $i ], '*' ) !== false && function_exists ( 'glob' )) {
if ( substr ( $argv [ $i ], - 5 ) == '.phpt' ) {
$pattern_match = glob ( $argv [ $i ]);
2022-07-10 00:54:04 +08:00
} elseif ( preg_match ( " / \ * $ / " , $argv [ $i ])) {
$pattern_match = glob ( $argv [ $i ] . '.phpt' );
2020-02-03 20:41:31 +08:00
} else {
2022-07-10 00:54:04 +08:00
die ( 'Cannot find test file "' . $argv [ $i ] . '".' . PHP_EOL );
2020-02-03 20:41:31 +08:00
}
if ( is_array ( $pattern_match )) {
$test_files = array_merge ( $test_files , $pattern_match );
}
2022-07-10 00:54:04 +08:00
} elseif ( is_dir ( $testfile )) {
find_files ( $testfile );
} elseif ( substr ( $testfile , - 5 ) == '.phpt' ) {
$test_files [] = $testfile ;
2020-02-03 20:41:31 +08:00
} else {
2022-07-10 00:54:04 +08:00
die ( 'Cannot find test file "' . $argv [ $i ] . '".' . PHP_EOL );
2020-02-03 20:41:31 +08:00
}
}
}
2024-04-29 03:47:13 +08:00
if ( $online === null && ! isset ( $environment [ 'SKIP_ONLINE_TESTS' ])) {
$online = false ;
}
if ( $online !== null ) {
$environment [ 'SKIP_ONLINE_TESTS' ] = $online ? '0' : '1' ;
}
2020-05-20 23:45:14 +08:00
if ( $selected_tests && count ( $test_files ) === 0 ) {
echo " No tests found. \n " ;
return ;
}
2020-12-01 19:35:05 +08:00
if ( ! $php ) {
2023-12-07 09:24:31 +08:00
$php = getenv ( 'TEST_PHP_EXECUTABLE' ) ? : PHP_BINARY ;
2020-02-03 20:41:31 +08:00
}
2023-12-07 09:24:31 +08:00
$php_cgi = getenv ( 'TEST_PHP_CGI_EXECUTABLE' ) ? : get_binary ( $php , 'php-cgi' , 'sapi/cgi/php-cgi' );
$phpdbg = getenv ( 'TEST_PHPDBG_EXECUTABLE' ) ? : get_binary ( $php , 'phpdbg' , 'sapi/phpdbg/phpdbg' );
2020-12-01 19:35:05 +08:00
putenv ( " TEST_PHP_EXECUTABLE= $php " );
$environment [ 'TEST_PHP_EXECUTABLE' ] = $php ;
2023-02-25 22:02:06 +08:00
putenv ( " TEST_PHP_EXECUTABLE_ESCAPED= " . escapeshellarg ( $php ));
$environment [ 'TEST_PHP_EXECUTABLE_ESCAPED' ] = escapeshellarg ( $php );
2020-12-01 19:35:05 +08:00
putenv ( " TEST_PHP_CGI_EXECUTABLE= $php_cgi " );
$environment [ 'TEST_PHP_CGI_EXECUTABLE' ] = $php_cgi ;
2023-08-22 09:51:31 +08:00
putenv ( " TEST_PHP_CGI_EXECUTABLE_ESCAPED= " . escapeshellarg ( $php_cgi ? ? '' ));
$environment [ 'TEST_PHP_CGI_EXECUTABLE_ESCAPED' ] = escapeshellarg ( $php_cgi ? ? '' );
2020-12-01 19:35:05 +08:00
putenv ( " TEST_PHPDBG_EXECUTABLE= $phpdbg " );
$environment [ 'TEST_PHPDBG_EXECUTABLE' ] = $phpdbg ;
2023-03-03 09:50:02 +08:00
putenv ( " TEST_PHPDBG_EXECUTABLE_ESCAPED= " . escapeshellarg ( $phpdbg ? ? '' ));
$environment [ 'TEST_PHPDBG_EXECUTABLE_ESCAPED' ] = escapeshellarg ( $phpdbg ? ? '' );
2020-12-01 19:35:05 +08:00
2020-12-01 00:01:09 +08:00
if ( $conf_passed !== null ) {
2020-02-03 20:41:45 +08:00
if ( IS_WINDOWS ) {
2020-02-03 20:41:31 +08:00
$pass_options .= " -c " . escapeshellarg ( $conf_passed );
} else {
$pass_options .= " -c ' " . realpath ( $conf_passed ) . " ' " ;
}
}
$test_files = array_unique ( $test_files );
$test_files = array_merge ( $test_files , $redir_tests );
// Run selected tests.
$test_cnt = count ( $test_files );
2023-12-07 09:24:31 +08:00
verify_config ( $php );
write_information ( $user_tests , $phpdbg );
2020-05-20 17:58:42 +08:00
2020-02-03 20:41:31 +08:00
if ( $test_cnt ) {
putenv ( 'NO_INTERACTION=1' );
usort ( $test_files , " test_sort " );
2023-12-30 00:03:30 +08:00
$start_time = hrtime ( true );
2020-02-03 20:41:31 +08:00
2020-06-18 17:40:40 +08:00
echo " Running selected tests. \n " ;
2020-02-03 20:41:31 +08:00
$test_idx = 0 ;
run_all_tests ( $test_files , $environment );
2023-12-30 00:03:30 +08:00
$end_time = hrtime ( true );
2020-02-03 20:41:31 +08:00
if ( $failed_tests_file ) {
fclose ( $failed_tests_file );
}
if ( $result_tests_file ) {
fclose ( $result_tests_file );
}
2020-05-20 16:04:57 +08:00
if ( 0 == count ( $test_results )) {
echo " No tests were run. \n " ;
return ;
}
2020-02-03 20:41:31 +08:00
compute_summary ();
echo " ===================================================================== " ;
2020-06-18 17:40:40 +08:00
echo get_summary ( false );
2020-02-03 20:41:31 +08:00
if ( $output_file != '' && $just_save_results ) {
2022-06-07 03:48:38 +08:00
save_results ( $output_file , /* prompt_to_save_results: */ false );
2020-02-03 20:41:31 +08:00
}
2020-05-20 17:58:42 +08:00
} else {
// Compile a list of all test files (*.phpt).
2020-08-10 03:45:04 +08:00
$test_files = [];
2022-09-22 18:14:00 +08:00
$exts_tested = $exts_to_test ;
$exts_skipped = [];
2020-05-20 17:58:42 +08:00
sort ( $exts_to_test );
2023-12-07 09:24:31 +08:00
foreach ([ 'Zend' , 'tests' , 'ext' , 'sapi' ] as $dir ) {
2020-05-20 17:58:42 +08:00
if ( is_dir ( $dir )) {
2023-12-07 09:24:31 +08:00
find_files ( TEST_PHP_SRCDIR . " / { $dir } " , $dir == 'ext' );
2020-05-20 17:58:42 +08:00
}
2020-02-03 20:41:31 +08:00
}
2020-05-20 17:58:42 +08:00
foreach ( $user_tests as $dir ) {
find_files ( $dir , $dir == 'ext' );
}
2020-02-03 20:41:31 +08:00
2020-05-20 17:58:42 +08:00
$test_files = array_unique ( $test_files );
usort ( $test_files , " test_sort " );
2020-02-03 20:41:31 +08:00
2023-12-30 00:03:30 +08:00
$start_timestamp = time ();
$start_time = hrtime ( true );
2024-01-02 17:36:52 +08:00
show_start ( $start_timestamp );
2020-02-03 20:41:31 +08:00
2020-05-20 17:58:42 +08:00
$test_cnt = count ( $test_files );
$test_idx = 0 ;
run_all_tests ( $test_files , $environment );
2023-12-30 00:03:30 +08:00
$end_time = hrtime ( true );
2020-02-03 20:41:31 +08:00
2020-05-20 17:58:42 +08:00
if ( $failed_tests_file ) {
fclose ( $failed_tests_file );
}
2020-02-03 20:41:31 +08:00
2020-05-20 17:58:42 +08:00
if ( $result_tests_file ) {
fclose ( $result_tests_file );
}
2020-02-03 20:41:31 +08:00
2020-05-20 17:58:42 +08:00
// Summarize results
2020-02-03 20:41:31 +08:00
2020-05-20 17:58:42 +08:00
if ( 0 == count ( $test_results )) {
echo " No tests were run. \n " ;
return ;
}
2020-02-03 20:41:31 +08:00
2020-05-20 17:58:42 +08:00
compute_summary ();
2020-02-03 20:41:31 +08:00
2023-12-30 00:03:30 +08:00
show_end ( $start_timestamp , $start_time , $end_time );
2020-05-20 17:58:42 +08:00
show_summary ();
2020-02-03 20:41:31 +08:00
2022-06-07 03:48:38 +08:00
save_results ( $output_file , /* prompt_to_save_results: */ true );
2020-02-03 20:41:31 +08:00
}
2021-02-06 04:31:31 +08:00
$junit -> saveXML ();
2021-07-16 20:39:47 +08:00
if ( $bless ) {
bless_failed_tests ( $PHP_FAILED_TESTS [ 'FAILED' ]);
}
2020-05-20 17:58:42 +08:00
if ( getenv ( 'REPORT_EXIT_STATUS' ) !== '0' && getenv ( 'REPORT_EXIT_STATUS' ) !== 'no' &&
2021-02-23 20:22:25 +08:00
( $sum_results [ 'FAILED' ] || $sum_results [ 'BORKED' ] || $sum_results [ 'LEAKED' ])) {
2020-02-03 20:41:31 +08:00
exit ( 1 );
}
2019-02-16 08:05:04 +08:00
}
2012-03-22 05:59:02 +08:00
2023-12-07 09:24:31 +08:00
function verify_config ( string $php ) : void
2019-02-16 08:05:04 +08:00
{
2020-02-03 20:41:31 +08:00
if ( empty ( $php ) || ! file_exists ( $php )) {
error ( 'environment variable TEST_PHP_EXECUTABLE must be set to specify PHP executable!' );
}
2008-07-21 18:48:31 +08:00
2020-02-03 20:41:31 +08:00
if ( ! is_executable ( $php )) {
error ( " invalid PHP executable specified by TEST_PHP_EXECUTABLE = $php " );
}
2003-06-02 02:34:03 +08:00
}
2002-10-02 09:52:25 +08:00
2023-12-07 09:24:31 +08:00
/**
* @ param string [] $user_tests
*/
function write_information ( array $user_tests , $phpdbg ) : void
2019-02-16 08:05:04 +08:00
{
2023-12-07 09:24:31 +08:00
global $php , $php_cgi , $php_info , $ini_overwrites , $pass_options , $exts_to_test , $valgrind , $no_file_cache ;
2023-02-25 22:02:06 +08:00
$php_escaped = escapeshellarg ( $php );
2005-03-09 12:23:02 +08:00
2020-02-03 20:41:31 +08:00
// Get info from php
$info_file = __DIR__ . '/run-test-info.php' ;
@ unlink ( $info_file );
$php_info = ' < ? php echo "
2019-02-16 08:05:04 +08:00
PHP_SAPI : " , PHP_SAPI , "
PHP_VERSION : " , phpversion() , "
ZEND_VERSION : " , zend_version() , "
PHP_OS : " , PHP_OS , " - " , php_uname() , "
INI actual : " , realpath(get_cfg_var( " cfg_file_path " )) , "
More . INIs : " , (function_exists( \ 'php_ini_scanned_files \ ') ? str_replace( " \n " , " " , php_ini_scanned_files()) : " ** not determined ** " ); ?>';
2020-02-03 20:41:31 +08:00
save_text ( $info_file , $php_info );
2020-08-10 03:45:04 +08:00
$info_params = [];
2020-02-03 20:41:31 +08:00
settings2array ( $ini_overwrites , $info_params );
$info_params = settings2params ( $info_params );
2023-02-25 22:02:06 +08:00
$php_info = shell_exec ( " $php_escaped $pass_options $info_params $no_file_cache \" $info_file\ " " );
define ( 'TESTED_PHP_VERSION' , shell_exec ( " $php_escaped -n -r \" echo PHP_VERSION; \" " ));
2020-02-03 20:41:31 +08:00
if ( $php_cgi && $php != $php_cgi ) {
2023-02-25 22:02:06 +08:00
$php_cgi_escaped = escapeshellarg ( $php_cgi );
$php_info_cgi = shell_exec ( " $php_cgi_escaped $pass_options $info_params $no_file_cache -q \" $info_file\ " " );
2020-02-03 20:41:31 +08:00
$php_info_sep = " \n --------------------------------------------------------------------- " ;
$php_cgi_info = " $php_info_sep\nPHP : $php_cgi $php_info_cgi $php_info_sep " ;
} else {
$php_cgi_info = '' ;
}
if ( $phpdbg ) {
2023-02-25 22:02:06 +08:00
$phpdbg_escaped = escapeshellarg ( $phpdbg );
$phpdbg_info = shell_exec ( " $phpdbg_escaped $pass_options $info_params $no_file_cache -qrr \" $info_file\ " " );
2020-02-03 20:41:31 +08:00
$php_info_sep = " \n --------------------------------------------------------------------- " ;
$phpdbg_info = " $php_info_sep\nPHP : $phpdbg $phpdbg_info $php_info_sep " ;
} else {
$phpdbg_info = '' ;
}
if ( function_exists ( 'opcache_invalidate' )) {
opcache_invalidate ( $info_file , true );
}
@ unlink ( $info_file );
2021-05-16 22:55:28 +08:00
// load list of enabled and loadable extensions
save_text ( $info_file , <<< 'PHP'
< ? php
2022-09-22 18:14:00 +08:00
$exts = get_loaded_extensions ();
$ext_dir = ini_get ( 'extension_dir' );
2021-05-16 22:55:28 +08:00
foreach ( scandir ( $ext_dir ) as $file ) {
2022-09-22 18:14:00 +08:00
if ( preg_match ( '/^(?:php_)?([_a-zA-Z0-9]+)\.(?:so|dll)$/' , $file , $matches )) {
2024-10-03 18:58:27 +08:00
if ( ! extension_loaded ( $matches [ 1 ])) {
2022-09-22 18:14:00 +08:00
$exts [] = $matches [ 1 ];
}
2021-05-16 22:55:28 +08:00
}
}
2022-09-22 18:14:00 +08:00
echo implode ( ',' , $exts );
PHP );
2023-02-25 22:02:06 +08:00
$extensionsNames = explode ( ',' , shell_exec ( " $php_escaped $pass_options $info_params $no_file_cache \" $info_file\ " " ));
2022-09-22 18:14:00 +08:00
$exts_to_test = array_unique ( remap_loaded_extensions_names ( $extensionsNames ));
2020-02-03 20:41:31 +08:00
// check for extensions that need special handling and regenerate
2020-08-10 03:45:04 +08:00
$info_params_ex = [
'session' => [ 'session.auto_start=0' ],
'tidy' => [ 'tidy.clean_output=0' ],
'zlib' => [ 'zlib.output_compression=Off' ],
2020-10-12 20:28:48 +08:00
'xdebug' => [ 'xdebug.mode=off' ],
2020-08-10 03:45:04 +08:00
];
2020-02-03 20:41:31 +08:00
foreach ( $info_params_ex as $ext => $ini_overwrites_ex ) {
if ( in_array ( $ext , $exts_to_test )) {
$ini_overwrites = array_merge ( $ini_overwrites , $ini_overwrites_ex );
}
}
if ( function_exists ( 'opcache_invalidate' )) {
opcache_invalidate ( $info_file , true );
}
@ unlink ( $info_file );
// Write test context information.
echo "
2019-02-16 08:05:04 +08:00
=====================================================================
PHP : $php $php_info $php_cgi_info $phpdbg_info
CWD : " . TEST_PHP_SRCDIR . "
Extra dirs : " ;
2020-02-03 20:41:31 +08:00
foreach ( $user_tests as $test_dir ) {
echo " { $test_dir } \n " ;
}
echo "
2019-02-16 08:05:04 +08:00
VALGRIND : " . ( $valgrind ? $valgrind->getHeader () : 'Not used') . "
=====================================================================
" ;
2002-10-02 09:52:25 +08:00
}
2022-06-07 03:48:38 +08:00
function save_results ( string $output_file , bool $prompt_to_save_results ) : void
2019-02-16 08:05:04 +08:00
{
2023-12-07 09:24:31 +08:00
global $sum_results , $failed_test_summary , $PHP_FAILED_TESTS , $php ;
2020-02-03 20:41:31 +08:00
2024-09-04 07:15:10 +08:00
if ( getenv ( 'NO_INTERACTION' )) {
2022-06-07 03:48:38 +08:00
return ;
}
if ( $prompt_to_save_results ) {
/* We got failed Tests, offer the user to save a QA report */
2020-02-03 20:41:31 +08:00
$fp = fopen ( " php://stdin " , " r+ " );
if ( $sum_results [ 'FAILED' ] || $sum_results [ 'BORKED' ] || $sum_results [ 'WARNED' ] || $sum_results [ 'LEAKED' ]) {
echo " \n You may have found a problem in PHP. " ;
}
2022-06-07 03:48:38 +08:00
echo " \n This report can be saved and used to open an issue on the bug tracker at \n " ;
echo " https://github.com/php/php-src/issues \n " ;
2020-02-03 20:41:31 +08:00
echo " This gives us a better understanding of PHP's behavior. \n " ;
2022-06-07 03:48:38 +08:00
echo " Do you want to save this report in a file? [Yn]: " ;
2020-02-03 20:41:31 +08:00
flush ();
$user_input = fgets ( $fp , 10 );
2022-06-07 03:48:38 +08:00
fclose ( $fp );
if ( ! ( strlen ( trim ( $user_input )) == 0 || strtolower ( $user_input [ 0 ]) == 'y' )) {
return ;
}
}
/**
* Collect information about the host system for our report
* Fetch phpinfo () output so that we can see the PHP environment
* Make an archive of all the failed tests
*/
$failed_tests_data = '' ;
$sep = " \n " . str_repeat ( '=' , 80 ) . " \n " ;
$failed_tests_data .= $failed_test_summary . " \n " ;
$failed_tests_data .= get_summary ( true ) . " \n " ;
if ( $sum_results [ 'FAILED' ]) {
foreach ( $PHP_FAILED_TESTS [ 'FAILED' ] as $test_info ) {
$failed_tests_data .= $sep . $test_info [ 'name' ] . $test_info [ 'info' ];
$failed_tests_data .= $sep . file_get_contents ( realpath ( $test_info [ 'output' ]));
$failed_tests_data .= $sep . file_get_contents ( realpath ( $test_info [ 'diff' ]));
$failed_tests_data .= $sep . " \n \n " ;
}
}
2020-02-03 20:41:31 +08:00
2022-06-07 03:48:38 +08:00
$failed_tests_data .= " \n " . $sep . 'BUILD ENVIRONMENT' . $sep ;
$failed_tests_data .= " OS: \n " . PHP_OS . " - " . php_uname () . " \n \n " ;
$ldd = $autoconf = $sys_libtool = $libtool = $compiler = 'N/A' ;
2020-02-03 20:41:31 +08:00
2022-06-07 03:48:38 +08:00
if ( ! IS_WINDOWS ) {
/* If PHP_AUTOCONF is set, use it; otherwise, use 'autoconf'. */
if ( getenv ( 'PHP_AUTOCONF' )) {
$autoconf = shell_exec ( getenv ( 'PHP_AUTOCONF' ) . ' --version' );
} else {
$autoconf = shell_exec ( 'autoconf --version' );
}
2020-02-03 20:41:31 +08:00
2022-06-07 03:48:38 +08:00
/* Always use the generated libtool - Mac OSX uses 'glibtool' */
$libtool = shell_exec ( INIT_DIR . '/libtool --version' );
2020-02-03 20:41:31 +08:00
2022-06-07 03:48:38 +08:00
/* Use shtool to find out if there is glibtool present (MacOSX) */
$sys_libtool_path = shell_exec ( __DIR__ . '/build/shtool path glibtool libtool' );
2020-02-03 20:41:31 +08:00
2022-06-07 03:48:38 +08:00
if ( $sys_libtool_path ) {
$sys_libtool = shell_exec ( str_replace ( " \n " , " " , $sys_libtool_path ) . ' --version' );
}
2020-02-03 20:41:31 +08:00
2022-06-07 03:48:38 +08:00
/* Try the most common flags for 'version' */
$flags = [ '-v' , '-V' , '--version' ];
$cc_status = 0 ;
2020-02-03 20:41:31 +08:00
2022-06-07 03:48:38 +08:00
foreach ( $flags as $flag ) {
system ( getenv ( 'CC' ) . " $flag >/dev/null 2>&1 " , $cc_status );
if ( $cc_status == 0 ) {
$compiler = shell_exec ( getenv ( 'CC' ) . " $flag 2>&1 " );
break ;
2020-02-03 20:41:31 +08:00
}
2022-06-07 03:48:38 +08:00
}
2020-02-03 20:41:31 +08:00
2022-06-07 03:48:38 +08:00
$ldd = shell_exec ( " ldd $php 2>/dev/null " );
}
2020-02-03 20:41:31 +08:00
2022-06-07 03:48:38 +08:00
$failed_tests_data .= " Autoconf: \n $autoconf\n " ;
$failed_tests_data .= " Bundled Libtool: \n $libtool\n " ;
$failed_tests_data .= " System Libtool: \n $sys_libtool\n " ;
$failed_tests_data .= " Compiler: \n $compiler\n " ;
$failed_tests_data .= " Bison: \n " . shell_exec ( 'bison --version 2>/dev/null' ) . " \n " ;
$failed_tests_data .= " Libraries: \n $ldd\n " ;
$failed_tests_data .= " \n " ;
$failed_tests_data .= $sep . " PHPINFO " . $sep ;
$failed_tests_data .= shell_exec ( $php . ' -ddisplay_errors=stderr -dhtml_errors=0 -i 2> /dev/null' );
2020-02-03 20:41:31 +08:00
2022-06-07 03:48:38 +08:00
file_put_contents ( $output_file , $failed_tests_data );
echo " Report saved to: " , $output_file , " \n " ;
2002-10-14 15:18:23 +08:00
}
2020-12-01 19:35:05 +08:00
function get_binary ( string $php , string $sapi , string $sapi_path ) : ? string
{
$dir = dirname ( $php );
if ( IS_WINDOWS && file_exists ( " $dir / $sapi .exe " )) {
return realpath ( " $dir / $sapi .exe " );
}
2021-10-12 19:33:16 +08:00
// Sources tree
2020-12-01 19:35:05 +08:00
if ( file_exists ( " $dir /../../ $sapi_path " )) {
return realpath ( " $dir /../../ $sapi_path " );
}
2021-10-12 19:39:24 +08:00
// Installation tree, preserve command prefix/suffix
2021-10-12 19:33:16 +08:00
$inst = str_replace ( 'php' , $sapi , basename ( $php ));
if ( file_exists ( " $dir / $inst " )) {
return realpath ( " $dir / $inst " );
2020-12-01 19:35:05 +08:00
}
return null ;
}
2020-08-07 02:37:36 +08:00
function find_files ( string $dir , bool $is_ext_dir = false , bool $ignore = false ) : void
2002-10-02 09:52:25 +08:00
{
2020-02-03 20:41:31 +08:00
global $test_files , $exts_to_test , $ignored_by_ext , $exts_skipped ;
$o = opendir ( $dir ) or error ( " cannot open directory: $dir " );
while (( $name = readdir ( $o )) !== false ) {
2020-08-10 03:45:04 +08:00
if ( is_dir ( " { $dir } / { $name } " ) && ! in_array ( $name , [ '.' , '..' , '.svn' ])) {
2022-09-22 18:14:00 +08:00
$skip_ext = ( $is_ext_dir && ! in_array ( $name , $exts_to_test ));
2020-02-03 20:41:31 +08:00
if ( $skip_ext ) {
2022-09-22 18:14:00 +08:00
$exts_skipped [] = $name ;
2020-02-03 20:41:31 +08:00
}
find_files ( " { $dir } / { $name } " , false , $ignore || $skip_ext );
}
// Cleanup any left-over tmp files from last run.
if ( substr ( $name , - 4 ) == '.tmp' ) {
@ unlink ( " $dir / $name " );
continue ;
}
// Otherwise we're only interested in *.phpt files.
2021-12-23 23:02:22 +08:00
// (but not those starting with a dot, which are hidden on
// many platforms)
if ( substr ( $name , - 5 ) == '.phpt' && substr ( $name , 0 , 1 ) !== '.' ) {
2022-09-22 18:14:00 +08:00
$testfile = realpath ( " { $dir } / { $name } " );
2020-02-03 20:41:31 +08:00
if ( $ignore ) {
2022-09-22 18:14:00 +08:00
$ignored_by_ext [] = $testfile ;
2020-02-03 20:41:31 +08:00
} else {
$test_files [] = $testfile ;
}
}
}
closedir ( $o );
2002-05-17 05:48:28 +08:00
}
2001-05-03 00:39:04 +08:00
2020-08-07 02:37:36 +08:00
/**
* @ param array | string $name
*/
function test_name ( $name ) : string
2005-10-06 17:42:17 +08:00
{
2020-02-03 20:41:31 +08:00
if ( is_array ( $name )) {
return $name [ 0 ] . ':' . $name [ 1 ];
}
2022-07-10 00:54:04 +08:00
return $name ;
2005-10-06 17:42:17 +08:00
}
2020-08-07 02:37:36 +08:00
/**
* @ param array | string $a
* @ param array | string $b
*/
function test_sort ( $a , $b ) : int
2003-08-10 12:23:02 +08:00
{
2020-02-03 20:41:31 +08:00
$a = test_name ( $a );
$b = test_name ( $b );
$ta = strpos ( $a , TEST_PHP_SRCDIR . " /tests " ) === 0 ? 1 + ( strpos ( $a ,
TEST_PHP_SRCDIR . " /tests/run-test " ) === 0 ? 1 : 0 ) : 0 ;
$tb = strpos ( $b , TEST_PHP_SRCDIR . " /tests " ) === 0 ? 1 + ( strpos ( $b ,
TEST_PHP_SRCDIR . " /tests/run-test " ) === 0 ? 1 : 0 ) : 0 ;
if ( $ta == $tb ) {
return strcmp ( $a , $b );
}
2022-07-10 00:54:04 +08:00
return $tb - $ta ;
2002-11-04 18:45:41 +08:00
}
2002-05-17 05:48:28 +08:00
//
2024-11-01 18:02:42 +08:00
// Write the given text to a temporary file.
2002-05-17 05:48:28 +08:00
//
2020-08-07 02:37:36 +08:00
function save_text ( string $filename , string $text , ? string $filename_copy = null ) : void
2002-10-02 09:52:25 +08:00
{
2020-02-03 20:41:31 +08:00
global $DETAILED ;
2008-06-20 05:09:43 +08:00
2022-07-10 00:54:04 +08:00
if ( $filename_copy && $filename_copy != $filename && file_put_contents ( $filename_copy , $text ) === false ) {
error ( " Cannot open file ' " . $filename_copy . " ' (save_text) " );
2020-02-03 20:41:31 +08:00
}
2008-07-21 18:48:31 +08:00
2020-05-12 17:07:18 +08:00
if ( file_put_contents ( $filename , $text ) === false ) {
2020-02-03 20:41:31 +08:00
error ( " Cannot open file ' " . $filename . " ' (save_text) " );
}
2008-07-21 18:48:31 +08:00
run-tests: cs fixes (cleanup)
I used php-cs-fixer to do the cs fixes. The configuration I used is
posted below. The reason I disabled some of the rules is because they
create too much noise and would make it difficult to review. But please
feel free to close this PR and run the php-cs-fixer yourself.
<?php
$config = PhpCsFixer\Config::create();
$config->setRiskyAllowed(false);
$config->setRules([
'@PSR2' => true,
'@Symfony' => true,
'array_syntax' => false,
'binary_operator_spaces' => false,
'blank_line_before_statement' => false,
'concat_space' => false,
'increment_style' => false,
'phpdoc_align' => false,
'single_quote' => false,
'trailing_comma_in_multiline_array' => false,
'unary_operator_spaces' => false,
'yoda_style' => false,
]);
$finder = PhpCsFixer\Finder::create();
$finder->in(getcwd());
$finder->exclude('Zend');
$finder->exclude('build');
$finder->exclude('ext');
$finder->exclude('pear');
$finder->exclude('sapi');
$finder->exclude('scripts');
$finder->exclude('win32');
$config->setFinder($finder);
return $config;
Closes GH-5557.
2020-05-13 00:24:21 +08:00
if ( 1 < $DETAILED ) {
echo "
2002-05-17 05:48:28 +08:00
FILE $filename {{{
$text
2011-02-11 09:34:03 +08:00
}}}
2002-05-17 05:48:28 +08:00
" ;
run-tests: cs fixes (cleanup)
I used php-cs-fixer to do the cs fixes. The configuration I used is
posted below. The reason I disabled some of the rules is because they
create too much noise and would make it difficult to review. But please
feel free to close this PR and run the php-cs-fixer yourself.
<?php
$config = PhpCsFixer\Config::create();
$config->setRiskyAllowed(false);
$config->setRules([
'@PSR2' => true,
'@Symfony' => true,
'array_syntax' => false,
'binary_operator_spaces' => false,
'blank_line_before_statement' => false,
'concat_space' => false,
'increment_style' => false,
'phpdoc_align' => false,
'single_quote' => false,
'trailing_comma_in_multiline_array' => false,
'unary_operator_spaces' => false,
'yoda_style' => false,
]);
$finder = PhpCsFixer\Finder::create();
$finder->in(getcwd());
$finder->exclude('Zend');
$finder->exclude('build');
$finder->exclude('ext');
$finder->exclude('pear');
$finder->exclude('sapi');
$finder->exclude('scripts');
$finder->exclude('win32');
$config->setFinder($finder);
return $config;
Closes GH-5557.
2020-05-13 00:24:21 +08:00
}
2002-05-17 05:48:28 +08:00
}
2001-05-03 00:39:04 +08:00
2002-05-17 05:48:28 +08:00
//
// Write an error in a format recognizable to Emacs or MSVC.
//
2001-05-03 00:39:04 +08:00
2020-08-07 02:37:36 +08:00
function error_report ( string $testname , string $logname , string $tested ) : void
2002-05-17 05:48:28 +08:00
{
2020-02-03 20:41:31 +08:00
$testname = realpath ( $testname );
$logname = realpath ( $logname );
switch ( strtoupper ( getenv ( 'TEST_PHP_ERROR_STYLE' ))) {
case 'MSVC' :
echo $testname . " (1) : $tested\n " ;
echo $logname . " (1) : $tested\n " ;
break ;
case 'EMACS' :
echo $testname . " :1: $tested\n " ;
echo $logname . " :1: $tested\n " ;
break ;
}
2000-08-28 03:46:06 +08:00
}
2020-08-07 02:37:36 +08:00
/**
* @ return false | string
*/
function system_with_timeout (
string $commandline ,
? array $env = null ,
? string $stdin = null ,
bool $captureStdIn = true ,
bool $captureStdOut = true ,
bool $captureStdErr = true
) {
2020-02-03 20:41:31 +08:00
global $valgrind ;
2023-02-25 22:02:06 +08:00
// when proc_open cmd is passed as a string (without bypass_shell=true option) the cmd goes thru shell
// and on Windows quotes are discarded, this is a fix to honor the quotes and allow values containing
// spaces like '"C:\Program Files\PHP\php.exe"' to be passed as 1 argument correctly
if ( IS_WINDOWS ) {
2024-08-13 19:35:23 +08:00
$commandline = 'start "" /b /wait ' . $commandline . ' & exit' ;
2023-02-25 22:02:06 +08:00
}
2020-02-03 20:41:31 +08:00
$data = '' ;
2020-08-10 03:45:04 +08:00
$bin_env = [];
run-tests: cs fixes (cleanup)
I used php-cs-fixer to do the cs fixes. The configuration I used is
posted below. The reason I disabled some of the rules is because they
create too much noise and would make it difficult to review. But please
feel free to close this PR and run the php-cs-fixer yourself.
<?php
$config = PhpCsFixer\Config::create();
$config->setRiskyAllowed(false);
$config->setRules([
'@PSR2' => true,
'@Symfony' => true,
'array_syntax' => false,
'binary_operator_spaces' => false,
'blank_line_before_statement' => false,
'concat_space' => false,
'increment_style' => false,
'phpdoc_align' => false,
'single_quote' => false,
'trailing_comma_in_multiline_array' => false,
'unary_operator_spaces' => false,
'yoda_style' => false,
]);
$finder = PhpCsFixer\Finder::create();
$finder->in(getcwd());
$finder->exclude('Zend');
$finder->exclude('build');
$finder->exclude('ext');
$finder->exclude('pear');
$finder->exclude('sapi');
$finder->exclude('scripts');
$finder->exclude('win32');
$config->setFinder($finder);
return $config;
Closes GH-5557.
2020-05-13 00:24:21 +08:00
foreach (( array ) $env as $key => $value ) {
2020-02-03 20:41:31 +08:00
$bin_env [ $key ] = $value ;
}
2020-08-10 03:45:04 +08:00
$descriptorspec = [];
2020-02-03 20:41:31 +08:00
if ( $captureStdIn ) {
2020-08-10 03:45:04 +08:00
$descriptorspec [ 0 ] = [ 'pipe' , 'r' ];
2020-02-03 20:41:31 +08:00
}
if ( $captureStdOut ) {
2020-08-10 03:45:04 +08:00
$descriptorspec [ 1 ] = [ 'pipe' , 'w' ];
2020-02-03 20:41:31 +08:00
}
if ( $captureStdErr ) {
2020-08-10 03:45:04 +08:00
$descriptorspec [ 2 ] = [ 'pipe' , 'w' ];
2020-02-03 20:41:31 +08:00
}
2020-08-10 03:45:04 +08:00
$proc = proc_open ( $commandline , $descriptorspec , $pipes , TEST_PHP_SRCDIR , $bin_env , [ 'suppress_errors' => true ]);
2020-02-03 20:41:31 +08:00
if ( ! $proc ) {
return false ;
}
if ( $captureStdIn ) {
if ( ! is_null ( $stdin )) {
fwrite ( $pipes [ 0 ], $stdin );
}
fclose ( $pipes [ 0 ]);
unset ( $pipes [ 0 ]);
}
$timeout = $valgrind ? 300 : ( $env [ 'TEST_TIMEOUT' ] ? ? 60 );
2023-08-31 04:31:27 +08:00
/* ASAN can cause a ~2-3x slowdown. */
if ( isset ( $env [ 'SKIP_ASAN' ])) {
$timeout *= 3 ;
}
2020-02-03 20:41:31 +08:00
while ( true ) {
/* hide errors from interrupted syscalls */
$r = $pipes ;
$w = null ;
$e = null ;
$n = @ stream_select ( $r , $w , $e , $timeout );
if ( $n === false ) {
break ;
2022-07-10 00:54:04 +08:00
}
if ( $n === 0 ) {
2020-02-03 20:41:31 +08:00
/* timed out */
$data .= " \n ** ERROR: process timed out ** \n " ;
proc_terminate ( $proc , 9 );
return $data ;
2022-07-10 00:54:04 +08:00
}
if ( $n > 0 ) {
2020-02-03 20:41:31 +08:00
if ( $captureStdOut ) {
$line = fread ( $pipes [ 1 ], 8192 );
} elseif ( $captureStdErr ) {
$line = fread ( $pipes [ 2 ], 8192 );
} else {
$line = '' ;
}
if ( strlen ( $line ) == 0 ) {
/* EOF */
break ;
}
$data .= $line ;
}
}
$stat = proc_get_status ( $proc );
if ( $stat [ 'signaled' ]) {
$data .= " \n Termsig= " . $stat [ 'stopsig' ] . " \n " ;
}
if ( $stat [ " exitcode " ] > 128 && $stat [ " exitcode " ] < 160 ) {
$data .= " \n Termsig= " . ( $stat [ " exitcode " ] - 128 ) . " \n " ;
2021-02-24 05:34:51 +08:00
} else if ( defined ( 'PHP_WINDOWS_VERSION_MAJOR' ) && (( $stat [ " exitcode " ] >> 28 ) & 0 b1111 ) === 0 b1100 ) {
// https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-erref/87fba13e-bf06-450e-83b1-9241dc81e781
$data .= " \n Termsig= " . $stat [ " exitcode " ] . " \n " ;
2020-02-03 20:41:31 +08:00
}
proc_close ( $proc );
return $data ;
2003-02-16 02:09:52 +08:00
}
2023-12-07 09:24:31 +08:00
function run_all_tests ( array $test_files , array $env , ? string $redir_tested = null ) : void
2005-10-06 17:42:17 +08:00
{
2020-05-20 16:04:57 +08:00
global $test_results , $failed_tests_file , $result_tests_file , $php , $test_idx , $file_cache ;
2021-07-30 22:20:08 +08:00
global $preload ;
2020-02-03 20:41:31 +08:00
// Parallel testing
global $PHP_FAILED_TESTS , $workers , $workerID , $workerSock ;
2021-07-30 22:20:08 +08:00
if ( $file_cache !== null || $preload ) {
/* Automatically skip opcache tests in -- file - cache and -- preload mode ,
* because opcache generally expects these to run under a default configuration . */
$test_files = array_filter ( $test_files , function ( $test ) use ( $preload ) {
if ( ! is_string ( $test )) {
return true ;
}
if ( false !== strpos ( $test , 'ext/opcache' )) {
return false ;
}
if ( $preload && false !== strpos ( $test , 'ext/zend_test/tests/observer' )) {
return false ;
}
return true ;
2020-05-20 16:04:57 +08:00
});
}
2020-02-03 20:41:45 +08:00
/* Ignore -jN if there is only one file to analyze. */
if ( $workers !== null && count ( $test_files ) > 1 && ! $workerID ) {
2020-02-03 20:41:31 +08:00
run_all_tests_parallel ( $test_files , $env , $redir_tested );
return ;
}
foreach ( $test_files as $name ) {
if ( is_array ( $name )) {
$index = " # $name[1] : $name[0] " ;
if ( $redir_tested ) {
$name = $name [ 0 ];
}
run-tests: cs fixes (cleanup)
I used php-cs-fixer to do the cs fixes. The configuration I used is
posted below. The reason I disabled some of the rules is because they
create too much noise and would make it difficult to review. But please
feel free to close this PR and run the php-cs-fixer yourself.
<?php
$config = PhpCsFixer\Config::create();
$config->setRiskyAllowed(false);
$config->setRules([
'@PSR2' => true,
'@Symfony' => true,
'array_syntax' => false,
'binary_operator_spaces' => false,
'blank_line_before_statement' => false,
'concat_space' => false,
'increment_style' => false,
'phpdoc_align' => false,
'single_quote' => false,
'trailing_comma_in_multiline_array' => false,
'unary_operator_spaces' => false,
'yoda_style' => false,
]);
$finder = PhpCsFixer\Finder::create();
$finder->in(getcwd());
$finder->exclude('Zend');
$finder->exclude('build');
$finder->exclude('ext');
$finder->exclude('pear');
$finder->exclude('sapi');
$finder->exclude('scripts');
$finder->exclude('win32');
$config->setFinder($finder);
return $config;
Closes GH-5557.
2020-05-13 00:24:21 +08:00
} elseif ( $redir_tested ) {
2020-02-03 20:41:31 +08:00
$index = " # $redir_tested : $name " ;
} else {
$index = $name ;
}
$test_idx ++ ;
if ( $workerID ) {
$PHP_FAILED_TESTS = [ 'BORKED' => [], 'FAILED' => [], 'WARNED' => [], 'LEAKED' => [], 'XFAILED' => [], 'XLEAKED' => [], 'SLOW' => []];
ob_start ();
}
$result = run_test ( $php , $name , $env );
if ( $workerID ) {
$resultText = ob_get_clean ();
}
if ( ! is_array ( $name ) && $result != 'REDIR' ) {
if ( $workerID ) {
send_message ( $workerSock , [
" type " => " test_result " ,
" name " => $name ,
" index " => $index ,
" result " => $result ,
" text " => $resultText ,
" PHP_FAILED_TESTS " => $PHP_FAILED_TESTS
]);
continue ;
}
$test_results [ $index ] = $result ;
if ( $failed_tests_file && ( $result == 'XFAILED' || $result == 'XLEAKED' || $result == 'FAILED' || $result == 'WARNED' || $result == 'LEAKED' )) {
fwrite ( $failed_tests_file , " $index\n " );
}
if ( $result_tests_file ) {
fwrite ( $result_tests_file , " $result\t $index\n " );
}
}
}
}
2023-12-07 09:24:31 +08:00
function run_all_tests_parallel ( array $test_files , array $env , ? string $redir_tested ) : void
run-tests: cs fixes (cleanup)
I used php-cs-fixer to do the cs fixes. The configuration I used is
posted below. The reason I disabled some of the rules is because they
create too much noise and would make it difficult to review. But please
feel free to close this PR and run the php-cs-fixer yourself.
<?php
$config = PhpCsFixer\Config::create();
$config->setRiskyAllowed(false);
$config->setRules([
'@PSR2' => true,
'@Symfony' => true,
'array_syntax' => false,
'binary_operator_spaces' => false,
'blank_line_before_statement' => false,
'concat_space' => false,
'increment_style' => false,
'phpdoc_align' => false,
'single_quote' => false,
'trailing_comma_in_multiline_array' => false,
'unary_operator_spaces' => false,
'yoda_style' => false,
]);
$finder = PhpCsFixer\Finder::create();
$finder->in(getcwd());
$finder->exclude('Zend');
$finder->exclude('build');
$finder->exclude('ext');
$finder->exclude('pear');
$finder->exclude('sapi');
$finder->exclude('scripts');
$finder->exclude('win32');
$config->setFinder($finder);
return $config;
Closes GH-5557.
2020-05-13 00:24:21 +08:00
{
2023-12-07 09:24:31 +08:00
global $workers , $test_idx , $test_results , $failed_tests_file , $result_tests_file , $PHP_FAILED_TESTS , $shuffle , $valgrind , $show_progress ;
2020-02-03 20:41:31 +08:00
2021-02-06 04:31:31 +08:00
global $junit ;
2020-02-03 20:41:31 +08:00
// The PHP binary running run-tests.php, and run-tests.php itself
// This PHP executable is *not* necessarily the same as the tested version
$thisPHP = PHP_BINARY ;
$thisScript = __FILE__ ;
$workerProcs = [];
$workerSocks = [];
// Each test may specify a list of conflict keys. While a test that conflicts with
// key K is running, no other test that conflicts with K may run. Conflict keys are
// specified either in the --CONFLICTS-- section, or CONFLICTS file inside a directory.
$dirConflictsWith = [];
$fileConflictsWith = [];
$sequentialTests = [];
foreach ( $test_files as $i => $file ) {
$contents = file_get_contents ( $file );
if ( preg_match ( '/^--CONFLICTS--(.+?)^--/ms' , $contents , $matches )) {
$conflicts = parse_conflicts ( $matches [ 1 ]);
} else {
// Cache per-directory conflicts in a separate map, so we compute these only once.
$dir = dirname ( $file );
if ( ! isset ( $dirConflictsWith [ $dir ])) {
$dirConflicts = [];
if ( file_exists ( $dir . '/CONFLICTS' )) {
$contents = file_get_contents ( $dir . '/CONFLICTS' );
$dirConflicts = parse_conflicts ( $contents );
}
$dirConflictsWith [ $dir ] = $dirConflicts ;
}
$conflicts = $dirConflictsWith [ $dir ];
}
// For tests conflicting with "all", no other tests may run in parallel. We'll run these
// tests separately at the end, when only one worker is left.
if ( in_array ( 'all' , $conflicts , true )) {
$sequentialTests [] = $file ;
unset ( $test_files [ $i ]);
}
$fileConflictsWith [ $file ] = $conflicts ;
}
// Some tests assume that they are executed in a certain order. We will be popping from
// $test_files, so reverse its order here. This makes sure that order is preserved at least
// for tests with a common conflict key.
$test_files = array_reverse ( $test_files );
// To discover parallelization issues it is useful to randomize the test order.
if ( $shuffle ) {
shuffle ( $test_files );
}
2020-05-21 03:20:06 +08:00
// Don't start more workers than test files.
2020-02-03 20:41:45 +08:00
$workers = max ( 1 , min ( $workers , count ( $test_files )));
2020-02-03 20:41:31 +08:00
2020-06-16 17:39:03 +08:00
echo " Spawning $workers workers... " ;
2020-02-03 20:41:31 +08:00
// We use sockets rather than STDIN/STDOUT for comms because on Windows,
// those can't be non-blocking for some reason.
$listenSock = stream_socket_server ( " tcp://127.0.0.1:0 " ) or error ( " Couldn't create socket on localhost. " );
$sockName = stream_socket_get_name ( $listenSock , false );
// PHP is terrible and returns IPv6 addresses not enclosed by []
$portPos = strrpos ( $sockName , " : " );
$sockHost = substr ( $sockName , 0 , $portPos );
run-tests: cs fixes (cleanup)
I used php-cs-fixer to do the cs fixes. The configuration I used is
posted below. The reason I disabled some of the rules is because they
create too much noise and would make it difficult to review. But please
feel free to close this PR and run the php-cs-fixer yourself.
<?php
$config = PhpCsFixer\Config::create();
$config->setRiskyAllowed(false);
$config->setRules([
'@PSR2' => true,
'@Symfony' => true,
'array_syntax' => false,
'binary_operator_spaces' => false,
'blank_line_before_statement' => false,
'concat_space' => false,
'increment_style' => false,
'phpdoc_align' => false,
'single_quote' => false,
'trailing_comma_in_multiline_array' => false,
'unary_operator_spaces' => false,
'yoda_style' => false,
]);
$finder = PhpCsFixer\Finder::create();
$finder->in(getcwd());
$finder->exclude('Zend');
$finder->exclude('build');
$finder->exclude('ext');
$finder->exclude('pear');
$finder->exclude('sapi');
$finder->exclude('scripts');
$finder->exclude('win32');
$config->setFinder($finder);
return $config;
Closes GH-5557.
2020-05-13 00:24:21 +08:00
if ( false !== strpos ( $sockHost , " : " )) {
2020-02-03 20:41:31 +08:00
$sockHost = " [ $sockHost ] " ;
}
$sockPort = substr ( $sockName , $portPos + 1 );
$sockUri = " tcp:// $sockHost : $sockPort " ;
2020-02-03 20:41:45 +08:00
$totalFileCount = count ( $test_files );
2020-02-03 20:41:31 +08:00
2020-06-16 17:39:03 +08:00
$startTime = microtime ( true );
2020-02-03 20:41:31 +08:00
for ( $i = 1 ; $i <= $workers ; $i ++ ) {
$proc = proc_open (
2021-05-20 00:33:24 +08:00
[ $thisPHP , $thisScript ],
2020-02-03 20:41:31 +08:00
[], // Inherit our stdin, stdout and stderr
$pipes ,
run-tests: cs fixes (cleanup)
I used php-cs-fixer to do the cs fixes. The configuration I used is
posted below. The reason I disabled some of the rules is because they
create too much noise and would make it difficult to review. But please
feel free to close this PR and run the php-cs-fixer yourself.
<?php
$config = PhpCsFixer\Config::create();
$config->setRiskyAllowed(false);
$config->setRules([
'@PSR2' => true,
'@Symfony' => true,
'array_syntax' => false,
'binary_operator_spaces' => false,
'blank_line_before_statement' => false,
'concat_space' => false,
'increment_style' => false,
'phpdoc_align' => false,
'single_quote' => false,
'trailing_comma_in_multiline_array' => false,
'unary_operator_spaces' => false,
'yoda_style' => false,
]);
$finder = PhpCsFixer\Finder::create();
$finder->in(getcwd());
$finder->exclude('Zend');
$finder->exclude('build');
$finder->exclude('ext');
$finder->exclude('pear');
$finder->exclude('sapi');
$finder->exclude('scripts');
$finder->exclude('win32');
$config->setFinder($finder);
return $config;
Closes GH-5557.
2020-05-13 00:24:21 +08:00
null ,
2021-02-01 12:56:59 +08:00
$GLOBALS [ 'environment' ] + [
2020-02-03 20:41:31 +08:00
" TEST_PHP_WORKER " => $i ,
" TEST_PHP_URI " => $sockUri ,
],
[
run-tests: cs fixes (cleanup)
I used php-cs-fixer to do the cs fixes. The configuration I used is
posted below. The reason I disabled some of the rules is because they
create too much noise and would make it difficult to review. But please
feel free to close this PR and run the php-cs-fixer yourself.
<?php
$config = PhpCsFixer\Config::create();
$config->setRiskyAllowed(false);
$config->setRules([
'@PSR2' => true,
'@Symfony' => true,
'array_syntax' => false,
'binary_operator_spaces' => false,
'blank_line_before_statement' => false,
'concat_space' => false,
'increment_style' => false,
'phpdoc_align' => false,
'single_quote' => false,
'trailing_comma_in_multiline_array' => false,
'unary_operator_spaces' => false,
'yoda_style' => false,
]);
$finder = PhpCsFixer\Finder::create();
$finder->in(getcwd());
$finder->exclude('Zend');
$finder->exclude('build');
$finder->exclude('ext');
$finder->exclude('pear');
$finder->exclude('sapi');
$finder->exclude('scripts');
$finder->exclude('win32');
$config->setFinder($finder);
return $config;
Closes GH-5557.
2020-05-13 00:24:21 +08:00
" suppress_errors " => true ,
'create_new_console' => true ,
2020-02-03 20:41:31 +08:00
]
);
run-tests: cs fixes (cleanup)
I used php-cs-fixer to do the cs fixes. The configuration I used is
posted below. The reason I disabled some of the rules is because they
create too much noise and would make it difficult to review. But please
feel free to close this PR and run the php-cs-fixer yourself.
<?php
$config = PhpCsFixer\Config::create();
$config->setRiskyAllowed(false);
$config->setRules([
'@PSR2' => true,
'@Symfony' => true,
'array_syntax' => false,
'binary_operator_spaces' => false,
'blank_line_before_statement' => false,
'concat_space' => false,
'increment_style' => false,
'phpdoc_align' => false,
'single_quote' => false,
'trailing_comma_in_multiline_array' => false,
'unary_operator_spaces' => false,
'yoda_style' => false,
]);
$finder = PhpCsFixer\Finder::create();
$finder->in(getcwd());
$finder->exclude('Zend');
$finder->exclude('build');
$finder->exclude('ext');
$finder->exclude('pear');
$finder->exclude('sapi');
$finder->exclude('scripts');
$finder->exclude('win32');
$config->setFinder($finder);
return $config;
Closes GH-5557.
2020-05-13 00:24:21 +08:00
if ( $proc === false ) {
2020-02-03 20:41:31 +08:00
kill_children ( $workerProcs );
error ( " Failed to spawn worker $i " );
}
$workerProcs [ $i ] = $proc ;
2020-06-16 17:39:03 +08:00
}
2020-02-03 20:41:31 +08:00
2020-06-16 17:39:03 +08:00
for ( $i = 1 ; $i <= $workers ; $i ++ ) {
2020-02-03 20:41:31 +08:00
$workerSock = stream_socket_accept ( $listenSock , 5 );
run-tests: cs fixes (cleanup)
I used php-cs-fixer to do the cs fixes. The configuration I used is
posted below. The reason I disabled some of the rules is because they
create too much noise and would make it difficult to review. But please
feel free to close this PR and run the php-cs-fixer yourself.
<?php
$config = PhpCsFixer\Config::create();
$config->setRiskyAllowed(false);
$config->setRules([
'@PSR2' => true,
'@Symfony' => true,
'array_syntax' => false,
'binary_operator_spaces' => false,
'blank_line_before_statement' => false,
'concat_space' => false,
'increment_style' => false,
'phpdoc_align' => false,
'single_quote' => false,
'trailing_comma_in_multiline_array' => false,
'unary_operator_spaces' => false,
'yoda_style' => false,
]);
$finder = PhpCsFixer\Finder::create();
$finder->in(getcwd());
$finder->exclude('Zend');
$finder->exclude('build');
$finder->exclude('ext');
$finder->exclude('pear');
$finder->exclude('sapi');
$finder->exclude('scripts');
$finder->exclude('win32');
$config->setFinder($finder);
return $config;
Closes GH-5557.
2020-05-13 00:24:21 +08:00
if ( $workerSock === false ) {
2020-02-03 20:41:31 +08:00
kill_children ( $workerProcs );
2020-06-16 17:39:03 +08:00
error ( " Failed to accept connection from worker. " );
2020-02-03 20:41:31 +08:00
}
$greeting = base64_encode ( serialize ([
" type " => " hello " ,
" GLOBALS " => $GLOBALS ,
" constants " => [
" INIT_DIR " => INIT_DIR ,
" TEST_PHP_SRCDIR " => TEST_PHP_SRCDIR ,
]
])) . " \n " ;
stream_set_timeout ( $workerSock , 5 );
run-tests: cs fixes (cleanup)
I used php-cs-fixer to do the cs fixes. The configuration I used is
posted below. The reason I disabled some of the rules is because they
create too much noise and would make it difficult to review. But please
feel free to close this PR and run the php-cs-fixer yourself.
<?php
$config = PhpCsFixer\Config::create();
$config->setRiskyAllowed(false);
$config->setRules([
'@PSR2' => true,
'@Symfony' => true,
'array_syntax' => false,
'binary_operator_spaces' => false,
'blank_line_before_statement' => false,
'concat_space' => false,
'increment_style' => false,
'phpdoc_align' => false,
'single_quote' => false,
'trailing_comma_in_multiline_array' => false,
'unary_operator_spaces' => false,
'yoda_style' => false,
]);
$finder = PhpCsFixer\Finder::create();
$finder->in(getcwd());
$finder->exclude('Zend');
$finder->exclude('build');
$finder->exclude('ext');
$finder->exclude('pear');
$finder->exclude('sapi');
$finder->exclude('scripts');
$finder->exclude('win32');
$config->setFinder($finder);
return $config;
Closes GH-5557.
2020-05-13 00:24:21 +08:00
if ( fwrite ( $workerSock , $greeting ) === false ) {
2020-02-03 20:41:31 +08:00
kill_children ( $workerProcs );
2020-06-16 17:39:03 +08:00
error ( " Failed to send greeting to worker. " );
2020-02-03 20:41:31 +08:00
}
$rawReply = fgets ( $workerSock );
run-tests: cs fixes (cleanup)
I used php-cs-fixer to do the cs fixes. The configuration I used is
posted below. The reason I disabled some of the rules is because they
create too much noise and would make it difficult to review. But please
feel free to close this PR and run the php-cs-fixer yourself.
<?php
$config = PhpCsFixer\Config::create();
$config->setRiskyAllowed(false);
$config->setRules([
'@PSR2' => true,
'@Symfony' => true,
'array_syntax' => false,
'binary_operator_spaces' => false,
'blank_line_before_statement' => false,
'concat_space' => false,
'increment_style' => false,
'phpdoc_align' => false,
'single_quote' => false,
'trailing_comma_in_multiline_array' => false,
'unary_operator_spaces' => false,
'yoda_style' => false,
]);
$finder = PhpCsFixer\Finder::create();
$finder->in(getcwd());
$finder->exclude('Zend');
$finder->exclude('build');
$finder->exclude('ext');
$finder->exclude('pear');
$finder->exclude('sapi');
$finder->exclude('scripts');
$finder->exclude('win32');
$config->setFinder($finder);
return $config;
Closes GH-5557.
2020-05-13 00:24:21 +08:00
if ( $rawReply === false ) {
2020-02-03 20:41:31 +08:00
kill_children ( $workerProcs );
2020-06-16 17:39:03 +08:00
error ( " Failed to read greeting reply from worker. " );
2020-02-03 20:41:31 +08:00
}
$reply = unserialize ( base64_decode ( $rawReply ));
2020-06-16 17:39:03 +08:00
if ( ! $reply || $reply [ " type " ] !== " hello_reply " ) {
2020-02-03 20:41:31 +08:00
kill_children ( $workerProcs );
2020-06-16 17:39:03 +08:00
error ( " Greeting reply from worker unexpected or could not be decoded: ' $rawReply ' " );
2020-02-03 20:41:31 +08:00
}
stream_set_timeout ( $workerSock , 0 );
run-tests: cs fixes (cleanup)
I used php-cs-fixer to do the cs fixes. The configuration I used is
posted below. The reason I disabled some of the rules is because they
create too much noise and would make it difficult to review. But please
feel free to close this PR and run the php-cs-fixer yourself.
<?php
$config = PhpCsFixer\Config::create();
$config->setRiskyAllowed(false);
$config->setRules([
'@PSR2' => true,
'@Symfony' => true,
'array_syntax' => false,
'binary_operator_spaces' => false,
'blank_line_before_statement' => false,
'concat_space' => false,
'increment_style' => false,
'phpdoc_align' => false,
'single_quote' => false,
'trailing_comma_in_multiline_array' => false,
'unary_operator_spaces' => false,
'yoda_style' => false,
]);
$finder = PhpCsFixer\Finder::create();
$finder->in(getcwd());
$finder->exclude('Zend');
$finder->exclude('build');
$finder->exclude('ext');
$finder->exclude('pear');
$finder->exclude('sapi');
$finder->exclude('scripts');
$finder->exclude('win32');
$config->setFinder($finder);
return $config;
Closes GH-5557.
2020-05-13 00:24:21 +08:00
stream_set_blocking ( $workerSock , false );
2020-02-03 20:41:31 +08:00
2020-06-16 17:39:03 +08:00
$workerID = $reply [ " workerID " ];
$workerSocks [ $workerID ] = $workerSock ;
2020-02-03 20:41:31 +08:00
}
2020-06-16 17:39:03 +08:00
printf ( " Done in %.2fs \n " , microtime ( true ) - $startTime );
2020-02-03 20:41:31 +08:00
echo " ===================================================================== \n " ;
echo " \n " ;
$rawMessageBuffers = [];
$testsInProgress = 0 ;
// Map from conflict key to worker ID.
$activeConflicts = [];
// Tests waiting due to conflicts. Map from conflict key to array.
$waitingTests = [];
escape :
while ( $test_files || $sequentialTests || $testsInProgress > 0 ) {
$toRead = array_values ( $workerSocks );
run-tests: cs fixes (cleanup)
I used php-cs-fixer to do the cs fixes. The configuration I used is
posted below. The reason I disabled some of the rules is because they
create too much noise and would make it difficult to review. But please
feel free to close this PR and run the php-cs-fixer yourself.
<?php
$config = PhpCsFixer\Config::create();
$config->setRiskyAllowed(false);
$config->setRules([
'@PSR2' => true,
'@Symfony' => true,
'array_syntax' => false,
'binary_operator_spaces' => false,
'blank_line_before_statement' => false,
'concat_space' => false,
'increment_style' => false,
'phpdoc_align' => false,
'single_quote' => false,
'trailing_comma_in_multiline_array' => false,
'unary_operator_spaces' => false,
'yoda_style' => false,
]);
$finder = PhpCsFixer\Finder::create();
$finder->in(getcwd());
$finder->exclude('Zend');
$finder->exclude('build');
$finder->exclude('ext');
$finder->exclude('pear');
$finder->exclude('sapi');
$finder->exclude('scripts');
$finder->exclude('win32');
$config->setFinder($finder);
return $config;
Closes GH-5557.
2020-05-13 00:24:21 +08:00
$toWrite = null ;
$toExcept = null ;
2020-02-03 20:41:31 +08:00
if ( stream_select ( $toRead , $toWrite , $toExcept , 10 )) {
foreach ( $toRead as $workerSock ) {
$i = array_search ( $workerSock , $workerSocks );
run-tests: cs fixes (cleanup)
I used php-cs-fixer to do the cs fixes. The configuration I used is
posted below. The reason I disabled some of the rules is because they
create too much noise and would make it difficult to review. But please
feel free to close this PR and run the php-cs-fixer yourself.
<?php
$config = PhpCsFixer\Config::create();
$config->setRiskyAllowed(false);
$config->setRules([
'@PSR2' => true,
'@Symfony' => true,
'array_syntax' => false,
'binary_operator_spaces' => false,
'blank_line_before_statement' => false,
'concat_space' => false,
'increment_style' => false,
'phpdoc_align' => false,
'single_quote' => false,
'trailing_comma_in_multiline_array' => false,
'unary_operator_spaces' => false,
'yoda_style' => false,
]);
$finder = PhpCsFixer\Finder::create();
$finder->in(getcwd());
$finder->exclude('Zend');
$finder->exclude('build');
$finder->exclude('ext');
$finder->exclude('pear');
$finder->exclude('sapi');
$finder->exclude('scripts');
$finder->exclude('win32');
$config->setFinder($finder);
return $config;
Closes GH-5557.
2020-05-13 00:24:21 +08:00
if ( $i === false ) {
2020-02-03 20:41:31 +08:00
kill_children ( $workerProcs );
error ( " Could not find worker stdout in array of worker stdouts, THIS SHOULD NOT HAPPEN. " );
}
2023-01-14 00:43:17 +08:00
if ( feof ( $workerSock )) {
kill_children ( $workerProcs );
error ( " Worker $i died unexpectedly " );
}
run-tests: cs fixes (cleanup)
I used php-cs-fixer to do the cs fixes. The configuration I used is
posted below. The reason I disabled some of the rules is because they
create too much noise and would make it difficult to review. But please
feel free to close this PR and run the php-cs-fixer yourself.
<?php
$config = PhpCsFixer\Config::create();
$config->setRiskyAllowed(false);
$config->setRules([
'@PSR2' => true,
'@Symfony' => true,
'array_syntax' => false,
'binary_operator_spaces' => false,
'blank_line_before_statement' => false,
'concat_space' => false,
'increment_style' => false,
'phpdoc_align' => false,
'single_quote' => false,
'trailing_comma_in_multiline_array' => false,
'unary_operator_spaces' => false,
'yoda_style' => false,
]);
$finder = PhpCsFixer\Finder::create();
$finder->in(getcwd());
$finder->exclude('Zend');
$finder->exclude('build');
$finder->exclude('ext');
$finder->exclude('pear');
$finder->exclude('sapi');
$finder->exclude('scripts');
$finder->exclude('win32');
$config->setFinder($finder);
return $config;
Closes GH-5557.
2020-05-13 00:24:21 +08:00
while ( false !== ( $rawMessage = fgets ( $workerSock ))) {
2020-02-03 20:41:31 +08:00
// work around fgets truncating things
if (( $rawMessageBuffers [ $i ] ? ? '' ) !== '' ) {
$rawMessage = $rawMessageBuffers [ $i ] . $rawMessage ;
$rawMessageBuffers [ $i ] = '' ;
}
if ( substr ( $rawMessage , - 1 ) !== " \n " ) {
$rawMessageBuffers [ $i ] = $rawMessage ;
continue ;
}
$message = unserialize ( base64_decode ( $rawMessage ));
if ( ! $message ) {
kill_children ( $workerProcs );
$stuff = fread ( $workerSock , 65536 );
error ( " Could not decode message from worker $i : ' $rawMessage $stuff ' " );
}
switch ( $message [ " type " ]) {
case " tests_finished " :
$testsInProgress -- ;
foreach ( $activeConflicts as $key => $workerId ) {
if ( $workerId === $i ) {
unset ( $activeConflicts [ $key ]);
if ( isset ( $waitingTests [ $key ])) {
while ( $test = array_pop ( $waitingTests [ $key ])) {
$test_files [] = $test ;
}
unset ( $waitingTests [ $key ]);
}
}
}
2021-02-06 04:31:31 +08:00
$junit -> mergeResults ( $message [ " junit " ]);
run-tests: cs fixes (cleanup)
I used php-cs-fixer to do the cs fixes. The configuration I used is
posted below. The reason I disabled some of the rules is because they
create too much noise and would make it difficult to review. But please
feel free to close this PR and run the php-cs-fixer yourself.
<?php
$config = PhpCsFixer\Config::create();
$config->setRiskyAllowed(false);
$config->setRules([
'@PSR2' => true,
'@Symfony' => true,
'array_syntax' => false,
'binary_operator_spaces' => false,
'blank_line_before_statement' => false,
'concat_space' => false,
'increment_style' => false,
'phpdoc_align' => false,
'single_quote' => false,
'trailing_comma_in_multiline_array' => false,
'unary_operator_spaces' => false,
'yoda_style' => false,
]);
$finder = PhpCsFixer\Finder::create();
$finder->in(getcwd());
$finder->exclude('Zend');
$finder->exclude('build');
$finder->exclude('ext');
$finder->exclude('pear');
$finder->exclude('sapi');
$finder->exclude('scripts');
$finder->exclude('win32');
$config->setFinder($finder);
return $config;
Closes GH-5557.
2020-05-13 00:24:21 +08:00
// no break
2020-02-03 20:41:31 +08:00
case " ready " :
// Schedule sequential tests only once we are down to one worker.
if ( count ( $workerProcs ) === 1 && $sequentialTests ) {
$test_files = array_merge ( $test_files , $sequentialTests );
$sequentialTests = [];
}
// Batch multiple tests to reduce communication overhead.
2020-02-03 20:41:45 +08:00
// - When valgrind is used, communication overhead is relatively small,
// so just use a batch size of 1.
// - If this is running a small enough number of tests,
// reduce the batch size to give batches to more workers.
2020-02-03 20:41:31 +08:00
$files = [];
2020-02-03 20:41:45 +08:00
$maxBatchSize = $valgrind ? 1 : ( $shuffle ? 4 : 32 );
run-tests: cs fixes (cleanup)
I used php-cs-fixer to do the cs fixes. The configuration I used is
posted below. The reason I disabled some of the rules is because they
create too much noise and would make it difficult to review. But please
feel free to close this PR and run the php-cs-fixer yourself.
<?php
$config = PhpCsFixer\Config::create();
$config->setRiskyAllowed(false);
$config->setRules([
'@PSR2' => true,
'@Symfony' => true,
'array_syntax' => false,
'binary_operator_spaces' => false,
'blank_line_before_statement' => false,
'concat_space' => false,
'increment_style' => false,
'phpdoc_align' => false,
'single_quote' => false,
'trailing_comma_in_multiline_array' => false,
'unary_operator_spaces' => false,
'yoda_style' => false,
]);
$finder = PhpCsFixer\Finder::create();
$finder->in(getcwd());
$finder->exclude('Zend');
$finder->exclude('build');
$finder->exclude('ext');
$finder->exclude('pear');
$finder->exclude('sapi');
$finder->exclude('scripts');
$finder->exclude('win32');
$config->setFinder($finder);
return $config;
Closes GH-5557.
2020-05-13 00:24:21 +08:00
$averageFilesPerWorker = max ( 1 , ( int ) ceil ( $totalFileCount / count ( $workerProcs )));
2020-02-03 20:41:45 +08:00
$batchSize = min ( $maxBatchSize , $averageFilesPerWorker );
2020-02-03 20:41:31 +08:00
while ( count ( $files ) <= $batchSize && $file = array_pop ( $test_files )) {
foreach ( $fileConflictsWith [ $file ] as $conflictKey ) {
if ( isset ( $activeConflicts [ $conflictKey ])) {
$waitingTests [ $conflictKey ][] = $file ;
continue 2 ;
}
}
$files [] = $file ;
}
if ( $files ) {
foreach ( $files as $file ) {
foreach ( $fileConflictsWith [ $file ] as $conflictKey ) {
$activeConflicts [ $conflictKey ] = $i ;
}
}
$testsInProgress ++ ;
send_message ( $workerSocks [ $i ], [
" type " => " run_tests " ,
" test_files " => $files ,
" env " => $env ,
" redir_tested " => $redir_tested
]);
} else {
proc_terminate ( $workerProcs [ $i ]);
2022-07-10 00:59:31 +08:00
unset ( $workerProcs [ $i ], $workerSocks [ $i ]);
2020-02-03 20:41:31 +08:00
goto escape ;
}
break ;
case " test_result " :
list ( $name , $index , $result , $resultText ) = [ $message [ " name " ], $message [ " index " ], $message [ " result " ], $message [ " text " ]];
foreach ( $message [ " PHP_FAILED_TESTS " ] as $category => $tests ) {
$PHP_FAILED_TESTS [ $category ] = array_merge ( $PHP_FAILED_TESTS [ $category ], $tests );
}
$test_idx ++ ;
2022-08-12 02:58:15 +08:00
if ( $show_progress ) {
2020-02-03 20:41:31 +08:00
clear_show_test ();
}
echo $resultText ;
2022-08-12 02:58:15 +08:00
if ( $show_progress ) {
2020-02-03 20:41:31 +08:00
show_test ( $test_idx , count ( $workerProcs ) . " / $workers concurrent test workers running " );
}
if ( ! is_array ( $name ) && $result != 'REDIR' ) {
$test_results [ $index ] = $result ;
if ( $failed_tests_file && ( $result == 'XFAILED' || $result == 'XLEAKED' || $result == 'FAILED' || $result == 'WARNED' || $result == 'LEAKED' )) {
fwrite ( $failed_tests_file , " $index\n " );
}
if ( $result_tests_file ) {
fwrite ( $result_tests_file , " $result\t $index\n " );
}
}
break ;
case " error " :
kill_children ( $workerProcs );
error ( " Worker $i reported error: $message[msg] " );
break ;
case " php_error " :
kill_children ( $workerProcs );
$error_consts = [
'E_ERROR' ,
'E_WARNING' ,
'E_PARSE' ,
'E_NOTICE' ,
'E_CORE_ERROR' ,
'E_CORE_WARNING' ,
'E_COMPILE_ERROR' ,
'E_COMPILE_WARNING' ,
'E_USER_ERROR' ,
'E_USER_WARNING' ,
'E_USER_NOTICE' ,
'E_RECOVERABLE_ERROR' ,
2021-06-04 22:29:14 +08:00
'E_DEPRECATED' ,
2020-02-03 20:41:31 +08:00
'E_USER_DEPRECATED'
];
$error_consts = array_combine ( array_map ( 'constant' , $error_consts ), $error_consts );
error ( " Worker $i reported unexpected { $error_consts [ $message [ 'errno' ]] } : $message[errstr] in $message[errfile] on line $message[errline] " );
run-tests: cs fixes (cleanup)
I used php-cs-fixer to do the cs fixes. The configuration I used is
posted below. The reason I disabled some of the rules is because they
create too much noise and would make it difficult to review. But please
feel free to close this PR and run the php-cs-fixer yourself.
<?php
$config = PhpCsFixer\Config::create();
$config->setRiskyAllowed(false);
$config->setRules([
'@PSR2' => true,
'@Symfony' => true,
'array_syntax' => false,
'binary_operator_spaces' => false,
'blank_line_before_statement' => false,
'concat_space' => false,
'increment_style' => false,
'phpdoc_align' => false,
'single_quote' => false,
'trailing_comma_in_multiline_array' => false,
'unary_operator_spaces' => false,
'yoda_style' => false,
]);
$finder = PhpCsFixer\Finder::create();
$finder->in(getcwd());
$finder->exclude('Zend');
$finder->exclude('build');
$finder->exclude('ext');
$finder->exclude('pear');
$finder->exclude('sapi');
$finder->exclude('scripts');
$finder->exclude('win32');
$config->setFinder($finder);
return $config;
Closes GH-5557.
2020-05-13 00:24:21 +08:00
// no break
2020-02-03 20:41:31 +08:00
default :
kill_children ( $workerProcs );
error ( " Unrecognised message type ' $message[type] ' from worker $i " );
}
}
}
}
}
2022-08-12 02:58:15 +08:00
if ( $show_progress ) {
2020-02-03 20:41:31 +08:00
clear_show_test ();
}
kill_children ( $workerProcs );
if ( $testsInProgress < 0 ) {
error ( " $testsInProgress test batches “in progress”, which is less than zero. THIS SHOULD NOT HAPPEN. " );
}
}
2022-10-08 08:02:22 +08:00
/**
* Calls fwrite and retries when network writes fail with errors such as " Resource temporarily unavailable "
*
* @ param resource $stream the stream to fwrite to
* @ param string $data
* @ return int | false
*/
function safe_fwrite ( $stream , string $data )
{
// safe_fwrite was tested by adding $message['unused'] = str_repeat('a', 20_000_000); in send_message()
// fwrites on tcp sockets can return false or less than strlen if the recipient is busy.
// (e.g. fwrite(): Send of 577 bytes failed with errno=35 Resource temporarily unavailable)
$bytes_written = 0 ;
while ( $bytes_written < strlen ( $data )) {
$n = @ fwrite ( $stream , substr ( $data , $bytes_written ));
if ( $n === false ) {
$write_streams = [ $stream ];
$read_streams = [];
$except_streams = [];
/* Wait for up to 10 seconds for the stream to be ready to write again. */
$result = stream_select ( $read_streams , $write_streams , $except_streams , 10 );
if ( ! $result ) {
echo " ERROR: send_message() stream_select() failed \n " ;
return false ;
}
$n = @ fwrite ( $stream , substr ( $data , $bytes_written ));
if ( $n === false ) {
echo " ERROR: send_message() Failed to write chunk after stream_select: " . error_get_last ()[ 'message' ] . " \n " ;
return false ;
}
}
$bytes_written += $n ;
}
return $bytes_written ;
}
2020-08-07 02:37:36 +08:00
function send_message ( $stream , array $message ) : void
run-tests: cs fixes (cleanup)
I used php-cs-fixer to do the cs fixes. The configuration I used is
posted below. The reason I disabled some of the rules is because they
create too much noise and would make it difficult to review. But please
feel free to close this PR and run the php-cs-fixer yourself.
<?php
$config = PhpCsFixer\Config::create();
$config->setRiskyAllowed(false);
$config->setRules([
'@PSR2' => true,
'@Symfony' => true,
'array_syntax' => false,
'binary_operator_spaces' => false,
'blank_line_before_statement' => false,
'concat_space' => false,
'increment_style' => false,
'phpdoc_align' => false,
'single_quote' => false,
'trailing_comma_in_multiline_array' => false,
'unary_operator_spaces' => false,
'yoda_style' => false,
]);
$finder = PhpCsFixer\Finder::create();
$finder->in(getcwd());
$finder->exclude('Zend');
$finder->exclude('build');
$finder->exclude('ext');
$finder->exclude('pear');
$finder->exclude('sapi');
$finder->exclude('scripts');
$finder->exclude('win32');
$config->setFinder($finder);
return $config;
Closes GH-5557.
2020-05-13 00:24:21 +08:00
{
2020-02-03 20:41:31 +08:00
$blocking = stream_get_meta_data ( $stream )[ " blocked " ];
stream_set_blocking ( $stream , true );
2022-10-08 08:02:22 +08:00
safe_fwrite ( $stream , base64_encode ( serialize ( $message )) . " \n " );
2020-02-03 20:41:31 +08:00
stream_set_blocking ( $stream , $blocking );
2005-10-06 17:42:17 +08:00
}
2020-08-07 02:37:36 +08:00
function kill_children ( array $children ) : void
run-tests: cs fixes (cleanup)
I used php-cs-fixer to do the cs fixes. The configuration I used is
posted below. The reason I disabled some of the rules is because they
create too much noise and would make it difficult to review. But please
feel free to close this PR and run the php-cs-fixer yourself.
<?php
$config = PhpCsFixer\Config::create();
$config->setRiskyAllowed(false);
$config->setRules([
'@PSR2' => true,
'@Symfony' => true,
'array_syntax' => false,
'binary_operator_spaces' => false,
'blank_line_before_statement' => false,
'concat_space' => false,
'increment_style' => false,
'phpdoc_align' => false,
'single_quote' => false,
'trailing_comma_in_multiline_array' => false,
'unary_operator_spaces' => false,
'yoda_style' => false,
]);
$finder = PhpCsFixer\Finder::create();
$finder->in(getcwd());
$finder->exclude('Zend');
$finder->exclude('build');
$finder->exclude('ext');
$finder->exclude('pear');
$finder->exclude('sapi');
$finder->exclude('scripts');
$finder->exclude('win32');
$config->setFinder($finder);
return $config;
Closes GH-5557.
2020-05-13 00:24:21 +08:00
{
2020-02-03 20:41:31 +08:00
foreach ( $children as $child ) {
if ( $child ) {
proc_terminate ( $child );
}
}
2005-10-06 17:42:17 +08:00
}
2020-08-07 02:37:36 +08:00
function run_worker () : void
run-tests: cs fixes (cleanup)
I used php-cs-fixer to do the cs fixes. The configuration I used is
posted below. The reason I disabled some of the rules is because they
create too much noise and would make it difficult to review. But please
feel free to close this PR and run the php-cs-fixer yourself.
<?php
$config = PhpCsFixer\Config::create();
$config->setRiskyAllowed(false);
$config->setRules([
'@PSR2' => true,
'@Symfony' => true,
'array_syntax' => false,
'binary_operator_spaces' => false,
'blank_line_before_statement' => false,
'concat_space' => false,
'increment_style' => false,
'phpdoc_align' => false,
'single_quote' => false,
'trailing_comma_in_multiline_array' => false,
'unary_operator_spaces' => false,
'yoda_style' => false,
]);
$finder = PhpCsFixer\Finder::create();
$finder->in(getcwd());
$finder->exclude('Zend');
$finder->exclude('build');
$finder->exclude('ext');
$finder->exclude('pear');
$finder->exclude('sapi');
$finder->exclude('scripts');
$finder->exclude('win32');
$config->setFinder($finder);
return $config;
Closes GH-5557.
2020-05-13 00:24:21 +08:00
{
2020-02-03 20:41:31 +08:00
global $workerID , $workerSock ;
2021-02-06 04:31:31 +08:00
global $junit ;
2020-02-03 20:41:31 +08:00
$sockUri = getenv ( " TEST_PHP_URI " );
$workerSock = stream_socket_client ( $sockUri , $_ , $_ , 5 ) or error ( " Couldn't connect to $sockUri " );
$greeting = fgets ( $workerSock );
$greeting = unserialize ( base64_decode ( $greeting )) or die ( " Could not decode greeting \n " );
2020-06-16 17:39:03 +08:00
if ( $greeting [ " type " ] !== " hello " ) {
error ( " Unexpected greeting of type $greeting[type] " );
2020-02-03 20:41:31 +08:00
}
2020-08-07 02:37:36 +08:00
set_error_handler ( function ( int $errno , string $errstr , string $errfile , int $errline ) use ( $workerSock ) : bool {
2020-02-03 20:41:31 +08:00
if ( error_reporting () & $errno ) {
send_message ( $workerSock , compact ( 'errno' , 'errstr' , 'errfile' , 'errline' ) + [
'type' => 'php_error'
]);
}
return true ;
});
foreach ( $greeting [ " GLOBALS " ] as $var => $value ) {
if ( $var !== " workerID " && $var !== " workerSock " && $var !== " GLOBALS " ) {
$GLOBALS [ $var ] = $value ;
}
}
foreach ( $greeting [ " constants " ] as $const => $value ) {
define ( $const , $value );
}
send_message ( $workerSock , [
" type " => " hello_reply " ,
" workerID " => $workerID
]);
send_message ( $workerSock , [
" type " => " ready "
]);
while (( $command = fgets ( $workerSock ))) {
$command = unserialize ( base64_decode ( $command ));
switch ( $command [ " type " ]) {
case " run_tests " :
run_all_tests ( $command [ " test_files " ], $command [ " env " ], $command [ " redir_tested " ]);
send_message ( $workerSock , [
" type " => " tests_finished " ,
2021-02-06 04:31:31 +08:00
" junit " => $junit -> isEnabled () ? $junit : null ,
2020-02-03 20:41:31 +08:00
]);
2021-02-11 06:56:59 +08:00
$junit -> clear ();
2020-02-03 20:41:31 +08:00
break ;
default :
send_message ( $workerSock , [
" type " => " error " ,
" msg " => " Unrecognised message type: $command[type] "
]);
break 2 ;
}
}
}
//
// Show file or result block
//
2020-08-07 02:37:36 +08:00
function show_file_block ( string $file , string $block , ? string $section = null ) : void
2020-02-03 20:41:31 +08:00
{
global $cfg ;
2020-08-13 07:27:00 +08:00
global $colorize ;
2020-02-03 20:41:31 +08:00
if ( $cfg [ 'show' ][ $file ]) {
if ( is_null ( $section )) {
$section = strtoupper ( $file );
}
2020-08-13 07:27:00 +08:00
if ( $section === 'DIFF' && $colorize ) {
// '-' is Light Red for removal, '+' is Light Green for addition
$block = preg_replace ( '/^[0-9]+\-\s.*$/m' , " \ e[1;31m \\ 0 \ e[0m " , $block );
$block = preg_replace ( '/^[0-9]+\+\s.*$/m' , " \ e[1;32m \\ 0 \ e[0m " , $block );
}
2020-02-03 20:41:31 +08:00
echo " \n ======== " . $section . " ======== \n " ;
echo rtrim ( $block );
echo " \n ========DONE======== \n " ;
}
}
2023-10-31 00:19:43 +08:00
function skip_test ( string $tested , string $tested_file , string $shortname , string $reason ) : string
{
2021-02-06 04:31:31 +08:00
global $junit ;
2020-10-21 21:01:47 +08:00
show_result ( 'SKIP' , $tested , $tested_file , " reason: $reason " );
2021-02-06 04:31:31 +08:00
$junit -> initSuite ( $junit -> getSuiteName ( $shortname ));
$junit -> markTestAs ( 'SKIP' , $shortname , $tested , 0 , $reason );
2020-10-21 21:01:47 +08:00
return 'SKIPPED' ;
}
2020-02-03 20:41:31 +08:00
//
// Run an individual test case.
//
2020-08-07 02:37:36 +08:00
/**
* @ param string | array $file
*/
function run_test ( string $php , $file , array $env ) : string
2020-02-03 20:41:31 +08:00
{
global $log_format , $ini_overwrites , $PHP_FAILED_TESTS ;
global $pass_options , $DETAILED , $IN_REDIRECT , $test_cnt , $test_idx ;
global $valgrind , $temp_source , $temp_target , $cfg , $environment ;
global $no_clean ;
global $SHOW_ONLY_GROUPS ;
global $no_file_cache ;
global $slow_min_ms ;
2020-05-20 16:04:57 +08:00
global $preload , $file_cache ;
2020-10-21 21:01:47 +08:00
global $num_repeats ;
2020-02-03 20:41:31 +08:00
// Parallel testing
global $workerID ;
2022-08-12 18:50:25 +08:00
global $show_progress ;
2021-02-06 04:31:31 +08:00
// Temporary
2023-10-31 21:56:06 +08:00
/** @var JUnit $junit */
2021-02-06 04:31:31 +08:00
global $junit ;
2021-02-12 01:33:03 +08:00
static $skipCache ;
if ( ! $skipCache ) {
2021-09-23 22:19:36 +08:00
$enableSkipCache = ! ( $env [ 'DISABLE_SKIP_CACHE' ] ? ? '0' );
$skipCache = new SkipCache ( $enableSkipCache , $cfg [ 'keep' ][ 'skip' ]);
2021-02-12 01:33:03 +08:00
}
2023-05-03 19:51:31 +08:00
$orig_php = $php ;
$php = escapeshellarg ( $php );
2023-03-21 05:15:54 +08:00
$retried = false ;
retry :
2020-02-03 20:41:31 +08:00
$org_file = $file ;
2022-06-08 07:00:03 +08:00
$php_cgi = $env [ 'TEST_PHP_CGI_EXECUTABLE' ] ? ? null ;
$phpdbg = $env [ 'TEST_PHPDBG_EXECUTABLE' ] ? ? null ;
2020-02-03 20:41:31 +08:00
if ( is_array ( $file )) {
$file = $file [ 0 ];
}
run-tests: cs fixes (cleanup)
I used php-cs-fixer to do the cs fixes. The configuration I used is
posted below. The reason I disabled some of the rules is because they
create too much noise and would make it difficult to review. But please
feel free to close this PR and run the php-cs-fixer yourself.
<?php
$config = PhpCsFixer\Config::create();
$config->setRiskyAllowed(false);
$config->setRules([
'@PSR2' => true,
'@Symfony' => true,
'array_syntax' => false,
'binary_operator_spaces' => false,
'blank_line_before_statement' => false,
'concat_space' => false,
'increment_style' => false,
'phpdoc_align' => false,
'single_quote' => false,
'trailing_comma_in_multiline_array' => false,
'unary_operator_spaces' => false,
'yoda_style' => false,
]);
$finder = PhpCsFixer\Finder::create();
$finder->in(getcwd());
$finder->exclude('Zend');
$finder->exclude('build');
$finder->exclude('ext');
$finder->exclude('pear');
$finder->exclude('sapi');
$finder->exclude('scripts');
$finder->exclude('win32');
$config->setFinder($finder);
return $config;
Closes GH-5557.
2020-05-13 00:24:21 +08:00
if ( $DETAILED ) {
echo "
2020-02-03 20:41:31 +08:00
=================
TEST $file
" ;
run-tests: cs fixes (cleanup)
I used php-cs-fixer to do the cs fixes. The configuration I used is
posted below. The reason I disabled some of the rules is because they
create too much noise and would make it difficult to review. But please
feel free to close this PR and run the php-cs-fixer yourself.
<?php
$config = PhpCsFixer\Config::create();
$config->setRiskyAllowed(false);
$config->setRules([
'@PSR2' => true,
'@Symfony' => true,
'array_syntax' => false,
'binary_operator_spaces' => false,
'blank_line_before_statement' => false,
'concat_space' => false,
'increment_style' => false,
'phpdoc_align' => false,
'single_quote' => false,
'trailing_comma_in_multiline_array' => false,
'unary_operator_spaces' => false,
'yoda_style' => false,
]);
$finder = PhpCsFixer\Finder::create();
$finder->in(getcwd());
$finder->exclude('Zend');
$finder->exclude('build');
$finder->exclude('ext');
$finder->exclude('pear');
$finder->exclude('sapi');
$finder->exclude('scripts');
$finder->exclude('win32');
$config->setFinder($finder);
return $config;
Closes GH-5557.
2020-05-13 00:24:21 +08:00
}
2020-02-03 20:41:31 +08:00
2020-10-21 21:01:47 +08:00
$shortname = str_replace ( TEST_PHP_SRCDIR . '/' , '' , $file );
$tested_file = $shortname ;
2020-02-03 20:41:31 +08:00
2021-02-10 20:17:03 +08:00
try {
$test = new TestFile ( $file , ( bool ) $IN_REDIRECT );
} catch ( BorkageException $ex ) {
show_result ( " BORK " , $ex -> getMessage (), $tested_file );
2020-08-10 03:45:04 +08:00
$PHP_FAILED_TESTS [ 'BORKED' ][] = [
2020-02-03 20:41:31 +08:00
'name' => $file ,
'test_name' => '' ,
'output' => '' ,
'diff' => '' ,
2021-02-10 20:17:03 +08:00
'info' => " { $ex -> getMessage () } [ $file ] " ,
2020-08-10 03:45:04 +08:00
];
2020-02-03 20:41:31 +08:00
2021-02-10 20:17:03 +08:00
$junit -> markTestAs ( 'BORK' , $shortname , $tested_file , 0 , $ex -> getMessage ());
2020-02-03 20:41:31 +08:00
return 'BORKED' ;
}
2021-02-10 20:17:03 +08:00
$tested = $test -> getName ();
2023-03-21 05:15:54 +08:00
if ( $test -> hasSection ( 'FILE_EXTERNAL' )) {
if ( $num_repeats > 1 ) {
return skip_test ( $tested , $tested_file , $shortname , 'Test with FILE_EXTERNAL might not be repeatable' );
}
2021-02-10 20:17:03 +08:00
}
if ( $test -> hasSection ( 'CAPTURE_STDIO' )) {
$capture = $test -> getSection ( 'CAPTURE_STDIO' );
$captureStdIn = stripos ( $capture , 'STDIN' ) !== false ;
$captureStdOut = stripos ( $capture , 'STDOUT' ) !== false ;
$captureStdErr = stripos ( $capture , 'STDERR' ) !== false ;
2020-02-03 20:41:31 +08:00
} else {
$captureStdIn = true ;
$captureStdOut = true ;
$captureStdErr = true ;
}
if ( $captureStdOut && $captureStdErr ) {
$cmdRedirect = ' 2>&1' ;
} else {
$cmdRedirect = '' ;
}
/* For GET/POST/PUT tests, check if cgi sapi is available and if it is, use it. */
2023-12-07 09:24:31 +08:00
$uses_cgi = false ;
2021-02-10 20:17:03 +08:00
if ( $test -> isCGI ()) {
2020-12-01 19:35:05 +08:00
if ( ! $php_cgi ) {
return skip_test ( $tested , $tested_file , $shortname , 'CGI not available' );
2020-02-03 20:41:31 +08:00
}
2023-02-25 22:02:06 +08:00
$php = escapeshellarg ( $php_cgi ) . ' -C ' ;
2020-12-01 19:35:05 +08:00
$uses_cgi = true ;
2020-10-21 21:01:47 +08:00
if ( $num_repeats > 1 ) {
return skip_test ( $tested , $tested_file , $shortname , 'CGI does not support --repeat' );
}
2020-02-03 20:41:31 +08:00
}
/* For phpdbg tests, check if phpdbg sapi is available and if it is, use it. */
$extra_options = '' ;
2021-02-10 20:17:03 +08:00
if ( $test -> hasSection ( 'PHPDBG' )) {
2020-02-03 20:41:31 +08:00
if ( isset ( $phpdbg )) {
2023-02-25 22:02:06 +08:00
$php = escapeshellarg ( $phpdbg ) . ' -qIb' ;
2020-02-03 20:41:31 +08:00
// Additional phpdbg command line options for sections that need to
// be run straight away. For example, EXTENSIONS, SKIPIF, CLEAN.
$extra_options = '-rr' ;
} else {
2020-10-21 21:01:47 +08:00
return skip_test ( $tested , $tested_file , $shortname , 'phpdbg not available' );
}
if ( $num_repeats > 1 ) {
return skip_test ( $tested , $tested_file , $shortname , 'phpdbg does not support --repeat' );
}
}
2020-02-03 20:41:31 +08:00
2023-03-21 05:15:54 +08:00
foreach ([ 'CLEAN' , 'STDIN' , 'CAPTURE_STDIO' ] as $section ) {
if ( $test -> hasSection ( $section )) {
if ( $num_repeats > 1 ) {
return skip_test ( $tested , $tested_file , $shortname , " Test with $section might not be repeatable " );
}
2020-02-03 20:41:31 +08:00
}
}
2022-08-12 18:50:25 +08:00
if ( $show_progress && ! $workerID ) {
2020-02-03 20:41:31 +08:00
show_test ( $test_idx , $shortname );
}
if ( is_array ( $IN_REDIRECT )) {
$temp_dir = $test_dir = $IN_REDIRECT [ 'dir' ];
} else {
$temp_dir = $test_dir = realpath ( dirname ( $file ));
}
if ( $temp_source && $temp_target ) {
$temp_dir = str_replace ( $temp_source , $temp_target , $temp_dir );
}
$main_file_name = basename ( $file , 'phpt' );
$diff_filename = $temp_dir . DIRECTORY_SEPARATOR . $main_file_name . 'diff' ;
$log_filename = $temp_dir . DIRECTORY_SEPARATOR . $main_file_name . 'log' ;
$exp_filename = $temp_dir . DIRECTORY_SEPARATOR . $main_file_name . 'exp' ;
$output_filename = $temp_dir . DIRECTORY_SEPARATOR . $main_file_name . 'out' ;
$memcheck_filename = $temp_dir . DIRECTORY_SEPARATOR . $main_file_name . 'mem' ;
$sh_filename = $temp_dir . DIRECTORY_SEPARATOR . $main_file_name . 'sh' ;
$temp_file = $temp_dir . DIRECTORY_SEPARATOR . $main_file_name . 'php' ;
$test_file = $test_dir . DIRECTORY_SEPARATOR . $main_file_name . 'php' ;
$temp_skipif = $temp_dir . DIRECTORY_SEPARATOR . $main_file_name . 'skip.php' ;
$test_skipif = $test_dir . DIRECTORY_SEPARATOR . $main_file_name . 'skip.php' ;
$temp_clean = $temp_dir . DIRECTORY_SEPARATOR . $main_file_name . 'clean.php' ;
$test_clean = $test_dir . DIRECTORY_SEPARATOR . $main_file_name . 'clean.php' ;
$preload_filename = $temp_dir . DIRECTORY_SEPARATOR . $main_file_name . 'preload.php' ;
$tmp_post = $temp_dir . DIRECTORY_SEPARATOR . $main_file_name . 'post' ;
$tmp_relative_file = str_replace ( __DIR__ . DIRECTORY_SEPARATOR , '' , $test_file ) . 't' ;
if ( $temp_source && $temp_target ) {
$temp_skipif .= 's' ;
$temp_file .= 's' ;
$temp_clean .= 's' ;
2023-12-07 09:24:31 +08:00
$copy_file = $temp_dir . DIRECTORY_SEPARATOR . basename ( $file ) . '.phps' ;
2020-02-03 20:41:31 +08:00
if ( ! is_dir ( dirname ( $copy_file ))) {
mkdir ( dirname ( $copy_file ), 0777 , true ) or error ( " Cannot create output directory - " . dirname ( $copy_file ));
}
2021-02-10 20:17:03 +08:00
if ( $test -> hasSection ( 'FILE' )) {
save_text ( $copy_file , $test -> getSection ( 'FILE' ));
2020-02-03 20:41:31 +08:00
}
}
if ( is_array ( $IN_REDIRECT )) {
2021-02-10 20:17:03 +08:00
$tested = $IN_REDIRECT [ 'prefix' ] . ' ' . $tested ;
2020-02-03 20:41:31 +08:00
$tested_file = $tmp_relative_file ;
$shortname = str_replace ( TEST_PHP_SRCDIR . '/' , '' , $tested_file );
}
// unlink old test results
@ unlink ( $diff_filename );
@ unlink ( $log_filename );
@ unlink ( $exp_filename );
@ unlink ( $output_filename );
@ unlink ( $memcheck_filename );
@ unlink ( $sh_filename );
@ unlink ( $temp_file );
@ unlink ( $test_file );
@ unlink ( $temp_skipif );
@ unlink ( $test_skipif );
@ unlink ( $tmp_post );
@ unlink ( $temp_clean );
@ unlink ( $test_clean );
@ unlink ( $preload_filename );
// Reset environment from any previous test.
$env [ 'REDIRECT_STATUS' ] = '' ;
$env [ 'QUERY_STRING' ] = '' ;
$env [ 'PATH_TRANSLATED' ] = '' ;
$env [ 'SCRIPT_FILENAME' ] = '' ;
$env [ 'REQUEST_METHOD' ] = '' ;
$env [ 'CONTENT_TYPE' ] = '' ;
$env [ 'CONTENT_LENGTH' ] = '' ;
$env [ 'TZ' ] = '' ;
2021-02-10 20:17:03 +08:00
if ( $test -> sectionNotEmpty ( 'ENV' )) {
2021-06-11 22:27:04 +08:00
$env_str = str_replace ( '{PWD}' , dirname ( $file ), $test -> getSection ( 'ENV' ));
foreach ( explode ( " \n " , $env_str ) as $e ) {
2020-02-03 20:41:31 +08:00
$e = explode ( '=' , trim ( $e ), 2 );
if ( ! empty ( $e [ 0 ]) && isset ( $e [ 1 ])) {
$env [ $e [ 0 ]] = $e [ 1 ];
}
}
}
// Default ini settings
2020-08-10 03:45:04 +08:00
$ini_settings = $workerID ? [ 'opcache.cache_id' => " worker $workerID " ] : [];
2020-02-03 20:41:31 +08:00
// Additional required extensions
2022-06-07 20:11:28 +08:00
$extensions = [];
2021-02-10 20:17:03 +08:00
if ( $test -> hasSection ( 'EXTENSIONS' )) {
2022-06-07 20:11:28 +08:00
$extensions = preg_split ( " /[ \n \r ]+/ " , trim ( $test -> getSection ( 'EXTENSIONS' )));
}
if ( is_array ( $IN_REDIRECT ) && $IN_REDIRECT [ 'EXTENSIONS' ] != []) {
$extensions = array_merge ( $extensions , $IN_REDIRECT [ 'EXTENSIONS' ]);
}
/* Load required extensions */
if ( $extensions != []) {
2020-08-10 03:45:04 +08:00
$ext_params = [];
2020-02-03 20:41:31 +08:00
settings2array ( $ini_overwrites , $ext_params );
$ext_params = settings2params ( $ext_params );
2021-06-11 20:42:16 +08:00
[ $ext_dir , $loaded ] = $skipCache -> getExtensions ( " $orig_php $pass_options $extra_options $ext_params $no_file_cache " );
2020-02-03 20:41:45 +08:00
$ext_prefix = IS_WINDOWS ? " php_ " : " " ;
run-tests: use the EXTENSIONS section for skipping
Currently, most skip checks are just for making sure an extension is
available. Even with recent addition of skip caching, this makes tests
needlessly slow:
* Checks for the same extension in its tests can have small differences
impacting cacheability.
* Even identical skip checks in two tests can still be executed twice if
they're run by different workers.
To remedy this, I'm repurposing the existing --EXTENSIONS-- section of
.phpt files to specify wjich extensions are required for current test to
run. Current behavior:
1) If the extension is already visible to PHP, all is good
2) If it isn't, assume it's present as a shared module and attempt to add
it via a command line parameter
3) If that works, all is good
4) If it doesn't, PHP fails with a cryptic error message trying to
execute the test itself
After this commit:
1) and 2) are kept unchanged
3) Check if shared extension file from 2) is actually present
4) Skip the test if it isn't
Other benefits include clear skip reasons (vs. sometimes none in many
current skip checks) and moving test information from code to metadata,
opening more opportunities for search and analysis.
Since --EXTENSIONS-- is barely ever used, this change poses no risk of
hidden failures.
As a demonstration of the new approach, this commit migrates one
extension to it. If merged, I will migrate other extensions in
subsequent PRs.
Closes GH-6787.
2021-03-18 19:53:14 +08:00
$missing = [];
2020-02-03 20:41:31 +08:00
foreach ( $extensions as $req_ext ) {
2022-09-22 18:14:00 +08:00
if ( ! in_array ( $req_ext , $loaded , true )) {
2021-04-26 00:49:50 +08:00
if ( $req_ext == 'opcache' || $req_ext == 'xdebug' ) {
run-tests: use the EXTENSIONS section for skipping
Currently, most skip checks are just for making sure an extension is
available. Even with recent addition of skip caching, this makes tests
needlessly slow:
* Checks for the same extension in its tests can have small differences
impacting cacheability.
* Even identical skip checks in two tests can still be executed twice if
they're run by different workers.
To remedy this, I'm repurposing the existing --EXTENSIONS-- section of
.phpt files to specify wjich extensions are required for current test to
run. Current behavior:
1) If the extension is already visible to PHP, all is good
2) If it isn't, assume it's present as a shared module and attempt to add
it via a command line parameter
3) If that works, all is good
4) If it doesn't, PHP fails with a cryptic error message trying to
execute the test itself
After this commit:
1) and 2) are kept unchanged
3) Check if shared extension file from 2) is actually present
4) Skip the test if it isn't
Other benefits include clear skip reasons (vs. sometimes none in many
current skip checks) and moving test information from code to metadata,
opening more opportunities for search and analysis.
Since --EXTENSIONS-- is barely ever used, this change poses no risk of
hidden failures.
As a demonstration of the new approach, this commit migrates one
extension to it. If merged, I will migrate other extensions in
subsequent PRs.
Closes GH-6787.
2021-03-18 19:53:14 +08:00
$ext_file = $ext_dir . DIRECTORY_SEPARATOR . $ext_prefix . $req_ext . '.' . PHP_SHLIB_SUFFIX ;
$ini_settings [ 'zend_extension' ][] = $ext_file ;
2020-02-03 20:41:31 +08:00
} else {
run-tests: use the EXTENSIONS section for skipping
Currently, most skip checks are just for making sure an extension is
available. Even with recent addition of skip caching, this makes tests
needlessly slow:
* Checks for the same extension in its tests can have small differences
impacting cacheability.
* Even identical skip checks in two tests can still be executed twice if
they're run by different workers.
To remedy this, I'm repurposing the existing --EXTENSIONS-- section of
.phpt files to specify wjich extensions are required for current test to
run. Current behavior:
1) If the extension is already visible to PHP, all is good
2) If it isn't, assume it's present as a shared module and attempt to add
it via a command line parameter
3) If that works, all is good
4) If it doesn't, PHP fails with a cryptic error message trying to
execute the test itself
After this commit:
1) and 2) are kept unchanged
3) Check if shared extension file from 2) is actually present
4) Skip the test if it isn't
Other benefits include clear skip reasons (vs. sometimes none in many
current skip checks) and moving test information from code to metadata,
opening more opportunities for search and analysis.
Since --EXTENSIONS-- is barely ever used, this change poses no risk of
hidden failures.
As a demonstration of the new approach, this commit migrates one
extension to it. If merged, I will migrate other extensions in
subsequent PRs.
Closes GH-6787.
2021-03-18 19:53:14 +08:00
$ext_file = $ext_dir . DIRECTORY_SEPARATOR . $ext_prefix . $req_ext . '.' . PHP_SHLIB_SUFFIX ;
$ini_settings [ 'extension' ][] = $ext_file ;
}
if ( ! is_readable ( $ext_file )) {
$missing [] = $req_ext ;
2020-02-03 20:41:31 +08:00
}
}
}
run-tests: use the EXTENSIONS section for skipping
Currently, most skip checks are just for making sure an extension is
available. Even with recent addition of skip caching, this makes tests
needlessly slow:
* Checks for the same extension in its tests can have small differences
impacting cacheability.
* Even identical skip checks in two tests can still be executed twice if
they're run by different workers.
To remedy this, I'm repurposing the existing --EXTENSIONS-- section of
.phpt files to specify wjich extensions are required for current test to
run. Current behavior:
1) If the extension is already visible to PHP, all is good
2) If it isn't, assume it's present as a shared module and attempt to add
it via a command line parameter
3) If that works, all is good
4) If it doesn't, PHP fails with a cryptic error message trying to
execute the test itself
After this commit:
1) and 2) are kept unchanged
3) Check if shared extension file from 2) is actually present
4) Skip the test if it isn't
Other benefits include clear skip reasons (vs. sometimes none in many
current skip checks) and moving test information from code to metadata,
opening more opportunities for search and analysis.
Since --EXTENSIONS-- is barely ever used, this change poses no risk of
hidden failures.
As a demonstration of the new approach, this commit migrates one
extension to it. If merged, I will migrate other extensions in
subsequent PRs.
Closes GH-6787.
2021-03-18 19:53:14 +08:00
if ( $missing ) {
$message = 'Required extension' . ( count ( $missing ) > 1 ? 's' : '' )
. ' missing: ' . implode ( ', ' , $missing );
return skip_test ( $tested , $tested_file , $shortname , $message );
}
2020-02-03 20:41:31 +08:00
}
// additional ini overwrites
//$ini_overwrites[] = 'setting=value';
settings2array ( $ini_overwrites , $ini_settings );
$orig_ini_settings = settings2params ( $ini_settings );
2020-05-20 16:04:57 +08:00
if ( $file_cache !== null ) {
$ini_settings [ 'opcache.file_cache' ] = '/tmp' ;
// Make sure warnings still show up on the second run.
$ini_settings [ 'opcache.record_warnings' ] = '1' ;
// File cache is currently incompatible with JIT.
$ini_settings [ 'opcache.jit' ] = '0' ;
if ( $file_cache === 'use' ) {
// Disable timestamp validation in order to fetch from file cache,
// even though all the files are re-created.
$ini_settings [ 'opcache.validate_timestamps' ] = '0' ;
}
2020-10-21 21:01:47 +08:00
} else if ( $num_repeats > 1 ) {
// Make sure warnings still show up on the second run.
$ini_settings [ 'opcache.record_warnings' ] = '1' ;
2020-05-20 16:04:57 +08:00
}
2020-02-03 20:41:31 +08:00
// Any special ini settings
// these may overwrite the test defaults...
2021-02-10 20:17:03 +08:00
if ( $test -> hasSection ( 'INI' )) {
$ini = str_replace ( '{PWD}' , dirname ( $file ), $test -> getSection ( 'INI' ));
$ini = str_replace ( '{TMP}' , sys_get_temp_dir (), $ini );
2020-02-03 20:41:45 +08:00
$replacement = IS_WINDOWS ? '"' . PHP_BINARY . ' -r \"while ($in = fgets(STDIN)) echo $in;\" > $1"' : 'tee $1 >/dev/null' ;
2021-02-10 20:17:03 +08:00
$ini = preg_replace ( '/{MAIL:(\S+)}/' , $replacement , $ini );
2022-09-09 21:05:39 +08:00
$skip = false ;
$ini = preg_replace_callback ( '/{ENV:(\S+)}/' , function ( $m ) use ( & $skip ) {
$name = $m [ 1 ];
$value = getenv ( $name );
if ( $value === false ) {
$skip = sprintf ( 'Environment variable %s is not set' , $name );
return '' ;
}
return $value ;
}, $ini );
if ( $skip !== false ) {
return skip_test ( $tested , $tested_file , $shortname , $skip );
}
2021-02-10 20:17:03 +08:00
settings2array ( preg_split ( " /[ \n \r ]+/ " , $ini ), $ini_settings );
2020-10-21 21:01:47 +08:00
2023-03-21 05:15:54 +08:00
if ( isset ( $ini_settings [ 'opcache.opt_debug_level' ])) {
if ( $num_repeats > 1 ) {
return skip_test ( $tested , $tested_file , $shortname , 'opt_debug_level tests are not repeatable' );
}
2020-10-21 21:01:47 +08:00
}
2020-02-03 20:41:31 +08:00
}
$ini_settings = settings2params ( $ini_settings );
$env [ 'TEST_PHP_EXTRA_ARGS' ] = $pass_options . ' ' . $ini_settings ;
// Check if test should be skipped.
$info = '' ;
$warn = false ;
2021-02-10 20:17:03 +08:00
if ( $test -> sectionNotEmpty ( 'SKIPIF' )) {
show_file_block ( 'skip' , $test -> getSection ( 'SKIPIF' ));
$extra = ! IS_WINDOWS ?
" unset REQUEST_METHOD; unset QUERY_STRING; unset PATH_TRANSLATED; unset SCRIPT_FILENAME; unset REQUEST_METHOD; " : " " ;
2020-02-03 20:41:31 +08:00
2021-02-10 20:17:03 +08:00
if ( $valgrind ) {
$env [ 'USE_ZEND_ALLOC' ] = '0' ;
$env [ 'ZEND_DONT_UNLOAD_MODULES' ] = 1 ;
}
2020-02-03 20:41:31 +08:00
2021-02-10 20:17:03 +08:00
$junit -> startTimer ( $shortname );
2020-02-03 20:41:31 +08:00
2021-02-10 20:17:03 +08:00
$startTime = microtime ( true );
$commandLine = " $extra $php $pass_options $extra_options -q $orig_ini_settings $no_file_cache -d display_errors=1 -d display_startup_errors=0 " ;
$output = $skipCache -> checkSkip ( $commandLine , $test -> getSection ( 'SKIPIF' ), $test_skipif , $temp_skipif , $env );
2021-02-12 01:33:03 +08:00
2021-02-10 20:17:03 +08:00
$time = microtime ( true ) - $startTime ;
$junit -> stopTimer ( $shortname );
2020-02-03 20:41:31 +08:00
2021-02-10 20:17:03 +08:00
if ( $time > $slow_min_ms / 1000 ) {
$PHP_FAILED_TESTS [ 'SLOW' ][] = [
'name' => $file ,
'test_name' => 'SKIPIF of ' . $tested . " [ $tested_file ] " ,
'output' => '' ,
'diff' => '' ,
'info' => $time ,
];
}
2020-02-03 20:41:31 +08:00
2021-02-10 20:17:03 +08:00
if ( ! $cfg [ 'keep' ][ 'skip' ]) {
@ unlink ( $test_skipif );
}
if ( ! strncasecmp ( 'skip' , $output , 4 )) {
if ( preg_match ( '/^skip\s*(.+)/i' , $output , $m )) {
2023-12-07 09:24:31 +08:00
show_result ( 'SKIP' , $tested , $tested_file , " reason: $m[1] " );
2021-02-10 20:17:03 +08:00
} else {
2023-12-07 09:24:31 +08:00
show_result ( 'SKIP' , $tested , $tested_file , '' );
2020-08-25 20:53:18 +08:00
}
2021-02-10 20:17:03 +08:00
$message = ! empty ( $m [ 1 ]) ? $m [ 1 ] : '' ;
$junit -> markTestAs ( 'SKIP' , $shortname , $tested , null , $message );
return 'SKIPPED' ;
}
2020-02-03 20:41:31 +08:00
2021-02-10 20:17:03 +08:00
if ( ! strncasecmp ( 'info' , $output , 4 ) && preg_match ( '/^info\s*(.+)/i' , $output , $m )) {
$info = " (info: $m[1] ) " ;
} elseif ( ! strncasecmp ( 'warn' , $output , 4 ) && preg_match ( '/^warn\s+(.+)/i' , $output , $m )) {
$warn = true ; /* only if there is a reason */
$info = " (warn: $m[1] ) " ;
} elseif ( ! strncasecmp ( 'xfail' , $output , 5 )) {
// Pretend we have an XFAIL section
$test -> setSection ( 'XFAIL' , ltrim ( substr ( $output , 5 )));
2023-04-03 03:39:00 +08:00
} elseif ( ! strncasecmp ( 'xleak' , $output , 5 )) {
// Pretend we have an XLEAK section
$test -> setSection ( 'XLEAK' , ltrim ( substr ( $output , 5 )));
2024-09-13 21:29:21 +08:00
} elseif ( ! strncasecmp ( 'flaky' , $output , 5 )) {
// Pretend we have a FLAKY section
$test -> setSection ( 'FLAKY' , ltrim ( substr ( $output , 5 )));
2021-02-10 20:17:03 +08:00
} elseif ( $output !== '' ) {
2023-12-07 09:24:31 +08:00
show_result ( " BORK " , $output , $tested_file , 'reason: invalid output from SKIPIF' );
2021-02-10 20:17:03 +08:00
$PHP_FAILED_TESTS [ 'BORKED' ][] = [
'name' => $file ,
'test_name' => '' ,
'output' => '' ,
'diff' => '' ,
'info' => " $output [ $file ] " ,
];
2020-02-03 20:41:45 +08:00
2021-02-10 20:17:03 +08:00
$junit -> markTestAs ( 'BORK' , $shortname , $tested , null , $output );
return 'BORKED' ;
2020-02-03 20:41:31 +08:00
}
}
2021-02-10 20:17:03 +08:00
if ( ! extension_loaded ( " zlib " ) && $test -> hasAnySections ( " GZIP_POST " , " DEFLATE_POST " )) {
2020-02-03 20:41:31 +08:00
$message = " ext/zlib required " ;
2023-12-07 09:24:31 +08:00
show_result ( 'SKIP' , $tested , $tested_file , " reason: $message " );
2021-02-06 04:31:31 +08:00
$junit -> markTestAs ( 'SKIP' , $shortname , $tested , null , $message );
2020-02-03 20:41:31 +08:00
return 'SKIPPED' ;
}
2021-02-10 20:17:03 +08:00
if ( $test -> hasSection ( 'REDIRECTTEST' )) {
2020-08-10 03:45:04 +08:00
$test_files = [];
2020-02-03 20:41:31 +08:00
2021-02-10 20:17:03 +08:00
$IN_REDIRECT = eval ( $test -> getSection ( 'REDIRECTTEST' ));
2020-02-03 20:41:31 +08:00
$IN_REDIRECT [ 'via' ] = " via [ $shortname ] \n \t " ;
$IN_REDIRECT [ 'dir' ] = realpath ( dirname ( $file ));
2021-02-10 20:17:03 +08:00
$IN_REDIRECT [ 'prefix' ] = $tested ;
2022-06-07 20:11:28 +08:00
$IN_REDIRECT [ 'EXTENSIONS' ] = $extensions ;
2020-02-03 20:41:31 +08:00
if ( ! empty ( $IN_REDIRECT [ 'TESTS' ])) {
if ( is_array ( $org_file )) {
$test_files [] = $org_file [ 1 ];
} else {
$GLOBALS [ 'test_files' ] = $test_files ;
find_files ( $IN_REDIRECT [ 'TESTS' ]);
foreach ( $GLOBALS [ 'test_files' ] as $f ) {
2020-08-10 03:45:04 +08:00
$test_files [] = [ $f , $file ];
2020-02-03 20:41:31 +08:00
}
}
$test_cnt += count ( $test_files ) - 1 ;
$test_idx -- ;
show_redirect_start ( $IN_REDIRECT [ 'TESTS' ], $tested , $tested_file );
// set up environment
$redirenv = array_merge ( $environment , $IN_REDIRECT [ 'ENV' ]);
$redirenv [ 'REDIR_TEST_DIR' ] = realpath ( $IN_REDIRECT [ 'TESTS' ]) . DIRECTORY_SEPARATOR ;
usort ( $test_files , " test_sort " );
run_all_tests ( $test_files , $redirenv , $tested );
show_redirect_ends ( $IN_REDIRECT [ 'TESTS' ], $tested , $tested_file );
// a redirected test never fails
$IN_REDIRECT = false ;
2021-02-06 04:31:31 +08:00
$junit -> markTestAs ( 'PASS' , $shortname , $tested );
2020-02-03 20:41:31 +08:00
return 'REDIR' ;
}
2022-07-10 00:54:04 +08:00
$bork_info = " Redirect info must contain exactly one TEST string to be used as redirect directory. " ;
2023-12-07 09:24:31 +08:00
show_result ( " BORK " , $bork_info , '' , '' );
2022-07-10 00:54:04 +08:00
$PHP_FAILED_TESTS [ 'BORKED' ][] = [
'name' => $file ,
'test_name' => '' ,
'output' => '' ,
'diff' => '' ,
'info' => " $bork_info [ $file ] " ,
];
2020-02-03 20:41:31 +08:00
}
2019-02-18 02:47:22 +08:00
2021-02-10 20:17:03 +08:00
if ( is_array ( $org_file ) || $test -> hasSection ( 'REDIRECTTEST' )) {
2020-02-03 20:41:31 +08:00
if ( is_array ( $org_file )) {
$file = $org_file [ 0 ];
}
2019-02-18 02:47:22 +08:00
2020-02-03 20:41:31 +08:00
$bork_info = " Redirected test did not contain redirection info " ;
2023-12-07 09:24:31 +08:00
show_result ( " BORK " , $bork_info , '' , '' );
2020-08-10 03:45:04 +08:00
$PHP_FAILED_TESTS [ 'BORKED' ][] = [
2020-02-03 20:41:31 +08:00
'name' => $file ,
'test_name' => '' ,
'output' => '' ,
'diff' => '' ,
'info' => " $bork_info [ $file ] " ,
2020-08-10 03:45:04 +08:00
];
2019-02-18 02:47:22 +08:00
2021-02-06 04:31:31 +08:00
$junit -> markTestAs ( 'BORK' , $shortname , $tested , null , $bork_info );
2019-02-18 02:47:22 +08:00
2020-02-03 20:41:31 +08:00
return 'BORKED' ;
}
2007-12-05 22:54:08 +08:00
2020-02-03 20:41:31 +08:00
// We've satisfied the preconditions - run the test!
2021-02-10 20:17:03 +08:00
if ( $test -> hasSection ( 'FILE' )) {
show_file_block ( 'php' , $test -> getSection ( 'FILE' ), 'TEST' );
save_text ( $test_file , $test -> getSection ( 'FILE' ), $temp_file );
2020-02-03 20:41:31 +08:00
} else {
2023-12-07 09:24:31 +08:00
$test_file = " " ;
2020-02-03 20:41:31 +08:00
}
2008-07-21 18:48:31 +08:00
2021-02-10 20:17:03 +08:00
if ( $test -> hasSection ( 'GET' )) {
$query_string = trim ( $test -> getSection ( 'GET' ));
2020-02-03 20:41:31 +08:00
} else {
$query_string = '' ;
}
2008-07-21 18:48:31 +08:00
2020-02-03 20:41:31 +08:00
$env [ 'REDIRECT_STATUS' ] = '1' ;
if ( empty ( $env [ 'QUERY_STRING' ])) {
$env [ 'QUERY_STRING' ] = $query_string ;
}
if ( empty ( $env [ 'PATH_TRANSLATED' ])) {
$env [ 'PATH_TRANSLATED' ] = $test_file ;
}
if ( empty ( $env [ 'SCRIPT_FILENAME' ])) {
$env [ 'SCRIPT_FILENAME' ] = $test_file ;
}
2007-12-05 22:54:08 +08:00
2021-02-10 20:17:03 +08:00
if ( $test -> hasSection ( 'COOKIE' )) {
$env [ 'HTTP_COOKIE' ] = trim ( $test -> getSection ( 'COOKIE' ));
2020-02-03 20:41:31 +08:00
} else {
$env [ 'HTTP_COOKIE' ] = '' ;
}
2002-05-17 05:48:28 +08:00
2021-02-10 20:17:03 +08:00
$args = $test -> hasSection ( 'ARGS' ) ? ' -- ' . $test -> getSection ( 'ARGS' ) : '' ;
2020-02-03 20:41:31 +08:00
if ( $preload && ! empty ( $test_file )) {
save_text ( $preload_filename , " <?php opcache_compile_file(' $test_file '); " );
$local_pass_options = $pass_options ;
unset ( $pass_options );
$pass_options = $local_pass_options ;
$pass_options .= " -d opcache.preload= " . $preload_filename ;
}
2002-10-08 11:00:06 +08:00
2021-02-10 20:17:03 +08:00
if ( $test -> sectionNotEmpty ( 'POST_RAW' )) {
$post = trim ( $test -> getSection ( 'POST_RAW' ));
2020-02-03 20:41:31 +08:00
$raw_lines = explode ( " \n " , $post );
2008-07-21 18:48:31 +08:00
2020-02-03 20:41:31 +08:00
$request = '' ;
$started = false ;
2006-05-04 05:33:44 +08:00
2020-02-03 20:41:31 +08:00
foreach ( $raw_lines as $line ) {
if ( empty ( $env [ 'CONTENT_TYPE' ]) && preg_match ( '/^Content-Type:(.*)/i' , $line , $res )) {
$env [ 'CONTENT_TYPE' ] = trim ( str_replace ( " \r " , '' , $res [ 1 ]));
continue ;
}
2008-07-21 18:48:31 +08:00
2020-02-03 20:41:31 +08:00
if ( $started ) {
$request .= " \n " ;
}
2008-07-21 18:48:31 +08:00
2020-02-03 20:41:31 +08:00
$started = true ;
$request .= $line ;
}
2006-05-04 05:33:44 +08:00
2020-02-03 20:41:31 +08:00
$env [ 'CONTENT_LENGTH' ] = strlen ( $request );
2023-06-18 04:26:21 +08:00
if ( empty ( $env [ 'REQUEST_METHOD' ])) {
$env [ 'REQUEST_METHOD' ] = 'POST' ;
}
2006-05-04 05:33:44 +08:00
2020-02-03 20:41:31 +08:00
if ( empty ( $request )) {
2021-02-06 04:31:31 +08:00
$junit -> markTestAs ( 'BORK' , $shortname , $tested , null , 'empty $request' );
2020-02-03 20:41:31 +08:00
return 'BORKED' ;
}
2008-07-21 18:48:31 +08:00
2020-02-03 20:41:31 +08:00
save_text ( $tmp_post , $request );
$cmd = " $php $pass_options $ini_settings -f \" $test_file\ " $cmdRedirect < \ " $tmp_post\ " " ;
2021-02-10 20:17:03 +08:00
} elseif ( $test -> sectionNotEmpty ( 'PUT' )) {
$post = trim ( $test -> getSection ( 'PUT' ));
2020-02-03 20:41:31 +08:00
$raw_lines = explode ( " \n " , $post );
2012-03-17 17:35:25 +08:00
2020-02-03 20:41:31 +08:00
$request = '' ;
$started = false ;
2012-03-17 17:35:25 +08:00
2020-02-03 20:41:31 +08:00
foreach ( $raw_lines as $line ) {
if ( empty ( $env [ 'CONTENT_TYPE' ]) && preg_match ( '/^Content-Type:(.*)/i' , $line , $res )) {
$env [ 'CONTENT_TYPE' ] = trim ( str_replace ( " \r " , '' , $res [ 1 ]));
continue ;
}
2012-03-17 17:35:25 +08:00
2020-02-03 20:41:31 +08:00
if ( $started ) {
$request .= " \n " ;
}
2012-03-17 17:35:25 +08:00
2020-02-03 20:41:31 +08:00
$started = true ;
$request .= $line ;
}
2012-03-17 17:35:25 +08:00
2020-02-03 20:41:31 +08:00
$env [ 'CONTENT_LENGTH' ] = strlen ( $request );
$env [ 'REQUEST_METHOD' ] = 'PUT' ;
2012-03-17 17:35:25 +08:00
2020-02-03 20:41:31 +08:00
if ( empty ( $request )) {
2021-02-06 04:31:31 +08:00
$junit -> markTestAs ( 'BORK' , $shortname , $tested , null , 'empty $request' );
2020-02-03 20:41:31 +08:00
return 'BORKED' ;
}
2012-03-17 17:35:25 +08:00
2020-02-03 20:41:31 +08:00
save_text ( $tmp_post , $request );
$cmd = " $php $pass_options $ini_settings -f \" $test_file\ " $cmdRedirect < \ " $tmp_post\ " " ;
2021-02-10 20:17:03 +08:00
} elseif ( $test -> sectionNotEmpty ( 'POST' )) {
$post = trim ( $test -> getSection ( 'POST' ));
2020-02-03 20:41:31 +08:00
$content_length = strlen ( $post );
save_text ( $tmp_post , $post );
2006-05-13 22:01:58 +08:00
2020-02-03 20:41:31 +08:00
$env [ 'REQUEST_METHOD' ] = 'POST' ;
if ( empty ( $env [ 'CONTENT_TYPE' ])) {
$env [ 'CONTENT_TYPE' ] = 'application/x-www-form-urlencoded' ;
}
2015-05-27 17:37:34 +08:00
2020-02-03 20:41:31 +08:00
if ( empty ( $env [ 'CONTENT_LENGTH' ])) {
$env [ 'CONTENT_LENGTH' ] = $content_length ;
}
2002-10-08 11:00:06 +08:00
2020-02-03 20:41:31 +08:00
$cmd = " $php $pass_options $ini_settings -f \" $test_file\ " $cmdRedirect < \ " $tmp_post\ " " ;
2021-02-10 20:17:03 +08:00
} elseif ( $test -> sectionNotEmpty ( 'GZIP_POST' )) {
$post = trim ( $test -> getSection ( 'GZIP_POST' ));
2020-02-03 20:41:31 +08:00
$post = gzencode ( $post , 9 , FORCE_GZIP );
$env [ 'HTTP_CONTENT_ENCODING' ] = 'gzip' ;
2012-05-15 18:05:20 +08:00
2020-02-03 20:41:31 +08:00
save_text ( $tmp_post , $post );
$content_length = strlen ( $post );
2012-05-15 18:05:20 +08:00
2020-02-03 20:41:31 +08:00
$env [ 'REQUEST_METHOD' ] = 'POST' ;
$env [ 'CONTENT_TYPE' ] = 'application/x-www-form-urlencoded' ;
$env [ 'CONTENT_LENGTH' ] = $content_length ;
2012-05-15 18:05:20 +08:00
2020-02-03 20:41:31 +08:00
$cmd = " $php $pass_options $ini_settings -f \" $test_file\ " $cmdRedirect < \ " $tmp_post\ " " ;
2021-02-10 20:17:03 +08:00
} elseif ( $test -> sectionNotEmpty ( 'DEFLATE_POST' )) {
$post = trim ( $test -> getSection ( 'DEFLATE_POST' ));
2020-02-03 20:41:31 +08:00
$post = gzcompress ( $post , 9 );
$env [ 'HTTP_CONTENT_ENCODING' ] = 'deflate' ;
save_text ( $tmp_post , $post );
$content_length = strlen ( $post );
2012-05-15 18:05:20 +08:00
2020-02-03 20:41:31 +08:00
$env [ 'REQUEST_METHOD' ] = 'POST' ;
$env [ 'CONTENT_TYPE' ] = 'application/x-www-form-urlencoded' ;
$env [ 'CONTENT_LENGTH' ] = $content_length ;
2012-05-15 18:05:20 +08:00
2020-02-03 20:41:31 +08:00
$cmd = " $php $pass_options $ini_settings -f \" $test_file\ " $cmdRedirect < \ " $tmp_post\ " " ;
} else {
$env [ 'REQUEST_METHOD' ] = 'GET' ;
$env [ 'CONTENT_TYPE' ] = '' ;
$env [ 'CONTENT_LENGTH' ] = '' ;
2002-10-08 11:00:06 +08:00
2020-10-21 21:01:47 +08:00
$repeat_option = $num_repeats > 1 ? " --repeat $num_repeats " : " " ;
$cmd = " $php $pass_options $repeat_option $ini_settings -f \" $test_file\ " $args $cmdRedirect " ;
2020-02-03 20:41:31 +08:00
}
2002-10-08 11:00:06 +08:00
2021-02-01 17:10:09 +08:00
$orig_cmd = $cmd ;
2020-02-03 20:41:31 +08:00
if ( $valgrind ) {
$env [ 'USE_ZEND_ALLOC' ] = '0' ;
$env [ 'ZEND_DONT_UNLOAD_MODULES' ] = 1 ;
2008-07-21 18:48:31 +08:00
2020-02-03 20:41:31 +08:00
$cmd = $valgrind -> wrapCommand ( $cmd , $memcheck_filename , strpos ( $test_file , " pcre " ) !== false );
}
2005-12-07 08:03:46 +08:00
2023-04-03 17:37:27 +08:00
if ( $test -> hasSection ( 'XLEAK' )) {
$env [ 'ZEND_ALLOC_PRINT_LEAKS' ] = '0' ;
if ( isset ( $env [ 'SKIP_ASAN' ])) {
2023-07-07 15:24:05 +08:00
// $env['LSAN_OPTIONS'] = 'detect_leaks=0';
/* For unknown reasons , LSAN_OPTIONS = detect_leaks = 0 would occasionally not be picked up
* in CI . Skip the test with ASAN , as it ' s not worth investegating . */
return skip_test ( $tested , $tested_file , $shortname , 'xleak does not work with asan' );
2023-04-03 17:37:27 +08:00
}
2023-04-03 03:39:00 +08:00
}
run-tests: cs fixes (cleanup)
I used php-cs-fixer to do the cs fixes. The configuration I used is
posted below. The reason I disabled some of the rules is because they
create too much noise and would make it difficult to review. But please
feel free to close this PR and run the php-cs-fixer yourself.
<?php
$config = PhpCsFixer\Config::create();
$config->setRiskyAllowed(false);
$config->setRules([
'@PSR2' => true,
'@Symfony' => true,
'array_syntax' => false,
'binary_operator_spaces' => false,
'blank_line_before_statement' => false,
'concat_space' => false,
'increment_style' => false,
'phpdoc_align' => false,
'single_quote' => false,
'trailing_comma_in_multiline_array' => false,
'unary_operator_spaces' => false,
'yoda_style' => false,
]);
$finder = PhpCsFixer\Finder::create();
$finder->in(getcwd());
$finder->exclude('Zend');
$finder->exclude('build');
$finder->exclude('ext');
$finder->exclude('pear');
$finder->exclude('sapi');
$finder->exclude('scripts');
$finder->exclude('win32');
$config->setFinder($finder);
return $config;
Closes GH-5557.
2020-05-13 00:24:21 +08:00
if ( $DETAILED ) {
echo "
2006-01-01 01:48:26 +08:00
CONTENT_LENGTH = " . $env['CONTENT_LENGTH'] . "
CONTENT_TYPE = " . $env['CONTENT_TYPE'] . "
PATH_TRANSLATED = " . $env['PATH_TRANSLATED'] . "
QUERY_STRING = " . $env['QUERY_STRING'] . "
REDIRECT_STATUS = " . $env['REDIRECT_STATUS'] . "
REQUEST_METHOD = " . $env['REQUEST_METHOD'] . "
SCRIPT_FILENAME = " . $env['SCRIPT_FILENAME'] . "
2006-12-09 22:14:29 +08:00
HTTP_COOKIE = " . $env['HTTP_COOKIE'] . "
2002-05-17 05:48:28 +08:00
COMMAND $cmd
" ;
run-tests: cs fixes (cleanup)
I used php-cs-fixer to do the cs fixes. The configuration I used is
posted below. The reason I disabled some of the rules is because they
create too much noise and would make it difficult to review. But please
feel free to close this PR and run the php-cs-fixer yourself.
<?php
$config = PhpCsFixer\Config::create();
$config->setRiskyAllowed(false);
$config->setRules([
'@PSR2' => true,
'@Symfony' => true,
'array_syntax' => false,
'binary_operator_spaces' => false,
'blank_line_before_statement' => false,
'concat_space' => false,
'increment_style' => false,
'phpdoc_align' => false,
'single_quote' => false,
'trailing_comma_in_multiline_array' => false,
'unary_operator_spaces' => false,
'yoda_style' => false,
]);
$finder = PhpCsFixer\Finder::create();
$finder->in(getcwd());
$finder->exclude('Zend');
$finder->exclude('build');
$finder->exclude('ext');
$finder->exclude('pear');
$finder->exclude('sapi');
$finder->exclude('scripts');
$finder->exclude('win32');
$config->setFinder($finder);
return $config;
Closes GH-5557.
2020-05-13 00:24:21 +08:00
}
2002-10-08 11:00:06 +08:00
2021-02-06 04:31:31 +08:00
$junit -> startTimer ( $shortname );
2020-02-03 20:41:31 +08:00
$hrtime = hrtime ();
$startTime = $hrtime [ 0 ] * 1000000000 + $hrtime [ 1 ];
2021-02-10 20:17:03 +08:00
$stdin = $test -> hasSection ( 'STDIN' ) ? $test -> getSection ( 'STDIN' ) : null ;
$out = system_with_timeout ( $cmd , $env , $stdin , $captureStdIn , $captureStdOut , $captureStdErr );
2020-02-03 20:41:31 +08:00
2021-02-06 04:31:31 +08:00
$junit -> stopTimer ( $shortname );
2020-02-03 20:41:31 +08:00
$hrtime = hrtime ();
$time = $hrtime [ 0 ] * 1000000000 + $hrtime [ 1 ] - $startTime ;
if ( $time >= $slow_min_ms * 1000000 ) {
2020-08-10 03:45:04 +08:00
$PHP_FAILED_TESTS [ 'SLOW' ][] = [
2020-02-03 20:41:31 +08:00
'name' => $file ,
2020-08-25 20:53:18 +08:00
'test_name' => $tested . " [ $tested_file ] " ,
2020-02-03 20:41:31 +08:00
'output' => '' ,
'diff' => '' ,
'info' => $time / 1000000000 ,
2020-08-10 03:45:04 +08:00
];
2020-02-03 20:41:31 +08:00
}
2021-09-07 00:58:50 +08:00
// Remember CLEAN output to report borked test if it otherwise passes.
$clean_output = null ;
2022-07-10 00:56:36 +08:00
if (( ! $no_clean || $cfg [ 'keep' ][ 'clean' ]) && $test -> sectionNotEmpty ( 'CLEAN' )) {
2021-02-10 20:17:03 +08:00
show_file_block ( 'clean' , $test -> getSection ( 'CLEAN' ));
save_text ( $test_clean , trim ( $test -> getSection ( 'CLEAN' )), $temp_clean );
2020-02-03 20:41:31 +08:00
2021-02-10 20:17:03 +08:00
if ( ! $no_clean ) {
$extra = ! IS_WINDOWS ?
" unset REQUEST_METHOD; unset QUERY_STRING; unset PATH_TRANSLATED; unset SCRIPT_FILENAME; unset REQUEST_METHOD; " : " " ;
2021-09-07 00:58:50 +08:00
$clean_output = system_with_timeout ( " $extra $orig_php $pass_options -q $orig_ini_settings $no_file_cache \" $test_clean\ " " , $env );
2021-02-10 20:17:03 +08:00
}
2020-02-03 20:41:31 +08:00
2021-02-10 20:17:03 +08:00
if ( ! $cfg [ 'keep' ][ 'clean' ]) {
@ unlink ( $test_clean );
2020-02-03 20:41:31 +08:00
}
}
$leaked = false ;
$passed = false ;
if ( $valgrind ) { // leak check
$leaked = filesize ( $memcheck_filename ) > 0 ;
if ( ! $leaked ) {
@ unlink ( $memcheck_filename );
}
}
2020-10-21 21:01:47 +08:00
if ( $num_repeats > 1 ) {
// In repeat mode, retain the output before the first execution,
// and of the last execution. Do this early, because the trimming below
// makes the newline handling complicated.
$separator1 = " Executing for the first time... \n " ;
$separator1_pos = strpos ( $out , $separator1 );
if ( $separator1_pos !== false ) {
$separator2 = " Finished execution, repeating... \n " ;
$separator2_pos = strrpos ( $out , $separator2 );
if ( $separator2_pos !== false ) {
$out = substr ( $out , 0 , $separator1_pos )
. substr ( $out , $separator2_pos + strlen ( $separator2 ));
} else {
$out = substr ( $out , 0 , $separator1_pos )
. substr ( $out , $separator1_pos + strlen ( $separator1 ));
}
}
}
2020-02-03 20:41:31 +08:00
// Does the output match what is expected?
$output = preg_replace ( " / \r \n / " , " \n " , trim ( $out ));
/* when using CGI, strip the headers from the output */
2020-08-10 03:45:04 +08:00
$headers = [];
2020-02-03 20:41:31 +08:00
2023-12-07 09:24:31 +08:00
if ( $uses_cgi && preg_match ( " /^(.*?) \r ? \n \r ? \n (.*)/s " , $out , $match )) {
2020-02-03 20:41:31 +08:00
$output = trim ( $match [ 2 ]);
$rh = preg_split ( " /[ \n \r ]+/ " , $match [ 1 ]);
foreach ( $rh as $line ) {
if ( strpos ( $line , ':' ) !== false ) {
$line = explode ( ':' , $line , 2 );
$headers [ trim ( $line [ 0 ])] = trim ( $line [ 1 ]);
}
}
}
2022-06-08 07:00:03 +08:00
$wanted_headers = null ;
$output_headers = null ;
2020-02-03 20:41:31 +08:00
$failed_headers = false ;
2021-02-10 20:17:03 +08:00
if ( $test -> hasSection ( 'EXPECTHEADERS' )) {
2020-08-10 03:45:04 +08:00
$want = [];
$wanted_headers = [];
2021-02-10 20:17:03 +08:00
$lines = preg_split ( " /[ \n \r ]+/ " , $test -> getSection ( 'EXPECTHEADERS' ));
2020-02-03 20:41:31 +08:00
foreach ( $lines as $line ) {
if ( strpos ( $line , ':' ) !== false ) {
$line = explode ( ':' , $line , 2 );
$want [ trim ( $line [ 0 ])] = trim ( $line [ 1 ]);
$wanted_headers [] = trim ( $line [ 0 ]) . ': ' . trim ( $line [ 1 ]);
}
}
2020-08-10 03:45:04 +08:00
$output_headers = [];
2020-02-03 20:41:31 +08:00
foreach ( $want as $k => $v ) {
if ( isset ( $headers [ $k ])) {
$output_headers [] = $k . ': ' . $headers [ $k ];
}
if ( ! isset ( $headers [ $k ]) || $headers [ $k ] != $v ) {
$failed_headers = true ;
}
}
$wanted_headers = implode ( " \n " , $wanted_headers );
$output_headers = implode ( " \n " , $output_headers );
}
show_file_block ( 'out' , $output );
if ( $preload ) {
$output = trim ( preg_replace ( " / \n ?Warning: Can't preload [^ \n ]* \n ?/ " , " " , $output ));
}
2021-02-10 20:17:03 +08:00
if ( $test -> hasAnySections ( 'EXPECTF' , 'EXPECTREGEX' )) {
if ( $test -> hasSection ( 'EXPECTF' )) {
$wanted = trim ( $test -> getSection ( 'EXPECTF' ));
2020-02-03 20:41:31 +08:00
} else {
2021-02-10 20:17:03 +08:00
$wanted = trim ( $test -> getSection ( 'EXPECTREGEX' ));
2020-02-03 20:41:31 +08:00
}
show_file_block ( 'exp' , $wanted );
$wanted_re = preg_replace ( '/\r\n/' , " \n " , $wanted );
2021-02-10 20:17:03 +08:00
if ( $test -> hasSection ( 'EXPECTF' )) {
2023-03-18 07:08:11 +08:00
$wanted_re = expectf_to_regex ( $wanted_re );
2022-07-10 01:10:33 +08:00
}
if ( preg_match ( '/^' . $wanted_re . '$/s' , $output )) {
2020-02-03 20:41:31 +08:00
$passed = true ;
}
} else {
2021-02-10 20:17:03 +08:00
$wanted = trim ( $test -> getSection ( 'EXPECT' ));
2020-02-03 20:41:31 +08:00
$wanted = preg_replace ( '/\r\n/' , " \n " , $wanted );
show_file_block ( 'exp' , $wanted );
// compare and leave on success
if ( ! strcmp ( $output , $wanted )) {
$passed = true ;
2021-09-07 00:58:50 +08:00
}
2020-02-03 20:41:31 +08:00
2021-09-07 00:58:50 +08:00
$wanted_re = null ;
}
2023-08-29 18:43:11 +08:00
if ( ! $passed && ! $retried && error_may_be_retried ( $test , $output )) {
2023-03-21 05:15:54 +08:00
$retried = true ;
goto retry ;
}
2021-09-07 00:58:50 +08:00
if ( $passed ) {
if ( ! $cfg [ 'keep' ][ 'php' ] && ! $leaked ) {
@ unlink ( $test_file );
@ unlink ( $preload_filename );
}
@ unlink ( $tmp_post );
if ( ! $leaked && ! $failed_headers ) {
// If the test passed and CLEAN produced output, report test as borked.
if ( $clean_output ) {
2023-12-07 09:24:31 +08:00
show_result ( " BORK " , $output , $tested_file , 'reason: invalid output from CLEAN' );
$PHP_FAILED_TESTS [ 'BORKED' ][] = [
2021-09-07 00:58:50 +08:00
'name' => $file ,
'test_name' => '' ,
'output' => '' ,
'diff' => '' ,
'info' => " $clean_output [ $file ] " ,
];
$junit -> markTestAs ( 'BORK' , $shortname , $tested , null , $clean_output );
return 'BORKED' ;
2020-02-03 20:41:31 +08:00
}
2021-09-07 00:58:50 +08:00
if ( $test -> hasSection ( 'XFAIL' )) {
$warn = true ;
$info = " (warn: XFAIL section but test passes) " ;
2023-04-03 17:37:27 +08:00
} elseif ( $test -> hasSection ( 'XLEAK' ) && $valgrind ) {
2023-04-03 03:39:00 +08:00
// XLEAK with ASAN completely disables LSAN so the test is expected to pass
2021-09-07 00:58:50 +08:00
$warn = true ;
$info = " (warn: XLEAK section but test passes) " ;
2023-05-03 19:50:04 +08:00
} elseif ( $retried ) {
$warn = true ;
$info = " (warn: Test passed on retry attempt) " ;
2021-09-07 00:58:50 +08:00
} else {
2023-12-07 09:24:31 +08:00
show_result ( " PASS " , $tested , $tested_file , '' );
2021-09-07 00:58:50 +08:00
$junit -> markTestAs ( 'PASS' , $shortname , $tested );
return 'PASSED' ;
2020-02-03 20:41:31 +08:00
}
}
}
// Test failed so we need to report details.
if ( $failed_headers ) {
$passed = false ;
$wanted = $wanted_headers . " \n --HEADERS-- \n " . $wanted ;
$output = $output_headers . " \n --HEADERS-- \n " . $output ;
if ( isset ( $wanted_re )) {
$wanted_re = preg_quote ( $wanted_headers . " \n --HEADERS-- \n " , '/' ) . $wanted_re ;
}
}
2022-06-08 07:00:03 +08:00
$restype = [];
2020-02-03 20:41:31 +08:00
if ( $leaked ) {
2021-02-10 20:17:03 +08:00
$restype [] = $test -> hasSection ( 'XLEAK' ) ?
2019-05-23 16:55:25 +08:00
'XLEAK' : 'LEAK' ;
2020-02-03 20:41:31 +08:00
}
2008-07-22 00:08:15 +08:00
2020-02-03 20:41:31 +08:00
if ( $warn ) {
$restype [] = 'WARN' ;
}
2008-07-22 00:08:15 +08:00
2020-02-03 20:41:31 +08:00
if ( ! $passed ) {
2021-02-10 20:17:03 +08:00
if ( $test -> hasSection ( 'XFAIL' )) {
2020-02-03 20:41:31 +08:00
$restype [] = 'XFAIL' ;
2021-02-10 20:17:03 +08:00
$info = ' XFAIL REASON: ' . rtrim ( $test -> getSection ( 'XFAIL' ));
2023-04-03 17:37:27 +08:00
} elseif ( $test -> hasSection ( 'XLEAK' ) && $valgrind ) {
2023-04-03 03:39:00 +08:00
// XLEAK with ASAN completely disables LSAN so the test is expected to pass
2019-05-23 16:55:25 +08:00
$restype [] = 'XLEAK' ;
2021-02-10 20:17:03 +08:00
$info = ' XLEAK REASON: ' . rtrim ( $test -> getSection ( 'XLEAK' ));
2019-05-23 16:55:25 +08:00
} else {
2020-02-03 20:41:31 +08:00
$restype [] = 'FAIL' ;
}
}
if ( ! $passed ) {
// write .exp
2020-05-12 17:07:18 +08:00
if ( strpos ( $log_format , 'E' ) !== false && file_put_contents ( $exp_filename , $wanted ) === false ) {
2020-02-03 20:41:31 +08:00
error ( " Cannot create expected test output - $exp_filename " );
}
// write .out
2020-05-12 17:07:18 +08:00
if ( strpos ( $log_format , 'O' ) !== false && file_put_contents ( $output_filename , $output ) === false ) {
2020-02-03 20:41:31 +08:00
error ( " Cannot create test output - $output_filename " );
}
// write .diff
2022-09-16 18:01:52 +08:00
if ( ! empty ( $environment [ 'TEST_PHP_DIFF_CMD' ])) {
$diff = generate_diff_external ( $environment [ 'TEST_PHP_DIFF_CMD' ], $exp_filename , $output_filename );
} else {
$diff = generate_diff ( $wanted , $wanted_re , $output );
}
2020-02-03 20:41:31 +08:00
if ( is_array ( $IN_REDIRECT )) {
$orig_shortname = str_replace ( TEST_PHP_SRCDIR . '/' , '' , $file );
$diff = " # original source file: $orig_shortname\n " . $diff ;
}
2022-08-01 02:47:15 +08:00
if ( ! $SHOW_ONLY_GROUPS || array_intersect ( $restype , $SHOW_ONLY_GROUPS )) {
show_file_block ( 'diff' , $diff );
}
2020-05-12 17:07:18 +08:00
if ( strpos ( $log_format , 'D' ) !== false && file_put_contents ( $diff_filename , $diff ) === false ) {
2020-02-03 20:41:31 +08:00
error ( " Cannot create test diff - $diff_filename " );
}
2021-02-01 17:10:09 +08:00
// write .log
if ( strpos ( $log_format , 'L' ) !== false && file_put_contents ( $log_filename , "
---- EXPECTED OUTPUT
$wanted
---- ACTUAL OUTPUT
$output
---- FAILED
" ) === false) {
error ( " Cannot create test log - $log_filename " );
error_report ( $file , $log_filename , $tested );
}
}
if ( ! $passed || $leaked ) {
2020-02-03 20:41:31 +08:00
// write .sh
2020-11-30 18:40:46 +08:00
if ( strpos ( $log_format , 'S' ) !== false ) {
2021-05-29 00:42:00 +08:00
$env_lines = [];
foreach ( $env as $env_var => $env_val ) {
2021-06-04 22:29:14 +08:00
$env_lines [] = " export $env_var = " . escapeshellarg ( $env_val ? ? " " );
2021-05-29 00:42:00 +08:00
}
2023-12-07 09:24:31 +08:00
$exported_environment = " \n " . implode ( " \n " , $env_lines ) . " \n " ;
2020-11-30 18:40:46 +08:00
$sh_script = <<< SH
2020-04-15 21:58:03 +08:00
#!/bin/sh
2021-05-29 00:42:00 +08:00
{ $exported_environment }
2020-04-15 21:58:03 +08:00
case " $ 1 " in
" gdb " )
2021-02-01 17:10:09 +08:00
gdb -- args { $orig_cmd }
2020-04-15 21:58:03 +08:00
;;
2021-09-03 09:38:07 +08:00
" lldb " )
lldb -- { $orig_cmd }
;;
2020-04-15 21:58:03 +08:00
" valgrind " )
2022-03-12 19:44:19 +08:00
USE_ZEND_ALLOC = 0 valgrind $ 2 { $orig_cmd }
2020-04-15 21:58:03 +08:00
;;
" rr " )
2022-03-12 19:44:19 +08:00
rr record $ 2 { $orig_cmd }
2020-04-15 21:58:03 +08:00
;;
* )
2021-02-01 17:10:09 +08:00
{ $orig_cmd }
2020-04-15 21:58:03 +08:00
;;
esac
2020-04-24 09:26:35 +08:00
SH ;
2020-11-30 18:40:46 +08:00
if ( file_put_contents ( $sh_filename , $sh_script ) === false ) {
error ( " Cannot create test shell script - $sh_filename " );
}
chmod ( $sh_filename , 0755 );
2020-02-03 20:41:31 +08:00
}
}
2018-07-09 11:56:45 +08:00
2020-02-03 20:41:31 +08:00
if ( $valgrind && $leaked && $cfg [ " show " ][ " mem " ]) {
show_file_block ( 'mem' , file_get_contents ( $memcheck_filename ));
}
2002-05-17 05:48:28 +08:00
2023-12-07 09:24:31 +08:00
show_result ( implode ( '&' , $restype ), $tested , $tested_file , $info );
2005-12-09 06:51:01 +08:00
2020-02-03 20:41:31 +08:00
foreach ( $restype as $type ) {
2020-08-10 03:45:04 +08:00
$PHP_FAILED_TESTS [ $type . 'ED' ][] = [
2020-02-03 20:41:31 +08:00
'name' => $file ,
'test_name' => ( is_array ( $IN_REDIRECT ) ? $IN_REDIRECT [ 'via' ] : '' ) . $tested . " [ $tested_file ] " ,
'output' => $output_filename ,
'diff' => $diff_filename ,
'info' => $info ,
2020-08-10 03:45:04 +08:00
];
2020-02-03 20:41:31 +08:00
}
2005-12-09 06:51:01 +08:00
2020-02-03 20:41:31 +08:00
$diff = empty ( $diff ) ? '' : preg_replace ( '/\e/' , '<esc>' , $diff );
2012-03-22 05:59:02 +08:00
2021-02-06 04:31:31 +08:00
$junit -> markTestAs ( $restype , $shortname , $tested , null , $info , $diff );
2003-07-25 01:44:16 +08:00
2020-02-03 20:41:31 +08:00
return $restype [ 0 ] . 'ED' ;
2000-08-28 03:46:06 +08:00
}
2023-11-09 18:53:55 +08:00
function is_flaky ( TestFile $test ) : bool
{
if ( $test -> hasSection ( 'FLAKY' )) {
return true ;
}
if ( ! $test -> hasSection ( 'FILE' )) {
return false ;
}
$file = $test -> getSection ( 'FILE' );
$flaky_functions = [
'disk_free_space' ,
'hrtime' ,
'microtime' ,
'sleep' ,
'usleep' ,
];
$regex = '(\b(' . implode ( '|' , $flaky_functions ) . ')\()i' ;
return preg_match ( $regex , $file ) === 1 ;
}
2023-11-16 21:35:37 +08:00
function is_flaky_output ( string $output ) : bool
{
$messages = [
'404: page not found' ,
'address already in use' ,
'connection refused' ,
'deadlock' ,
'mailbox already exists' ,
'timed out' ,
];
$regex = '(\b(' . implode ( '|' , $messages ) . ')\b)i' ;
return preg_match ( $regex , $output ) === 1 ;
}
2023-05-26 18:08:28 +08:00
function error_may_be_retried ( TestFile $test , string $output ) : bool
2023-03-21 05:15:54 +08:00
{
2023-11-16 21:35:37 +08:00
return is_flaky_output ( $output )
2023-11-09 18:53:55 +08:00
|| is_flaky ( $test );
2023-03-21 05:15:54 +08:00
}
2023-03-18 07:08:11 +08:00
function expectf_to_regex ( ? string $wanted ) : string
2022-09-22 18:14:00 +08:00
{
2023-03-18 07:08:11 +08:00
$wanted_re = $wanted ? ? '' ;
$wanted_re = preg_replace ( '/\r\n/' , " \n " , $wanted_re );
// do preg_quote, but miss out any %r delimited sections
$temp = " " ;
$r = " %r " ;
$startOffset = 0 ;
$length = strlen ( $wanted_re );
while ( $startOffset < $length ) {
$start = strpos ( $wanted_re , $r , $startOffset );
if ( $start !== false ) {
// we have found a start tag
$end = strpos ( $wanted_re , $r , $start + 2 );
if ( $end === false ) {
// unbalanced tag, ignore it.
$end = $start = $length ;
}
} else {
// no more %r sections
$start = $end = $length ;
}
// quote a non re portion of the string
$temp .= preg_quote ( substr ( $wanted_re , $startOffset , $start - $startOffset ), '/' );
// add the re unquoted.
if ( $end > $start ) {
$temp .= '(' . substr ( $wanted_re , $start + 2 , $end - $start - 2 ) . ')' ;
}
$startOffset = $end + 2 ;
}
$wanted_re = $temp ;
return strtr ( $wanted_re , [
'%e' => preg_quote ( DIRECTORY_SEPARATOR , '/' ),
'%s' => '[^\r\n]+' ,
'%S' => '[^\r\n]*' ,
2024-10-07 20:01:54 +08:00
'%a' => '.+?' ,
'%A' => '.*?' ,
2023-03-18 07:08:11 +08:00
'%w' => '\s*' ,
'%i' => '[+-]?\d+' ,
'%d' => '\d+' ,
'%x' => '[0-9a-fA-F]+' ,
'%f' => '[+-]?(?:\d+|(?=\.\d))(?:\.\d+)?(?:[Ee][+-]?\d+)?' ,
'%c' => '.' ,
'%0' => '\x00' ,
]);
2022-09-22 18:14:00 +08:00
}
2023-03-18 07:08:11 +08:00
/**
* Map " Zend OPcache " to " opcache " and convert all ext names to lowercase .
*/
function remap_loaded_extensions_names ( array $names ) : array
2003-08-10 12:23:02 +08:00
{
2023-03-18 07:08:11 +08:00
$exts = [];
foreach ( $names as $name ) {
if ( $name === 'Core' ) {
2020-02-03 20:41:31 +08:00
continue ;
2022-07-10 00:54:04 +08:00
}
2023-03-18 07:08:11 +08:00
$exts [] = [ 'Zend OPcache' => 'opcache' ][ $name ] ? ? strtolower ( $name );
2020-02-03 20:41:31 +08:00
}
2023-03-18 07:08:11 +08:00
return $exts ;
2003-08-10 04:02:02 +08:00
}
2022-09-16 18:01:52 +08:00
function generate_diff_external ( string $diff_cmd , string $exp_file , string $output_file ) : string
{
$retval = shell_exec ( " { $diff_cmd } { $exp_file } { $output_file } " );
2023-03-10 08:10:25 +08:00
return is_string ( $retval ) ? $retval : 'Could not run external diff tool set through TEST_PHP_DIFF_CMD environment variable' ;
2022-09-16 18:01:52 +08:00
}
2020-08-07 02:37:36 +08:00
function generate_diff ( string $wanted , ? string $wanted_re , string $output ) : string
2002-10-02 09:52:25 +08:00
{
2020-02-03 20:41:31 +08:00
$w = explode ( " \n " , $wanted );
$o = explode ( " \n " , $output );
2023-03-18 07:08:11 +08:00
$is_regex = $wanted_re !== null ;
2008-07-21 18:48:31 +08:00
2023-03-18 07:08:11 +08:00
$differ = new Differ ( function ( $expected , $new ) use ( $is_regex ) {
if ( ! $is_regex ) {
return $expected === $new ;
}
$regex = '/^' . expectf_to_regex ( $expected ) . '$/s' ;
return preg_match ( $regex , $new );
});
2023-10-31 00:19:43 +08:00
return $differ -> diff ( $w , $o );
2002-08-27 07:26:46 +08:00
}
2020-08-07 02:37:36 +08:00
function error ( string $message ) : void
2002-10-02 09:52:25 +08:00
{
2020-02-03 20:41:31 +08:00
echo " ERROR: { $message } \n " ;
exit ( 1 );
2002-05-19 21:16:03 +08:00
}
2023-12-07 09:24:31 +08:00
function settings2array ( array $settings , array & $ini_settings ) : void
2002-11-01 21:03:30 +08:00
{
2020-02-03 20:41:31 +08:00
foreach ( $settings as $setting ) {
if ( strpos ( $setting , '=' ) !== false ) {
$setting = explode ( " = " , $setting , 2 );
$name = trim ( $setting [ 0 ]);
$value = trim ( $setting [ 1 ]);
2008-07-21 18:48:31 +08:00
2020-02-03 20:41:31 +08:00
if ( $name == 'extension' || $name == 'zend_extension' ) {
if ( ! isset ( $ini_settings [ $name ])) {
2020-08-10 03:45:04 +08:00
$ini_settings [ $name ] = [];
2020-02-03 20:41:31 +08:00
}
2008-07-21 18:48:31 +08:00
2020-02-03 20:41:31 +08:00
$ini_settings [ $name ][] = $value ;
} else {
$ini_settings [ $name ] = $value ;
}
}
}
2002-11-01 21:03:30 +08:00
}
2020-08-07 02:37:36 +08:00
function settings2params ( array $ini_settings ) : string
2002-11-01 21:03:30 +08:00
{
2020-02-03 20:41:31 +08:00
$settings = '' ;
run-tests: cs fixes (cleanup)
I used php-cs-fixer to do the cs fixes. The configuration I used is
posted below. The reason I disabled some of the rules is because they
create too much noise and would make it difficult to review. But please
feel free to close this PR and run the php-cs-fixer yourself.
<?php
$config = PhpCsFixer\Config::create();
$config->setRiskyAllowed(false);
$config->setRules([
'@PSR2' => true,
'@Symfony' => true,
'array_syntax' => false,
'binary_operator_spaces' => false,
'blank_line_before_statement' => false,
'concat_space' => false,
'increment_style' => false,
'phpdoc_align' => false,
'single_quote' => false,
'trailing_comma_in_multiline_array' => false,
'unary_operator_spaces' => false,
'yoda_style' => false,
]);
$finder = PhpCsFixer\Finder::create();
$finder->in(getcwd());
$finder->exclude('Zend');
$finder->exclude('build');
$finder->exclude('ext');
$finder->exclude('pear');
$finder->exclude('sapi');
$finder->exclude('scripts');
$finder->exclude('win32');
$config->setFinder($finder);
return $config;
Closes GH-5557.
2020-05-13 00:24:21 +08:00
foreach ( $ini_settings as $name => $value ) {
2020-02-03 20:41:31 +08:00
if ( is_array ( $value )) {
run-tests: cs fixes (cleanup)
I used php-cs-fixer to do the cs fixes. The configuration I used is
posted below. The reason I disabled some of the rules is because they
create too much noise and would make it difficult to review. But please
feel free to close this PR and run the php-cs-fixer yourself.
<?php
$config = PhpCsFixer\Config::create();
$config->setRiskyAllowed(false);
$config->setRules([
'@PSR2' => true,
'@Symfony' => true,
'array_syntax' => false,
'binary_operator_spaces' => false,
'blank_line_before_statement' => false,
'concat_space' => false,
'increment_style' => false,
'phpdoc_align' => false,
'single_quote' => false,
'trailing_comma_in_multiline_array' => false,
'unary_operator_spaces' => false,
'yoda_style' => false,
]);
$finder = PhpCsFixer\Finder::create();
$finder->in(getcwd());
$finder->exclude('Zend');
$finder->exclude('build');
$finder->exclude('ext');
$finder->exclude('pear');
$finder->exclude('sapi');
$finder->exclude('scripts');
$finder->exclude('win32');
$config->setFinder($finder);
return $config;
Closes GH-5557.
2020-05-13 00:24:21 +08:00
foreach ( $value as $val ) {
2020-02-03 20:41:31 +08:00
$val = addslashes ( $val );
$settings .= " -d \" $name = $val\ " " ;
}
} else {
2020-02-03 20:41:45 +08:00
if ( IS_WINDOWS && ! empty ( $value ) && $value [ 0 ] == '"' ) {
2020-02-03 20:41:31 +08:00
$len = strlen ( $value );
if ( $value [ $len - 1 ] == '"' ) {
$value [ 0 ] = " ' " ;
$value [ $len - 1 ] = " ' " ;
}
} else {
$value = addslashes ( $value );
}
$settings .= " -d \" $name = $value\ " " ;
}
}
return $settings ;
2002-11-01 21:03:30 +08:00
}
2020-08-07 02:37:36 +08:00
function compute_summary () : void
2003-03-09 00:28:35 +08:00
{
2020-02-03 20:41:31 +08:00
global $n_total , $test_results , $ignored_by_ext , $sum_results , $percent_results ;
$n_total = count ( $test_results );
2022-09-22 18:14:00 +08:00
$n_total += count ( $ignored_by_ext );
2020-08-10 03:45:04 +08:00
$sum_results = [
2020-02-03 20:41:31 +08:00
'PASSED' => 0 ,
'WARNED' => 0 ,
'SKIPPED' => 0 ,
'FAILED' => 0 ,
'BORKED' => 0 ,
'LEAKED' => 0 ,
'XFAILED' => 0 ,
'XLEAKED' => 0
2020-08-10 03:45:04 +08:00
];
2020-02-03 20:41:31 +08:00
foreach ( $test_results as $v ) {
$sum_results [ $v ] ++ ;
}
2022-09-22 18:14:00 +08:00
$sum_results [ 'SKIPPED' ] += count ( $ignored_by_ext );
2020-08-10 03:45:04 +08:00
$percent_results = [];
2020-02-03 20:41:31 +08:00
foreach ( $sum_results as $v => $n ) {
$percent_results [ $v ] = ( 100.0 * $n ) / $n_total ;
}
2003-03-09 00:28:35 +08:00
}
2020-08-07 02:37:36 +08:00
function get_summary ( bool $show_ext_summary ) : string
2003-03-09 00:28:35 +08:00
{
2020-02-03 20:41:31 +08:00
global $exts_skipped , $exts_tested , $n_total , $sum_results , $percent_results , $end_time , $start_time , $failed_test_summary , $PHP_FAILED_TESTS , $valgrind ;
$x_total = $n_total - $sum_results [ 'SKIPPED' ] - $sum_results [ 'BORKED' ];
if ( $x_total ) {
$x_warned = ( 100.0 * $sum_results [ 'WARNED' ]) / $x_total ;
$x_failed = ( 100.0 * $sum_results [ 'FAILED' ]) / $x_total ;
$x_xfailed = ( 100.0 * $sum_results [ 'XFAILED' ]) / $x_total ;
$x_xleaked = ( 100.0 * $sum_results [ 'XLEAKED' ]) / $x_total ;
$x_leaked = ( 100.0 * $sum_results [ 'LEAKED' ]) / $x_total ;
$x_passed = ( 100.0 * $sum_results [ 'PASSED' ]) / $x_total ;
} else {
$x_warned = $x_failed = $x_passed = $x_leaked = $x_xfailed = $x_xleaked = 0 ;
}
2003-12-30 00:07:08 +08:00
2020-02-03 20:41:31 +08:00
$summary = '' ;
2008-07-22 00:08:15 +08:00
2020-02-03 20:41:31 +08:00
if ( $show_ext_summary ) {
$summary .= '
2003-03-09 00:28:35 +08:00
=====================================================================
TEST RESULT SUMMARY
---------------------------------------------------------------------
2022-09-22 18:14:00 +08:00
Exts skipped : ' . sprintf(' % 5 d ', count($exts_skipped)) . ($exts_skipped ? ' ( ' . implode(' , ', $exts_skipped) . ' ) ' : ' ') . '
Exts tested : ' . sprintf(' % 5 d ', count($exts_tested)) . '
2003-03-09 00:28:35 +08:00
---------------------------------------------------------------------
2008-07-22 00:08:15 +08:00
' ;
2020-02-03 20:41:31 +08:00
}
2008-07-22 00:08:15 +08:00
2020-02-03 20:41:31 +08:00
$summary .= '
2022-09-22 18:14:00 +08:00
Number of tests : ' . sprintf(' % 5 d ', $n_total) . ' ' . sprintf(' % 8 d ' , $x_total );
2008-07-22 00:08:15 +08:00
2020-02-03 20:41:31 +08:00
if ( $sum_results [ 'BORKED' ]) {
$summary .= '
2022-09-22 18:14:00 +08:00
Tests borked : ' . sprintf(' % 5 d ( % 5.1 f %% ) ', $sum_results[' BORKED '], $percent_results[' BORKED ']) . ' -------- ' ;
2020-02-03 20:41:31 +08:00
}
2008-07-22 00:08:15 +08:00
2020-02-03 20:41:31 +08:00
$summary .= '
2022-09-22 18:14:00 +08:00
Tests skipped : ' . sprintf(' % 5 d ( % 5.1 f %% ) ', $sum_results[' SKIPPED '], $percent_results[' SKIPPED ']) . ' --------
Tests warned : ' . sprintf(' % 5 d ( % 5.1 f %% ) ', $sum_results[' WARNED '], $percent_results[' WARNED ']) . ' ' . sprintf(' ( % 5.1 f %% ) ', $x_warned) . '
Tests failed : ' . sprintf(' % 5 d ( % 5.1 f %% ) ', $sum_results[' FAILED '], $percent_results[' FAILED ']) . ' ' . sprintf(' ( % 5.1 f %% ) ' , $x_failed );
2019-05-23 16:55:25 +08:00
if ( $sum_results [ 'XFAILED' ]) {
$summary .= '
2022-09-22 18:14:00 +08:00
Expected fail : ' . sprintf(' % 5 d ( % 5.1 f %% ) ', $sum_results[' XFAILED '], $percent_results[' XFAILED ']) . ' ' . sprintf(' ( % 5.1 f %% ) ' , $x_xfailed );
2019-05-23 16:55:25 +08:00
}
2008-07-22 00:08:15 +08:00
2020-02-03 20:41:31 +08:00
if ( $valgrind ) {
$summary .= '
2022-09-22 18:14:00 +08:00
Tests leaked : ' . sprintf(' % 5 d ( % 5.1 f %% ) ', $sum_results[' LEAKED '], $percent_results[' LEAKED ']) . ' ' . sprintf(' ( % 5.1 f %% ) ' , $x_leaked );
2019-05-23 16:55:25 +08:00
if ( $sum_results [ 'XLEAKED' ]) {
$summary .= '
2022-09-22 18:14:00 +08:00
Expected leak : ' . sprintf(' % 5 d ( % 5.1 f %% ) ', $sum_results[' XLEAKED '], $percent_results[' XLEAKED ']) . ' ' . sprintf(' ( % 5.1 f %% ) ' , $x_xleaked );
2019-05-23 16:55:25 +08:00
}
2020-02-03 20:41:31 +08:00
}
2008-07-22 00:08:15 +08:00
2020-02-03 20:41:31 +08:00
$summary .= '
2022-09-22 18:14:00 +08:00
Tests passed : ' . sprintf(' % 5 d ( % 5.1 f %% ) ', $sum_results[' PASSED '], $percent_results[' PASSED ']) . ' ' . sprintf(' ( % 5.1 f %% ) ', $x_passed) . '
2003-03-09 00:28:35 +08:00
---------------------------------------------------------------------
2023-12-30 00:03:30 +08:00
Time taken : ' . sprintf(' % 5.3 f seconds ', ($end_time - $start_time) / 1e9) . '
2003-03-09 00:28:35 +08:00
=====================================================================
2008-07-22 00:08:15 +08:00
' ;
2020-02-03 20:41:31 +08:00
$failed_test_summary = '' ;
2008-07-22 00:08:15 +08:00
2020-02-03 20:41:31 +08:00
if ( count ( $PHP_FAILED_TESTS [ 'SLOW' ])) {
2020-08-07 02:37:36 +08:00
usort ( $PHP_FAILED_TESTS [ 'SLOW' ], function ( array $a , array $b ) : int {
2020-02-03 20:41:31 +08:00
return $a [ 'info' ] < $b [ 'info' ] ? 1 : - 1 ;
});
2017-05-15 23:54:08 +08:00
2020-02-03 20:41:31 +08:00
$failed_test_summary .= '
2017-05-15 23:54:08 +08:00
=====================================================================
SLOW TEST SUMMARY
---------------------------------------------------------------------
' ;
2020-02-03 20:41:31 +08:00
foreach ( $PHP_FAILED_TESTS [ 'SLOW' ] as $failed_test_data ) {
$failed_test_summary .= sprintf ( '(%.3f s) ' , $failed_test_data [ 'info' ]) . $failed_test_data [ 'test_name' ] . " \n " ;
}
$failed_test_summary .= " ===================================================================== \n " ;
}
if ( count ( $PHP_FAILED_TESTS [ 'XFAILED' ])) {
$failed_test_summary .= '
2011-09-01 21:06:12 +08:00
=====================================================================
EXPECTED FAILED TEST SUMMARY
---------------------------------------------------------------------
' ;
2020-02-03 20:41:31 +08:00
foreach ( $PHP_FAILED_TESTS [ 'XFAILED' ] as $failed_test_data ) {
$failed_test_summary .= $failed_test_data [ 'test_name' ] . $failed_test_data [ 'info' ] . " \n " ;
}
$failed_test_summary .= " ===================================================================== \n " ;
}
if ( count ( $PHP_FAILED_TESTS [ 'BORKED' ])) {
$failed_test_summary .= '
2003-03-09 00:28:35 +08:00
=====================================================================
2005-06-15 17:21:15 +08:00
BORKED TEST SUMMARY
2003-03-09 00:28:35 +08:00
---------------------------------------------------------------------
2008-07-22 00:08:15 +08:00
' ;
2020-02-03 20:41:31 +08:00
foreach ( $PHP_FAILED_TESTS [ 'BORKED' ] as $failed_test_data ) {
$failed_test_summary .= $failed_test_data [ 'info' ] . " \n " ;
}
2008-07-21 18:48:31 +08:00
2020-02-03 20:41:31 +08:00
$failed_test_summary .= " ===================================================================== \n " ;
}
2008-07-21 18:48:31 +08:00
2020-02-03 20:41:31 +08:00
if ( count ( $PHP_FAILED_TESTS [ 'FAILED' ])) {
$failed_test_summary .= '
2005-06-15 17:21:15 +08:00
=====================================================================
FAILED TEST SUMMARY
---------------------------------------------------------------------
2008-07-22 00:08:15 +08:00
' ;
2020-02-03 20:41:31 +08:00
foreach ( $PHP_FAILED_TESTS [ 'FAILED' ] as $failed_test_data ) {
$failed_test_summary .= $failed_test_data [ 'test_name' ] . $failed_test_data [ 'info' ] . " \n " ;
}
$failed_test_summary .= " ===================================================================== \n " ;
}
if ( count ( $PHP_FAILED_TESTS [ 'WARNED' ])) {
$failed_test_summary .= '
2009-05-18 22:08:23 +08:00
=====================================================================
WARNED TEST SUMMARY
---------------------------------------------------------------------
' ;
2020-02-03 20:41:31 +08:00
foreach ( $PHP_FAILED_TESTS [ 'WARNED' ] as $failed_test_data ) {
$failed_test_summary .= $failed_test_data [ 'test_name' ] . $failed_test_data [ 'info' ] . " \n " ;
}
2009-05-18 22:08:23 +08:00
2020-02-03 20:41:31 +08:00
$failed_test_summary .= " ===================================================================== \n " ;
}
2009-05-18 22:08:23 +08:00
2020-02-03 20:41:31 +08:00
if ( count ( $PHP_FAILED_TESTS [ 'LEAKED' ])) {
$failed_test_summary .= '
2005-12-07 08:03:46 +08:00
=====================================================================
LEAKED TEST SUMMARY
---------------------------------------------------------------------
2008-07-22 00:08:15 +08:00
' ;
2020-02-03 20:41:31 +08:00
foreach ( $PHP_FAILED_TESTS [ 'LEAKED' ] as $failed_test_data ) {
$failed_test_summary .= $failed_test_data [ 'test_name' ] . $failed_test_data [ 'info' ] . " \n " ;
}
2008-07-21 18:48:31 +08:00
2020-02-03 20:41:31 +08:00
$failed_test_summary .= " ===================================================================== \n " ;
}
2008-07-22 00:08:15 +08:00
2020-02-03 20:41:31 +08:00
if ( count ( $PHP_FAILED_TESTS [ 'XLEAKED' ])) {
$failed_test_summary .= '
2019-05-23 16:55:25 +08:00
=====================================================================
EXPECTED LEAK TEST SUMMARY
---------------------------------------------------------------------
' ;
2020-02-03 20:41:31 +08:00
foreach ( $PHP_FAILED_TESTS [ 'XLEAKED' ] as $failed_test_data ) {
$failed_test_summary .= $failed_test_data [ 'test_name' ] . $failed_test_data [ 'info' ] . " \n " ;
}
2019-05-23 16:55:25 +08:00
2020-02-03 20:41:31 +08:00
$failed_test_summary .= " ===================================================================== \n " ;
}
2019-05-23 16:55:25 +08:00
2020-02-03 20:41:31 +08:00
if ( $failed_test_summary && ! getenv ( 'NO_PHPTEST_SUMMARY' )) {
$summary .= $failed_test_summary ;
}
2003-03-09 00:28:35 +08:00
2020-02-03 20:41:31 +08:00
return $summary ;
2003-03-09 00:28:35 +08:00
}
2023-12-30 00:03:30 +08:00
function show_start ( int $start_timestamp ) : void
2005-12-07 08:03:46 +08:00
{
2023-12-30 00:03:30 +08:00
echo " TIME START " . date ( 'Y-m-d H:i:s' , $start_timestamp ) . " \n ===================================================================== \n " ;
2005-12-07 08:03:46 +08:00
}
2023-12-30 00:03:30 +08:00
function show_end ( int $start_timestamp , int | float $start_time , int | float $end_time ) : void
2005-12-07 08:03:46 +08:00
{
2023-12-30 00:03:30 +08:00
echo " ===================================================================== \n TIME END " . date ( 'Y-m-d H:i:s' , $start_timestamp + ( int )(( $end_time - $start_time ) / 1e9 )) . " \n " ;
2005-12-07 08:03:46 +08:00
}
2020-08-07 02:37:36 +08:00
function show_summary () : void
2005-12-07 08:03:46 +08:00
{
2020-06-18 17:40:40 +08:00
echo get_summary ( true );
2005-12-07 08:03:46 +08:00
}
2020-08-07 02:37:36 +08:00
function show_redirect_start ( string $tests , string $tested , string $tested_file ) : void
2005-12-07 08:03:46 +08:00
{
2022-08-12 02:58:15 +08:00
global $SHOW_ONLY_GROUPS , $show_progress ;
2008-07-21 18:48:31 +08:00
2020-02-03 20:41:31 +08:00
if ( ! $SHOW_ONLY_GROUPS || in_array ( 'REDIRECT' , $SHOW_ONLY_GROUPS )) {
echo " REDIRECT $tests ( $tested [ $tested_file ]) begin \n " ;
2022-08-12 02:58:15 +08:00
} elseif ( $show_progress ) {
2020-02-03 20:41:31 +08:00
clear_show_test ();
}
2005-12-07 08:03:46 +08:00
}
2020-08-07 02:37:36 +08:00
function show_redirect_ends ( string $tests , string $tested , string $tested_file ) : void
2005-12-07 08:03:46 +08:00
{
2022-08-12 02:58:15 +08:00
global $SHOW_ONLY_GROUPS , $show_progress ;
2008-07-21 18:48:31 +08:00
2020-02-03 20:41:31 +08:00
if ( ! $SHOW_ONLY_GROUPS || in_array ( 'REDIRECT' , $SHOW_ONLY_GROUPS )) {
echo " REDIRECT $tests ( $tested [ $tested_file ]) done \n " ;
2022-08-12 02:58:15 +08:00
} elseif ( $show_progress ) {
2020-02-03 20:41:31 +08:00
clear_show_test ();
}
2005-12-07 08:03:46 +08:00
}
2020-08-07 02:37:36 +08:00
function show_test ( int $test_idx , string $shortname ) : void
2005-12-07 08:03:46 +08:00
{
2020-02-03 20:41:31 +08:00
global $test_cnt ;
global $line_length ;
2005-12-07 08:03:46 +08:00
2020-02-03 20:41:31 +08:00
$str = " TEST $test_idx / $test_cnt [ $shortname ] \r " ;
$line_length = strlen ( $str );
echo $str ;
flush ();
2005-12-07 08:03:46 +08:00
}
2020-08-07 02:37:36 +08:00
function clear_show_test () : void
run-tests: cs fixes (cleanup)
I used php-cs-fixer to do the cs fixes. The configuration I used is
posted below. The reason I disabled some of the rules is because they
create too much noise and would make it difficult to review. But please
feel free to close this PR and run the php-cs-fixer yourself.
<?php
$config = PhpCsFixer\Config::create();
$config->setRiskyAllowed(false);
$config->setRules([
'@PSR2' => true,
'@Symfony' => true,
'array_syntax' => false,
'binary_operator_spaces' => false,
'blank_line_before_statement' => false,
'concat_space' => false,
'increment_style' => false,
'phpdoc_align' => false,
'single_quote' => false,
'trailing_comma_in_multiline_array' => false,
'unary_operator_spaces' => false,
'yoda_style' => false,
]);
$finder = PhpCsFixer\Finder::create();
$finder->in(getcwd());
$finder->exclude('Zend');
$finder->exclude('build');
$finder->exclude('ext');
$finder->exclude('pear');
$finder->exclude('sapi');
$finder->exclude('scripts');
$finder->exclude('win32');
$config->setFinder($finder);
return $config;
Closes GH-5557.
2020-05-13 00:24:21 +08:00
{
2020-02-03 20:41:31 +08:00
global $line_length ;
// Parallel testing
global $workerID ;
2020-11-30 23:45:48 +08:00
if ( ! $workerID && isset ( $line_length )) {
2020-02-03 20:41:31 +08:00
// Write over the last line to avoid random trailing chars on next echo
echo str_repeat ( " " , $line_length ), " \r " ;
}
2019-02-18 02:47:22 +08:00
}
run-tests: cs fixes (cleanup)
I used php-cs-fixer to do the cs fixes. The configuration I used is
posted below. The reason I disabled some of the rules is because they
create too much noise and would make it difficult to review. But please
feel free to close this PR and run the php-cs-fixer yourself.
<?php
$config = PhpCsFixer\Config::create();
$config->setRiskyAllowed(false);
$config->setRules([
'@PSR2' => true,
'@Symfony' => true,
'array_syntax' => false,
'binary_operator_spaces' => false,
'blank_line_before_statement' => false,
'concat_space' => false,
'increment_style' => false,
'phpdoc_align' => false,
'single_quote' => false,
'trailing_comma_in_multiline_array' => false,
'unary_operator_spaces' => false,
'yoda_style' => false,
]);
$finder = PhpCsFixer\Finder::create();
$finder->in(getcwd());
$finder->exclude('Zend');
$finder->exclude('build');
$finder->exclude('ext');
$finder->exclude('pear');
$finder->exclude('sapi');
$finder->exclude('scripts');
$finder->exclude('win32');
$config->setFinder($finder);
return $config;
Closes GH-5557.
2020-05-13 00:24:21 +08:00
function parse_conflicts ( string $text ) : array
{
2020-02-03 20:41:31 +08:00
// Strip comments
$text = preg_replace ( '/#.*/' , '' , $text );
return array_map ( 'trim' , explode ( " \n " , trim ( $text )));
2019-02-21 16:35:30 +08:00
}
2020-08-07 02:37:36 +08:00
function show_result (
string $result ,
string $tested ,
string $tested_file ,
2023-12-07 09:24:31 +08:00
string $extra = ''
2020-08-07 02:37:36 +08:00
) : void {
2022-08-12 02:58:15 +08:00
global $SHOW_ONLY_GROUPS , $colorize , $show_progress ;
2020-02-03 20:41:31 +08:00
if ( ! $SHOW_ONLY_GROUPS || in_array ( $result , $SHOW_ONLY_GROUPS )) {
2020-08-01 02:02:59 +08:00
if ( $colorize ) {
/* Use ANSI escape codes for coloring test result */
switch ( $result ) {
case 'PASS' : // Light Green
$color = " \ e[1;32m { $result } \ e[0m " ; break ;
case 'FAIL' :
case 'BORK' :
case 'LEAK' :
2021-02-17 19:39:27 +08:00
case 'LEAK&FAIL' :
2020-08-01 02:02:59 +08:00
// Light Red
$color = " \ e[1;31m { $result } \ e[0m " ; break ;
default : // Yellow
$color = " \ e[1;33m { $result } \ e[0m " ; break ;
}
echo " $color $tested [ $tested_file ] $extra\n " ;
} else {
echo " $result $tested [ $tested_file ] $extra\n " ;
}
2022-08-12 02:58:15 +08:00
} elseif ( $show_progress ) {
2020-02-03 20:41:31 +08:00
clear_show_test ();
}
2005-12-07 08:03:46 +08:00
}
2021-02-10 20:17:03 +08:00
class BorkageException extends Exception
{
}
2021-02-06 04:31:31 +08:00
class JUnit
2018-06-28 00:14:03 +08:00
{
2021-02-06 04:31:31 +08:00
private bool $enabled = true ;
private $fp = null ;
private array $suites = [];
private array $rootSuite = self :: EMPTY_SUITE + [ 'name' => 'php' ];
private const EMPTY_SUITE = [
2020-02-03 20:41:31 +08:00
'test_total' => 0 ,
'test_pass' => 0 ,
'test_fail' => 0 ,
'test_error' => 0 ,
'test_skip' => 0 ,
'test_warn' => 0 ,
2021-02-06 04:31:31 +08:00
'files' => [],
2020-02-03 20:41:31 +08:00
'execution_time' => 0 ,
2020-08-10 03:45:04 +08:00
];
2012-03-22 05:59:02 +08:00
2022-06-07 20:11:28 +08:00
/**
* @ throws Exception
*/
2021-02-06 04:31:31 +08:00
public function __construct ( array $env , int $workerID )
{
// Check whether a junit log is wanted.
$fileName = $env [ 'TEST_PHP_JUNIT' ] ? ? null ;
if ( empty ( $fileName )) {
$this -> enabled = false ;
return ;
}
if ( ! $workerID && ! $this -> fp = fopen ( $fileName , 'w' )) {
throw new Exception ( " Failed to open $fileName for writing. " );
}
run-tests: cs fixes (cleanup)
I used php-cs-fixer to do the cs fixes. The configuration I used is
posted below. The reason I disabled some of the rules is because they
create too much noise and would make it difficult to review. But please
feel free to close this PR and run the php-cs-fixer yourself.
<?php
$config = PhpCsFixer\Config::create();
$config->setRiskyAllowed(false);
$config->setRules([
'@PSR2' => true,
'@Symfony' => true,
'array_syntax' => false,
'binary_operator_spaces' => false,
'blank_line_before_statement' => false,
'concat_space' => false,
'increment_style' => false,
'phpdoc_align' => false,
'single_quote' => false,
'trailing_comma_in_multiline_array' => false,
'unary_operator_spaces' => false,
'yoda_style' => false,
]);
$finder = PhpCsFixer\Finder::create();
$finder->in(getcwd());
$finder->exclude('Zend');
$finder->exclude('build');
$finder->exclude('ext');
$finder->exclude('pear');
$finder->exclude('sapi');
$finder->exclude('scripts');
$finder->exclude('win32');
$config->setFinder($finder);
return $config;
Closes GH-5557.
2020-05-13 00:24:21 +08:00
}
2020-02-03 20:41:31 +08:00
2021-02-06 04:31:31 +08:00
public function isEnabled () : bool
{
return $this -> enabled ;
}
2011-11-27 04:18:03 +08:00
2021-02-11 06:56:59 +08:00
public function clear () : void
{
$this -> rootSuite = self :: EMPTY_SUITE + [ 'name' => 'php' ];
$this -> suites = [];
}
2021-02-06 04:31:31 +08:00
public function saveXML () : void
{
if ( ! $this -> enabled ) {
return ;
}
$xml = '<' . '?' . 'xml version="1.0" encoding="UTF-8"' . '?' . '>' . PHP_EOL ;
$xml .= sprintf (
'<testsuites name="%s" tests="%s" failures="%d" errors="%d" skip="%d" time="%s">' . PHP_EOL ,
$this -> rootSuite [ 'name' ],
$this -> rootSuite [ 'test_total' ],
$this -> rootSuite [ 'test_fail' ],
$this -> rootSuite [ 'test_error' ],
$this -> rootSuite [ 'test_skip' ],
$this -> rootSuite [ 'execution_time' ]
2020-02-03 20:41:31 +08:00
);
2021-02-06 04:31:31 +08:00
$xml .= $this -> getSuitesXML ();
$xml .= '</testsuites>' ;
fwrite ( $this -> fp , $xml );
}
2020-02-03 20:41:31 +08:00
2023-10-31 21:56:06 +08:00
private function getSuitesXML () : string
2021-02-06 04:31:31 +08:00
{
$result = '' ;
foreach ( $this -> suites as $suite_name => $suite ) {
$result .= sprintf (
'<testsuite name="%s" tests="%s" failures="%d" errors="%d" skip="%d" time="%s">' . PHP_EOL ,
$suite [ 'name' ],
$suite [ 'test_total' ],
$suite [ 'test_fail' ],
$suite [ 'test_error' ],
$suite [ 'test_skip' ],
$suite [ 'execution_time' ]
);
if ( ! empty ( $suite_name )) {
foreach ( $suite [ 'files' ] as $file ) {
$result .= $this -> rootSuite [ 'files' ][ $file ][ 'xml' ];
}
2020-02-03 20:41:31 +08:00
}
2021-02-06 04:31:31 +08:00
$result .= '</testsuite>' . PHP_EOL ;
2020-02-03 20:41:31 +08:00
}
2021-02-06 04:31:31 +08:00
return $result ;
2020-02-03 20:41:31 +08:00
}
2021-02-06 04:31:31 +08:00
public function markTestAs (
$type ,
string $file_name ,
string $test_name ,
? int $time = null ,
string $message = '' ,
string $details = ''
) : void {
if ( ! $this -> enabled ) {
return ;
}
2012-03-22 05:59:02 +08:00
2021-02-06 04:31:31 +08:00
$suite = $this -> getSuiteName ( $file_name );
2020-02-03 20:41:31 +08:00
2021-02-06 04:31:31 +08:00
$this -> record ( $suite , 'test_total' );
2020-02-03 20:41:31 +08:00
2021-02-06 04:31:31 +08:00
$time = $time ? ? $this -> getTimer ( $file_name );
$this -> record ( $suite , 'execution_time' , $time );
2020-02-03 20:41:31 +08:00
2021-02-06 04:31:31 +08:00
$escaped_details = htmlspecialchars ( $details , ENT_QUOTES , 'UTF-8' );
$escaped_details = preg_replace_callback ( '/[\0-\x08\x0B\x0C\x0E-\x1F]/' , function ( $c ) {
return sprintf ( '[[0x%02x]]' , ord ( $c [ 0 ]));
}, $escaped_details );
$escaped_message = htmlspecialchars ( $message , ENT_QUOTES , 'UTF-8' );
2020-02-03 20:41:31 +08:00
2021-02-06 04:31:31 +08:00
$escaped_test_name = htmlspecialchars ( $file_name . ' (' . $test_name . ')' , ENT_QUOTES );
$this -> rootSuite [ 'files' ][ $file_name ][ 'xml' ] = " <testcase name=' $escaped_test_name ' time=' $time '> \n " ;
2020-02-03 20:41:31 +08:00
2021-02-06 04:31:31 +08:00
if ( is_array ( $type )) {
$output_type = $type [ 0 ] . 'ED' ;
$temp = array_intersect ([ 'XFAIL' , 'XLEAK' , 'FAIL' , 'WARN' ], $type );
$type = reset ( $temp );
} else {
$output_type = $type . 'ED' ;
}
if ( 'PASS' == $type || 'XFAIL' == $type || 'XLEAK' == $type ) {
$this -> record ( $suite , 'test_pass' );
} elseif ( 'BORK' == $type ) {
$this -> record ( $suite , 'test_error' );
$this -> rootSuite [ 'files' ][ $file_name ][ 'xml' ] .= " <error type=' $output_type ' message=' $escaped_message '/> \n " ;
} elseif ( 'SKIP' == $type ) {
$this -> record ( $suite , 'test_skip' );
$this -> rootSuite [ 'files' ][ $file_name ][ 'xml' ] .= " <skipped> $escaped_message </skipped> \n " ;
} elseif ( 'WARN' == $type ) {
$this -> record ( $suite , 'test_warn' );
$this -> rootSuite [ 'files' ][ $file_name ][ 'xml' ] .= " <warning> $escaped_message </warning> \n " ;
} elseif ( 'FAIL' == $type ) {
$this -> record ( $suite , 'test_fail' );
$this -> rootSuite [ 'files' ][ $file_name ][ 'xml' ] .= " <failure type=' $output_type ' message=' $escaped_message '> $escaped_details </failure> \n " ;
} else {
$this -> record ( $suite , 'test_error' );
$this -> rootSuite [ 'files' ][ $file_name ][ 'xml' ] .= " <error type=' $output_type ' message=' $escaped_message '> $escaped_details </error> \n " ;
}
2020-02-03 20:41:31 +08:00
2021-02-06 04:31:31 +08:00
$this -> rootSuite [ 'files' ][ $file_name ][ 'xml' ] .= " </testcase> \n " ;
2020-02-03 20:41:31 +08:00
}
2021-02-06 04:31:31 +08:00
private function record ( string $suite , string $param , $value = 1 ) : void
{
$this -> rootSuite [ $param ] += $value ;
$this -> suites [ $suite ][ $param ] += $value ;
}
2012-03-22 05:59:02 +08:00
2021-02-06 04:31:31 +08:00
private function getTimer ( string $file_name )
{
if ( ! $this -> enabled ) {
return 0 ;
}
2012-03-22 05:59:02 +08:00
2021-02-06 04:31:31 +08:00
if ( isset ( $this -> rootSuite [ 'files' ][ $file_name ][ 'total' ])) {
return number_format ( $this -> rootSuite [ 'files' ][ $file_name ][ 'total' ], 4 );
}
2012-03-22 05:59:02 +08:00
run-tests: cs fixes (cleanup)
I used php-cs-fixer to do the cs fixes. The configuration I used is
posted below. The reason I disabled some of the rules is because they
create too much noise and would make it difficult to review. But please
feel free to close this PR and run the php-cs-fixer yourself.
<?php
$config = PhpCsFixer\Config::create();
$config->setRiskyAllowed(false);
$config->setRules([
'@PSR2' => true,
'@Symfony' => true,
'array_syntax' => false,
'binary_operator_spaces' => false,
'blank_line_before_statement' => false,
'concat_space' => false,
'increment_style' => false,
'phpdoc_align' => false,
'single_quote' => false,
'trailing_comma_in_multiline_array' => false,
'unary_operator_spaces' => false,
'yoda_style' => false,
]);
$finder = PhpCsFixer\Finder::create();
$finder->in(getcwd());
$finder->exclude('Zend');
$finder->exclude('build');
$finder->exclude('ext');
$finder->exclude('pear');
$finder->exclude('sapi');
$finder->exclude('scripts');
$finder->exclude('win32');
$config->setFinder($finder);
return $config;
Closes GH-5557.
2020-05-13 00:24:21 +08:00
return 0 ;
}
2012-03-22 05:59:02 +08:00
2021-02-06 04:31:31 +08:00
public function startTimer ( string $file_name ) : void
{
if ( ! $this -> enabled ) {
return ;
}
2012-03-22 05:59:02 +08:00
2021-02-06 04:31:31 +08:00
if ( ! isset ( $this -> rootSuite [ 'files' ][ $file_name ][ 'start' ])) {
$this -> rootSuite [ 'files' ][ $file_name ][ 'start' ] = microtime ( true );
2012-03-22 05:59:02 +08:00
2021-02-06 04:31:31 +08:00
$suite = $this -> getSuiteName ( $file_name );
$this -> initSuite ( $suite );
$this -> suites [ $suite ][ 'files' ][ $file_name ] = $file_name ;
}
run-tests: cs fixes (cleanup)
I used php-cs-fixer to do the cs fixes. The configuration I used is
posted below. The reason I disabled some of the rules is because they
create too much noise and would make it difficult to review. But please
feel free to close this PR and run the php-cs-fixer yourself.
<?php
$config = PhpCsFixer\Config::create();
$config->setRiskyAllowed(false);
$config->setRules([
'@PSR2' => true,
'@Symfony' => true,
'array_syntax' => false,
'binary_operator_spaces' => false,
'blank_line_before_statement' => false,
'concat_space' => false,
'increment_style' => false,
'phpdoc_align' => false,
'single_quote' => false,
'trailing_comma_in_multiline_array' => false,
'unary_operator_spaces' => false,
'yoda_style' => false,
]);
$finder = PhpCsFixer\Finder::create();
$finder->in(getcwd());
$finder->exclude('Zend');
$finder->exclude('build');
$finder->exclude('ext');
$finder->exclude('pear');
$finder->exclude('sapi');
$finder->exclude('scripts');
$finder->exclude('win32');
$config->setFinder($finder);
return $config;
Closes GH-5557.
2020-05-13 00:24:21 +08:00
}
2012-03-22 05:59:02 +08:00
2021-02-06 04:31:31 +08:00
public function getSuiteName ( string $file_name ) : string
{
return $this -> pathToClassName ( dirname ( $file_name ));
2020-02-03 20:41:31 +08:00
}
2012-03-22 05:59:02 +08:00
2021-02-06 04:31:31 +08:00
private function pathToClassName ( string $file_name ) : string
{
if ( ! $this -> enabled ) {
return '' ;
}
2020-02-03 20:41:31 +08:00
2021-02-06 04:31:31 +08:00
$ret = $this -> rootSuite [ 'name' ];
$_tmp = [];
2020-02-03 20:41:31 +08:00
2021-02-06 04:31:31 +08:00
// lookup whether we're in the PHP source checkout
$max = 5 ;
if ( is_file ( $file_name )) {
$dir = dirname ( realpath ( $file_name ));
} else {
$dir = realpath ( $file_name );
2020-02-03 20:41:31 +08:00
}
2021-02-06 04:31:31 +08:00
do {
array_unshift ( $_tmp , basename ( $dir ));
$chk = $dir . DIRECTORY_SEPARATOR . " main " . DIRECTORY_SEPARATOR . " php_version.h " ;
$dir = dirname ( $dir );
} while ( ! file_exists ( $chk ) && -- $max > 0 );
if ( file_exists ( $chk )) {
if ( $max ) {
array_shift ( $_tmp );
}
foreach ( $_tmp as $p ) {
$ret .= " . " . preg_replace ( " ,[^a-z0-9]+,i " , " . " , $p );
}
return $ret ;
2020-02-03 20:41:31 +08:00
}
2021-02-06 04:31:31 +08:00
return $this -> rootSuite [ 'name' ] . '.' . str_replace ([ DIRECTORY_SEPARATOR , '-' ], '.' , $file_name );
2020-02-03 20:41:31 +08:00
}
2021-02-06 04:31:31 +08:00
public function initSuite ( string $suite_name ) : void
{
if ( ! $this -> enabled ) {
return ;
}
2012-03-22 05:59:02 +08:00
2021-02-06 04:31:31 +08:00
if ( ! empty ( $this -> suites [ $suite_name ])) {
return ;
}
2020-02-03 20:41:31 +08:00
2021-02-06 04:31:31 +08:00
$this -> suites [ $suite_name ] = self :: EMPTY_SUITE + [ 'name' => $suite_name ];
2020-02-03 20:41:31 +08:00
}
2022-06-07 20:11:28 +08:00
/**
* @ throws Exception
*/
2021-02-06 04:31:31 +08:00
public function stopTimer ( string $file_name ) : void
{
if ( ! $this -> enabled ) {
return ;
}
2012-03-22 05:59:02 +08:00
2021-02-06 04:31:31 +08:00
if ( ! isset ( $this -> rootSuite [ 'files' ][ $file_name ][ 'start' ])) {
throw new Exception ( " Timer for $file_name was not started! " );
}
2012-03-22 05:59:02 +08:00
2021-02-06 04:31:31 +08:00
if ( ! isset ( $this -> rootSuite [ 'files' ][ $file_name ][ 'total' ])) {
$this -> rootSuite [ 'files' ][ $file_name ][ 'total' ] = 0 ;
}
2012-03-22 05:59:02 +08:00
2021-02-06 04:31:31 +08:00
$start = $this -> rootSuite [ 'files' ][ $file_name ][ 'start' ];
$this -> rootSuite [ 'files' ][ $file_name ][ 'total' ] += microtime ( true ) - $start ;
unset ( $this -> rootSuite [ 'files' ][ $file_name ][ 'start' ]);
2020-02-03 20:41:31 +08:00
}
2012-03-22 05:59:02 +08:00
2021-02-06 04:31:31 +08:00
public function mergeResults ( ? JUnit $other ) : void
{
if ( ! $this -> enabled || ! $other ) {
return ;
}
2011-11-27 04:18:03 +08:00
2021-02-06 04:31:31 +08:00
$this -> mergeSuites ( $this -> rootSuite , $other -> rootSuite );
foreach ( $other -> suites as $name => $suite ) {
if ( ! isset ( $this -> suites [ $name ])) {
$this -> suites [ $name ] = $suite ;
continue ;
}
$this -> mergeSuites ( $this -> suites [ $name ], $suite );
2020-02-03 20:41:31 +08:00
}
2021-02-06 04:31:31 +08:00
}
2020-02-03 20:41:31 +08:00
2021-02-06 04:31:31 +08:00
private function mergeSuites ( array & $dest , array $source ) : void
{
$dest [ 'test_total' ] += $source [ 'test_total' ];
$dest [ 'test_pass' ] += $source [ 'test_pass' ];
$dest [ 'test_fail' ] += $source [ 'test_fail' ];
$dest [ 'test_error' ] += $source [ 'test_error' ];
$dest [ 'test_skip' ] += $source [ 'test_skip' ];
$dest [ 'test_warn' ] += $source [ 'test_warn' ];
$dest [ 'execution_time' ] += $source [ 'execution_time' ];
$dest [ 'files' ] += $source [ 'files' ];
2020-02-03 20:41:31 +08:00
}
2019-05-31 18:38:06 +08:00
}
2021-02-12 01:33:03 +08:00
class SkipCache
{
2021-09-23 22:19:36 +08:00
private bool $enable ;
2021-02-12 01:33:03 +08:00
private bool $keepFile ;
private array $skips = [];
private array $extensions = [];
private int $hits = 0 ;
private int $misses = 0 ;
private int $extHits = 0 ;
private int $extMisses = 0 ;
2021-09-23 22:19:36 +08:00
public function __construct ( bool $enable , bool $keepFile )
2021-02-12 01:33:03 +08:00
{
2021-09-23 22:19:36 +08:00
$this -> enable = $enable ;
2021-02-12 01:33:03 +08:00
$this -> keepFile = $keepFile ;
}
public function checkSkip ( string $php , string $code , string $checkFile , string $tempFile , array $env ) : string
{
// Extension tests frequently use something like <?php require 'skipif.inc';
// for skip checks. This forces us to cache per directory to avoid pollution.
$dir = dirname ( $checkFile );
$key = " $php => $dir " ;
if ( isset ( $this -> skips [ $key ][ $code ])) {
$this -> hits ++ ;
if ( $this -> keepFile ) {
save_text ( $checkFile , $code , $tempFile );
}
return $this -> skips [ $key ][ $code ];
}
save_text ( $checkFile , $code , $tempFile );
$result = trim ( system_with_timeout ( " $php \" $checkFile\ " " , $env ));
2021-09-23 22:19:36 +08:00
if ( strpos ( $result , 'nocache' ) === 0 ) {
2021-03-04 23:32:58 +08:00
$result = '' ;
2021-09-23 22:19:36 +08:00
} else if ( $this -> enable ) {
$this -> skips [ $key ][ $code ] = $result ;
2021-03-04 23:26:47 +08:00
}
2021-02-12 01:33:03 +08:00
$this -> misses ++ ;
if ( ! $this -> keepFile ) {
@ unlink ( $checkFile );
}
return $result ;
}
public function getExtensions ( string $php ) : array
{
if ( isset ( $this -> extensions [ $php ])) {
$this -> extHits ++ ;
return $this -> extensions [ $php ];
}
2022-07-10 01:04:59 +08:00
$extDir = shell_exec ( " $php -d display_errors=0 -r \" echo ini_get('extension_dir'); \" " );
2022-09-22 18:14:00 +08:00
$extensionsNames = explode ( " , " , shell_exec ( " $php -d display_errors=0 -r \" echo implode(',', get_loaded_extensions()); \" " ));
$extensions = remap_loaded_extensions_names ( $extensionsNames );
2021-02-12 01:33:03 +08:00
$result = [ $extDir , $extensions ];
$this -> extensions [ $php ] = $result ;
$this -> extMisses ++ ;
return $result ;
}
}
2018-06-28 00:14:03 +08:00
class RuntestsValgrind
{
2023-10-31 21:56:06 +08:00
protected string $header ;
protected bool $version_3_8_0 ;
protected string $tool ;
2020-02-03 20:41:31 +08:00
2020-08-07 02:37:36 +08:00
public function getHeader () : string
2020-02-03 20:41:31 +08:00
{
return $this -> header ;
}
public function __construct ( array $environment , string $tool = 'memcheck' )
{
$this -> tool = $tool ;
$header = system_with_timeout ( " valgrind --tool= { $this -> tool } --version " , $environment );
if ( ! $header ) {
error ( " Valgrind returned no version info for { $this -> tool } , cannot proceed. \n " .
2023-10-31 21:56:06 +08:00
" Please check if Valgrind is installed and the tool is named correctly. " );
2020-02-03 20:41:31 +08:00
}
$count = 0 ;
$version = preg_replace ( " /valgrind-( \ d+) \ .( \ d+) \ .( \ d+)([. \ w_-]+)?( \ s+)/ " , '$1.$2.$3' , $header , 1 , $count );
if ( $count != 1 ) {
error ( " Valgrind returned invalid version info ( \" { $header } \" ) for { $this -> tool } , cannot proceed. " );
}
2023-12-07 09:24:31 +08:00
$this -> header = sprintf ( " %s (%s) " , trim ( $header ), $this -> tool );
2020-02-03 20:41:31 +08:00
$this -> version_3_8_0 = version_compare ( $version , '3.8.0' , '>=' );
}
2020-08-07 02:37:36 +08:00
public function wrapCommand ( string $cmd , string $memcheck_filename , bool $check_all ) : string
2020-02-03 20:41:31 +08:00
{
$vcmd = " valgrind -q --tool= { $this -> tool } --trace-children=yes " ;
if ( $check_all ) {
$vcmd .= ' --smc-check=all' ;
}
/* --vex-iropt-register-updates=allregs-at-mem-access is necessary for phpdbg watchpoint tests */
if ( $this -> version_3_8_0 ) {
return " $vcmd --vex-iropt-register-updates=allregs-at-mem-access --log-file= $memcheck_filename $cmd " ;
}
2021-02-25 18:15:03 +08:00
return " $vcmd --vex-iropt-precise-memory-exns=yes --log-file= $memcheck_filename $cmd " ;
2020-02-03 20:41:31 +08:00
}
2017-08-24 02:44:36 +08:00
}
2019-02-16 08:05:04 +08:00
2021-02-10 20:17:03 +08:00
class TestFile
{
private string $fileName ;
private array $sections = [ 'TEST' => '' ];
private const ALLOWED_SECTIONS = [
'EXPECT' , 'EXPECTF' , 'EXPECTREGEX' , 'EXPECTREGEX_EXTERNAL' , 'EXPECT_EXTERNAL' , 'EXPECTF_EXTERNAL' , 'EXPECTHEADERS' ,
'POST' , 'POST_RAW' , 'GZIP_POST' , 'DEFLATE_POST' , 'PUT' , 'GET' , 'COOKIE' , 'ARGS' ,
'FILE' , 'FILEEOF' , 'FILE_EXTERNAL' , 'REDIRECTTEST' ,
'CAPTURE_STDIO' , 'STDIN' , 'CGI' , 'PHPDBG' ,
'INI' , 'ENV' , 'EXTENSIONS' ,
'SKIPIF' , 'XFAIL' , 'XLEAK' , 'CLEAN' ,
'CREDITS' , 'DESCRIPTION' , 'CONFLICTS' , 'WHITESPACE_SENSITIVE' ,
2023-05-26 18:08:28 +08:00
'FLAKY' ,
2021-02-10 20:17:03 +08:00
];
2022-06-07 20:11:28 +08:00
/**
* @ throws BorkageException
*/
2021-02-10 20:17:03 +08:00
public function __construct ( string $fileName , bool $inRedirect )
{
$this -> fileName = $fileName ;
$this -> readFile ();
$this -> validateAndProcess ( $inRedirect );
}
public function hasSection ( string $name ) : bool
{
return isset ( $this -> sections [ $name ]);
}
public function hasAnySections ( string ... $names ) : bool
{
foreach ( $names as $section ) {
if ( isset ( $this -> sections [ $section ])) {
return true ;
}
}
return false ;
}
public function sectionNotEmpty ( string $name ) : bool
{
return ! empty ( $this -> sections [ $name ]);
}
2022-06-07 20:11:28 +08:00
/**
* @ throws Exception
*/
2021-02-10 20:17:03 +08:00
public function getSection ( string $name ) : string
{
if ( ! isset ( $this -> sections [ $name ])) {
throw new Exception ( " Section $name not found " );
}
return $this -> sections [ $name ];
}
public function getName () : string
{
return trim ( $this -> getSection ( 'TEST' ));
}
public function isCGI () : bool
{
2022-07-20 19:19:58 +08:00
return $this -> hasSection ( 'CGI' )
2021-02-10 20:17:03 +08:00
|| $this -> sectionNotEmpty ( 'GET' )
|| $this -> sectionNotEmpty ( 'POST' )
|| $this -> sectionNotEmpty ( 'GZIP_POST' )
|| $this -> sectionNotEmpty ( 'DEFLATE_POST' )
|| $this -> sectionNotEmpty ( 'POST_RAW' )
|| $this -> sectionNotEmpty ( 'PUT' )
|| $this -> sectionNotEmpty ( 'COOKIE' )
|| $this -> sectionNotEmpty ( 'EXPECTHEADERS' );
}
/**
* TODO Refactor to make it not needed
*/
public function setSection ( string $name , string $value ) : void
{
$this -> sections [ $name ] = $value ;
}
/**
* Load the sections of the test file
2022-06-07 20:11:28 +08:00
* @ throws BorkageException
2021-02-10 20:17:03 +08:00
*/
private function readFile () : void
{
$fp = fopen ( $this -> fileName , " rb " ) or error ( " Cannot open test file: { $this -> fileName } " );
if ( ! feof ( $fp )) {
$line = fgets ( $fp );
if ( $line === false ) {
throw new BorkageException ( " cannot read test " );
}
} else {
throw new BorkageException ( " empty test [ { $this -> fileName } ] " );
}
if ( strncmp ( '--TEST--' , $line , 8 )) {
throw new BorkageException ( " tests must start with --TEST-- [ { $this -> fileName } ] " );
}
$section = 'TEST' ;
$secfile = false ;
$secdone = false ;
while ( ! feof ( $fp )) {
$line = fgets ( $fp );
if ( $line === false ) {
break ;
}
// Match the beginning of a section.
if ( preg_match ( '/^--([_A-Z]+)--/' , $line , $r )) {
2023-12-07 09:24:31 +08:00
$section = $r [ 1 ];
2021-02-10 20:17:03 +08:00
if ( isset ( $this -> sections [ $section ]) && $this -> sections [ $section ]) {
throw new BorkageException ( " duplicated $section section " );
}
// check for unknown sections
if ( ! in_array ( $section , self :: ALLOWED_SECTIONS )) {
throw new BorkageException ( 'Unknown section "' . $section . '"' );
}
$this -> sections [ $section ] = '' ;
$secfile = $section == 'FILE' || $section == 'FILEEOF' || $section == 'FILE_EXTERNAL' ;
$secdone = false ;
continue ;
}
// Add to the section text.
if ( ! $secdone ) {
$this -> sections [ $section ] .= $line ;
}
// End of actual test?
if ( $secfile && preg_match ( '/^===DONE===\s*$/' , $line )) {
$secdone = true ;
}
}
fclose ( $fp );
}
2022-06-07 20:11:28 +08:00
/**
* @ throws BorkageException
*/
2021-02-10 20:17:03 +08:00
private function validateAndProcess ( bool $inRedirect ) : void
{
// the redirect section allows a set of tests to be reused outside of
// a given test dir
if ( $this -> hasSection ( 'REDIRECTTEST' )) {
if ( $inRedirect ) {
throw new BorkageException ( " Can't redirect a test from within a redirected test " );
}
return ;
}
if ( ! $this -> hasSection ( 'PHPDBG' ) && $this -> hasSection ( 'FILE' ) + $this -> hasSection ( 'FILEEOF' ) + $this -> hasSection ( 'FILE_EXTERNAL' ) != 1 ) {
throw new BorkageException ( " missing section --FILE-- " );
}
if ( $this -> hasSection ( 'FILEEOF' )) {
$this -> sections [ 'FILE' ] = preg_replace ( " /[ \r \n ]+ $ / " , '' , $this -> sections [ 'FILEEOF' ]);
unset ( $this -> sections [ 'FILEEOF' ]);
}
foreach ([ 'FILE' , 'EXPECT' , 'EXPECTF' , 'EXPECTREGEX' ] as $prefix ) {
// For grepping: FILE_EXTERNAL, EXPECT_EXTERNAL, EXPECTF_EXTERNAL, EXPECTREGEX_EXTERNAL
$key = $prefix . '_EXTERNAL' ;
if ( $this -> hasSection ( $key )) {
// don't allow tests to retrieve files from anywhere but this subdirectory
$dir = dirname ( $this -> fileName );
$fileName = $dir . '/' . trim ( str_replace ( '..' , '' , $this -> getSection ( $key )));
if ( file_exists ( $fileName )) {
$this -> sections [ $prefix ] = file_get_contents ( $fileName );
} else {
throw new BorkageException ( " could not load -- " . $key . " -- " . $dir . '/' . trim ( $fileName ));
}
}
}
if (( $this -> hasSection ( 'EXPECT' ) + $this -> hasSection ( 'EXPECTF' ) + $this -> hasSection ( 'EXPECTREGEX' )) != 1 ) {
throw new BorkageException ( " missing section --EXPECT--, --EXPECTF-- or --EXPECTREGEX-- " );
}
if ( $this -> hasSection ( 'PHPDBG' ) && ! $this -> hasSection ( 'STDIN' )) {
$this -> sections [ 'STDIN' ] = $this -> sections [ 'PHPDBG' ] . " \n " ;
}
}
}
2020-08-07 02:37:36 +08:00
function init_output_buffers () : void
2020-05-21 03:20:06 +08:00
{
// Delete as much output buffers as possible.
while ( @ ob_end_clean ()) {
}
if ( ob_get_level ()) {
echo " Not all buffers were deleted. \n " ;
}
}
2020-08-07 02:37:36 +08:00
function check_proc_open_function_exists () : void
2020-05-21 03:20:06 +08:00
{
if ( ! function_exists ( 'proc_open' )) {
echo <<< NO_PROC_OPEN_ERROR
+-----------------------------------------------------------+
| ! ERROR ! |
| The test - suite requires that proc_open () is available . |
| Please check if you disabled it in php . ini . |
+-----------------------------------------------------------+
NO_PROC_OPEN_ERROR ;
exit ( 1 );
}
}
2021-07-16 20:39:47 +08:00
function bless_failed_tests ( array $failedTests ) : void
{
if ( empty ( $failedTests )) {
return ;
}
$args = [
PHP_BINARY ,
__DIR__ . '/scripts/dev/bless_tests.php' ,
];
foreach ( $failedTests as $test ) {
$args [] = $test [ 'name' ];
}
proc_open ( $args , [], $pipes );
}
2023-03-18 07:08:11 +08:00
/*
* BSD 3 - Clause License
*
* Copyright ( c ) 2002 - 2023 , Sebastian Bergmann
* All rights reserved .
*
* This file is part of sebastian / diff .
* https :// github . com / sebastianbergmann / diff
*/
final class Differ
{
public const OLD = 0 ;
public const ADDED = 1 ;
public const REMOVED = 2 ;
2023-10-31 00:19:43 +08:00
private DiffOutputBuilder $outputBuilder ;
2023-03-18 07:08:11 +08:00
private $isEqual ;
public function __construct ( callable $isEqual )
{
$this -> outputBuilder = new DiffOutputBuilder ;
$this -> isEqual = $isEqual ;
}
public function diff ( array $from , array $to ) : string
{
$diff = $this -> diffToArray ( $from , $to );
return $this -> outputBuilder -> getDiff ( $diff );
}
public function diffToArray ( array $from , array $to ) : array
{
$fromLine = 1 ;
$toLine = 1 ;
[ $from , $to , $start , $end ] = $this -> getArrayDiffParted ( $from , $to );
$common = $this -> calculateCommonSubsequence ( array_values ( $from ), array_values ( $to ));
$diff = [];
foreach ( $start as $token ) {
$diff [] = [ $token , self :: OLD ];
$fromLine ++ ;
$toLine ++ ;
}
reset ( $from );
reset ( $to );
foreach ( $common as $token ) {
2023-04-01 21:44:46 +08:00
while ( ! empty ( $from ) && ! ( $this -> isEqual )( reset ( $from ), $token )) {
2023-03-18 07:08:11 +08:00
$diff [] = [ array_shift ( $from ), self :: REMOVED , $fromLine ++ ];
}
2023-04-01 21:44:46 +08:00
while ( ! empty ( $to ) && ! ( $this -> isEqual )( $token , reset ( $to ))) {
2023-03-18 07:08:11 +08:00
$diff [] = [ array_shift ( $to ), self :: ADDED , $toLine ++ ];
}
$diff [] = [ $token , self :: OLD ];
$fromLine ++ ;
$toLine ++ ;
array_shift ( $from );
array_shift ( $to );
}
while (( $token = array_shift ( $from )) !== null ) {
$diff [] = [ $token , self :: REMOVED , $fromLine ++ ];
}
while (( $token = array_shift ( $to )) !== null ) {
$diff [] = [ $token , self :: ADDED , $toLine ++ ];
}
foreach ( $end as $token ) {
$diff [] = [ $token , self :: OLD ];
}
return $diff ;
}
private function getArrayDiffParted ( array & $from , array & $to ) : array
{
$start = [];
$end = [];
reset ( $to );
foreach ( $from as $k => $v ) {
$toK = key ( $to );
if (( $this -> isEqual )( $toK , $k ) && ( $this -> isEqual )( $v , $to [ $k ])) {
$start [ $k ] = $v ;
unset ( $from [ $k ], $to [ $k ]);
} else {
break ;
}
}
end ( $from );
end ( $to );
do {
$fromK = key ( $from );
$toK = key ( $to );
2023-03-23 23:04:17 +08:00
if ( null === $fromK || null === $toK || ! ( $this -> isEqual )( current ( $from ), current ( $to ))) {
2023-03-18 07:08:11 +08:00
break ;
}
prev ( $from );
prev ( $to );
$end = [ $fromK => $from [ $fromK ]] + $end ;
unset ( $from [ $fromK ], $to [ $toK ]);
} while ( true );
return [ $from , $to , $start , $end ];
}
public function calculateCommonSubsequence ( array $from , array $to ) : array
{
$cFrom = count ( $from );
$cTo = count ( $to );
if ( $cFrom === 0 ) {
return [];
}
if ( $cFrom === 1 ) {
2023-03-27 23:39:52 +08:00
foreach ( $to as $toV ) {
if (( $this -> isEqual )( $from [ 0 ], $toV )) {
2024-01-07 00:18:43 +08:00
return [ $toV ];
2023-03-27 23:39:52 +08:00
}
2023-03-18 07:08:11 +08:00
}
return [];
}
$i = ( int ) ( $cFrom / 2 );
$fromStart = array_slice ( $from , 0 , $i );
$fromEnd = array_slice ( $from , $i );
$llB = $this -> commonSubsequenceLength ( $fromStart , $to );
$llE = $this -> commonSubsequenceLength ( array_reverse ( $fromEnd ), array_reverse ( $to ));
$jMax = 0 ;
$max = 0 ;
for ( $j = 0 ; $j <= $cTo ; $j ++ ) {
$m = $llB [ $j ] + $llE [ $cTo - $j ];
if ( $m >= $max ) {
$max = $m ;
$jMax = $j ;
}
}
$toStart = array_slice ( $to , 0 , $jMax );
$toEnd = array_slice ( $to , $jMax );
return array_merge (
$this -> calculateCommonSubsequence ( $fromStart , $toStart ),
$this -> calculateCommonSubsequence ( $fromEnd , $toEnd )
);
}
private function commonSubsequenceLength ( array $from , array $to ) : array
{
$current = array_fill ( 0 , count ( $to ) + 1 , 0 );
$cFrom = count ( $from );
$cTo = count ( $to );
for ( $i = 0 ; $i < $cFrom ; $i ++ ) {
$prev = $current ;
for ( $j = 0 ; $j < $cTo ; $j ++ ) {
if (( $this -> isEqual )( $from [ $i ], $to [ $j ])) {
$current [ $j + 1 ] = $prev [ $j ] + 1 ;
} else {
$current [ $j + 1 ] = max ( $current [ $j ], $prev [ $j + 1 ]);
}
}
}
return $current ;
}
}
class DiffOutputBuilder
{
public function getDiff ( array $diffs ) : string
{
global $context_line_count ;
$i = 0 ;
$number_len = max ( 3 , strlen (( string ) count ( $diffs )));
$line_number_spec = '%0' . $number_len . 'd' ;
$buffer = fopen ( 'php://memory' , 'r+b' );
while ( $i < count ( $diffs )) {
// Find next difference
$next = $i ;
while ( $next < count ( $diffs )) {
if ( $diffs [ $next ][ 1 ] !== Differ :: OLD ) {
break ;
}
$next ++ ;
}
2023-09-17 03:24:26 +08:00
// Found no more differentiating rows, we're done
2023-03-18 07:08:11 +08:00
if ( $next === count ( $diffs )) {
if (( $i - 1 ) < count ( $diffs )) {
fwrite ( $buffer , " -- \n " );
}
break ;
}
// Print separator if necessary
if ( $i < ( $next - $context_line_count )) {
fwrite ( $buffer , " -- \n " );
$i = $next - $context_line_count ;
}
// Print leading context
while ( $i < $next ) {
fwrite ( $buffer , str_repeat ( ' ' , $number_len + 2 ));
fwrite ( $buffer , $diffs [ $i ][ 0 ]);
fwrite ( $buffer , " \n " );
$i ++ ;
}
// Print differences
while ( $i < count ( $diffs ) && $diffs [ $i ][ 1 ] !== Differ :: OLD ) {
fwrite ( $buffer , sprintf ( $line_number_spec , $diffs [ $i ][ 2 ]));
switch ( $diffs [ $i ][ 1 ]) {
case Differ :: ADDED :
fwrite ( $buffer , '+ ' );
break ;
case Differ :: REMOVED :
fwrite ( $buffer , '- ' );
break ;
}
fwrite ( $buffer , $diffs [ $i ][ 0 ]);
fwrite ( $buffer , " \n " );
$i ++ ;
}
// Print trailing context
$afterContext = min ( $i + $context_line_count , count ( $diffs ));
while ( $i < $afterContext && $diffs [ $i ][ 1 ] === Differ :: OLD ) {
fwrite ( $buffer , str_repeat ( ' ' , $number_len + 2 ));
fwrite ( $buffer , $diffs [ $i ][ 0 ]);
fwrite ( $buffer , " \n " );
$i ++ ;
}
}
$diff = stream_get_contents ( $buffer , - 1 , 0 );
fclose ( $buffer );
return $diff ;
}
}
2019-02-16 08:54:16 +08:00
main ();