2000-08-28 03:46:06 +08:00
|
|
|
<?php
|
2000-08-29 17:12:44 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
2001-12-11 23:32:16 +08:00
|
|
|
| PHP Version 4 |
|
2000-08-29 17:12:44 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2001-12-11 23:32:16 +08:00
|
|
|
| Copyright (c) 1997-2002 The PHP Group |
|
2000-08-29 17:12:44 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| This source file is subject to version 2.02 of the PHP license, |
|
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
|
|
|
| available at through the world-wide-web at |
|
|
|
|
| http://www.php.net/license/2_02.txt. |
|
|
|
|
| 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> |
|
2002-05-17 05:48:28 +08:00
|
|
|
| (based on version by: Stig Bakken <ssb@fast.no>) |
|
2000-08-29 17:12:44 +08:00
|
|
|
| (based on the PHP 3 test framework by Rasmus Lerdorf) |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
2002-05-17 05:48:28 +08:00
|
|
|
/*
|
2002-10-08 11:00:06 +08:00
|
|
|
Require exact specification of PHP executable to test (no guessing!).
|
|
|
|
Die if any internal errors encountered in test script.
|
|
|
|
Regularized output for simpler post-processing of output.
|
|
|
|
Optionally output error lines indicating the failing test source and log
|
|
|
|
for direct jump with MSVC or Emacs.
|
2002-05-17 05:48:28 +08:00
|
|
|
*/
|
|
|
|
|
2000-12-08 08:21:09 +08:00
|
|
|
/*
|
|
|
|
* TODO:
|
2001-03-21 14:04:36 +08:00
|
|
|
* - do not test PEAR components if base class and/or component class cannot be instanciated
|
2000-12-08 08:21:09 +08:00
|
|
|
*/
|
|
|
|
|
2003-01-07 23:21:34 +08:00
|
|
|
|
|
|
|
/* Sanity check to ensure that pcre extension needed by this script is avaliable.
|
|
|
|
* 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;
|
|
|
|
}
|
|
|
|
|
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');
|
|
|
|
|
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');
|
2002-05-19 21:16:03 +08:00
|
|
|
} else {
|
|
|
|
error("environment variable TEST_PHP_EXECUTABLE must be set to specify PHP executable!");
|
|
|
|
}
|
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-10-07 23:16:47 +08:00
|
|
|
if (function_exists('is_executable') && !@is_executable($php)) {
|
2002-05-19 21:16:03 +08:00
|
|
|
error("invalid PHP executable specified by TEST_PHP_EXECUTABLE = " . $php);
|
|
|
|
}
|
2000-08-28 03:46:06 +08:00
|
|
|
|
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')) {
|
|
|
|
define('DETAILED', getenv('TEST_PHP_DETAILED'));
|
2002-05-19 21:24:38 +08:00
|
|
|
} else {
|
|
|
|
define('DETAILED', 0);
|
|
|
|
}
|
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-10-30 18:42:55 +08:00
|
|
|
// 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() . "
|
2002-11-15 22:23:40 +08:00
|
|
|
ZEND_VERSION: " . zend_version() . "
|
2002-10-30 18:42:55 +08:00
|
|
|
PHP_OS : " . PHP_OS . "
|
|
|
|
INI actual : " . realpath(get_cfg_var("cfg_file_path")) . "
|
2002-11-02 20:55:06 +08:00
|
|
|
More .INIs : " . (function_exists(\'php_ini_scanned_files\') ? str_replace("\n","", php_ini_scanned_files()) : "** not determined **"); ?>';
|
2002-10-30 18:42:55 +08:00
|
|
|
save_text($info_file, $php_info);
|
2002-11-15 04:12:36 +08:00
|
|
|
$ini_overwrites = array(
|
|
|
|
'output_handler=',
|
|
|
|
'zlib.output_compression=Off',
|
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',
|
2002-11-15 04:12:36 +08:00
|
|
|
'error_reporting=2047',
|
|
|
|
'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',
|
|
|
|
'docref_root=/phpmanual/',
|
|
|
|
'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
|
|
|
);
|
2002-11-03 18:52:19 +08:00
|
|
|
$info_params = array();
|
2002-11-15 04:12:36 +08:00
|
|
|
settings2array($ini_overwrites,$info_params);
|
2002-11-03 18:52:19 +08:00
|
|
|
settings2params($info_params);
|
|
|
|
$php_info = `$php $info_params $info_file`;
|
2002-10-30 18:42:55 +08:00
|
|
|
@unlink($info_file);
|
|
|
|
|
2002-05-17 05:48:28 +08:00
|
|
|
// Write test context information.
|
2000-08-28 03:46:06 +08:00
|
|
|
|
2002-05-17 05:48:28 +08:00
|
|
|
echo "
|
|
|
|
=====================================================================
|
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 : ";
|
|
|
|
foreach ($user_tests as $test_dir) {
|
|
|
|
echo "{$test_dir}\n ";
|
|
|
|
}
|
|
|
|
echo "
|
2002-05-17 05:48:28 +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();
|
|
|
|
$test_results = array();
|
2002-10-13 03:29:56 +08:00
|
|
|
$GLOBALS['__PHP_FAILED_TESTS__'] = array();
|
2001-03-21 14:04:36 +08:00
|
|
|
|
2002-05-19 21:16:03 +08:00
|
|
|
// If parameters given assume they represent selected tests to run.
|
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++) {
|
|
|
|
$testfile = realpath($argv[$i]);
|
2002-11-03 05:48:05 +08:00
|
|
|
if (is_dir($testfile)) {
|
|
|
|
find_files($testfile);
|
2002-11-03 06:06:03 +08:00
|
|
|
} else if(preg_match("/\.phpt$/", $testfile)) {
|
2002-11-03 05:48:05 +08:00
|
|
|
$test_files[] = $testfile;
|
|
|
|
}
|
2002-05-19 21:16:03 +08:00
|
|
|
}
|
2002-10-02 09:52:25 +08:00
|
|
|
|
|
|
|
// Run selected tests.
|
2002-11-03 05:48:05 +08:00
|
|
|
if (count($test_files)) {
|
2002-11-04 18:45:41 +08:00
|
|
|
usort($test_files, "test_sort");
|
2002-10-02 09:52:25 +08:00
|
|
|
echo "Running selected tests.\n";
|
2002-11-03 05:48:05 +08:00
|
|
|
foreach($test_files AS $name) {
|
|
|
|
$test_results[$name] = run_test($php,$name);
|
2002-10-02 09:52:25 +08:00
|
|
|
}
|
2002-10-24 04:53:20 +08:00
|
|
|
if(getenv('REPORT_EXIT_STATUS') == 1 and ereg('FAILED( |$)', implode(' ', $test_results))) {
|
|
|
|
exit(1);
|
|
|
|
}
|
2002-10-02 09:52:25 +08:00
|
|
|
exit(0);
|
|
|
|
}
|
2001-08-28 00:39:49 +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);
|
2002-11-22 00:48:39 +08:00
|
|
|
$test_dirs = array('tests', 'pear', 'ext');
|
2002-10-02 09:52:25 +08:00
|
|
|
|
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'))) {
|
2002-10-05 05:19:51 +08:00
|
|
|
$skip_ext = ($is_ext_dir && !in_array($name, $exts_to_test));
|
|
|
|
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
|
|
|
|
2002-11-04 18:45:41 +08:00
|
|
|
function test_sort($a, $b) {
|
|
|
|
global $cwd;
|
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
usort($test_files, "test_sort");
|
2000-08-28 03:46:06 +08:00
|
|
|
|
2002-05-19 21:16:03 +08:00
|
|
|
$start_time = time();
|
2000-08-28 03:46:06 +08:00
|
|
|
|
2002-05-19 21:16:03 +08:00
|
|
|
echo "TIME START " . date('Y-m-d H:i:s', $start_time) . "
|
2002-05-17 05:48:28 +08:00
|
|
|
=====================================================================
|
2002-05-19 21:16:03 +08:00
|
|
|
";
|
2001-05-03 00:39:04 +08:00
|
|
|
|
2002-05-17 05:48:28 +08:00
|
|
|
foreach ($test_files as $name) {
|
2002-10-08 11:00:06 +08:00
|
|
|
$test_results[$name] = run_test($php,$name);
|
2000-08-28 03:46:06 +08:00
|
|
|
}
|
|
|
|
|
2002-05-19 21:16:03 +08:00
|
|
|
$end_time = time();
|
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
|
|
|
}
|
|
|
|
|
2002-05-17 05:48:28 +08:00
|
|
|
$n_total = count($test_results);
|
2002-10-05 05:19:51 +08:00
|
|
|
$n_total += $ignored_by_ext;
|
|
|
|
|
2002-05-19 21:16:03 +08:00
|
|
|
$sum_results = array('PASSED'=>0, 'SKIPPED'=>0, 'FAILED'=>0);
|
2002-05-17 05:48:28 +08:00
|
|
|
foreach ($test_results as $v) {
|
2002-10-08 11:00:06 +08:00
|
|
|
$sum_results[$v]++;
|
2000-08-28 03:46:06 +08:00
|
|
|
}
|
2002-10-05 05:19:51 +08:00
|
|
|
$sum_results['SKIPPED'] += $ignored_by_ext;
|
2002-05-17 05:48:28 +08:00
|
|
|
$percent_results = array();
|
|
|
|
while (list($v,$n) = each($sum_results)) {
|
2002-10-08 11:00:06 +08:00
|
|
|
$percent_results[$v] = (100.0 * $n) / $n_total;
|
2000-08-28 03:46:06 +08:00
|
|
|
}
|
|
|
|
|
2002-05-17 05:48:28 +08:00
|
|
|
echo "
|
|
|
|
=====================================================================
|
2002-12-18 03:07:15 +08:00
|
|
|
TIME END " . date('Y-m-d H:i:s', $end_time);
|
|
|
|
|
|
|
|
$summary = "
|
2002-05-17 05:48:28 +08:00
|
|
|
=====================================================================
|
2002-05-19 21:16:03 +08:00
|
|
|
TEST RESULT SUMMARY
|
|
|
|
---------------------------------------------------------------------
|
2002-10-05 05:19:51 +08:00
|
|
|
Exts skipped : " . sprintf("%4d",$exts_skipped) . "
|
|
|
|
Exts tested : " . sprintf("%4d",$exts_tested) . "
|
|
|
|
---------------------------------------------------------------------
|
2002-05-17 05:48:28 +08:00
|
|
|
Number of tests : " . sprintf("%4d",$n_total) . "
|
|
|
|
Tests skipped : " . sprintf("%4d (%2.1f%%)",$sum_results['SKIPPED'],$percent_results['SKIPPED']) . "
|
|
|
|
Tests failed : " . sprintf("%4d (%2.1f%%)",$sum_results['FAILED'],$percent_results['FAILED']) . "
|
|
|
|
Tests passed : " . sprintf("%4d (%2.1f%%)",$sum_results['PASSED'],$percent_results['PASSED']) . "
|
2002-10-05 05:19:51 +08:00
|
|
|
---------------------------------------------------------------------
|
2002-05-19 21:16:03 +08:00
|
|
|
Time taken : " . sprintf("%4d seconds", $end_time - $start_time) . "
|
2002-05-17 05:48:28 +08:00
|
|
|
=====================================================================
|
|
|
|
";
|
2002-12-18 03:07:15 +08:00
|
|
|
echo $summary;
|
2002-05-17 05:48:28 +08:00
|
|
|
|
2002-10-24 21:13:23 +08:00
|
|
|
$failed_test_summary = '';
|
|
|
|
if (count($GLOBALS['__PHP_FAILED_TESTS__'])) {
|
2002-12-18 03:07:15 +08:00
|
|
|
$failed_test_summary .= "
|
2002-10-24 21:13:23 +08:00
|
|
|
=====================================================================
|
|
|
|
FAILED TEST SUMMARY
|
|
|
|
---------------------------------------------------------------------
|
|
|
|
";
|
2002-12-18 03:07:15 +08:00
|
|
|
foreach ($GLOBALS['__PHP_FAILED_TESTS__'] as $failed_test_data) {
|
|
|
|
$failed_test_summary .= $failed_test_data['test_name'] . "\n";
|
|
|
|
}
|
|
|
|
$failed_test_summary .= "=====================================================================\n";
|
2002-10-24 21:13:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($failed_test_summary && !getenv('NO_PHPTEST_SUMMARY')) {
|
|
|
|
echo $failed_test_summary;
|
|
|
|
}
|
|
|
|
|
2002-10-13 03:29:56 +08:00
|
|
|
define('PHP_QA_EMAIL', 'php-qa@lists.php.net');
|
|
|
|
define('QA_SUBMISSION_PAGE', 'http://qa.php.net/buildtest-process.php');
|
|
|
|
|
2002-10-24 04:53:20 +08:00
|
|
|
/* We got failed Tests, offer the user to send and 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+");
|
2002-12-18 03:07:15 +08:00
|
|
|
echo "\nPlease allow this report to be send to the PHP QA\nteam. This will give us a better understanding in how\n";
|
|
|
|
echo "PHP's test cases are doing.\n";
|
2002-11-10 16:56:28 +08:00
|
|
|
echo "(choose \"s\" to just save the results to a file)? [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');
|
2002-10-13 03:29:56 +08:00
|
|
|
|
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
|
|
|
|
*/
|
|
|
|
|
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();
|
|
|
|
$fp = fopen("php://stdin", "r+");
|
|
|
|
$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";
|
2002-12-18 03:07:15 +08:00
|
|
|
$failed_tests_data .= $summary . "\n";
|
|
|
|
|
|
|
|
if ($sum_results['FAILED']) {
|
|
|
|
foreach ($GLOBALS['__PHP_FAILED_TESTS__'] as $test_info) {
|
|
|
|
$failed_tests_data .= $sep . $test_info['name'];
|
|
|
|
$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;
|
|
|
|
$failed_tests_data .= "OS:\n". PHP_OS. "\n\n";
|
2002-10-28 10:00:56 +08:00
|
|
|
$automake = $autoconf = $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") {
|
|
|
|
$automake = shell_exec('automake --version');
|
|
|
|
$autoconf = shell_exec('autoconf --version');
|
2002-12-20 08:28:08 +08:00
|
|
|
/* Always use the generated libtool - Mac OSX uses 'glibtool' */
|
|
|
|
$libtool = shell_exec('./libtool --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);
|
|
|
|
if($cc_status == 0) {
|
|
|
|
$compiler = shell_exec(getenv('CC')." $flag 2>&1");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2002-10-28 10:00:56 +08:00
|
|
|
}
|
|
|
|
$failed_tests_data .= "Automake:\n$automake\n";
|
|
|
|
$failed_tests_data .= "Autoconf:\n$autoconf\n";
|
|
|
|
$failed_tests_data .= "Libtool:\n$libtool\n";
|
|
|
|
$failed_tests_data .= "Compiler:\n$compiler\n";
|
|
|
|
$failed_tests_data .= "Bison:\n". @shell_exec('bison --version'). "\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
|
|
|
|
|
|
|
$compression = 0;
|
|
|
|
|
2002-12-18 03:07:15 +08:00
|
|
|
if ($just_save_results || !mail_qa_team($failed_tests_data, $compression, $status)) {
|
2003-02-01 21:28:32 +08:00
|
|
|
$output_file = 'php_test_results_' . date('Ymd_Hi') . ( $compression ? '.txt.gz' : '.txt' );
|
2002-10-13 03:29:56 +08:00
|
|
|
$fp = fopen($output_file, "w");
|
|
|
|
fwrite($fp, $failed_tests_data);
|
|
|
|
fclose($fp);
|
|
|
|
|
2002-11-10 16:56:28 +08:00
|
|
|
if (!$just_save_results)
|
|
|
|
echo "\nThe test script was unable to automatically send the report to PHP's QA Team\n";
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-10-24 04:53:20 +08:00
|
|
|
if(getenv('REPORT_EXIT_STATUS') == 1 and $sum_results['FAILED']) {
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2002-12-18 03:07:15 +08:00
|
|
|
echo "\nPosting to {$url_bits['host']} {$url_bits['path']}\n";
|
|
|
|
fwrite($fs, "POST ".$url_bits['path']."?status=$status 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.
|
|
|
|
//
|
|
|
|
|
2002-10-02 09:52:25 +08:00
|
|
|
function save_text($filename,$text)
|
|
|
|
{
|
2002-10-08 11:00:06 +08:00
|
|
|
$fp = @fopen($filename,'w') or error("Cannot open file '" . $filename . "' (save_text)");
|
|
|
|
fwrite($fp,$text);
|
|
|
|
fclose($fp);
|
|
|
|
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
|
|
|
|
2002-05-17 05:48:28 +08:00
|
|
|
function error_report($testname,$logname,$tested)
|
|
|
|
{
|
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)
|
|
|
|
{
|
|
|
|
$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')
|
|
|
|
), $pipes);
|
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;
|
2003-02-16 11:48:49 +08:00
|
|
|
$n = @stream_select($r, $w, $e, 60);
|
2003-02-16 02:09:52 +08:00
|
|
|
|
|
|
|
if ($n == 0) {
|
|
|
|
/* 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);
|
|
|
|
if (strlen($line) == 0) {
|
2003-02-16 02:09:52 +08:00
|
|
|
/* EOF */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
$data .= $line;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$code = proc_close($proc);
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
2002-05-17 05:48:28 +08:00
|
|
|
//
|
|
|
|
// Run an individual test case.
|
|
|
|
//
|
2000-08-28 03:46:06 +08:00
|
|
|
|
2002-05-17 05:48:28 +08:00
|
|
|
function run_test($php,$file)
|
|
|
|
{
|
2002-11-15 04:12:36 +08:00
|
|
|
global $log_format, $info_params, $ini_overwrites;
|
2002-08-27 07:26:46 +08:00
|
|
|
|
2002-10-08 11:00:06 +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(
|
|
|
|
'TEST' => '(unnamed test)',
|
|
|
|
'SKIPIF' => '',
|
|
|
|
'GET' => '',
|
|
|
|
'ARGS' => '',
|
|
|
|
);
|
|
|
|
|
|
|
|
$fp = @fopen($file, "r") or error("Cannot open test file: $file");
|
|
|
|
|
|
|
|
$section = '';
|
|
|
|
while (!feof($fp)) {
|
|
|
|
$line = fgets($fp);
|
|
|
|
|
|
|
|
// Match the beginning of a section.
|
|
|
|
if (ereg('^--([A-Z]+)--',$line,$r)) {
|
|
|
|
$section = $r[1];
|
|
|
|
$section_text[$section] = '';
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add to the section text.
|
|
|
|
$section_text[$section] .= $line;
|
|
|
|
}
|
|
|
|
fclose($fp);
|
|
|
|
|
2002-10-08 16:53:51 +08:00
|
|
|
$shortname = str_replace($GLOBALS['cwd'].'/', '', $file);
|
|
|
|
$tested = trim($section_text['TEST'])." [$shortname]";
|
2002-10-08 11:00:06 +08:00
|
|
|
|
|
|
|
$tmp = realpath(dirname($file));
|
|
|
|
$tmp_skipif = $tmp . uniqid('/phpt.');
|
2002-10-22 16:54:23 +08:00
|
|
|
$tmp_file = ereg_replace('\.phpt$','.php',$file);
|
2002-10-08 11:00:06 +08:00
|
|
|
$tmp_post = $tmp . uniqid('/phpt.');
|
|
|
|
|
2002-05-19 21:16:03 +08:00
|
|
|
@unlink($tmp_skipif);
|
|
|
|
@unlink($tmp_file);
|
|
|
|
@unlink($tmp_post);
|
2002-10-08 11:00:06 +08:00
|
|
|
|
2002-10-22 16:54:23 +08:00
|
|
|
// unlink old test results
|
|
|
|
@unlink(ereg_replace('\.phpt$','.diff',$file));
|
|
|
|
@unlink(ereg_replace('\.phpt$','.log',$file));
|
|
|
|
@unlink(ereg_replace('\.phpt$','.exp',$file));
|
|
|
|
@unlink(ereg_replace('\.phpt$','.out',$file));
|
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.
|
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'])) {
|
2002-08-03 19:44:12 +08:00
|
|
|
save_text($tmp_skipif, $section_text['SKIPIF']);
|
2002-11-03 18:52:19 +08:00
|
|
|
$output = `$php $info_params $tmp_skipif`;
|
2002-08-03 19:44:12 +08:00
|
|
|
@unlink($tmp_skipif);
|
2002-11-16 00:33:05 +08:00
|
|
|
if (eregi("^skip", trim($output))) {
|
2002-10-21 17:04:56 +08:00
|
|
|
echo "SKIP $tested";
|
2002-10-21 18:23:31 +08:00
|
|
|
$reason = (ereg("^skip[[:space:]]*(.+)\$", trim($output))) ? ereg_replace("^skip[[:space:]]*(.+)\$", "\\1", trim($output)) : FALSE;
|
2002-10-21 16:55:49 +08:00
|
|
|
if ($reason) {
|
2002-10-21 17:04:56 +08:00
|
|
|
echo " (reason: $reason)\n";
|
|
|
|
} else {
|
|
|
|
echo "\n";
|
2002-10-21 16:55:49 +08:00
|
|
|
}
|
2002-08-03 19:44:12 +08:00
|
|
|
return 'SKIPPED';
|
|
|
|
}
|
2002-11-16 00:33:05 +08:00
|
|
|
if (eregi("^info", trim($output))) {
|
2002-11-15 23:57:00 +08:00
|
|
|
$reason = (ereg("^info[[:space:]]*(.+)\$", trim($output))) ? ereg_replace("^info[[:space:]]*(.+)\$", "\\1", trim($output)) : FALSE;
|
|
|
|
if ($reason) {
|
|
|
|
$tested .= " (info: $reason)";
|
|
|
|
}
|
|
|
|
}
|
2002-05-19 21:16:03 +08:00
|
|
|
}
|
|
|
|
}
|
2002-08-03 19:44:12 +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
|
|
|
|
2002-10-28 08:07:11 +08:00
|
|
|
// Any special ini settings
|
|
|
|
// these may overwrite the test defaults...
|
2002-08-03 19:44:12 +08:00
|
|
|
if (array_key_exists('INI', $section_text)) {
|
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!
|
|
|
|
save_text($tmp_file,$section_text['FILE']);
|
|
|
|
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
|
|
|
|
2002-10-08 11:00:06 +08:00
|
|
|
putenv("REDIRECT_STATUS=1");
|
|
|
|
putenv("QUERY_STRING=$query_string");
|
|
|
|
putenv("PATH_TRANSLATED=$tmp_file");
|
|
|
|
putenv("SCRIPT_FILENAME=$tmp_file");
|
|
|
|
|
|
|
|
$args = $section_text['ARGS'] ? ' -- '.$section_text['ARGS'] : '';
|
|
|
|
|
|
|
|
if (array_key_exists('POST', $section_text) && !empty($section_text['POST'])) {
|
|
|
|
|
|
|
|
$post = trim($section_text['POST']);
|
|
|
|
save_text($tmp_post,$post);
|
|
|
|
$content_length = strlen($post);
|
|
|
|
|
|
|
|
putenv("REQUEST_METHOD=POST");
|
|
|
|
putenv("CONTENT_TYPE=application/x-www-form-urlencoded");
|
|
|
|
putenv("CONTENT_LENGTH=$content_length");
|
|
|
|
|
|
|
|
$cmd = "$php$ini_settings -f $tmp_file 2>&1 < $tmp_post";
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
putenv("REQUEST_METHOD=GET");
|
|
|
|
putenv("CONTENT_TYPE=");
|
|
|
|
putenv("CONTENT_LENGTH=");
|
|
|
|
|
|
|
|
$cmd = "$php$ini_settings -f $tmp_file$args 2>&1";
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
@unlink($tmp_post);
|
|
|
|
|
|
|
|
// Does the output match what is expected?
|
|
|
|
$output = trim($out);
|
|
|
|
$output = preg_replace('/\r\n/',"\n",$output);
|
|
|
|
|
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
|
|
|
|
$wanted_re = str_replace("%s", ".+?", $wanted_re); //not greedy
|
|
|
|
$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);
|
|
|
|
$wanted_re = str_replace("%f", "[+\-]?\.?[0-9]+\.?[0-9]*", $wanted_re);
|
|
|
|
$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)) {
|
2002-10-23 20:54:57 +08:00
|
|
|
@unlink($tmp_file);
|
2002-10-08 11:00:06 +08:00
|
|
|
echo "PASS $tested\n";
|
|
|
|
return 'PASSED';
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
$wanted = trim($section_text['EXPECT']);
|
|
|
|
$wanted = preg_replace('/\r\n/',"\n",$wanted);
|
2002-08-27 07:26:46 +08:00
|
|
|
// compare and leave on success
|
2002-10-08 11:00:06 +08:00
|
|
|
$ok = (0 == strcmp($output,$wanted));
|
|
|
|
if ($ok) {
|
2002-10-22 16:54:23 +08:00
|
|
|
@unlink($tmp_file);
|
2002-10-08 11:00:06 +08:00
|
|
|
echo "PASS $tested\n";
|
|
|
|
return 'PASSED';
|
|
|
|
}
|
|
|
|
}
|
2002-05-17 05:48:28 +08:00
|
|
|
|
2002-10-08 11:00:06 +08:00
|
|
|
// Test failed so we need to report details.
|
|
|
|
echo "FAIL $tested\n";
|
2002-10-07 08:05:20 +08:00
|
|
|
|
2002-10-13 03:29:56 +08:00
|
|
|
$GLOBALS['__PHP_FAILED_TESTS__'][] = array(
|
|
|
|
'name' => $file,
|
2002-10-24 21:13:23 +08:00
|
|
|
'test_name' => $tested,
|
2002-10-13 03:29:56 +08:00
|
|
|
'output' => ereg_replace('\.phpt$','.log', $file),
|
|
|
|
'diff' => ereg_replace('\.phpt$','.diff', $file)
|
|
|
|
);
|
2002-10-07 08:05:20 +08:00
|
|
|
|
2002-08-27 07:26:46 +08:00
|
|
|
// write .exp
|
2002-10-08 11:00:06 +08:00
|
|
|
if (strpos($log_format,'E') !== FALSE) {
|
|
|
|
$logname = ereg_replace('\.phpt$','.exp',$file);
|
|
|
|
$log = fopen($logname,'w') or error("Cannot create test log - $logname");
|
|
|
|
fwrite($log,$wanted);
|
|
|
|
fclose($log);
|
2002-08-27 07:26:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// write .out
|
2002-10-08 11:00:06 +08:00
|
|
|
if (strpos($log_format,'O') !== FALSE) {
|
|
|
|
$logname = ereg_replace('\.phpt$','.out',$file);
|
|
|
|
$log = fopen($logname,'w') or error("Cannot create test log - $logname");
|
|
|
|
fwrite($log,$output);
|
|
|
|
fclose($log);
|
2002-08-27 07:26:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// write .diff
|
2002-10-08 11:00:06 +08:00
|
|
|
if (strpos($log_format,'D') !== FALSE) {
|
|
|
|
$logname = ereg_replace('\.phpt$','.diff',$file);
|
|
|
|
$log = fopen($logname,'w') or error("Cannot create test log - $logname");
|
|
|
|
fwrite($log,generate_diff($wanted,$output));
|
|
|
|
fclose($log);
|
|
|
|
}
|
2002-08-27 07:26:46 +08:00
|
|
|
|
|
|
|
// write .log
|
2002-10-08 11:00:06 +08:00
|
|
|
if (strpos($log_format,'L') !== FALSE) {
|
|
|
|
$logname = ereg_replace('\.phpt$','.log',$file);
|
|
|
|
$log = fopen($logname,'w') or error("Cannot create test log - $logname");
|
|
|
|
fwrite($log,"
|
2002-05-17 05:48:28 +08:00
|
|
|
---- EXPECTED OUTPUT
|
|
|
|
$wanted
|
|
|
|
---- ACTUAL OUTPUT
|
|
|
|
$output
|
|
|
|
---- FAILED
|
|
|
|
");
|
2002-10-08 11:00:06 +08:00
|
|
|
fclose($log);
|
|
|
|
error_report($file,$logname,$tested);
|
2002-08-27 07:26:46 +08:00
|
|
|
}
|
2002-05-17 05:48:28 +08:00
|
|
|
|
2002-10-08 11:00:06 +08:00
|
|
|
return 'FAILED';
|
2000-08-28 03:46:06 +08:00
|
|
|
}
|
|
|
|
|
2002-10-02 09:52:25 +08:00
|
|
|
function generate_diff($wanted,$output)
|
|
|
|
{
|
2002-10-08 11:00:06 +08:00
|
|
|
$w = explode("\n", $wanted);
|
|
|
|
$o = explode("\n", $output);
|
2002-10-29 22:13:11 +08:00
|
|
|
$w1 = array_diff_assoc($w,$o);
|
|
|
|
$o1 = array_diff_assoc($o,$w);
|
2002-10-08 11:00:06 +08:00
|
|
|
$w2 = array();
|
|
|
|
$o2 = array();
|
|
|
|
foreach($w1 as $idx => $val) $w2[sprintf("%03d<",$idx)] = sprintf("%03d- ", $idx+1).$val;
|
|
|
|
foreach($o1 as $idx => $val) $o2[sprintf("%03d>",$idx)] = sprintf("%03d+ ", $idx+1).$val;
|
|
|
|
$diff = array_merge($w2, $o2);
|
|
|
|
ksort($diff);
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
if (count($ini_settings)) {
|
|
|
|
$settings = '';
|
|
|
|
foreach($ini_settings as $name => $value) {
|
|
|
|
$value = addslashes($value);
|
|
|
|
$settings .= " -d \"$name=$value\"";
|
|
|
|
}
|
|
|
|
$ini_settings = $settings;
|
|
|
|
} else {
|
|
|
|
$ini_settings = '';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
* vim600: fdm=marker
|
|
|
|
* vim: noet sw=4 ts=4
|
2002-05-09 14:39:05 +08:00
|
|
|
*/
|
2001-05-27 17:09:00 +08:00
|
|
|
?>
|