2000-08-28 03:46:06 +08:00
|
|
|
<?php
|
2000-08-29 17:12:44 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
2004-01-09 01:33:29 +08:00
|
|
|
| PHP Version 5 |
|
2000-08-29 17:12:44 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2005-08-03 22:08:58 +08:00
|
|
|
| Copyright (c) 1997-2005 The PHP Group |
|
2000-08-29 17:12:44 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2003-06-11 04:04:29 +08:00
|
|
|
| This source file is subject to version 3.0 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: |
|
|
|
|
| http://www.php.net/license/3_0.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> |
|
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) |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
2005-07-09 05:46:23 +08:00
|
|
|
/* $Id$ */
|
2002-05-17 05:48:28 +08:00
|
|
|
|
2004-12-16 20:34:32 +08:00
|
|
|
/* Sanity check to ensure that pcre extension needed by this script is available.
|
2003-01-07 23:21:34 +08:00
|
|
|
* In the event it is not, print a nice error message indicating that this script will
|
|
|
|
* not run without it.
|
|
|
|
*/
|
|
|
|
if (!extension_loaded("pcre")) {
|
2003-02-03 20:14:13 +08:00
|
|
|
echo <<<NO_PCRE_ERROR
|
2003-01-07 23:21:34 +08:00
|
|
|
|
|
|
|
+-----------------------------------------------------------+
|
|
|
|
| ! ERROR ! |
|
|
|
|
| The test-suite requires that you have pcre extension |
|
|
|
|
| enabled. To enable this extension either compile your PHP |
|
|
|
|
| with --with-pcre-regex or if you've compiled pcre as a |
|
|
|
|
| shared module load it via php.ini. |
|
|
|
|
+-----------------------------------------------------------+
|
|
|
|
|
|
|
|
NO_PCRE_ERROR;
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2003-02-19 04:07:59 +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;
|
|
|
|
}
|
|
|
|
|
2004-11-29 04:40:16 +08:00
|
|
|
// store current directory
|
|
|
|
$CUR_DIR = getcwd();
|
|
|
|
|
2002-10-23 02:53:56 +08:00
|
|
|
// change into the PHP source directory.
|
|
|
|
|
|
|
|
if (getenv('TEST_PHP_SRCDIR')) {
|
|
|
|
@chdir(getenv('TEST_PHP_SRCDIR'));
|
|
|
|
}
|
|
|
|
|
2002-12-22 20:48:49 +08:00
|
|
|
// Delete some security related environment variables
|
|
|
|
putenv('SSH_CLIENT=deleted');
|
|
|
|
putenv('SSH_AUTH_SOCK=deleted');
|
|
|
|
putenv('SSH_TTY=deleted');
|
2005-02-26 23:23:10 +08:00
|
|
|
putenv('SSH_CONNECTION=deleted');
|
2002-12-22 20:48:49 +08:00
|
|
|
|
2002-10-08 11:00:06 +08:00
|
|
|
$cwd = getcwd();
|
2002-05-17 05:48:28 +08:00
|
|
|
set_time_limit(0);
|
2003-01-26 03:45:11 +08:00
|
|
|
|
|
|
|
// delete as much output buffers as possible
|
2003-01-27 01:17:44 +08:00
|
|
|
while(@ob_end_clean());
|
2003-01-26 03:45:11 +08:00
|
|
|
if (ob_get_level()) echo "Not all buffers were deleted.\n";
|
|
|
|
|
2002-05-19 21:16:03 +08:00
|
|
|
error_reporting(E_ALL);
|
2002-11-02 20:33:24 +08:00
|
|
|
ini_set('magic_quotes_runtime',0); // this would break tests by modifying EXPECT sections
|
2002-05-17 05:48:28 +08:00
|
|
|
|
2002-05-08 15:23:54 +08:00
|
|
|
if (ini_get('safe_mode')) {
|
2002-10-08 11:00:06 +08:00
|
|
|
echo <<< SAFE_MODE_WARNING
|
2002-05-08 15:23:54 +08:00
|
|
|
|
|
|
|
+-----------------------------------------------------------+
|
|
|
|
| ! WARNING ! |
|
|
|
|
| You are running the test-suite with "safe_mode" ENABLED ! |
|
|
|
|
| |
|
|
|
|
| Chances are high that no test will work at all, |
|
|
|
|
| depending on how you configured "safe_mode" ! |
|
|
|
|
+-----------------------------------------------------------+
|
|
|
|
|
|
|
|
|
|
|
|
SAFE_MODE_WARNING;
|
|
|
|
}
|
|
|
|
|
2002-05-17 05:48:28 +08:00
|
|
|
// Don't ever guess at the PHP executable location.
|
|
|
|
// Require the explicit specification.
|
|
|
|
// Otherwise we could end up testing the wrong file!
|
2002-05-08 15:23:54 +08:00
|
|
|
|
2002-10-08 16:39:10 +08:00
|
|
|
if (getenv('TEST_PHP_EXECUTABLE')) {
|
|
|
|
$php = getenv('TEST_PHP_EXECUTABLE');
|
2003-03-30 22:38:48 +08:00
|
|
|
if ($php=='auto') {
|
|
|
|
$php = $cwd.'/sapi/cli/php';
|
2003-04-20 01:22:53 +08:00
|
|
|
putenv("TEST_PHP_EXECUTABLE=$php");
|
2003-03-30 22:38:48 +08:00
|
|
|
}
|
|
|
|
}
|
2003-12-05 21:45:00 +08:00
|
|
|
|
2005-12-30 21:31:48 +08:00
|
|
|
if ($argc !=2 || ($argv[1] != '-h' && $argv[1] != '-help' && $argv != '--help'))
|
|
|
|
{
|
|
|
|
if (empty($php) || !file_exists($php)) {
|
|
|
|
error("environment variable TEST_PHP_EXECUTABLE must be set to specify PHP executable!");
|
|
|
|
}
|
|
|
|
if (function_exists('is_executable') && !@is_executable($php)) {
|
|
|
|
error("invalid PHP executable specified by TEST_PHP_EXECUTABLE = " . $php);
|
|
|
|
}
|
2002-05-19 21:16:03 +08:00
|
|
|
}
|
2000-08-28 03:46:06 +08:00
|
|
|
|
2002-10-08 16:39:10 +08:00
|
|
|
if (getenv('TEST_PHP_LOG_FORMAT')) {
|
|
|
|
$log_format = strtoupper(getenv('TEST_PHP_LOG_FORMAT'));
|
2002-08-27 07:26:46 +08:00
|
|
|
} else {
|
|
|
|
$log_format = 'LEOD';
|
|
|
|
}
|
|
|
|
|
2002-05-17 05:48:28 +08:00
|
|
|
// Check whether a detailed log is wanted.
|
2002-10-08 16:39:10 +08:00
|
|
|
if (getenv('TEST_PHP_DETAILED')) {
|
2005-03-19 06:43:40 +08:00
|
|
|
$DETAILED = getenv('TEST_PHP_DETAILED');
|
2002-05-19 21:24:38 +08:00
|
|
|
} else {
|
2005-03-19 06:43:40 +08:00
|
|
|
$DETAILED = 0;
|
2002-05-19 21:24:38 +08:00
|
|
|
}
|
2001-10-23 19:11:29 +08:00
|
|
|
|
2002-10-14 15:18:23 +08:00
|
|
|
// Check whether user test dirs are requested.
|
|
|
|
if (getenv('TEST_PHP_USER')) {
|
|
|
|
$user_tests = explode (',', getenv('TEST_PHP_USER'));
|
|
|
|
} else {
|
2002-10-14 17:32:36 +08:00
|
|
|
$user_tests = array();
|
2002-10-14 15:18:23 +08:00
|
|
|
}
|
|
|
|
|
2002-11-15 04:12:36 +08:00
|
|
|
$ini_overwrites = array(
|
|
|
|
'output_handler=',
|
2002-11-01 21:03:30 +08:00
|
|
|
'open_basedir=',
|
|
|
|
'safe_mode=0',
|
2002-11-15 04:12:36 +08:00
|
|
|
'disable_functions=',
|
2002-11-01 21:03:30 +08:00
|
|
|
'output_buffering=Off',
|
2003-11-30 21:57:20 +08:00
|
|
|
'error_reporting=4095',
|
2002-11-15 04:12:36 +08:00
|
|
|
'display_errors=1',
|
|
|
|
'log_errors=0',
|
|
|
|
'html_errors=0',
|
2002-11-08 09:11:05 +08:00
|
|
|
'track_errors=1',
|
2002-11-15 04:12:36 +08:00
|
|
|
'report_memleaks=1',
|
2002-11-21 22:56:06 +08:00
|
|
|
'report_zend_debug=0',
|
2003-09-04 22:41:10 +08:00
|
|
|
'docref_root=',
|
2002-11-21 22:56:06 +08:00
|
|
|
'docref_ext=.html',
|
|
|
|
'error_prepend_string=',
|
|
|
|
'error_append_string=',
|
2002-11-01 21:03:30 +08:00
|
|
|
'auto_prepend_file=',
|
|
|
|
'auto_append_file=',
|
2002-11-15 05:02:24 +08:00
|
|
|
'magic_quotes_runtime=0',
|
2002-11-01 21:03:30 +08:00
|
|
|
);
|
2005-10-06 17:42:17 +08:00
|
|
|
|
2005-12-07 08:03:46 +08:00
|
|
|
function write_information($show_html)
|
2005-10-06 17:42:17 +08:00
|
|
|
{
|
|
|
|
global $cwd, $php, $php_info, $user_tests, $ini_overwrites, $pass_options;
|
|
|
|
|
|
|
|
// Get info from php
|
|
|
|
$info_file = realpath(dirname(__FILE__)) . '/run-test-info.php';
|
|
|
|
@unlink($info_file);
|
|
|
|
$php_info = '<?php echo "
|
|
|
|
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 **"); ?>';
|
|
|
|
save_text($info_file, $php_info);
|
|
|
|
$info_params = array();
|
|
|
|
settings2array($ini_overwrites,$info_params);
|
|
|
|
settings2params($info_params);
|
|
|
|
$php_info = `$php $pass_options $info_params $info_file`;
|
|
|
|
@unlink($info_file);
|
|
|
|
define('TESTED_PHP_VERSION', `$php -r 'echo PHP_VERSION;'`);
|
|
|
|
|
|
|
|
// check for extensions that need special handling and regenerate
|
|
|
|
$php_extensions = '<?php echo join(",",get_loaded_extensions()); ?>';
|
|
|
|
save_text($info_file, $php_extensions);
|
|
|
|
$php_extensions = explode(',',`$php $pass_options $info_params $info_file`);
|
|
|
|
$info_params_ex = array(
|
2005-03-19 06:43:40 +08:00
|
|
|
'session' => array('session.auto_start=0'),
|
|
|
|
'zlib' => array('zlib.output_compression=Off'),
|
|
|
|
'xdebug' => array('xdebug.default_enable=0'),
|
|
|
|
);
|
2005-10-06 17:42:17 +08:00
|
|
|
foreach($info_params_ex as $ext => $ini_overwrites_ex) {
|
|
|
|
if (in_array($ext, $php_extensions)) {
|
|
|
|
$ini_overwrites = array_merge($ini_overwrites, $ini_overwrites_ex);
|
|
|
|
}
|
2005-03-19 06:43:40 +08:00
|
|
|
}
|
2005-10-06 17:42:17 +08:00
|
|
|
@unlink($info_file);
|
2003-08-10 12:23:02 +08:00
|
|
|
|
2005-10-06 17:42:17 +08:00
|
|
|
// Write test context information.
|
|
|
|
echo "
|
2002-05-17 05:48:28 +08:00
|
|
|
=====================================================================
|
2002-10-08 11:00:06 +08:00
|
|
|
CWD : $cwd
|
2002-10-30 18:42:55 +08:00
|
|
|
PHP : $php $php_info
|
2002-10-14 15:18:23 +08:00
|
|
|
Extra dirs : ";
|
2005-10-06 17:42:17 +08:00
|
|
|
foreach ($user_tests as $test_dir) {
|
|
|
|
echo "{$test_dir}\n ";
|
|
|
|
}
|
|
|
|
echo "
|
2002-05-17 05:48:28 +08:00
|
|
|
=====================================================================
|
|
|
|
";
|
2003-05-24 06:01:38 +08:00
|
|
|
}
|
2000-08-28 03:46:06 +08:00
|
|
|
|
2002-05-17 05:48:28 +08:00
|
|
|
// Determine the tests to be run.
|
2001-03-21 14:04:36 +08:00
|
|
|
|
2002-05-17 05:48:28 +08:00
|
|
|
$test_files = array();
|
2005-10-06 17:42:17 +08:00
|
|
|
$redir_tests = array();
|
2002-05-17 05:48:28 +08:00
|
|
|
$test_results = array();
|
2005-12-07 08:03:46 +08:00
|
|
|
$PHP_FAILED_TESTS = array('BORKED' => array(), 'FAILED' => array(), 'WARNED' => array(), 'LEAKED' => array());
|
2003-03-05 03:32:06 +08:00
|
|
|
|
2002-05-19 21:16:03 +08:00
|
|
|
// If parameters given assume they represent selected tests to run.
|
2003-05-24 06:01:38 +08:00
|
|
|
$failed_tests_file= false;
|
2004-03-29 07:04:53 +08:00
|
|
|
$pass_option_n = false;
|
|
|
|
$pass_options = '';
|
2005-12-07 08:03:46 +08:00
|
|
|
|
2005-12-07 10:01:58 +08:00
|
|
|
$compression = 0;
|
|
|
|
$output_file = $CUR_DIR . '/php_test_results_' . date('Ymd_Hi') . '.txt';
|
|
|
|
if ($compression) {
|
|
|
|
$output_file = 'compress.zlib://' . $output_file . '.gz';
|
|
|
|
}
|
2005-12-07 08:03:46 +08:00
|
|
|
$just_save_results = false;
|
|
|
|
$leak_check = false;
|
|
|
|
$html_output = false;
|
|
|
|
$html_file = null;
|
2005-12-09 06:51:01 +08:00
|
|
|
$temp_source = null;
|
|
|
|
$temp_target = null;
|
|
|
|
$temp_urlbase = null;
|
2005-12-30 21:39:54 +08:00
|
|
|
$conf_passed = null;
|
2005-12-07 08:03:46 +08:00
|
|
|
|
2005-12-22 06:23:55 +08:00
|
|
|
$cfgtypes = array('show', 'keep');
|
|
|
|
$cfgfiles = array('skip', 'php');
|
|
|
|
$cfg = array();
|
|
|
|
foreach($cfgtypes as $type) {
|
|
|
|
$cfg[$type] = array();
|
|
|
|
foreach($cfgfiles as $file) {
|
|
|
|
$cfg[$type][$file] = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-12-07 08:03:46 +08:00
|
|
|
if (getenv('TEST_PHP_ARGS'))
|
|
|
|
{
|
|
|
|
if (!isset($argc) || !$argc || !isset($argv))
|
|
|
|
{
|
|
|
|
$argv = array(__FILE__);
|
|
|
|
}
|
|
|
|
$argv = array_merge($argv, split(' ', getenv('TEST_PHP_ARGS')));
|
|
|
|
$argc = count($argv);
|
|
|
|
}
|
|
|
|
|
2002-10-02 09:52:25 +08:00
|
|
|
if (isset($argc) && $argc > 1) {
|
2002-05-19 21:16:03 +08:00
|
|
|
for ($i=1; $i<$argc; $i++) {
|
2005-12-07 08:03:46 +08:00
|
|
|
$is_switch = false;
|
|
|
|
$switch = substr($argv[$i],1,1);
|
|
|
|
$repeat = substr($argv[$i],0,1) == '-';
|
|
|
|
while ($repeat) {
|
|
|
|
$repeat = false;
|
|
|
|
if (!$is_switch) {
|
|
|
|
$switch = substr($argv[$i],1,1);
|
|
|
|
}
|
|
|
|
$is_switch = true;
|
2003-05-24 06:01:38 +08:00
|
|
|
switch($switch) {
|
|
|
|
case 'r':
|
|
|
|
case 'l':
|
|
|
|
$test_list = @file($argv[++$i]);
|
2005-10-06 17:42:17 +08:00
|
|
|
if ($test_list) {
|
|
|
|
foreach($test_list as $test) {
|
|
|
|
$matches = array();
|
|
|
|
if (preg_match('/^#.*\[(.*)\]\:\s+(.*)$/', $test, $matches)) {
|
|
|
|
$redir_tests[] = array($matches[1], $matches[2]);
|
|
|
|
} else if (strlen($test)) {
|
|
|
|
$test_files[] = trim($test);
|
|
|
|
}
|
|
|
|
}
|
2003-05-24 06:01:38 +08:00
|
|
|
}
|
|
|
|
if ($switch != 'l') {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
$i--;
|
2005-10-06 17:42:17 +08:00
|
|
|
// break left intentionally
|
2003-05-24 06:01:38 +08:00
|
|
|
case 'w':
|
|
|
|
$failed_tests_file = fopen($argv[++$i], 'w+t');
|
|
|
|
break;
|
|
|
|
case 'a':
|
|
|
|
$failed_tests_file = fopen($argv[++$i], 'a+t');
|
|
|
|
break;
|
2005-12-30 21:39:54 +08:00
|
|
|
case 'c':
|
|
|
|
$conf_passed = $argv[++$i];
|
|
|
|
break;
|
2005-12-07 08:03:46 +08:00
|
|
|
case 'd':
|
|
|
|
$ini_overwrites[] = $argv[++$i];
|
|
|
|
break;
|
|
|
|
//case 'h'
|
2005-12-22 06:23:55 +08:00
|
|
|
case '--keep-all':
|
|
|
|
foreach($cfgfiles as $file) {
|
|
|
|
$cfg['keep'][$file] = true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case '--keep-skip':
|
|
|
|
$cfg['keep']['skip'] = true;
|
|
|
|
break;
|
|
|
|
case '--keep-php':
|
|
|
|
$cfg['keep']['php'] = true;
|
|
|
|
break;
|
2005-12-07 08:03:46 +08:00
|
|
|
//case 'l'
|
|
|
|
case 'm':
|
|
|
|
$leak_check = true;
|
2005-10-06 17:42:17 +08:00
|
|
|
break;
|
2004-03-29 07:04:53 +08:00
|
|
|
case 'n':
|
|
|
|
if (!$pass_option_n) {
|
|
|
|
$pass_options .= ' -n';
|
|
|
|
}
|
|
|
|
$pass_option_n = true;
|
|
|
|
break;
|
2005-12-07 08:03:46 +08:00
|
|
|
case 'q':
|
|
|
|
putenv('NO_INTERACTION=1');
|
|
|
|
break;
|
|
|
|
//case 'r'
|
|
|
|
case 's':
|
|
|
|
$output_file = $argv[++$i];
|
|
|
|
$just_save_results = true;
|
2004-12-07 07:37:20 +08:00
|
|
|
break;
|
2005-12-22 06:23:55 +08:00
|
|
|
case '--show-all':
|
|
|
|
foreach($cfgfiles as $file) {
|
|
|
|
$cfg['show'][$file] = true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case '--show-skip':
|
|
|
|
$cfg['show']['skip'] = true;
|
|
|
|
break;
|
|
|
|
case '--show-php':
|
|
|
|
$cfg['show']['php'] = true;
|
|
|
|
break;
|
2005-12-09 06:51:01 +08:00
|
|
|
case '--temp-source':
|
|
|
|
$temp_source = $argv[++$i];
|
|
|
|
break;
|
|
|
|
case '--temp-target':
|
|
|
|
$temp_target = $argv[++$i];
|
|
|
|
if ($temp_urlbase) {
|
|
|
|
$temp_urlbase = $temp_target;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case '--temp-urlbase':
|
|
|
|
$temp_urlbase = $argv[++$i];
|
|
|
|
break;
|
2005-12-07 08:03:46 +08:00
|
|
|
case 'v':
|
|
|
|
case '--verbose':
|
|
|
|
$DETAILED = true;
|
|
|
|
break;
|
|
|
|
//case 'w'
|
|
|
|
case '-':
|
|
|
|
// repeat check with full switch
|
|
|
|
$switch = $argv[$i];
|
|
|
|
if ($switch != '-') {
|
|
|
|
$repeat = true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case '--html':
|
|
|
|
$html_file = @fopen($argv[++$i], 'wt');
|
|
|
|
$html_output = is_resource($html_file);
|
|
|
|
break;
|
|
|
|
case '--version':
|
2005-12-18 23:47:07 +08:00
|
|
|
echo '$Revision$'."\n";
|
2005-12-07 08:03:46 +08:00
|
|
|
exit(1);
|
2003-05-24 06:01:38 +08:00
|
|
|
default:
|
2005-12-09 06:51:01 +08:00
|
|
|
echo "Illegal switch '$switch' specified!\n";
|
|
|
|
if ($switch == 'u' || $switch == 'U') {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// break
|
2005-12-07 08:03:46 +08:00
|
|
|
case 'h':
|
|
|
|
case '-help':
|
|
|
|
case '--help':
|
2003-05-24 06:01:38 +08:00
|
|
|
echo <<<HELP
|
|
|
|
Synopsis:
|
|
|
|
php run-tests.php [options] [files] [directories]
|
|
|
|
|
|
|
|
Options:
|
|
|
|
-l <file> Read the testfiles to be executed from <file>. After the test
|
|
|
|
has finished all failed tests are written to the same <file>.
|
2003-08-10 01:21:19 +08:00
|
|
|
If the list is empty and no further test is specified then
|
2005-10-06 17:42:17 +08:00
|
|
|
all tests are executed (same as: -r <file> -w <file>).
|
2003-05-24 06:01:38 +08:00
|
|
|
|
|
|
|
-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>.
|
|
|
|
|
2005-12-30 21:39:54 +08:00
|
|
|
-c <file> Look for php.ini in directory <file> or use <file> as ini.
|
|
|
|
|
2004-03-29 15:49:32 +08:00
|
|
|
-n Pass -n option to the php binary (Do not use a php.ini).
|
2004-03-29 07:04:53 +08:00
|
|
|
|
2004-12-07 07:37:20 +08:00
|
|
|
-d foo=bar Pass -d option to the php binary (Define INI entry foo
|
2005-10-06 17:42:17 +08:00
|
|
|
with value 'bar').
|
2004-12-07 07:37:20 +08:00
|
|
|
|
2005-12-07 08:03:46 +08:00
|
|
|
-m Test for memory leaks with Valgrind.
|
|
|
|
|
|
|
|
-s <file> Write output to <file>.
|
|
|
|
|
|
|
|
-q Quite, no user interaction (same as environment NO_INTERACTION).
|
|
|
|
|
2005-12-09 06:51:01 +08:00
|
|
|
--verbose
|
2005-03-19 06:43:40 +08:00
|
|
|
-v Verbose mode.
|
|
|
|
|
2005-12-09 06:51:01 +08:00
|
|
|
--help
|
2005-12-07 08:03:46 +08:00
|
|
|
-h This Help.
|
|
|
|
|
2005-12-09 06:51:01 +08:00
|
|
|
--html <file> Generate HTML output.
|
|
|
|
|
|
|
|
--temp-source <sdir> --temp-target <tdir> [--temp-urlbase <url>]
|
|
|
|
Write temporary files to <tdir> by replacing <sdir> from the
|
|
|
|
filenames to generate with <tdir>. If --html is being used and
|
|
|
|
<url> given then the generated links are relative and prefixed
|
|
|
|
with the given url. In general you want to make <sdir> the path
|
|
|
|
to your source files and <tdir> some pach in your web page
|
|
|
|
hierarchy with <url> pointing to <tdir>.
|
2003-05-24 06:01:38 +08:00
|
|
|
|
2005-12-22 06:23:55 +08:00
|
|
|
--keep-[all|php|skip]
|
|
|
|
Do not delete 'all' files, 'php' test file, 'skip' file.
|
|
|
|
|
|
|
|
--show-[all|php|skip]
|
|
|
|
Show 'all' files, 'php' test file, 'skip' file.
|
|
|
|
|
2003-05-24 06:01:38 +08:00
|
|
|
HELP;
|
|
|
|
exit(1);
|
|
|
|
}
|
2005-12-07 08:03:46 +08:00
|
|
|
}
|
|
|
|
if (!$is_switch) {
|
2003-05-24 06:01:38 +08:00
|
|
|
$testfile = realpath($argv[$i]);
|
|
|
|
if (is_dir($testfile)) {
|
|
|
|
find_files($testfile);
|
|
|
|
} else if (preg_match("/\.phpt$/", $testfile)) {
|
|
|
|
$test_files[] = $testfile;
|
2005-07-07 20:58:47 +08:00
|
|
|
} else {
|
|
|
|
die("bogus test name " . $argv[$i] . "\n");
|
2003-05-24 06:01:38 +08:00
|
|
|
}
|
2002-11-03 05:48:05 +08:00
|
|
|
}
|
2002-05-19 21:16:03 +08:00
|
|
|
}
|
2005-12-30 21:39:54 +08:00
|
|
|
if (strlen($conf_passed))
|
|
|
|
{
|
|
|
|
$pass_options .= " -c '$conf_passed'";
|
|
|
|
}
|
2003-05-24 06:35:15 +08:00
|
|
|
$test_files = array_unique($test_files);
|
2005-10-06 17:42:17 +08:00
|
|
|
$test_files = array_merge($test_files, $redir_tests);
|
2002-10-02 09:52:25 +08:00
|
|
|
|
|
|
|
// Run selected tests.
|
2004-03-28 22:12:14 +08:00
|
|
|
$test_cnt = count($test_files);
|
|
|
|
if ($test_cnt) {
|
2005-12-07 08:03:46 +08:00
|
|
|
write_information($html_output);
|
2002-11-04 18:45:41 +08:00
|
|
|
usort($test_files, "test_sort");
|
2003-03-09 00:28:35 +08:00
|
|
|
$start_time = time();
|
2005-12-07 08:03:46 +08:00
|
|
|
if (!$html_output) {
|
2005-12-18 22:50:33 +08:00
|
|
|
echo "Running selected tests.\n";
|
2005-12-07 08:03:46 +08:00
|
|
|
} else {
|
|
|
|
show_start($start_time);
|
|
|
|
}
|
2004-03-28 22:12:14 +08:00
|
|
|
$test_idx = 0;
|
2005-10-06 17:42:17 +08:00
|
|
|
run_all_tests($test_files);
|
|
|
|
$end_time = time();
|
2005-12-07 08:03:46 +08:00
|
|
|
if ($html_output) {
|
|
|
|
show_end($end_time);
|
|
|
|
}
|
2003-05-24 06:01:38 +08:00
|
|
|
if ($failed_tests_file) {
|
|
|
|
fclose($failed_tests_file);
|
2002-10-02 09:52:25 +08:00
|
|
|
}
|
2005-10-06 17:42:17 +08:00
|
|
|
if (count($test_files) || count($test_results)) {
|
2003-03-09 00:28:35 +08:00
|
|
|
compute_summary();
|
2005-12-07 08:03:46 +08:00
|
|
|
if ($html_output) {
|
|
|
|
fwrite($html_file, "<hr/>\n" . get_summary(false, true));
|
|
|
|
}
|
|
|
|
echo "=====================================================================";
|
|
|
|
echo get_summary(false, false);
|
|
|
|
}
|
|
|
|
if ($html_output) {
|
|
|
|
fclose($html_file);
|
2003-03-09 00:28:35 +08:00
|
|
|
}
|
2003-03-17 20:24:09 +08:00
|
|
|
if (getenv('REPORT_EXIT_STATUS') == 1 and ereg('FAILED( |$)', implode(' ', $test_results))) {
|
2002-10-24 04:53:20 +08:00
|
|
|
exit(1);
|
|
|
|
}
|
2002-10-02 09:52:25 +08:00
|
|
|
exit(0);
|
|
|
|
}
|
2001-08-28 00:39:49 +08:00
|
|
|
}
|
|
|
|
|
2005-12-07 08:03:46 +08:00
|
|
|
write_information($html_output);
|
2003-05-24 06:01:38 +08:00
|
|
|
|
2002-05-17 05:48:28 +08:00
|
|
|
// Compile a list of all test files (*.phpt).
|
2002-10-02 09:52:25 +08:00
|
|
|
$test_files = array();
|
|
|
|
$exts_to_test = get_loaded_extensions();
|
2002-10-05 05:19:51 +08:00
|
|
|
$exts_tested = count($exts_to_test);
|
|
|
|
$exts_skipped = 0;
|
|
|
|
$ignored_by_ext = 0;
|
2002-10-02 09:52:25 +08:00
|
|
|
sort($exts_to_test);
|
2003-06-02 02:34:03 +08:00
|
|
|
$test_dirs = array('tests', 'ext');
|
2005-12-07 08:03:46 +08:00
|
|
|
$optionals = array('Zend', 'ZendEngine2');
|
2003-06-02 02:34:03 +08:00
|
|
|
foreach($optionals as $dir) {
|
|
|
|
if (@filetype($dir) == 'dir') {
|
|
|
|
$test_dirs[] = $dir;
|
|
|
|
}
|
|
|
|
}
|
2002-10-02 09:52:25 +08:00
|
|
|
|
2005-03-09 12:23:02 +08:00
|
|
|
// Convert extension names to lowercase
|
|
|
|
foreach ($exts_to_test as $key => $val) {
|
|
|
|
$exts_to_test[$key] = strtolower($val);
|
|
|
|
}
|
|
|
|
|
2002-10-05 05:19:51 +08:00
|
|
|
foreach ($test_dirs as $dir) {
|
2002-10-08 11:00:06 +08:00
|
|
|
find_files("{$cwd}/{$dir}", ($dir == 'ext'));
|
2002-10-02 09:52:25 +08:00
|
|
|
}
|
|
|
|
|
2002-10-14 15:18:23 +08:00
|
|
|
foreach ($user_tests as $dir) {
|
2002-11-03 05:48:05 +08:00
|
|
|
find_files($dir, ($dir == 'ext'));
|
2002-10-14 15:18:23 +08:00
|
|
|
}
|
|
|
|
|
2002-10-08 11:00:06 +08:00
|
|
|
function find_files($dir,$is_ext_dir=FALSE,$ignore=FALSE)
|
2002-10-02 09:52:25 +08:00
|
|
|
{
|
2002-10-05 05:19:51 +08:00
|
|
|
global $test_files, $exts_to_test, $ignored_by_ext, $exts_skipped, $exts_tested;
|
2002-05-19 21:16:03 +08:00
|
|
|
|
|
|
|
$o = opendir($dir) or error("cannot open directory: $dir");
|
2002-10-08 11:00:06 +08:00
|
|
|
while (($name = readdir($o)) !== FALSE) {
|
2002-05-19 21:16:03 +08:00
|
|
|
if (is_dir("{$dir}/{$name}") && !in_array($name, array('.', '..', 'CVS'))) {
|
2005-03-09 12:23:02 +08:00
|
|
|
$skip_ext = ($is_ext_dir && !in_array(strtolower($name), $exts_to_test));
|
2002-10-05 05:19:51 +08:00
|
|
|
if ($skip_ext) {
|
|
|
|
$exts_skipped++;
|
|
|
|
}
|
2002-10-08 11:00:06 +08:00
|
|
|
find_files("{$dir}/{$name}", FALSE, $ignore || $skip_ext);
|
|
|
|
}
|
|
|
|
|
2002-05-19 21:16:03 +08:00
|
|
|
// Cleanup any left-over tmp files from last run.
|
2002-10-02 09:52:25 +08:00
|
|
|
if (substr($name, -4) == '.tmp') {
|
2002-05-19 21:16:03 +08:00
|
|
|
@unlink("$dir/$name");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise we're only interested in *.phpt files.
|
2002-10-02 09:52:25 +08:00
|
|
|
if (substr($name, -5) == '.phpt') {
|
2002-10-05 05:19:51 +08:00
|
|
|
if ($ignore) {
|
|
|
|
$ignored_by_ext++;
|
|
|
|
} else {
|
|
|
|
$testfile = realpath("{$dir}/{$name}");
|
|
|
|
$test_files[] = $testfile;
|
|
|
|
}
|
2002-05-19 21:16:03 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
closedir($o);
|
2002-05-17 05:48:28 +08:00
|
|
|
}
|
2001-05-03 00:39:04 +08:00
|
|
|
|
2005-10-06 17:42:17 +08:00
|
|
|
function test_name($name)
|
|
|
|
{
|
|
|
|
if (is_array($name)) {
|
|
|
|
return $name[0] . ':' . $name[1];
|
|
|
|
} else {
|
|
|
|
return $name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-08-10 12:23:02 +08:00
|
|
|
function test_sort($a, $b)
|
|
|
|
{
|
2002-11-04 18:45:41 +08:00
|
|
|
global $cwd;
|
2005-12-18 22:50:33 +08:00
|
|
|
|
2005-10-06 17:42:17 +08:00
|
|
|
$a = test_name($a);
|
|
|
|
$b = test_name($b);
|
|
|
|
|
2002-11-24 00:57:25 +08:00
|
|
|
$ta = strpos($a, "{$cwd}/tests")===0 ? 1 + (strpos($a, "{$cwd}/tests/run-test")===0 ? 1 : 0) : 0;
|
|
|
|
$tb = strpos($b, "{$cwd}/tests")===0 ? 1 + (strpos($b, "{$cwd}/tests/run-test")===0 ? 1 : 0) : 0;
|
2002-11-04 18:45:41 +08:00
|
|
|
if ($ta == $tb) {
|
|
|
|
return strcmp($a, $b);
|
|
|
|
} else {
|
2002-11-24 00:57:25 +08:00
|
|
|
return $tb - $ta;
|
2002-11-04 18:45:41 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-05-24 06:35:15 +08:00
|
|
|
$test_files = array_unique($test_files);
|
2002-11-04 18:45:41 +08:00
|
|
|
usort($test_files, "test_sort");
|
2000-08-28 03:46:06 +08:00
|
|
|
|
2002-05-19 21:16:03 +08:00
|
|
|
$start_time = time();
|
2005-12-07 08:03:46 +08:00
|
|
|
show_start($start_time);
|
2001-05-03 00:39:04 +08:00
|
|
|
|
2004-03-28 22:12:14 +08:00
|
|
|
$test_cnt = count($test_files);
|
|
|
|
$test_idx = 0;
|
2005-10-06 17:42:17 +08:00
|
|
|
run_all_tests($test_files);
|
2002-05-19 21:16:03 +08:00
|
|
|
$end_time = time();
|
2005-10-06 17:42:17 +08:00
|
|
|
if ($failed_tests_file) {
|
|
|
|
fclose($failed_tests_file);
|
|
|
|
}
|
2001-05-03 00:39:04 +08:00
|
|
|
|
2002-05-17 05:48:28 +08:00
|
|
|
// Summarize results
|
2001-03-21 14:04:36 +08:00
|
|
|
|
2002-05-17 05:48:28 +08:00
|
|
|
if (0 == count($test_results)) {
|
2002-10-08 11:00:06 +08:00
|
|
|
echo "No tests were run.\n";
|
|
|
|
return;
|
2000-08-28 03:46:06 +08:00
|
|
|
}
|
|
|
|
|
2003-03-09 00:28:35 +08:00
|
|
|
compute_summary();
|
2000-08-28 03:46:06 +08:00
|
|
|
|
2005-12-07 08:03:46 +08:00
|
|
|
show_end($end_time);
|
|
|
|
show_summary();
|
2002-12-18 03:07:15 +08:00
|
|
|
|
2005-12-07 08:03:46 +08:00
|
|
|
if ($html_output) {
|
|
|
|
fclose($html_file);
|
|
|
|
}
|
2002-05-17 05:48:28 +08:00
|
|
|
|
2003-03-22 01:17:54 +08:00
|
|
|
define('PHP_QA_EMAIL', 'qa-reports@lists.php.net');
|
2002-10-13 03:29:56 +08:00
|
|
|
define('QA_SUBMISSION_PAGE', 'http://qa.php.net/buildtest-process.php');
|
|
|
|
|
2005-04-08 04:22:55 +08:00
|
|
|
/* We got failed Tests, offer the user to send an e-mail to QA team, unless NO_INTERACTION is set */
|
2002-12-18 03:07:15 +08:00
|
|
|
if (!getenv('NO_INTERACTION')) {
|
2002-10-13 03:29:56 +08:00
|
|
|
$fp = fopen("php://stdin", "r+");
|
2005-04-08 04:22:55 +08:00
|
|
|
echo "\nYou may have found a problem in PHP.\nWe would like to send this report automatically to the\n";
|
|
|
|
echo "PHP QA team, to give us a better understanding of how\nthe test cases are doing. If you don't want to send it\n";
|
|
|
|
echo "immediately, you can choose \"s\" to save the report to\na file that you can send us later.\n";
|
|
|
|
echo "Do you want to send this report now? [Yns]: ";
|
2002-11-21 23:09:45 +08:00
|
|
|
flush();
|
2002-10-13 03:29:56 +08:00
|
|
|
$user_input = fgets($fp, 10);
|
2002-11-10 16:56:28 +08:00
|
|
|
$just_save_results = (strtolower($user_input[0]) == 's');
|
2005-12-07 08:03:46 +08:00
|
|
|
}
|
|
|
|
if ($just_save_results || !getenv('NO_INTERACTION')) {
|
2002-11-10 16:56:28 +08:00
|
|
|
if ($just_save_results || strlen(trim($user_input)) == 0 || strtolower($user_input[0]) == 'y') {
|
2002-10-13 03:29:56 +08:00
|
|
|
/*
|
|
|
|
* Collect information about the host system for our report
|
|
|
|
* Fetch phpinfo() output so that we can see the PHP enviroment
|
|
|
|
* Make an archive of all the failed tests
|
|
|
|
* Send an email
|
|
|
|
*/
|
2005-12-07 08:03:46 +08:00
|
|
|
if ($just_save_results)
|
|
|
|
{
|
|
|
|
$user_input = 's';
|
|
|
|
}
|
2002-12-12 00:49:00 +08:00
|
|
|
/* Ask the user to provide an email address, so that QA team can contact the user */
|
2002-12-12 04:13:43 +08:00
|
|
|
if (!strncasecmp($user_input, 'y', 1) || strlen(trim($user_input)) == 0) {
|
2003-01-12 19:42:29 +08:00
|
|
|
echo "\nPlease enter your email address.\n(Your address will be mangled so that it will not go out on any\nmailinglist in plain text): ";
|
2002-12-12 00:49:00 +08:00
|
|
|
flush();
|
|
|
|
$user_email = trim(fgets($fp, 1024));
|
|
|
|
$user_email = str_replace("@", " at ", str_replace(".", " dot ", $user_email));
|
|
|
|
}
|
|
|
|
|
2002-10-13 03:29:56 +08:00
|
|
|
$failed_tests_data = '';
|
|
|
|
$sep = "\n" . str_repeat('=', 80) . "\n";
|
|
|
|
|
2002-11-15 18:37:41 +08:00
|
|
|
$failed_tests_data .= $failed_test_summary . "\n";
|
2005-12-07 08:03:46 +08:00
|
|
|
$failed_tests_data .= get_summary(true, false) . "\n";
|
2002-12-18 03:07:15 +08:00
|
|
|
|
|
|
|
if ($sum_results['FAILED']) {
|
2005-06-15 17:21:15 +08:00
|
|
|
foreach ($PHP_FAILED_TESTS['FAILED'] as $test_info) {
|
2003-05-18 07:58:03 +08:00
|
|
|
$failed_tests_data .= $sep . $test_info['name'] . $test_info['info'];
|
2002-12-18 03:07:15 +08:00
|
|
|
$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";
|
|
|
|
}
|
|
|
|
$status = "failed";
|
|
|
|
} else {
|
|
|
|
$status = "success";
|
2002-11-15 18:37:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
$failed_tests_data .= "\n" . $sep . 'BUILD ENVIRONMENT' . $sep;
|
2003-05-30 20:41:51 +08:00
|
|
|
$failed_tests_data .= "OS:\n" . PHP_OS . " - " . php_uname() . "\n\n";
|
2005-07-11 14:32:02 +08:00
|
|
|
$ldd = $autoconf = $sys_libtool = $libtool = $compiler = 'N/A';
|
2002-12-18 03:07:15 +08:00
|
|
|
|
2002-10-28 10:00:56 +08:00
|
|
|
if (substr(PHP_OS, 0, 3) != "WIN") {
|
2005-07-11 14:32:02 +08:00
|
|
|
/* If PHP_AUTOCONF is set, use it; otherwise, use 'autoconf'. */
|
|
|
|
if (!empty($_ENV['PHP_AUTOCONF'])) {
|
|
|
|
$autoconf = shell_exec($_ENV['PHP_AUTOCONF'] . ' --version');
|
|
|
|
} else {
|
|
|
|
$autoconf = shell_exec('autoconf --version');
|
|
|
|
}
|
2005-07-05 04:37:07 +08:00
|
|
|
|
2002-12-20 08:28:08 +08:00
|
|
|
/* Always use the generated libtool - Mac OSX uses 'glibtool' */
|
2005-02-26 23:23:10 +08:00
|
|
|
$libtool = shell_exec($CUR_DIR . '/libtool --version');
|
2005-01-19 09:30:23 +08:00
|
|
|
|
|
|
|
/* Use shtool to find out if there is glibtool present (MacOSX) */
|
2005-04-01 21:40:46 +08:00
|
|
|
$sys_libtool_path = shell_exec(dirname(__FILE__) . '/build/shtool path glibtool libtool');
|
2005-01-19 09:30:23 +08:00
|
|
|
$sys_libtool = shell_exec(str_replace("\n", "", $sys_libtool_path) . ' --version');
|
|
|
|
|
2002-11-10 16:56:28 +08:00
|
|
|
/* Try the most common flags for 'version' */
|
|
|
|
$flags = array('-v', '-V', '--version');
|
|
|
|
$cc_status=0;
|
|
|
|
foreach($flags AS $flag) {
|
|
|
|
system(getenv('CC')." $flag >/dev/null 2>&1", $cc_status);
|
2003-03-17 20:24:09 +08:00
|
|
|
if ($cc_status == 0) {
|
2002-11-10 16:56:28 +08:00
|
|
|
$compiler = shell_exec(getenv('CC')." $flag 2>&1");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2005-04-07 06:14:27 +08:00
|
|
|
$ldd = shell_exec("ldd $php 2>/dev/null");
|
2002-10-28 10:00:56 +08:00
|
|
|
}
|
|
|
|
$failed_tests_data .= "Autoconf:\n$autoconf\n";
|
2003-12-24 02:20:46 +08:00
|
|
|
$failed_tests_data .= "Bundled Libtool:\n$libtool\n";
|
|
|
|
$failed_tests_data .= "System Libtool:\n$sys_libtool\n";
|
2002-10-28 10:00:56 +08:00
|
|
|
$failed_tests_data .= "Compiler:\n$compiler\n";
|
|
|
|
$failed_tests_data .= "Bison:\n". @shell_exec('bison --version'). "\n";
|
2003-04-05 20:16:29 +08:00
|
|
|
$failed_tests_data .= "Libraries:\n$ldd\n";
|
2002-12-12 00:49:00 +08:00
|
|
|
$failed_tests_data .= "\n";
|
|
|
|
|
2002-12-13 00:14:32 +08:00
|
|
|
if (isset($user_email)) {
|
|
|
|
$failed_tests_data .= "User's E-mail: ".$user_email."\n\n";
|
|
|
|
}
|
2002-10-13 03:29:56 +08:00
|
|
|
|
|
|
|
$failed_tests_data .= $sep . "PHPINFO" . $sep;
|
2002-10-24 04:13:42 +08:00
|
|
|
$failed_tests_data .= shell_exec($php.' -dhtml_errors=0 -i');
|
2002-10-13 03:29:56 +08:00
|
|
|
|
2002-12-18 03:07:15 +08:00
|
|
|
if ($just_save_results || !mail_qa_team($failed_tests_data, $compression, $status)) {
|
2005-09-06 08:42:20 +08:00
|
|
|
file_put_contents($output_file, $failed_tests_data);
|
|
|
|
|
2003-03-17 20:24:09 +08:00
|
|
|
if (!$just_save_results) {
|
2005-12-18 22:50:33 +08:00
|
|
|
echo "\nThe test script was unable to automatically send the report to PHP's QA Team\n";
|
2003-03-17 20:24:09 +08:00
|
|
|
}
|
|
|
|
|
2002-11-10 16:56:28 +08:00
|
|
|
echo "Please send ".$output_file." to ".PHP_QA_EMAIL." manually, thank you.\n";
|
2002-10-13 03:29:56 +08:00
|
|
|
} else {
|
|
|
|
fwrite($fp, "\nThank you for helping to make PHP better.\n");
|
|
|
|
fclose($fp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-03-17 20:24:09 +08:00
|
|
|
if (getenv('REPORT_EXIT_STATUS') == 1 and $sum_results['FAILED']) {
|
2002-10-24 04:53:20 +08:00
|
|
|
exit(1);
|
|
|
|
}
|
2005-12-07 08:03:46 +08:00
|
|
|
exit(0);
|
2002-10-24 04:53:20 +08:00
|
|
|
|
2002-10-13 03:29:56 +08:00
|
|
|
//
|
|
|
|
// Send Email to QA Team
|
|
|
|
//
|
|
|
|
|
2002-12-18 03:07:15 +08:00
|
|
|
function mail_qa_team($data, $compression, $status = FALSE)
|
2002-10-13 03:29:56 +08:00
|
|
|
{
|
|
|
|
$url_bits = parse_url(QA_SUBMISSION_PAGE);
|
|
|
|
if (empty($url_bits['port'])) $url_bits['port'] = 80;
|
|
|
|
|
2002-10-16 00:46:57 +08:00
|
|
|
$data = "php_test_data=" . urlencode(base64_encode(preg_replace("/[\\x00]/", "[0x0]", $data)));
|
2002-10-13 03:29:56 +08:00
|
|
|
$data_length = strlen($data);
|
|
|
|
|
|
|
|
$fs = fsockopen($url_bits['host'], $url_bits['port'], $errno, $errstr, 10);
|
|
|
|
if (!$fs) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2003-03-17 20:43:29 +08:00
|
|
|
$php_version = urlencode(TESTED_PHP_VERSION);
|
2003-03-17 20:24:09 +08:00
|
|
|
|
2002-12-18 03:07:15 +08:00
|
|
|
echo "\nPosting to {$url_bits['host']} {$url_bits['path']}\n";
|
2003-03-17 20:24:09 +08:00
|
|
|
fwrite($fs, "POST ".$url_bits['path']."?status=$status&version=$php_version HTTP/1.1\r\n");
|
2002-10-13 03:29:56 +08:00
|
|
|
fwrite($fs, "Host: ".$url_bits['host']."\r\n");
|
|
|
|
fwrite($fs, "User-Agent: QA Browser 0.1\r\n");
|
|
|
|
fwrite($fs, "Content-Type: application/x-www-form-urlencoded\r\n");
|
|
|
|
fwrite($fs, "Content-Length: ".$data_length."\r\n\r\n");
|
2002-10-16 00:46:57 +08:00
|
|
|
fwrite($fs, $data);
|
2002-10-13 03:29:56 +08:00
|
|
|
fwrite($fs, "\r\n\r\n");
|
|
|
|
fclose($fs);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-05-17 05:48:28 +08:00
|
|
|
//
|
|
|
|
// Write the given text to a temporary file, and return the filename.
|
|
|
|
//
|
|
|
|
|
2005-12-09 06:51:01 +08:00
|
|
|
function save_text($filename, $text, $filename_copy = null)
|
2002-10-02 09:52:25 +08:00
|
|
|
{
|
2005-03-19 06:43:40 +08:00
|
|
|
global $DETAILED;
|
|
|
|
|
2005-12-09 06:51:01 +08:00
|
|
|
if ($filename_copy && $filename_copy != $filename) {
|
|
|
|
if (@file_put_contents($filename_copy, $text) === false) {
|
|
|
|
error("Cannot open file '" . $filename_copy . "' (save_text)");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (@file_put_contents($filename, $text) === false) {
|
2005-12-07 19:12:52 +08:00
|
|
|
error("Cannot open file '" . $filename . "' (save_text)");
|
|
|
|
}
|
2005-03-19 06:43:40 +08:00
|
|
|
if (1 < $DETAILED) echo "
|
2002-05-17 05:48:28 +08:00
|
|
|
FILE $filename {{{
|
|
|
|
$text
|
|
|
|
}}}
|
|
|
|
";
|
|
|
|
}
|
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
|
|
|
|
2005-12-07 19:12:52 +08:00
|
|
|
function error_report($testname, $logname, $tested)
|
2002-05-17 05:48:28 +08:00
|
|
|
{
|
2002-10-08 11:00:06 +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
|
|
|
}
|
|
|
|
|
2003-02-16 02:09:52 +08:00
|
|
|
function system_with_timeout($commandline)
|
|
|
|
{
|
2005-12-18 20:08:18 +08:00
|
|
|
global $leak_check;
|
|
|
|
|
2003-02-16 02:09:52 +08:00
|
|
|
$data = "";
|
|
|
|
|
2003-02-16 11:48:49 +08:00
|
|
|
$proc = proc_open($commandline, array(
|
|
|
|
0 => array('pipe', 'r'),
|
|
|
|
1 => array('pipe', 'w'),
|
|
|
|
2 => array('pipe', 'w')
|
2003-12-05 21:45:00 +08:00
|
|
|
), $pipes, null, null, array("suppress_errors" => true));
|
2003-02-16 02:09:52 +08:00
|
|
|
|
|
|
|
if (!$proc)
|
|
|
|
return false;
|
|
|
|
|
2003-02-16 11:48:49 +08:00
|
|
|
fclose($pipes[0]);
|
|
|
|
|
2003-02-16 02:09:52 +08:00
|
|
|
while (true) {
|
|
|
|
/* hide errors from interrupted syscalls */
|
|
|
|
$r = $pipes;
|
|
|
|
$w = null;
|
|
|
|
$e = null;
|
2005-12-18 20:08:18 +08:00
|
|
|
$n = @stream_select($r, $w, $e, $leak_check ? 300 : 60);
|
2003-02-16 02:09:52 +08:00
|
|
|
|
2004-09-28 01:30:46 +08:00
|
|
|
if ($n === 0) {
|
2003-02-16 02:09:52 +08:00
|
|
|
/* timed out */
|
|
|
|
$data .= "\n ** ERROR: process timed out **\n";
|
|
|
|
proc_terminate($proc);
|
|
|
|
return $data;
|
2003-02-16 11:48:49 +08:00
|
|
|
} else if ($n > 0) {
|
|
|
|
$line = fread($pipes[1], 8192);
|
2005-12-09 08:22:21 +08:00
|
|
|
if (strlen($line) == 0) {
|
2003-02-16 02:09:52 +08:00
|
|
|
/* EOF */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
$data .= $line;
|
|
|
|
}
|
|
|
|
}
|
2003-05-31 20:14:41 +08:00
|
|
|
$stat = proc_get_status($proc);
|
|
|
|
if ($stat['signaled']) {
|
|
|
|
$data .= "\nTermsig=".$stat['stopsig'];
|
|
|
|
}
|
2003-02-16 02:09:52 +08:00
|
|
|
$code = proc_close($proc);
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
2005-10-06 17:42:17 +08:00
|
|
|
function run_all_tests($test_files, $redir_tested = NULL)
|
|
|
|
{
|
|
|
|
global $test_results, $failed_tests_file, $php, $test_cnt, $test_idx;
|
|
|
|
|
2005-12-07 08:03:46 +08:00
|
|
|
foreach($test_files AS $name)
|
|
|
|
{
|
2005-10-06 17:42:17 +08:00
|
|
|
$index = is_array($name) ? $name[0] : $name;
|
|
|
|
$test_idx++;
|
2005-12-07 08:03:46 +08:00
|
|
|
$result = run_test($php, $name);
|
|
|
|
if (!is_array($name) && $result != 'REDIR')
|
|
|
|
{
|
2005-10-06 17:42:17 +08:00
|
|
|
$test_results[$index] = $result;
|
2005-12-07 08:03:46 +08:00
|
|
|
if ($failed_tests_file && ($result == 'FAILED' || $result == 'WARNED' || $result == 'LEAKED'))
|
|
|
|
{
|
|
|
|
if ($redir_tested)
|
|
|
|
{
|
2005-10-06 17:42:17 +08:00
|
|
|
fwrite($failed_tests_file, "# $redir_tested: $name\n");
|
|
|
|
} else {
|
|
|
|
fwrite($failed_tests_file, "$name\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-05-17 05:48:28 +08:00
|
|
|
//
|
|
|
|
// Run an individual test case.
|
|
|
|
//
|
2005-10-06 17:42:17 +08:00
|
|
|
function run_test($php, $file)
|
2002-05-17 05:48:28 +08:00
|
|
|
{
|
2005-12-22 06:23:55 +08:00
|
|
|
global $log_format, $info_params, $ini_overwrites, $cwd, $PHP_FAILED_TESTS, $pass_options, $DETAILED, $IN_REDIRECT, $test_cnt, $test_idx, $leak_check, $temp_source, $temp_target, $cfg;
|
2005-10-06 17:42:17 +08:00
|
|
|
|
2005-12-09 06:51:01 +08:00
|
|
|
$temp_filenames = null;
|
2005-10-06 17:42:17 +08:00
|
|
|
$org_file = $file;
|
|
|
|
|
|
|
|
if (is_array($file)) $file = $file[0];
|
2002-08-27 07:26:46 +08:00
|
|
|
|
2005-03-19 06:43:40 +08:00
|
|
|
if ($DETAILED) echo "
|
2002-05-17 05:48:28 +08:00
|
|
|
=================
|
|
|
|
TEST $file
|
|
|
|
";
|
|
|
|
|
2002-10-08 11:00:06 +08:00
|
|
|
// Load the sections of the test file.
|
|
|
|
$section_text = array(
|
2003-08-10 01:21:19 +08:00
|
|
|
'TEST' => '',
|
2002-10-08 11:00:06 +08:00
|
|
|
'SKIPIF' => '',
|
|
|
|
'GET' => '',
|
2005-12-07 19:28:58 +08:00
|
|
|
'POST' => '',
|
2002-10-08 11:00:06 +08:00
|
|
|
'ARGS' => '',
|
|
|
|
);
|
|
|
|
|
2005-10-06 17:42:17 +08:00
|
|
|
$fp = @fopen($file, "rt") or error("Cannot open test file: $file");
|
2002-10-08 11:00:06 +08:00
|
|
|
|
2005-06-15 17:21:15 +08:00
|
|
|
$borked = false;
|
|
|
|
$bork_info = '';
|
2003-08-10 01:21:19 +08:00
|
|
|
if (!feof($fp)) {
|
|
|
|
$line = fgets($fp);
|
|
|
|
} else {
|
2005-06-15 17:21:15 +08:00
|
|
|
$bork_info = "empty test [$file]";
|
|
|
|
$borked = true;
|
2003-08-10 01:21:19 +08:00
|
|
|
}
|
|
|
|
if (!ereg('^--TEST--',$line,$r)) {
|
2005-06-15 17:21:15 +08:00
|
|
|
$bork_info = "tests must start with --TEST-- [$file]";
|
|
|
|
$borked = true;
|
2003-08-10 01:21:19 +08:00
|
|
|
}
|
|
|
|
$section = 'TEST';
|
2005-12-18 22:50:33 +08:00
|
|
|
$secfile = false;
|
|
|
|
$secdone = false;
|
2002-10-08 11:00:06 +08:00
|
|
|
while (!feof($fp)) {
|
|
|
|
$line = fgets($fp);
|
|
|
|
|
|
|
|
// Match the beginning of a section.
|
2005-12-18 22:50:33 +08:00
|
|
|
if (preg_match('/^--([A-Z]+)--/', $line, $r)) {
|
2002-10-08 11:00:06 +08:00
|
|
|
$section = $r[1];
|
|
|
|
$section_text[$section] = '';
|
2005-12-18 22:50:33 +08:00
|
|
|
$secfile = $section == 'FILE' || $section == 'FILEEOF';
|
|
|
|
$secdone = false;
|
2002-10-08 11:00:06 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add to the section text.
|
2005-12-18 22:50:33 +08:00
|
|
|
if (!$secdone) {
|
|
|
|
$section_text[$section] .= $line;
|
|
|
|
}
|
|
|
|
|
|
|
|
// End of actual test?
|
|
|
|
if ($secfile && preg_match('/^===DONE===/', $line, $r)) {
|
|
|
|
$secdone = true;
|
|
|
|
}
|
2002-10-08 11:00:06 +08:00
|
|
|
}
|
2005-07-06 14:06:23 +08:00
|
|
|
|
|
|
|
// the redirect section allows a set of tests to be reused outside of
|
|
|
|
// a given test dir
|
|
|
|
if (@count($section_text['REDIRECTTEST']) == 1) {
|
|
|
|
if ($IN_REDIRECT) {
|
|
|
|
$borked = true;
|
2005-12-09 06:51:01 +08:00
|
|
|
$bork_info = "Can't redirect a test from within a redirected test";
|
2005-07-06 14:06:23 +08:00
|
|
|
} else {
|
|
|
|
$borked = false;
|
|
|
|
}
|
|
|
|
} else {
|
2005-12-07 08:03:46 +08:00
|
|
|
if (@count($section_text['FILE']) + @count($section_text['FILEEOF']) != 1) {
|
2005-12-09 06:51:01 +08:00
|
|
|
$bork_info = "missing section --FILE--";
|
2005-07-06 14:06:23 +08:00
|
|
|
$borked = true;
|
|
|
|
}
|
2005-12-07 08:03:46 +08:00
|
|
|
if (@count($section_text['FILEEOF']) == 1) {
|
2005-12-07 10:01:58 +08:00
|
|
|
$section_text['FILE'] = preg_replace("/[\r\n]+$/", '', $section_text['FILEEOF']);
|
2005-12-07 08:03:46 +08:00
|
|
|
unset($section_text['FILEEOF']);
|
|
|
|
}
|
2005-07-06 14:06:23 +08:00
|
|
|
if ((@count($section_text['EXPECT']) + @count($section_text['EXPECTF']) + @count($section_text['EXPECTREGEX'])) != 1) {
|
2005-12-09 06:51:01 +08:00
|
|
|
$bork_info = "missing section --EXPECT--, --EXPECTF-- or --EXPECTREGEX--";
|
2005-07-06 14:06:23 +08:00
|
|
|
$borked = true;
|
|
|
|
}
|
2003-08-10 01:21:19 +08:00
|
|
|
}
|
2002-10-08 11:00:06 +08:00
|
|
|
fclose($fp);
|
|
|
|
|
2005-12-24 03:40:12 +08:00
|
|
|
$shortname = str_replace($cwd.'/', '', $file);
|
|
|
|
$tested_file = $shortname;
|
|
|
|
|
2005-06-15 17:21:15 +08:00
|
|
|
if ($borked) {
|
2005-12-24 03:40:12 +08:00
|
|
|
show_result("BORK", $bork_info, $tested_file);
|
2005-06-15 17:21:15 +08:00
|
|
|
$PHP_FAILED_TESTS['BORKED'][] = array (
|
|
|
|
'name' => $file,
|
|
|
|
'test_name' => '',
|
|
|
|
'output' => '',
|
|
|
|
'diff' => '',
|
2005-12-09 06:51:01 +08:00
|
|
|
'info' => "$bork_info [$file]",
|
2005-06-15 17:21:15 +08:00
|
|
|
);
|
|
|
|
return 'BORKED';
|
|
|
|
}
|
|
|
|
|
2005-12-09 06:51:01 +08:00
|
|
|
$tested = trim($section_text['TEST']);
|
2005-12-07 19:28:58 +08:00
|
|
|
|
2005-12-30 23:05:17 +08:00
|
|
|
/* For GET/POST tests, check if cgi sapi is available and if it is, use it. */
|
|
|
|
if ((!empty($section_text['GET']) || !empty($section_text['POST']))) {
|
|
|
|
if (file_exists("./sapi/cgi/php")) {
|
|
|
|
$old_php = $php;
|
|
|
|
$php = realpath("./sapi/cgi/php") . ' -C ';
|
|
|
|
} else {
|
2005-12-09 06:51:01 +08:00
|
|
|
show_result("SKIP", $tested, $tested_file, "reason: CGI not available");
|
2005-12-30 23:05:17 +08:00
|
|
|
return 'SKIPPED';
|
|
|
|
}
|
|
|
|
}
|
2003-07-25 01:44:16 +08:00
|
|
|
|
2005-12-07 08:03:46 +08:00
|
|
|
show_test($test_idx, $shortname);
|
2003-08-05 16:31:56 +08:00
|
|
|
|
2005-07-06 14:06:23 +08:00
|
|
|
if (is_array($IN_REDIRECT)) {
|
2005-12-09 06:51:01 +08:00
|
|
|
$temp_dir = $test_dir = $IN_REDIRECT['dir'];
|
2005-07-06 14:06:23 +08:00
|
|
|
} else {
|
2005-12-09 06:51:01 +08:00
|
|
|
$temp_dir = $test_dir = realpath(dirname($file));
|
|
|
|
}
|
|
|
|
if ($temp_source && $temp_target) {
|
|
|
|
$temp_dir = str_replace($temp_source, $temp_target, $temp_dir);
|
|
|
|
}
|
|
|
|
|
|
|
|
$diff_filename = $temp_dir . DIRECTORY_SEPARATOR . basename($file,'phpt').'diff';
|
|
|
|
$log_filename = $temp_dir . DIRECTORY_SEPARATOR . basename($file,'phpt').'log';
|
|
|
|
$exp_filename = $temp_dir . DIRECTORY_SEPARATOR . basename($file,'phpt').'exp';
|
|
|
|
$output_filename = $temp_dir . DIRECTORY_SEPARATOR . basename($file,'phpt').'out';
|
|
|
|
$memcheck_filename = $temp_dir . DIRECTORY_SEPARATOR . basename($file,'phpt').'mem';
|
|
|
|
$temp_file = $temp_dir . DIRECTORY_SEPARATOR . basename($file,'phpt').'php';
|
|
|
|
$test_file = $test_dir . DIRECTORY_SEPARATOR . basename($file,'phpt').'php';
|
|
|
|
$temp_skipif = $temp_dir . DIRECTORY_SEPARATOR . basename($file,'phpt').'skip';
|
|
|
|
$test_skipif = $test_dir . DIRECTORY_SEPARATOR . basename($file,'phpt').'skip';
|
|
|
|
$tmp_post = $temp_dir . DIRECTORY_SEPARATOR . uniqid('/phpt.');
|
|
|
|
$tmp_relative_file = str_replace(dirname(__FILE__).DIRECTORY_SEPARATOR, '', $test_file) . 't';
|
|
|
|
|
|
|
|
if ($temp_source && $temp_target) {
|
|
|
|
$temp_skipif .= '.phps';
|
|
|
|
$temp_file .= '.phps';
|
|
|
|
$copy_file = $temp_dir . DIRECTORY_SEPARATOR . basename(is_array($file) ? $file[1] : $file).'.phps';
|
|
|
|
if (!is_dir(dirname($copy_file))) {
|
|
|
|
@mkdir(dirname($copy_file), 0777, true) or error("Cannot create output directory - " . dirname($copy_file));
|
|
|
|
}
|
2005-12-09 17:50:30 +08:00
|
|
|
if (isset($section_text['FILE'])) {
|
|
|
|
save_text($copy_file, $section_text['FILE']);
|
|
|
|
}
|
2005-12-09 06:51:01 +08:00
|
|
|
$temp_filenames = array(
|
|
|
|
'file' => $copy_file,
|
|
|
|
'diff' => $diff_filename,
|
|
|
|
'log' => $log_filename,
|
|
|
|
'exp' => $exp_filename,
|
|
|
|
'out' => $output_filename,
|
|
|
|
'mem' => $memcheck_filename,
|
|
|
|
'php' => $temp_file,
|
|
|
|
'skip' => $temp_skipif);
|
2005-07-06 14:06:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (is_array($IN_REDIRECT)) {
|
2005-12-09 06:51:01 +08:00
|
|
|
$tested = $IN_REDIRECT['prefix'] . ' ' . trim($section_text['TEST']);
|
|
|
|
$tested_file = $tmp_relative_file;
|
2005-07-06 14:06:23 +08:00
|
|
|
$section_text['FILE'] = "# original source file: $shortname\n" . $section_text['FILE'];
|
|
|
|
}
|
2002-10-08 11:00:06 +08:00
|
|
|
|
2002-10-22 16:54:23 +08:00
|
|
|
// unlink old test results
|
2005-07-06 14:06:23 +08:00
|
|
|
@unlink($diff_filename);
|
|
|
|
@unlink($log_filename);
|
|
|
|
@unlink($exp_filename);
|
|
|
|
@unlink($output_filename);
|
2005-12-07 08:03:46 +08:00
|
|
|
@unlink($memcheck_filename);
|
2005-12-09 06:51:01 +08:00
|
|
|
@unlink($temp_file);
|
|
|
|
@unlink($test_file);
|
|
|
|
@unlink($temp_skipif);
|
|
|
|
@unlink($test_skipif);
|
2005-12-07 08:03:46 +08:00
|
|
|
@unlink($tmp_post);
|
2002-10-08 11:00:06 +08:00
|
|
|
|
2002-10-22 16:54:23 +08:00
|
|
|
// Reset environment from any previous test.
|
2002-10-08 11:00:06 +08:00
|
|
|
putenv("REDIRECT_STATUS=");
|
|
|
|
putenv("QUERY_STRING=");
|
|
|
|
putenv("PATH_TRANSLATED=");
|
|
|
|
putenv("SCRIPT_FILENAME=");
|
|
|
|
putenv("REQUEST_METHOD=");
|
|
|
|
putenv("CONTENT_TYPE=");
|
|
|
|
putenv("CONTENT_LENGTH=");
|
|
|
|
|
2002-10-03 06:31:37 +08:00
|
|
|
// Check if test should be skipped.
|
2003-05-18 07:58:03 +08:00
|
|
|
$info = '';
|
2003-05-24 06:01:38 +08:00
|
|
|
$warn = false;
|
2002-08-03 19:44:12 +08:00
|
|
|
if (array_key_exists('SKIPIF', $section_text)) {
|
2002-10-08 11:00:06 +08:00
|
|
|
if (trim($section_text['SKIPIF'])) {
|
2005-08-03 01:05:01 +08:00
|
|
|
$skipif_params = array();
|
|
|
|
settings2array($ini_overwrites,$skipif_params);
|
|
|
|
settings2params($skipif_params);
|
|
|
|
|
2005-12-22 06:23:55 +08:00
|
|
|
if ($cfg['show']['skip']) {
|
|
|
|
echo "\n========SKIP========\n";
|
|
|
|
echo $section_text['SKIPIF'];
|
|
|
|
echo "========DONE========\n";
|
|
|
|
}
|
2005-12-09 06:51:01 +08:00
|
|
|
save_text($test_skipif, $section_text['SKIPIF'], $temp_skipif);
|
2003-07-25 13:51:57 +08:00
|
|
|
$extra = substr(PHP_OS, 0, 3) !== "WIN" ?
|
2003-08-12 04:02:05 +08:00
|
|
|
"unset REQUEST_METHOD; unset QUERY_STRING; unset PATH_TRANSLATED; unset SCRIPT_FILENAME; unset REQUEST_METHOD;": "";
|
2005-12-09 06:51:01 +08:00
|
|
|
$output = system_with_timeout("$extra $php -q $skipif_params $test_skipif");
|
|
|
|
@unlink($test_skipif);
|
2005-12-07 10:01:58 +08:00
|
|
|
if (!strncasecmp('skip', trim($output), 4)) {
|
2003-07-25 13:51:57 +08:00
|
|
|
$reason = (eregi("^skip[[:space:]]*(.+)\$", trim($output))) ? eregi_replace("^skip[[:space:]]*(.+)\$", "\\1", trim($output)) : FALSE;
|
2002-10-21 16:55:49 +08:00
|
|
|
if ($reason) {
|
2005-12-09 06:51:01 +08:00
|
|
|
show_result("SKIP", $tested, $tested_file, "reason: $reason", $temp_filenames);
|
2002-10-21 17:04:56 +08:00
|
|
|
} else {
|
2005-12-09 06:51:01 +08:00
|
|
|
show_result("SKIP", $tested, $tested_file, '', $temp_filenames);
|
2002-10-21 16:55:49 +08:00
|
|
|
}
|
2003-07-25 01:44:16 +08:00
|
|
|
if (isset($old_php)) {
|
|
|
|
$php = $old_php;
|
|
|
|
}
|
2005-12-22 06:23:55 +08:00
|
|
|
if (!$cfg['keep']['skip']) {
|
|
|
|
@unlink($test_skipif);
|
|
|
|
}
|
2002-08-03 19:44:12 +08:00
|
|
|
return 'SKIPPED';
|
|
|
|
}
|
2005-12-07 10:01:58 +08:00
|
|
|
if (!strncasecmp('info', trim($output), 4)) {
|
2002-11-15 23:57:00 +08:00
|
|
|
$reason = (ereg("^info[[:space:]]*(.+)\$", trim($output))) ? ereg_replace("^info[[:space:]]*(.+)\$", "\\1", trim($output)) : FALSE;
|
|
|
|
if ($reason) {
|
2003-05-18 07:58:03 +08:00
|
|
|
$info = " (info: $reason)";
|
2002-11-15 23:57:00 +08:00
|
|
|
}
|
|
|
|
}
|
2005-12-07 10:01:58 +08:00
|
|
|
if (!strncasecmp('warn', trim($output), 4)) {
|
2003-05-24 04:51:09 +08:00
|
|
|
$reason = (ereg("^warn[[:space:]]*(.+)\$", trim($output))) ? ereg_replace("^warn[[:space:]]*(.+)\$", "\\1", trim($output)) : FALSE;
|
|
|
|
if ($reason) {
|
|
|
|
$warn = true; /* only if there is a reason */
|
|
|
|
$info = " (warn: $reason)";
|
|
|
|
}
|
|
|
|
}
|
2002-05-19 21:16:03 +08:00
|
|
|
}
|
|
|
|
}
|
2002-08-03 19:44:12 +08:00
|
|
|
|
2005-07-06 14:06:23 +08:00
|
|
|
if (@count($section_text['REDIRECTTEST']) == 1) {
|
|
|
|
$test_files = array();
|
|
|
|
|
|
|
|
$IN_REDIRECT = eval($section_text['REDIRECTTEST']);
|
|
|
|
$IN_REDIRECT['via'] = "via [$shortname]\n\t";
|
|
|
|
$IN_REDIRECT['dir'] = realpath(dirname($file));
|
|
|
|
$IN_REDIRECT['prefix'] = trim($section_text['TEST']);
|
|
|
|
|
2005-12-07 08:03:46 +08:00
|
|
|
if (@count($IN_REDIRECT['TESTS']) == 1) {
|
|
|
|
if (is_array($org_file)) {
|
|
|
|
$test_files[] = $org_file[1];
|
|
|
|
} else {
|
|
|
|
$GLOBALS['test_files'] = $test_files;
|
|
|
|
find_files($IN_REDIRECT['TESTS']);
|
|
|
|
$test_files = $GLOBALS['test_files'];
|
|
|
|
}
|
|
|
|
$test_cnt += count($test_files) - 1;
|
|
|
|
$test_idx--;
|
2005-07-18 08:19:28 +08:00
|
|
|
|
2005-12-09 06:51:01 +08:00
|
|
|
show_redirect_start($IN_REDIRECT['TESTS'], $tested, $tested_file);
|
2005-07-18 08:19:28 +08:00
|
|
|
|
2005-12-07 08:03:46 +08:00
|
|
|
// set up environment
|
|
|
|
foreach ($IN_REDIRECT['ENV'] as $k => $v) {
|
|
|
|
putenv("$k=$v");
|
|
|
|
}
|
|
|
|
putenv("REDIR_TEST_DIR=" . realpath($IN_REDIRECT['TESTS']) . DIRECTORY_SEPARATOR);
|
|
|
|
|
|
|
|
usort($test_files, "test_sort");
|
|
|
|
run_all_tests($test_files, $tested);
|
|
|
|
|
2005-12-09 06:51:01 +08:00
|
|
|
show_redirect_ends($IN_REDIRECT['TESTS'], $tested, $tested_file);
|
2005-12-07 08:03:46 +08:00
|
|
|
|
|
|
|
// clean up environment
|
|
|
|
foreach ($IN_REDIRECT['ENV'] as $k => $v) {
|
|
|
|
putenv("$k=");
|
|
|
|
}
|
|
|
|
putenv("REDIR_TEST_DIR=");
|
|
|
|
|
|
|
|
// a redirected test never fails
|
|
|
|
$IN_REDIRECT = false;
|
|
|
|
return 'REDIR';
|
2005-07-06 14:06:23 +08:00
|
|
|
}
|
2005-12-07 08:03:46 +08:00
|
|
|
}
|
|
|
|
if (is_array($org_file) || @count($section_text['REDIRECTTEST']) == 1) {
|
|
|
|
if (is_array($org_file)) $file = $org_file[0];
|
2005-12-09 06:51:01 +08:00
|
|
|
$bork_info = "Redirected test did not contain redirection info";
|
|
|
|
show_result("BORK", $bork_info, '', $temp_filenames);
|
2005-12-07 08:03:46 +08:00
|
|
|
$PHP_FAILED_TESTS['BORKED'][] = array (
|
|
|
|
'name' => $file,
|
|
|
|
'test_name' => '',
|
|
|
|
'output' => '',
|
|
|
|
'diff' => '',
|
2005-12-09 06:51:01 +08:00
|
|
|
'info' => "$bork_info [$file]",
|
2005-12-07 08:03:46 +08:00
|
|
|
);
|
|
|
|
//$test_cnt -= 1; // Only if is_array($org_file) ?
|
|
|
|
//$test_idx--;
|
|
|
|
return 'BORKED';
|
2005-07-06 14:06:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-10-13 03:29:56 +08:00
|
|
|
// Default ini settings
|
2002-10-28 08:07:11 +08:00
|
|
|
$ini_settings = array();
|
2002-11-15 04:12:36 +08:00
|
|
|
// additional ini overwrites
|
|
|
|
//$ini_overwrites[] = 'setting=value';
|
|
|
|
settings2array($ini_overwrites, $ini_settings);
|
2002-10-13 03:29:56 +08:00
|
|
|
|
2005-12-07 08:03:46 +08:00
|
|
|
// Any special ini settings
|
2002-10-28 08:07:11 +08:00
|
|
|
// these may overwrite the test defaults...
|
2002-08-03 19:44:12 +08:00
|
|
|
if (array_key_exists('INI', $section_text)) {
|
2005-12-07 10:01:58 +08:00
|
|
|
if (strpos($section_text['INI'], '{PWD}') !== false) {
|
|
|
|
$section_text['INI'] = str_replace('{PWD}', dirname($file), $section_text['INI']);
|
|
|
|
}
|
2002-11-01 21:03:30 +08:00
|
|
|
settings2array(preg_split( "/[\n\r]+/", $section_text['INI']), $ini_settings);
|
2002-10-28 08:07:11 +08:00
|
|
|
}
|
2002-11-01 21:03:30 +08:00
|
|
|
settings2params($ini_settings);
|
2002-10-08 11:00:06 +08:00
|
|
|
|
|
|
|
// We've satisfied the preconditions - run the test!
|
2005-12-22 06:23:55 +08:00
|
|
|
if ($cfg['show']['php']) {
|
|
|
|
echo "\n========TEST========\n";
|
|
|
|
echo $section_text['FILE'];
|
|
|
|
echo "========DONE========\n";
|
|
|
|
}
|
2005-12-09 06:51:01 +08:00
|
|
|
save_text($test_file, $section_text['FILE'], $temp_file);
|
2002-10-08 11:00:06 +08:00
|
|
|
if (array_key_exists('GET', $section_text)) {
|
|
|
|
$query_string = trim($section_text['GET']);
|
|
|
|
} else {
|
2002-08-03 19:44:12 +08:00
|
|
|
$query_string = '';
|
2002-10-08 11:00:06 +08:00
|
|
|
}
|
2002-05-17 05:48:28 +08:00
|
|
|
|
2005-07-30 01:25:38 +08:00
|
|
|
if (!empty($section_text['ENV'])) {
|
|
|
|
foreach (explode("\n", $section_text['ENV']) as $env) {
|
|
|
|
($env = trim($env)) and putenv($env);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-10-08 11:00:06 +08:00
|
|
|
putenv("REDIRECT_STATUS=1");
|
|
|
|
putenv("QUERY_STRING=$query_string");
|
2005-12-09 06:51:01 +08:00
|
|
|
putenv("PATH_TRANSLATED=$test_file");
|
|
|
|
putenv("SCRIPT_FILENAME=$test_file");
|
2002-10-08 11:00:06 +08:00
|
|
|
|
|
|
|
$args = $section_text['ARGS'] ? ' -- '.$section_text['ARGS'] : '';
|
|
|
|
|
|
|
|
if (array_key_exists('POST', $section_text) && !empty($section_text['POST'])) {
|
|
|
|
|
|
|
|
$post = trim($section_text['POST']);
|
2005-12-09 06:51:01 +08:00
|
|
|
save_text($tmp_post, $post);
|
2002-10-08 11:00:06 +08:00
|
|
|
$content_length = strlen($post);
|
|
|
|
|
|
|
|
putenv("REQUEST_METHOD=POST");
|
|
|
|
putenv("CONTENT_TYPE=application/x-www-form-urlencoded");
|
|
|
|
putenv("CONTENT_LENGTH=$content_length");
|
|
|
|
|
2005-12-09 06:51:01 +08:00
|
|
|
$cmd = "$php$pass_options$ini_settings -f \"$test_file\" 2>&1 < $tmp_post";
|
2002-10-08 11:00:06 +08:00
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
putenv("REQUEST_METHOD=GET");
|
|
|
|
putenv("CONTENT_TYPE=");
|
|
|
|
putenv("CONTENT_LENGTH=");
|
|
|
|
|
2005-07-30 01:25:38 +08:00
|
|
|
if (empty($section_text['ENV'])) {
|
2005-12-09 06:51:01 +08:00
|
|
|
$cmd = "$php$pass_options$ini_settings -f \"$test_file\" $args 2>&1";
|
2005-07-30 01:25:38 +08:00
|
|
|
} else {
|
2005-12-09 06:51:01 +08:00
|
|
|
$cmd = "$php$pass_options$ini_settings < \"$test_file\" $args 2>&1";
|
2005-07-30 01:25:38 +08:00
|
|
|
}
|
2002-10-08 11:00:06 +08:00
|
|
|
}
|
|
|
|
|
2005-12-07 08:03:46 +08:00
|
|
|
if ($leak_check) {
|
|
|
|
$cmd = "valgrind -q --tool=memcheck --log-file-exactly=$memcheck_filename $cmd";
|
|
|
|
}
|
|
|
|
|
2005-03-19 06:43:40 +08:00
|
|
|
if ($DETAILED) echo "
|
2002-05-17 05:48:28 +08:00
|
|
|
CONTENT_LENGTH = " . getenv("CONTENT_LENGTH") . "
|
|
|
|
CONTENT_TYPE = " . getenv("CONTENT_TYPE") . "
|
|
|
|
PATH_TRANSLATED = " . getenv("PATH_TRANSLATED") . "
|
|
|
|
QUERY_STRING = " . getenv("QUERY_STRING") . "
|
|
|
|
REDIRECT_STATUS = " . getenv("REDIRECT_STATUS") . "
|
|
|
|
REQUEST_METHOD = " . getenv("REQUEST_METHOD") . "
|
|
|
|
SCRIPT_FILENAME = " . getenv("SCRIPT_FILENAME") . "
|
|
|
|
COMMAND $cmd
|
|
|
|
";
|
2002-10-08 11:00:06 +08:00
|
|
|
|
2003-02-16 02:09:52 +08:00
|
|
|
// $out = `$cmd`;
|
|
|
|
$out = system_with_timeout($cmd);
|
2002-10-08 11:00:06 +08:00
|
|
|
|
2005-07-30 01:25:38 +08:00
|
|
|
if (!empty($section_text['ENV'])) {
|
|
|
|
foreach (explode("\n", $section_text['ENV']) as $env) {
|
|
|
|
$env = explode('=', $env);
|
|
|
|
putenv($env[0] .'=');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-10-08 11:00:06 +08:00
|
|
|
@unlink($tmp_post);
|
|
|
|
|
2005-12-07 08:03:46 +08:00
|
|
|
$leaked = false;
|
|
|
|
$passed = false;
|
|
|
|
|
|
|
|
if ($leak_check) { // leak check
|
|
|
|
$leaked = @filesize($memcheck_filename) > 0;
|
|
|
|
if (!$leaked) {
|
|
|
|
@unlink($memcheck_filename);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-10-08 11:00:06 +08:00
|
|
|
// Does the output match what is expected?
|
2005-12-07 10:01:58 +08:00
|
|
|
$output = str_replace("\r\n", "\n", trim($out));
|
2002-10-08 11:00:06 +08:00
|
|
|
|
2003-07-25 01:44:16 +08:00
|
|
|
/* when using CGI, strip the headers from the output */
|
|
|
|
if (isset($old_php) && ($pos = strpos($output, "\n\n")) !== FALSE) {
|
|
|
|
$output = substr($output, ($pos + 2));
|
|
|
|
}
|
|
|
|
|
2002-10-27 00:54:30 +08:00
|
|
|
if (isset($section_text['EXPECTF']) || isset($section_text['EXPECTREGEX'])) {
|
|
|
|
if (isset($section_text['EXPECTF'])) {
|
|
|
|
$wanted = trim($section_text['EXPECTF']);
|
|
|
|
} else {
|
|
|
|
$wanted = trim($section_text['EXPECTREGEX']);
|
|
|
|
}
|
2002-10-09 01:51:57 +08:00
|
|
|
$wanted_re = preg_replace('/\r\n/',"\n",$wanted);
|
2002-10-27 00:54:30 +08:00
|
|
|
if (isset($section_text['EXPECTF'])) {
|
|
|
|
$wanted_re = preg_quote($wanted_re, '/');
|
|
|
|
// Stick to basics
|
2003-12-16 22:53:43 +08:00
|
|
|
$wanted_re = str_replace("%e", '\\' . DIRECTORY_SEPARATOR, $wanted_re);
|
2002-10-27 00:54:30 +08:00
|
|
|
$wanted_re = str_replace("%s", ".+?", $wanted_re); //not greedy
|
2005-12-18 00:33:38 +08:00
|
|
|
$wanted_re = str_replace("%w", "\s*", $wanted_re);
|
2002-10-27 00:54:30 +08:00
|
|
|
$wanted_re = str_replace("%i", "[+\-]?[0-9]+", $wanted_re);
|
|
|
|
$wanted_re = str_replace("%d", "[0-9]+", $wanted_re);
|
|
|
|
$wanted_re = str_replace("%x", "[0-9a-fA-F]+", $wanted_re);
|
2003-03-29 05:04:45 +08:00
|
|
|
$wanted_re = str_replace("%f", "[+\-]?\.?[0-9]+\.?[0-9]*(E-?[0-9]+)?", $wanted_re);
|
2002-10-27 00:54:30 +08:00
|
|
|
$wanted_re = str_replace("%c", ".", $wanted_re);
|
|
|
|
// %f allows two points "-.0.0" but that is the best *simple* expression
|
|
|
|
}
|
2002-10-07 08:05:20 +08:00
|
|
|
/* DEBUG YOUR REGEX HERE
|
2002-11-02 20:33:24 +08:00
|
|
|
var_dump($wanted_re);
|
2002-10-08 11:00:06 +08:00
|
|
|
print(str_repeat('=', 80) . "\n");
|
|
|
|
var_dump($output);
|
2002-10-07 08:05:20 +08:00
|
|
|
*/
|
2002-10-21 16:55:49 +08:00
|
|
|
if (preg_match("/^$wanted_re\$/s", $output)) {
|
2005-12-07 08:03:46 +08:00
|
|
|
$passed = true;
|
2005-12-22 06:23:55 +08:00
|
|
|
if (!$cfg['keep']['php']) {
|
|
|
|
@unlink($test_file);
|
|
|
|
}
|
2003-07-25 01:44:16 +08:00
|
|
|
if (isset($old_php)) {
|
|
|
|
$php = $old_php;
|
|
|
|
}
|
2005-12-07 08:03:46 +08:00
|
|
|
if (!$leaked) {
|
2005-12-30 23:05:17 +08:00
|
|
|
show_result("PASS", $tested, $tested_file, '', $temp_filenames);
|
2005-12-07 08:03:46 +08:00
|
|
|
return 'PASSED';
|
|
|
|
}
|
2002-10-08 11:00:06 +08:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$wanted = trim($section_text['EXPECT']);
|
|
|
|
$wanted = preg_replace('/\r\n/',"\n",$wanted);
|
2003-08-09 19:57:02 +08:00
|
|
|
// compare and leave on success
|
2005-12-07 08:03:46 +08:00
|
|
|
if (!strcmp($output, $wanted)) {
|
|
|
|
$passed = true;
|
2005-12-22 06:23:55 +08:00
|
|
|
if (!$cfg['keep']['php']) {
|
|
|
|
@unlink($test_file);
|
|
|
|
}
|
2003-07-25 01:44:16 +08:00
|
|
|
if (isset($old_php)) {
|
|
|
|
$php = $old_php;
|
|
|
|
}
|
2005-12-07 08:03:46 +08:00
|
|
|
if (!$leaked) {
|
2005-12-09 06:51:01 +08:00
|
|
|
show_result("PASS", $tested, $tested_file, '', $temp_filenames);
|
2005-12-07 08:03:46 +08:00
|
|
|
return 'PASSED';
|
|
|
|
}
|
2002-10-08 11:00:06 +08:00
|
|
|
}
|
2003-08-09 19:57:02 +08:00
|
|
|
$wanted_re = NULL;
|
2002-10-08 11:00:06 +08:00
|
|
|
}
|
2002-05-17 05:48:28 +08:00
|
|
|
|
2002-10-08 11:00:06 +08:00
|
|
|
// Test failed so we need to report details.
|
2005-12-07 08:03:46 +08:00
|
|
|
|
|
|
|
if ($leaked) {
|
|
|
|
$restype = 'LEAK';
|
|
|
|
} else if ($warn) {
|
|
|
|
$restype = 'WARN';
|
2003-05-24 04:51:09 +08:00
|
|
|
} else {
|
2005-12-07 08:03:46 +08:00
|
|
|
$restype = 'FAIL';
|
2003-05-24 04:51:09 +08:00
|
|
|
}
|
2002-10-07 08:05:20 +08:00
|
|
|
|
2005-12-07 08:03:46 +08:00
|
|
|
if (!$passed) {
|
|
|
|
// write .exp
|
2005-12-07 19:12:52 +08:00
|
|
|
if (strpos($log_format,'E') !== FALSE && file_put_contents($exp_filename, $wanted) === FALSE) {
|
|
|
|
error("Cannot create expected test output - $exp_filename");
|
2005-12-07 08:03:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// write .out
|
2005-12-07 19:12:52 +08:00
|
|
|
if (strpos($log_format,'O') !== FALSE && file_put_contents($output_filename, $output) === FALSE) {
|
|
|
|
error("Cannot create test output - $output_filename");
|
2005-12-07 08:03:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// write .diff
|
2005-12-07 19:12:52 +08:00
|
|
|
if (strpos($log_format,'D') !== FALSE && file_put_contents($diff_filename, generate_diff($wanted,$wanted_re,$output)) === FALSE) {
|
|
|
|
error("Cannot create test diff - $diff_filename");
|
2005-12-07 08:03:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// write .log
|
2005-12-07 19:12:52 +08:00
|
|
|
if (strpos($log_format,'L') !== FALSE && file_put_contents($log_filename, "
|
2002-05-17 05:48:28 +08:00
|
|
|
---- EXPECTED OUTPUT
|
|
|
|
$wanted
|
|
|
|
---- ACTUAL OUTPUT
|
|
|
|
$output
|
|
|
|
---- FAILED
|
2005-12-07 19:12:52 +08:00
|
|
|
") === FALSE) {
|
|
|
|
error("Cannot create test log - $log_filename");
|
|
|
|
error_report($file, $log_filename, $tested);
|
2005-12-07 08:03:46 +08:00
|
|
|
}
|
2002-08-27 07:26:46 +08:00
|
|
|
}
|
2002-05-17 05:48:28 +08:00
|
|
|
|
2005-12-09 06:51:01 +08:00
|
|
|
show_result($restype, $tested, $tested_file, $info, $temp_filenames);
|
|
|
|
|
|
|
|
$PHP_FAILED_TESTS[$restype.'ED'][] = array (
|
|
|
|
'name' => $file,
|
|
|
|
'test_name' => (is_array($IN_REDIRECT) ? $IN_REDIRECT['via'] : '') . $tested . " [$tested_file]",
|
|
|
|
'output' => $output_filename,
|
|
|
|
'diff' => $diff_filename,
|
|
|
|
'info' => $info
|
|
|
|
);
|
|
|
|
|
2003-07-25 01:44:16 +08:00
|
|
|
if (isset($old_php)) {
|
|
|
|
$php = $old_php;
|
|
|
|
}
|
|
|
|
|
2005-12-07 08:03:46 +08:00
|
|
|
return $restype.'ED';
|
2000-08-28 03:46:06 +08:00
|
|
|
}
|
|
|
|
|
2003-08-10 12:23:02 +08:00
|
|
|
function comp_line($l1,$l2,$is_reg)
|
|
|
|
{
|
2003-08-10 04:02:02 +08:00
|
|
|
if ($is_reg) {
|
|
|
|
return preg_match('/^'.$l1.'$/s', $l2);
|
|
|
|
} else {
|
|
|
|
return !strcmp($l1, $l2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-08-10 12:23:02 +08:00
|
|
|
function count_array_diff($ar1,$ar2,$is_reg,$w,$idx1,$idx2,$cnt1,$cnt2,$steps)
|
|
|
|
{
|
2003-08-10 04:02:02 +08:00
|
|
|
$equal = 0;
|
|
|
|
while ($idx1 < $cnt1 && $idx2 < $cnt2 && comp_line($ar1[$idx1], $ar2[$idx2], $is_reg)) {
|
|
|
|
$idx1++;
|
|
|
|
$idx2++;
|
|
|
|
$equal++;
|
|
|
|
$steps--;
|
|
|
|
}
|
|
|
|
if (--$steps > 0) {
|
|
|
|
$eq1 = 0;
|
|
|
|
$st = $steps / 2;
|
|
|
|
for ($ofs1 = $idx1+1; $ofs1 < $cnt1 && $st-- > 0; $ofs1++) {
|
|
|
|
$eq = count_array_diff($ar1,$ar2,$is_reg,$w,$ofs1,$idx2,$cnt1,$cnt2,$st);
|
|
|
|
if ($eq > $eq1) {
|
|
|
|
$eq1 = $eq;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$eq2 = 0;
|
|
|
|
$st = $steps;
|
|
|
|
for ($ofs2 = $idx2+1; $ofs2 < $cnt2 && $st-- > 0; $ofs2++) {
|
|
|
|
$eq = count_array_diff($ar1,$ar2,$is_reg,$w,$idx1,$ofs2,$cnt1,$cnt2,$st);
|
|
|
|
if ($eq > $eq2) {
|
|
|
|
$eq2 = $eq;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($eq1 > $eq2) {
|
|
|
|
$equal += $eq1;
|
|
|
|
} else if ($eq2 > 0) {
|
|
|
|
$equal += $eq2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $equal;
|
|
|
|
}
|
|
|
|
|
2003-08-10 12:23:02 +08:00
|
|
|
function generate_array_diff($ar1,$ar2,$is_reg,$w)
|
|
|
|
{
|
2003-08-10 04:02:02 +08:00
|
|
|
$idx1 = 0; $ofs1 = 0; $cnt1 = count($ar1);
|
|
|
|
$idx2 = 0; $ofs2 = 0; $cnt2 = count($ar2);
|
|
|
|
$diff = array();
|
|
|
|
$old1 = array();
|
|
|
|
$old2 = array();
|
|
|
|
|
|
|
|
while ($idx1 < $cnt1 && $idx2 < $cnt2) {
|
|
|
|
if (comp_line($ar1[$idx1], $ar2[$idx2], $is_reg)) {
|
|
|
|
$idx1++;
|
|
|
|
$idx2++;
|
|
|
|
continue;
|
|
|
|
} else {
|
|
|
|
$c1 = count_array_diff($ar1,$ar2,$is_reg,$w,$idx1+1,$idx2,$cnt1,$cnt2,10);
|
|
|
|
$c2 = count_array_diff($ar1,$ar2,$is_reg,$w,$idx1,$idx2+1,$cnt1,$cnt2,10);
|
|
|
|
if ($c1 > $c2) {
|
|
|
|
$old1[$idx1] = sprintf("%03d- ", $idx1+1).$w[$idx1++];
|
|
|
|
$last = 1;
|
|
|
|
} else if ($c2 > 0) {
|
|
|
|
$old2[$idx2] = sprintf("%03d+ ", $idx2+1).$ar2[$idx2++];
|
|
|
|
$last = 2;
|
|
|
|
} else {
|
|
|
|
$old1[$idx1] = sprintf("%03d- ", $idx1+1).$w[$idx1++];
|
|
|
|
$old2[$idx2] = sprintf("%03d+ ", $idx2+1).$ar2[$idx2++];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
reset($old1); $k1 = key($old1); $l1 = -2;
|
|
|
|
reset($old2); $k2 = key($old2); $l2 = -2;
|
|
|
|
while ($k1 !== NULL || $k2 !== NULL) {
|
|
|
|
if ($k1 == $l1+1 || $k2 === NULL) {
|
|
|
|
$l1 = $k1;
|
|
|
|
$diff[] = current($old1);
|
2004-03-31 07:58:47 +08:00
|
|
|
$k1 = next($old1) ? key($old1) : NULL;
|
2003-08-10 04:02:02 +08:00
|
|
|
} else if ($k2 == $l2+1 || $k1 === NULL) {
|
|
|
|
$l2 = $k2;
|
|
|
|
$diff[] = current($old2);
|
2004-03-31 07:58:47 +08:00
|
|
|
$k2 = next($old2) ? key($old2) : NULL;
|
2003-08-10 04:02:02 +08:00
|
|
|
} else if ($k1 < $k2) {
|
|
|
|
$l1 = $k1;
|
|
|
|
$diff[] = current($old1);
|
2004-03-31 07:58:47 +08:00
|
|
|
$k1 = next($old1) ? key($old1) : NULL;
|
2003-08-10 04:02:02 +08:00
|
|
|
} else {
|
|
|
|
$l2 = $k2;
|
|
|
|
$diff[] = current($old2);
|
2004-03-31 07:58:47 +08:00
|
|
|
$k2 = next($old2) ? key($old2) : NULL;
|
2003-08-10 04:02:02 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
while ($idx1 < $cnt1) {
|
|
|
|
$diff[] = sprintf("%03d- ", $idx1+1).$w[$idx1++];
|
|
|
|
}
|
|
|
|
while ($idx2 < $cnt2) {
|
|
|
|
$diff[] = sprintf("%03d+ ", $idx2+1).$ar2[$idx2++];
|
|
|
|
}
|
|
|
|
return $diff;
|
|
|
|
}
|
|
|
|
|
2003-08-09 19:57:02 +08:00
|
|
|
function generate_diff($wanted,$wanted_re,$output)
|
2002-10-02 09:52:25 +08:00
|
|
|
{
|
2002-10-08 11:00:06 +08:00
|
|
|
$w = explode("\n", $wanted);
|
|
|
|
$o = explode("\n", $output);
|
2003-08-10 01:21:19 +08:00
|
|
|
$r = is_null($wanted_re) ? $w : explode("\n", $wanted_re);
|
|
|
|
$diff = generate_array_diff($r,$o,!is_null($wanted_re),$w);
|
2002-10-08 11:00:06 +08:00
|
|
|
return implode("\r\n", $diff);
|
2002-08-27 07:26:46 +08:00
|
|
|
}
|
|
|
|
|
2002-10-02 09:52:25 +08:00
|
|
|
function error($message)
|
|
|
|
{
|
2002-05-19 21:16:03 +08:00
|
|
|
echo "ERROR: {$message}\n";
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2002-11-01 21:03:30 +08:00
|
|
|
function settings2array($settings, &$ini_settings)
|
|
|
|
{
|
|
|
|
foreach($settings as $setting) {
|
|
|
|
if (strpos($setting, '=')!==false) {
|
2002-11-03 23:42:59 +08:00
|
|
|
$setting = explode("=", $setting, 2);
|
2002-11-01 21:03:30 +08:00
|
|
|
$name = trim(strtolower($setting[0]));
|
|
|
|
$value = trim($setting[1]);
|
|
|
|
$ini_settings[$name] = $value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function settings2params(&$ini_settings)
|
|
|
|
{
|
2003-08-10 19:46:03 +08:00
|
|
|
$settings = '';
|
|
|
|
foreach($ini_settings as $name => $value) {
|
|
|
|
$value = addslashes($value);
|
|
|
|
$settings .= " -d \"$name=$value\"";
|
2002-11-01 21:03:30 +08:00
|
|
|
}
|
2003-08-10 19:46:03 +08:00
|
|
|
$ini_settings = $settings;
|
2002-11-01 21:03:30 +08:00
|
|
|
}
|
|
|
|
|
2003-03-09 00:28:35 +08:00
|
|
|
function compute_summary()
|
|
|
|
{
|
|
|
|
global $n_total, $test_results, $ignored_by_ext, $sum_results, $percent_results;
|
|
|
|
|
|
|
|
$n_total = count($test_results);
|
|
|
|
$n_total += $ignored_by_ext;
|
2005-12-07 08:03:46 +08:00
|
|
|
$sum_results = array('PASSED'=>0, 'WARNED'=>0, 'SKIPPED'=>0, 'FAILED'=>0, 'BORKED'=>0, 'LEAKED'=>0);
|
2003-03-09 00:28:35 +08:00
|
|
|
foreach ($test_results as $v) {
|
|
|
|
$sum_results[$v]++;
|
|
|
|
}
|
|
|
|
$sum_results['SKIPPED'] += $ignored_by_ext;
|
|
|
|
$percent_results = array();
|
|
|
|
while (list($v,$n) = each($sum_results)) {
|
|
|
|
$percent_results[$v] = (100.0 * $n) / $n_total;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-12-07 08:03:46 +08:00
|
|
|
function get_summary($show_ext_summary, $show_html)
|
2003-03-09 00:28:35 +08:00
|
|
|
{
|
2005-12-07 08:03:46 +08:00
|
|
|
global $exts_skipped, $exts_tested, $n_total, $sum_results, $percent_results, $end_time, $start_time, $failed_test_summary, $PHP_FAILED_TESTS, $leak_check;
|
2003-03-09 00:28:35 +08:00
|
|
|
|
2003-12-30 00:07:08 +08:00
|
|
|
$x_total = $n_total - $sum_results['SKIPPED'] - $sum_results['BORKED'];
|
2004-01-16 23:17:37 +08:00
|
|
|
if ($x_total) {
|
|
|
|
$x_warned = (100.0 * $sum_results['WARNED']) / $x_total;
|
|
|
|
$x_failed = (100.0 * $sum_results['FAILED']) / $x_total;
|
2005-12-07 08:03:46 +08:00
|
|
|
$x_leaked = (100.0 * $sum_results['LEAKED']) / $x_total;
|
2004-01-16 23:17:37 +08:00
|
|
|
$x_passed = (100.0 * $sum_results['PASSED']) / $x_total;
|
|
|
|
} else {
|
2005-12-21 00:17:30 +08:00
|
|
|
$x_warned = $x_failed = $x_passed = $x_leaked = 0;
|
2004-01-16 23:17:37 +08:00
|
|
|
}
|
2003-12-30 00:07:08 +08:00
|
|
|
|
2003-03-09 00:28:35 +08:00
|
|
|
$summary = "";
|
2005-12-07 08:03:46 +08:00
|
|
|
if ($show_html) $summary .= "<pre>\n";
|
2003-03-09 00:28:35 +08:00
|
|
|
if ($show_ext_summary) {
|
|
|
|
$summary .= "
|
|
|
|
=====================================================================
|
|
|
|
TEST RESULT SUMMARY
|
|
|
|
---------------------------------------------------------------------
|
|
|
|
Exts skipped : " . sprintf("%4d",$exts_skipped) . "
|
|
|
|
Exts tested : " . sprintf("%4d",$exts_tested) . "
|
|
|
|
---------------------------------------------------------------------
|
|
|
|
";
|
|
|
|
}
|
|
|
|
$summary .= "
|
2003-12-30 00:07:08 +08:00
|
|
|
Number of tests : " . sprintf("%4d",$n_total). " " . sprintf("%8d",$x_total);
|
2003-08-10 01:21:19 +08:00
|
|
|
if ($sum_results['BORKED']) {
|
|
|
|
$summary .= "
|
2005-02-23 09:16:21 +08:00
|
|
|
Tests borked : " . sprintf("%4d (%5.1f%%)",$sum_results['BORKED'],$percent_results['BORKED']) . " --------";
|
2003-08-10 01:21:19 +08:00
|
|
|
}
|
|
|
|
$summary .= "
|
2005-02-23 09:16:21 +08:00
|
|
|
Tests skipped : " . sprintf("%4d (%5.1f%%)",$sum_results['SKIPPED'],$percent_results['SKIPPED']) . " --------
|
2005-12-07 08:03:46 +08:00
|
|
|
Tests warned : " . sprintf("%4d (%5.1f%%)",$sum_results['WARNED'], $percent_results['WARNED']) . " " . sprintf("(%5.1f%%)",$x_warned) . "
|
|
|
|
Tests failed : " . sprintf("%4d (%5.1f%%)",$sum_results['FAILED'], $percent_results['FAILED']) . " " . sprintf("(%5.1f%%)",$x_failed);
|
|
|
|
if ($leak_check) {
|
|
|
|
$summary .= "
|
|
|
|
Tests leaked : " . sprintf("%4d (%5.1f%%)",$sum_results['LEAKED'], $percent_results['LEAKED']) . " " . sprintf("(%5.1f%%)",$x_leaked);
|
|
|
|
}
|
|
|
|
$summary .= "
|
|
|
|
Tests passed : " . sprintf("%4d (%5.1f%%)",$sum_results['PASSED'], $percent_results['PASSED']) . " " . sprintf("(%5.1f%%)",$x_passed) . "
|
2003-03-09 00:28:35 +08:00
|
|
|
---------------------------------------------------------------------
|
|
|
|
Time taken : " . sprintf("%4d seconds", $end_time - $start_time) . "
|
|
|
|
=====================================================================
|
|
|
|
";
|
|
|
|
$failed_test_summary = '';
|
2005-06-15 17:21:15 +08:00
|
|
|
if (count($PHP_FAILED_TESTS['BORKED'])) {
|
2003-03-09 00:28:35 +08:00
|
|
|
$failed_test_summary .= "
|
|
|
|
=====================================================================
|
2005-06-15 17:21:15 +08:00
|
|
|
BORKED TEST SUMMARY
|
2003-03-09 00:28:35 +08:00
|
|
|
---------------------------------------------------------------------
|
|
|
|
";
|
2005-06-15 17:21:15 +08:00
|
|
|
foreach ($PHP_FAILED_TESTS['BORKED'] as $failed_test_data) {
|
|
|
|
$failed_test_summary .= $failed_test_data['info'] . "\n";
|
|
|
|
}
|
|
|
|
$failed_test_summary .= "=====================================================================\n";
|
2003-03-09 00:28:35 +08:00
|
|
|
}
|
2005-06-15 17:21:15 +08:00
|
|
|
|
|
|
|
if (count($PHP_FAILED_TESTS['FAILED'])) {
|
|
|
|
$failed_test_summary .= "
|
|
|
|
=====================================================================
|
|
|
|
FAILED TEST SUMMARY
|
|
|
|
---------------------------------------------------------------------
|
|
|
|
";
|
|
|
|
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";
|
2003-03-09 00:28:35 +08:00
|
|
|
}
|
|
|
|
|
2005-12-07 08:03:46 +08:00
|
|
|
if (count($PHP_FAILED_TESTS['LEAKED'])) {
|
|
|
|
$failed_test_summary .= "
|
|
|
|
=====================================================================
|
|
|
|
LEAKED TEST SUMMARY
|
|
|
|
---------------------------------------------------------------------
|
|
|
|
";
|
|
|
|
foreach ($PHP_FAILED_TESTS['LEAKED'] as $failed_test_data) {
|
|
|
|
$failed_test_summary .= $failed_test_data['test_name'] . $failed_test_data['info'] . "\n";
|
|
|
|
}
|
|
|
|
$failed_test_summary .= "=====================================================================\n";
|
|
|
|
}
|
|
|
|
|
2003-03-09 00:28:35 +08:00
|
|
|
if ($failed_test_summary && !getenv('NO_PHPTEST_SUMMARY')) {
|
|
|
|
$summary .= $failed_test_summary;
|
|
|
|
}
|
|
|
|
|
2005-12-07 08:03:46 +08:00
|
|
|
if ($show_html) $summary .= "</pre>";
|
|
|
|
|
2003-03-09 00:28:35 +08:00
|
|
|
return $summary;
|
|
|
|
}
|
|
|
|
|
2005-12-07 08:03:46 +08:00
|
|
|
function show_start($start_time)
|
|
|
|
{
|
|
|
|
global $html_output, $html_file;
|
|
|
|
|
|
|
|
if ($html_output)
|
|
|
|
{
|
|
|
|
fwrite($html_file, "<h2>Time Start: " . date('Y-m-d H:i:s', $start_time) . "</h2>\n");
|
|
|
|
fwrite($html_file, "<table>\n");
|
|
|
|
}
|
|
|
|
echo "TIME START " . date('Y-m-d H:i:s', $start_time) . "\n=====================================================================\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
function show_end($end_time)
|
|
|
|
{
|
|
|
|
global $html_output, $html_file;
|
|
|
|
|
|
|
|
if ($html_output)
|
|
|
|
{
|
|
|
|
fwrite($html_file, "</table>\n");
|
|
|
|
fwrite($html_file, "<h2>Time End: " . date('Y-m-d H:i:s', $end_time) . "</h2>\n");
|
|
|
|
}
|
2005-12-09 08:30:41 +08:00
|
|
|
echo "=====================================================================\nTIME END " . date('Y-m-d H:i:s', $end_time) . "\n";
|
2005-12-07 08:03:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
function show_summary()
|
|
|
|
{
|
|
|
|
global $html_output, $html_file;
|
|
|
|
|
|
|
|
if ($html_output)
|
|
|
|
{
|
|
|
|
fwrite($html_file, "<hr/>\n" . get_summary(true, true));
|
|
|
|
}
|
|
|
|
echo get_summary(true, false);
|
|
|
|
}
|
|
|
|
|
2005-12-09 06:51:01 +08:00
|
|
|
function show_redirect_start($tests, $tested, $tested_file)
|
2005-12-07 08:03:46 +08:00
|
|
|
{
|
|
|
|
global $html_output, $html_file;
|
|
|
|
|
|
|
|
if ($html_output)
|
|
|
|
{
|
2005-12-09 06:51:01 +08:00
|
|
|
fwrite($html_file, "<tr><td colspan='3'>---> $tests ($tested [$tested_file]) begin</td></tr>\n");
|
2005-12-07 08:03:46 +08:00
|
|
|
}
|
2005-12-09 06:51:01 +08:00
|
|
|
echo "---> $tests ($tested [$tested_file]) begin\n";
|
2005-12-07 08:03:46 +08:00
|
|
|
}
|
|
|
|
|
2005-12-09 06:51:01 +08:00
|
|
|
function show_redirect_ends($tests, $tested, $tested_file)
|
2005-12-07 08:03:46 +08:00
|
|
|
{
|
|
|
|
global $html_output, $html_file;
|
|
|
|
|
|
|
|
if ($html_output)
|
|
|
|
{
|
2005-12-09 06:51:01 +08:00
|
|
|
fwrite($html_file, "<tr><td colspan='3'>---> $tests ($tested [$tested_file]) done</td></tr>\n");
|
2005-12-07 08:03:46 +08:00
|
|
|
}
|
2005-12-09 06:51:01 +08:00
|
|
|
echo "---> $tests ($tested [$tested_file]) done\n";
|
2005-12-07 08:03:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
function show_test($test_idx, $shortname)
|
|
|
|
{
|
|
|
|
global $test_cnt;
|
|
|
|
|
|
|
|
echo "TEST $test_idx/$test_cnt [$shortname]\r";
|
|
|
|
flush();
|
|
|
|
}
|
|
|
|
|
2005-12-09 06:51:01 +08:00
|
|
|
function show_result($result, $tested, $tested_file, $extra = '', $temp_filenames = null)
|
2005-12-07 08:03:46 +08:00
|
|
|
{
|
2005-12-09 06:51:01 +08:00
|
|
|
global $html_output, $html_file, $temp_target, $temp_urlbase;
|
|
|
|
|
|
|
|
echo "$result $tested [$tested_file] $extra\n";
|
2005-12-07 08:03:46 +08:00
|
|
|
|
|
|
|
if ($html_output)
|
|
|
|
{
|
2005-12-09 17:50:30 +08:00
|
|
|
if (isset($temp_filenames['file']) && @file_exists($temp_filenames['file'])) {
|
2005-12-09 06:51:01 +08:00
|
|
|
$url = str_replace($temp_target, $temp_urlbase, $temp_filenames['file']);
|
|
|
|
$tested = "<a href='$url'>$tested</a>";
|
|
|
|
}
|
|
|
|
if (isset($temp_filenames['skip']) && @file_exists($temp_filenames['skip'])) {
|
|
|
|
if (empty($extra)) {
|
|
|
|
$extra = "skipif";
|
|
|
|
}
|
|
|
|
$url = str_replace($temp_target, $temp_urlbase, $temp_filenames['skip']);
|
|
|
|
$extra = "<a href='$url'>$extra</a>";
|
|
|
|
} else if (empty($extra)) {
|
|
|
|
$extra = " ";
|
|
|
|
}
|
|
|
|
if (isset($temp_filenames['diff']) && @file_exists($temp_filenames['diff'])) {
|
|
|
|
$url = str_replace($temp_target, $temp_urlbase, $temp_filenames['diff']);
|
|
|
|
$diff = "<a href='$url'>diff</a>";
|
|
|
|
} else {
|
|
|
|
$diff = " ";
|
|
|
|
}
|
|
|
|
if (isset($temp_filenames['mem']) && @file_exists($temp_filenames['mem'])) {
|
|
|
|
$url = str_replace($temp_target, $temp_urlbase, $temp_filenames['mem']);
|
|
|
|
$mem = "<a href='$url'>leaks</a>";
|
|
|
|
} else {
|
|
|
|
$mem = " ";
|
|
|
|
}
|
2005-12-07 08:03:46 +08:00
|
|
|
fwrite($html_file,
|
|
|
|
"<tr>" .
|
|
|
|
"<td>$result</td>" .
|
|
|
|
"<td>$tested</td>" .
|
2005-12-09 06:51:01 +08:00
|
|
|
"<td>$extra</td>" .
|
|
|
|
"<td>$diff</td>" .
|
|
|
|
"<td>$mem</td>" .
|
2005-12-07 08:03:46 +08:00
|
|
|
"</tr>\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-05-09 14:39:05 +08:00
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* tab-width: 4
|
|
|
|
* c-basic-offset: 4
|
|
|
|
* End:
|
2002-10-08 11:00:06 +08:00
|
|
|
* vim: noet sw=4 ts=4
|
2002-05-09 14:39:05 +08:00
|
|
|
*/
|
2001-05-27 17:09:00 +08:00
|
|
|
?>
|