- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:24:07 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @file
|
2008-05-26 19:43:46 +00:00
|
|
|
* This script runs Drupal tests from command line.
|
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:24:07 +00:00
|
|
|
*/
|
|
|
|
|
2011-11-29 09:56:53 +00:00
|
|
|
const SIMPLETEST_SCRIPT_COLOR_PASS = 32; // Green.
|
|
|
|
const SIMPLETEST_SCRIPT_COLOR_FAIL = 31; // Red.
|
|
|
|
const SIMPLETEST_SCRIPT_COLOR_EXCEPTION = 33; // Brown.
|
2008-07-07 06:22:18 +00:00
|
|
|
|
|
|
|
// Set defaults and get overrides.
|
|
|
|
list($args, $count) = simpletest_script_parse_args();
|
|
|
|
|
|
|
|
if ($args['help'] || $count == 0) {
|
|
|
|
simpletest_script_help();
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2011-07-14 04:37:24 +00:00
|
|
|
if ($args['execute-test']) {
|
2009-06-10 16:17:02 +00:00
|
|
|
// Masquerade as Apache for running tests.
|
|
|
|
simpletest_script_init("Apache");
|
2011-07-14 04:37:24 +00:00
|
|
|
simpletest_script_run_one_test($args['test-id'], $args['execute-test']);
|
2012-06-02 20:50:40 +00:00
|
|
|
// Sub-process script execution ends here.
|
2008-07-07 06:22:18 +00:00
|
|
|
}
|
2009-06-10 16:17:02 +00:00
|
|
|
else {
|
|
|
|
// Run administrative functions as CLI.
|
2009-09-19 10:38:47 +00:00
|
|
|
simpletest_script_init(NULL);
|
2009-06-10 16:17:02 +00:00
|
|
|
}
|
2008-07-07 06:22:18 +00:00
|
|
|
|
2008-12-30 16:43:20 +00:00
|
|
|
// Bootstrap to perform initial validation or other operations.
|
2008-07-07 06:22:18 +00:00
|
|
|
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
|
|
|
|
if (!module_exists('simpletest')) {
|
|
|
|
simpletest_script_print_error("The simpletest module must be enabled before this script can run.");
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($args['clean']) {
|
|
|
|
// Clean up left-over times and directories.
|
|
|
|
simpletest_clean_environment();
|
|
|
|
echo "\nEnvironment cleaned.\n";
|
|
|
|
|
|
|
|
// Get the status messages and print them.
|
|
|
|
$messages = array_pop(drupal_get_messages('status'));
|
2010-09-28 02:30:32 +00:00
|
|
|
foreach ($messages as $text) {
|
2008-07-07 06:22:18 +00:00
|
|
|
echo " - " . $text . "\n";
|
|
|
|
}
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($args['list']) {
|
2008-12-30 16:43:20 +00:00
|
|
|
// Display all available tests.
|
2008-07-07 06:22:18 +00:00
|
|
|
echo "\nAvailable test groups & classes\n";
|
|
|
|
echo "-------------------------------\n\n";
|
2012-07-15 01:24:35 +00:00
|
|
|
$groups = simpletest_test_get_all();
|
2008-07-07 06:22:18 +00:00
|
|
|
foreach ($groups as $group => $tests) {
|
|
|
|
echo $group . "\n";
|
2009-06-08 09:23:55 +00:00
|
|
|
foreach ($tests as $class => $info) {
|
|
|
|
echo " - " . $info['name'] . ' (' . $class . ')' . "\n";
|
2008-07-07 06:22:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2011-09-15 02:56:07 +00:00
|
|
|
$test_list = simpletest_script_get_test_list();
|
|
|
|
|
2009-08-05 15:58:35 +00:00
|
|
|
// Try to allocate unlimited time to run the tests.
|
|
|
|
drupal_set_time_limit(0);
|
2008-07-07 06:22:18 +00:00
|
|
|
|
|
|
|
simpletest_script_reporter_init();
|
|
|
|
|
|
|
|
// Execute tests.
|
2012-06-02 20:50:40 +00:00
|
|
|
simpletest_script_execute_batch(simpletest_script_get_test_list());
|
2009-07-30 10:46:53 +00:00
|
|
|
|
2010-11-13 13:54:58 +00:00
|
|
|
// Stop the timer.
|
|
|
|
simpletest_script_reporter_timer_stop();
|
|
|
|
|
2008-07-07 06:22:18 +00:00
|
|
|
// Display results before database is cleared.
|
|
|
|
simpletest_script_reporter_display_results();
|
|
|
|
|
2010-11-13 13:54:58 +00:00
|
|
|
if ($args['xml']) {
|
|
|
|
simpletest_script_reporter_write_xml_results();
|
|
|
|
}
|
|
|
|
|
2012-06-02 20:50:40 +00:00
|
|
|
// Clean up all test results.
|
2012-08-10 23:19:20 +00:00
|
|
|
if (!$args['keep-results']) {
|
|
|
|
simpletest_clean_results_table();
|
|
|
|
}
|
2008-07-07 06:22:18 +00:00
|
|
|
|
2011-07-14 04:37:24 +00:00
|
|
|
// Test complete, exit.
|
|
|
|
exit;
|
|
|
|
|
2008-07-07 06:22:18 +00:00
|
|
|
/**
|
|
|
|
* Print help text.
|
|
|
|
*/
|
|
|
|
function simpletest_script_help() {
|
|
|
|
global $args;
|
2008-05-26 19:43:46 +00:00
|
|
|
|
|
|
|
echo <<<EOF
|
|
|
|
|
|
|
|
Run Drupal tests from the shell.
|
|
|
|
|
2008-07-07 06:22:18 +00:00
|
|
|
Usage: {$args['script']} [OPTIONS] <tests>
|
|
|
|
Example: {$args['script']} Profile
|
2008-05-26 19:43:46 +00:00
|
|
|
|
|
|
|
All arguments are long options.
|
|
|
|
|
|
|
|
--help Print this page.
|
2008-05-28 12:35:32 +00:00
|
|
|
|
|
|
|
--list Display all available test groups.
|
|
|
|
|
2008-05-26 19:43:46 +00:00
|
|
|
--clean Cleans up database tables or directories from previous, failed,
|
|
|
|
tests and then exits (no tests are run).
|
|
|
|
|
2011-09-24 20:44:06 +00:00
|
|
|
--url Immediately precedes a URL to set the host and path. You will
|
2008-05-28 12:35:32 +00:00
|
|
|
need this parameter if Drupal is in a subdirectory on your
|
2009-12-17 22:02:26 +00:00
|
|
|
localhost and you have not set \$base_url in settings.php. Tests
|
|
|
|
can be run under SSL by including https:// in the URL.
|
2008-11-11 16:49:38 +00:00
|
|
|
|
2008-09-23 10:55:27 +00:00
|
|
|
--php The absolute path to the PHP executable. Usually not needed.
|
2008-05-26 19:43:46 +00:00
|
|
|
|
2008-06-29 12:22:28 +00:00
|
|
|
--concurrency [num]
|
|
|
|
|
2011-07-14 04:37:24 +00:00
|
|
|
Run tests in parallel, up to [num] tests at a time.
|
2008-06-24 21:59:20 +00:00
|
|
|
|
2008-05-28 12:35:32 +00:00
|
|
|
--all Run all available tests.
|
2008-05-26 19:43:46 +00:00
|
|
|
|
2012-07-15 01:24:35 +00:00
|
|
|
--module Run all tests belonging to the specified module name.
|
|
|
|
(e.g., 'node')
|
|
|
|
|
2008-06-29 12:22:28 +00:00
|
|
|
--class Run tests identified by specific class names, instead of group names.
|
2008-11-11 16:49:38 +00:00
|
|
|
|
2009-01-13 22:39:11 +00:00
|
|
|
--file Run tests identified by specific file names, instead of group names.
|
2011-10-31 04:05:57 +00:00
|
|
|
Specify the path and the extension
|
|
|
|
(i.e. 'core/modules/user/user.test').
|
2008-05-26 19:43:46 +00:00
|
|
|
|
2010-11-13 13:54:58 +00:00
|
|
|
--xml <path>
|
|
|
|
|
|
|
|
If provided, test results will be written as xml files to this path.
|
|
|
|
|
|
|
|
--color Output text format results with color highlighting.
|
2008-07-07 06:22:18 +00:00
|
|
|
|
|
|
|
--verbose Output detailed assertion messages in addition to summary.
|
|
|
|
|
2012-08-10 15:18:47 +00:00
|
|
|
--keep-results
|
|
|
|
|
|
|
|
Keeps detailed assertion results (in the database) after tests
|
|
|
|
have completed. By default, assertion results are cleared.
|
|
|
|
|
2008-05-26 19:43:46 +00:00
|
|
|
<test1>[,<test2>[,<test3> ...]]
|
|
|
|
|
2008-12-20 18:24:41 +00:00
|
|
|
One or more tests to be run. By default, these are interpreted
|
2009-11-10 17:27:54 +00:00
|
|
|
as the names of test groups as shown at
|
2012-04-29 15:16:27 +00:00
|
|
|
admin/config/development/testing.
|
2008-05-26 19:43:46 +00:00
|
|
|
These group names typically correspond to module names like "User"
|
|
|
|
or "Profile" or "System", but there is also a group "XML-RPC".
|
|
|
|
If --class is specified then these are interpreted as the names of
|
2008-12-20 18:24:41 +00:00
|
|
|
specific test classes whose test methods will be run. Tests must
|
|
|
|
be separated by commas. Ignored if --all is specified.
|
2008-05-26 19:43:46 +00:00
|
|
|
|
2008-05-28 12:35:32 +00:00
|
|
|
To run this script you will normally invoke it from the root directory of your
|
2008-12-18 03:55:02 +00:00
|
|
|
Drupal installation as the webserver user (differs per configuration), or root:
|
2008-05-26 19:43:46 +00:00
|
|
|
|
2011-10-31 04:05:57 +00:00
|
|
|
sudo -u [wwwrun|www-data|etc] php ./core/scripts/{$args['script']}
|
2008-12-18 03:55:02 +00:00
|
|
|
--url http://example.com/ --all
|
2011-10-31 04:05:57 +00:00
|
|
|
sudo -u [wwwrun|www-data|etc] php ./core/scripts/{$args['script']}
|
2012-08-18 16:26:49 +00:00
|
|
|
--url http://example.com/ --class "Drupal\block\Tests\BlockTest"
|
2008-05-26 19:43:46 +00:00
|
|
|
\n
|
|
|
|
EOF;
|
|
|
|
}
|
|
|
|
|
2008-07-07 06:22:18 +00:00
|
|
|
/**
|
|
|
|
* Parse execution argument and ensure that all are valid.
|
|
|
|
*
|
|
|
|
* @return The list of arguments.
|
|
|
|
*/
|
|
|
|
function simpletest_script_parse_args() {
|
|
|
|
// Set default values.
|
|
|
|
$args = array(
|
|
|
|
'script' => '',
|
|
|
|
'help' => FALSE,
|
|
|
|
'list' => FALSE,
|
|
|
|
'clean' => FALSE,
|
|
|
|
'url' => '',
|
2008-10-19 20:12:55 +00:00
|
|
|
'php' => '',
|
2008-07-07 06:22:18 +00:00
|
|
|
'concurrency' => 1,
|
|
|
|
'all' => FALSE,
|
2012-07-15 01:24:35 +00:00
|
|
|
'module' => FALSE,
|
2008-07-07 06:22:18 +00:00
|
|
|
'class' => FALSE,
|
2008-08-18 18:52:31 +00:00
|
|
|
'file' => FALSE,
|
2008-07-07 06:22:18 +00:00
|
|
|
'color' => FALSE,
|
|
|
|
'verbose' => FALSE,
|
2012-08-10 15:18:47 +00:00
|
|
|
'keep-results' => FALSE,
|
2008-07-07 06:22:18 +00:00
|
|
|
'test_names' => array(),
|
|
|
|
// Used internally.
|
2011-07-14 04:37:24 +00:00
|
|
|
'test-id' => 0,
|
|
|
|
'execute-test' => '',
|
2010-11-13 13:54:58 +00:00
|
|
|
'xml' => '',
|
2008-07-07 06:22:18 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
// Override with set values.
|
|
|
|
$args['script'] = basename(array_shift($_SERVER['argv']));
|
|
|
|
|
|
|
|
$count = 0;
|
|
|
|
while ($arg = array_shift($_SERVER['argv'])) {
|
|
|
|
if (preg_match('/--(\S+)/', $arg, $matches)) {
|
|
|
|
// Argument found.
|
|
|
|
if (array_key_exists($matches[1], $args)) {
|
|
|
|
// Argument found in list.
|
|
|
|
$previous_arg = $matches[1];
|
|
|
|
if (is_bool($args[$previous_arg])) {
|
|
|
|
$args[$matches[1]] = TRUE;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$args[$matches[1]] = array_shift($_SERVER['argv']);
|
|
|
|
}
|
2008-12-30 16:43:20 +00:00
|
|
|
// Clear extraneous values.
|
2008-07-07 06:22:18 +00:00
|
|
|
$args['test_names'] = array();
|
|
|
|
$count++;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Argument not found in list.
|
|
|
|
simpletest_script_print_error("Unknown argument '$arg'.");
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Values found without an argument should be test names.
|
|
|
|
$args['test_names'] += explode(',', $arg);
|
2009-02-01 16:42:26 +00:00
|
|
|
$count++;
|
2008-07-07 06:22:18 +00:00
|
|
|
}
|
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:24:07 +00:00
|
|
|
}
|
2008-07-24 06:46:28 +00:00
|
|
|
|
|
|
|
// Validate the concurrency argument
|
|
|
|
if (!is_numeric($args['concurrency']) || $args['concurrency'] <= 0) {
|
|
|
|
simpletest_script_print_error("--concurrency must be a strictly positive integer.");
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2008-07-07 06:22:18 +00:00
|
|
|
return array($args, $count);
|
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:24:07 +00:00
|
|
|
}
|
|
|
|
|
2008-07-07 06:22:18 +00:00
|
|
|
/**
|
|
|
|
* Initialize script variables and perform general setup requirements.
|
|
|
|
*/
|
2009-06-10 16:17:02 +00:00
|
|
|
function simpletest_script_init($server_software) {
|
2008-07-07 06:22:18 +00:00
|
|
|
global $args, $php;
|
|
|
|
|
|
|
|
$host = 'localhost';
|
|
|
|
$path = '';
|
2009-01-13 22:39:11 +00:00
|
|
|
// Determine location of php command automatically, unless a command line argument is supplied.
|
2008-10-29 03:00:38 +00:00
|
|
|
if (!empty($args['php'])) {
|
2008-09-23 10:55:27 +00:00
|
|
|
$php = $args['php'];
|
|
|
|
}
|
2012-04-29 16:21:57 +00:00
|
|
|
elseif ($php_env = getenv('_')) {
|
2008-09-23 10:55:27 +00:00
|
|
|
// '_' is an environment variable set by the shell. It contains the command that was executed.
|
2012-04-29 16:21:57 +00:00
|
|
|
$php = $php_env;
|
2008-09-23 10:55:27 +00:00
|
|
|
}
|
2012-04-29 16:21:57 +00:00
|
|
|
elseif ($sudo = getenv('SUDO_COMMAND')) {
|
2008-09-23 10:55:27 +00:00
|
|
|
// 'SUDO_COMMAND' is an environment variable set by the sudo program.
|
|
|
|
// Extract only the PHP interpreter, not the rest of the command.
|
2012-04-29 16:21:57 +00:00
|
|
|
list($php, ) = explode(' ', $sudo, 2);
|
2008-09-23 10:55:27 +00:00
|
|
|
}
|
|
|
|
else {
|
2010-01-09 23:03:22 +00:00
|
|
|
simpletest_script_print_error('Unable to automatically determine the path to the PHP interpreter. Supply the --php command line argument.');
|
2008-12-18 03:55:02 +00:00
|
|
|
simpletest_script_help();
|
2008-09-23 10:55:27 +00:00
|
|
|
exit();
|
|
|
|
}
|
2008-07-07 06:22:18 +00:00
|
|
|
|
|
|
|
// Get url from arguments.
|
|
|
|
if (!empty($args['url'])) {
|
|
|
|
$parsed_url = parse_url($args['url']);
|
2009-04-13 12:23:26 +00:00
|
|
|
$host = $parsed_url['host'] . (isset($parsed_url['port']) ? ':' . $parsed_url['port'] : '');
|
2010-11-13 13:54:58 +00:00
|
|
|
$path = isset($parsed_url['path']) ? $parsed_url['path'] : '';
|
2009-12-17 22:02:26 +00:00
|
|
|
|
|
|
|
// If the passed URL schema is 'https' then setup the $_SERVER variables
|
|
|
|
// properly so that testing will run under https.
|
|
|
|
if ($parsed_url['scheme'] == 'https') {
|
|
|
|
$_SERVER['HTTPS'] = 'on';
|
|
|
|
}
|
2008-07-07 06:22:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$_SERVER['HTTP_HOST'] = $host;
|
|
|
|
$_SERVER['REMOTE_ADDR'] = '127.0.0.1';
|
|
|
|
$_SERVER['SERVER_ADDR'] = '127.0.0.1';
|
2009-06-10 16:17:02 +00:00
|
|
|
$_SERVER['SERVER_SOFTWARE'] = $server_software;
|
2008-07-07 06:22:18 +00:00
|
|
|
$_SERVER['SERVER_NAME'] = 'localhost';
|
|
|
|
$_SERVER['REQUEST_URI'] = $path .'/';
|
2008-09-24 19:00:31 +00:00
|
|
|
$_SERVER['REQUEST_METHOD'] = 'GET';
|
2008-07-07 06:22:18 +00:00
|
|
|
$_SERVER['SCRIPT_NAME'] = $path .'/index.php';
|
|
|
|
$_SERVER['PHP_SELF'] = $path .'/index.php';
|
|
|
|
$_SERVER['HTTP_USER_AGENT'] = 'Drupal command line';
|
|
|
|
|
2010-01-15 10:51:02 +00:00
|
|
|
if (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') {
|
2009-12-17 22:02:26 +00:00
|
|
|
// Ensure that any and all environment variables are changed to https://.
|
|
|
|
foreach ($_SERVER as $key => $value) {
|
|
|
|
$_SERVER[$key] = str_replace('http://', 'https://', $_SERVER[$key]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-31 04:05:57 +00:00
|
|
|
chdir(realpath(__DIR__ . '/../..'));
|
2008-09-20 20:22:25 +00:00
|
|
|
define('DRUPAL_ROOT', getcwd());
|
2011-10-31 04:05:57 +00:00
|
|
|
require_once DRUPAL_ROOT . '/core/includes/bootstrap.inc';
|
2008-07-07 06:22:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute a batch of tests.
|
|
|
|
*/
|
2012-06-02 20:50:40 +00:00
|
|
|
function simpletest_script_execute_batch($test_classes) {
|
|
|
|
global $args, $test_ids;
|
2008-07-07 06:22:18 +00:00
|
|
|
|
2011-07-14 04:37:24 +00:00
|
|
|
// Multi-process execution.
|
|
|
|
$children = array();
|
|
|
|
while (!empty($test_classes) || !empty($children)) {
|
|
|
|
while (count($children) < $args['concurrency']) {
|
|
|
|
if (empty($test_classes)) {
|
|
|
|
break;
|
2008-06-29 12:22:28 +00:00
|
|
|
}
|
2011-07-14 04:37:24 +00:00
|
|
|
|
|
|
|
// Fork a child process.
|
2012-06-02 20:50:40 +00:00
|
|
|
$test_id = db_insert('simpletest_test_id')->useDefaults(array('test_id'))->execute();
|
|
|
|
$test_ids[] = $test_id;
|
2011-07-14 04:37:24 +00:00
|
|
|
$test_class = array_shift($test_classes);
|
|
|
|
$command = simpletest_script_command($test_id, $test_class);
|
|
|
|
$process = proc_open($command, array(), $pipes, NULL, NULL, array('bypass_shell' => TRUE));
|
|
|
|
|
|
|
|
if (!is_resource($process)) {
|
|
|
|
echo "Unable to fork test process. Aborting.\n";
|
|
|
|
exit;
|
2008-06-29 12:22:28 +00:00
|
|
|
}
|
|
|
|
|
2011-07-14 04:37:24 +00:00
|
|
|
// Register our new child.
|
|
|
|
$children[] = array(
|
|
|
|
'process' => $process,
|
2012-06-02 20:50:40 +00:00
|
|
|
'test_id' => $test_id,
|
2011-07-14 04:37:24 +00:00
|
|
|
'class' => $test_class,
|
|
|
|
'pipes' => $pipes,
|
|
|
|
);
|
|
|
|
}
|
2008-06-29 12:22:28 +00:00
|
|
|
|
2011-07-14 04:37:24 +00:00
|
|
|
// Wait for children every 200ms.
|
|
|
|
usleep(200000);
|
|
|
|
|
|
|
|
// Check if some children finished.
|
|
|
|
foreach ($children as $cid => $child) {
|
|
|
|
$status = proc_get_status($child['process']);
|
|
|
|
if (empty($status['running'])) {
|
|
|
|
// The child exited, unregister it.
|
|
|
|
proc_close($child['process']);
|
|
|
|
if ($status['exitcode']) {
|
2012-06-02 20:50:40 +00:00
|
|
|
echo 'FATAL ' . $child['class'] . ': test runner returned a non-zero error code (' . $status['exitcode'] . ').' . "\n";
|
2008-06-29 12:22:28 +00:00
|
|
|
}
|
2012-06-02 20:50:40 +00:00
|
|
|
// Free-up space by removing any potentially created resources.
|
2012-08-10 23:19:20 +00:00
|
|
|
if (!$args['keep-results']) {
|
|
|
|
simpletest_script_cleanup($child['test_id'], $child['class'], $status['exitcode']);
|
|
|
|
}
|
2012-06-02 20:50:40 +00:00
|
|
|
|
|
|
|
// Remove this child.
|
2011-07-14 04:37:24 +00:00
|
|
|
unset($children[$cid]);
|
2008-06-29 12:22:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-07-07 06:22:18 +00:00
|
|
|
/**
|
2011-07-14 04:37:24 +00:00
|
|
|
* Bootstrap Drupal and run a single test.
|
2008-07-07 06:22:18 +00:00
|
|
|
*/
|
|
|
|
function simpletest_script_run_one_test($test_id, $test_class) {
|
2012-08-10 15:18:47 +00:00
|
|
|
global $args, $conf;
|
|
|
|
|
2011-07-14 04:37:24 +00:00
|
|
|
try {
|
|
|
|
// Bootstrap Drupal.
|
|
|
|
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
|
|
|
|
|
2012-04-23 03:01:03 +00:00
|
|
|
simpletest_classloader_register();
|
|
|
|
|
2012-08-10 15:18:47 +00:00
|
|
|
// Override configuration according to command line parameters.
|
|
|
|
$conf['simpletest.settings']['verbose'] = $args['verbose'];
|
|
|
|
$conf['simpletest.settings']['clear_results'] = !$args['keep-results'];
|
|
|
|
|
2011-07-14 04:37:24 +00:00
|
|
|
$test = new $test_class($test_id);
|
|
|
|
$test->run();
|
|
|
|
$info = $test->getInfo();
|
|
|
|
|
|
|
|
$had_fails = (isset($test->results['#fail']) && $test->results['#fail'] > 0);
|
|
|
|
$had_exceptions = (isset($test->results['#exception']) && $test->results['#exception'] > 0);
|
|
|
|
$status = ($had_fails || $had_exceptions ? 'fail' : 'pass');
|
|
|
|
simpletest_script_print($info['name'] . ' ' . _simpletest_format_summary_line($test->results) . "\n", simpletest_script_color_code($status));
|
2008-05-26 19:43:46 +00:00
|
|
|
|
2011-07-14 04:37:24 +00:00
|
|
|
// Finished, kill this runner.
|
|
|
|
exit(0);
|
|
|
|
}
|
2012-06-02 20:50:40 +00:00
|
|
|
// DrupalTestCase::run() catches exceptions already, so this is only reached
|
|
|
|
// when an exception is thrown in the wrapping test runner environment.
|
2011-07-14 04:37:24 +00:00
|
|
|
catch (Exception $e) {
|
|
|
|
echo (string) $e;
|
|
|
|
exit(1);
|
|
|
|
}
|
2008-05-26 19:43:46 +00:00
|
|
|
}
|
|
|
|
|
2008-07-07 06:22:18 +00:00
|
|
|
/**
|
2011-07-14 04:37:24 +00:00
|
|
|
* Return a command used to run a test in a separate process.
|
|
|
|
*
|
|
|
|
* @param $test_id
|
|
|
|
* The current test ID.
|
|
|
|
* @param $test_class
|
|
|
|
* The name of the test class to run.
|
2008-07-07 06:22:18 +00:00
|
|
|
*/
|
2011-07-14 04:37:24 +00:00
|
|
|
function simpletest_script_command($test_id, $test_class) {
|
2008-07-07 06:22:18 +00:00
|
|
|
global $args, $php;
|
2008-06-24 21:59:20 +00:00
|
|
|
|
2012-08-10 15:18:47 +00:00
|
|
|
$command = escapeshellarg($php) . ' ' . escapeshellarg('./core/scripts/' . $args['script']);
|
|
|
|
$command .= ' --url ' . escapeshellarg($args['url']);
|
|
|
|
$command .= ' --php ' . escapeshellarg($php);
|
|
|
|
$command .= " --test-id $test_id";
|
|
|
|
foreach (array('verbose', 'keep-results', 'color') as $arg) {
|
|
|
|
if ($args[$arg]) {
|
|
|
|
$command .= ' --' . $arg;
|
|
|
|
}
|
2008-05-26 19:43:46 +00:00
|
|
|
}
|
2012-08-10 15:18:47 +00:00
|
|
|
// --execute-test and class name needs to come last.
|
|
|
|
$command .= ' --execute-test ' . escapeshellarg($test_class);
|
2011-07-14 04:37:24 +00:00
|
|
|
return $command;
|
2008-06-24 21:59:20 +00:00
|
|
|
}
|
|
|
|
|
2012-06-02 20:50:40 +00:00
|
|
|
/**
|
|
|
|
* Removes all remnants of a test runner.
|
|
|
|
*
|
|
|
|
* In case a (e.g., fatal) error occurs after the test site has been fully setup
|
|
|
|
* and the error happens in many tests, the environment that executes the tests
|
|
|
|
* can easily run out of memory or disk space. This function ensures that all
|
|
|
|
* created resources are properly cleaned up after every executed test.
|
|
|
|
*
|
|
|
|
* This clean-up only exists in this script, since SimpleTest module itself does
|
|
|
|
* not use isolated sub-processes for each test being run, so a fatal error
|
|
|
|
* halts not only the test, but also the test runner (i.e., the parent site).
|
|
|
|
*
|
|
|
|
* @param int $test_id
|
|
|
|
* The test ID of the test run.
|
|
|
|
* @param string $test_class
|
|
|
|
* The class name of the test run.
|
|
|
|
* @param int $exitcode
|
|
|
|
* The exit code of the test runner.
|
|
|
|
*
|
|
|
|
* @see simpletest_script_run_one_test()
|
|
|
|
*/
|
|
|
|
function simpletest_script_cleanup($test_id, $test_class, $exitcode) {
|
|
|
|
// Retrieve the last database prefix used for testing.
|
|
|
|
list($db_prefix, ) = simpletest_last_test_get($test_id);
|
|
|
|
|
|
|
|
// If no database prefix was found, then the test was not set up correctly.
|
|
|
|
if (empty($db_prefix)) {
|
|
|
|
echo "\nFATAL $test_class: Found no database prefix for test ID $test_id. (Check whether setUp() is invoked correctly.)";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Do not output verbose cleanup messages in case of a positive exitcode.
|
|
|
|
$output = !empty($exitcode);
|
|
|
|
$messages = array();
|
|
|
|
|
|
|
|
$messages[] = "- Found database prefix '$db_prefix' for test ID $test_id.";
|
|
|
|
|
|
|
|
// Read the log file in case any fatal errors caused the test to crash.
|
|
|
|
simpletest_log_read($test_id, $db_prefix, $test_class);
|
|
|
|
|
|
|
|
// Check whether a test file directory was setup already.
|
|
|
|
// @see prepareEnvironment()
|
|
|
|
$public_files = variable_get('file_public_path', conf_path() . '/files');
|
|
|
|
$test_directory = $public_files . '/simpletest/' . substr($db_prefix, 10);
|
|
|
|
if (is_dir($test_directory)) {
|
|
|
|
// Output the error_log.
|
|
|
|
if (is_file($test_directory . '/error.log')) {
|
|
|
|
if ($errors = file_get_contents($test_directory . '/error.log')) {
|
|
|
|
$output = TRUE;
|
|
|
|
$messages[] = $errors;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete the test files directory.
|
|
|
|
// simpletest_clean_temporary_directories() cannot be used here, since it
|
|
|
|
// would also delete file directories of other tests that are potentially
|
|
|
|
// running concurrently.
|
|
|
|
file_unmanaged_delete_recursive($test_directory);
|
|
|
|
$messages[] = "- Removed test files directory.";
|
|
|
|
}
|
|
|
|
|
|
|
|
// Clear out all database tables from the test.
|
|
|
|
$count = 0;
|
|
|
|
foreach (db_find_tables($db_prefix . '%') as $table) {
|
|
|
|
db_drop_table($table);
|
|
|
|
$count++;
|
|
|
|
}
|
|
|
|
if ($count) {
|
|
|
|
$messages[] = "- " . format_plural($count, 'Removed 1 leftover table.', 'Removed @count leftover tables.');
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($output) {
|
|
|
|
echo implode("\n", $messages);
|
|
|
|
echo "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-07-07 06:22:18 +00:00
|
|
|
/**
|
2008-12-30 16:43:20 +00:00
|
|
|
* Get list of tests based on arguments. If --all specified then
|
2008-07-07 06:22:18 +00:00
|
|
|
* returns all available tests, otherwise reads list of tests.
|
|
|
|
*
|
|
|
|
* Will print error and exit if no valid tests were found.
|
|
|
|
*
|
|
|
|
* @return List of tests.
|
|
|
|
*/
|
|
|
|
function simpletest_script_get_test_list() {
|
2012-07-15 01:24:35 +00:00
|
|
|
global $args;
|
2008-07-07 06:22:18 +00:00
|
|
|
|
|
|
|
$test_list = array();
|
|
|
|
if ($args['all']) {
|
2012-07-15 01:24:35 +00:00
|
|
|
$groups = simpletest_test_get_all();
|
|
|
|
$all_tests = array();
|
|
|
|
foreach ($groups as $group => $tests) {
|
|
|
|
$all_tests = array_merge($all_tests, array_keys($tests));
|
|
|
|
}
|
2009-03-31 01:49:55 +00:00
|
|
|
$test_list = $all_tests;
|
2008-06-24 21:59:20 +00:00
|
|
|
}
|
|
|
|
else {
|
2008-08-18 18:52:31 +00:00
|
|
|
if ($args['class']) {
|
2008-07-07 06:22:18 +00:00
|
|
|
foreach ($args['test_names'] as $class_name) {
|
2012-07-15 01:24:35 +00:00
|
|
|
$test_list[] = $class_name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
elseif ($args['module']) {
|
|
|
|
$modules = drupal_system_listing('/^' . DRUPAL_PHP_FUNCTION_PATTERN . '\.module$/', 'modules', 'name', 0);
|
|
|
|
foreach ($args['test_names'] as $module) {
|
|
|
|
// PSR-0 only.
|
|
|
|
$dir = dirname($modules[$module]->uri) . "/lib/Drupal/$module/Tests";
|
|
|
|
$files = file_scan_directory($dir, '@\.php$@', array(
|
|
|
|
'key' => 'name',
|
|
|
|
'recurse' => TRUE,
|
|
|
|
));
|
|
|
|
$test_list = array_merge($test_list, array_keys($files));
|
2008-06-29 12:22:28 +00:00
|
|
|
}
|
|
|
|
}
|
2008-10-12 04:30:09 +00:00
|
|
|
elseif ($args['file']) {
|
2012-07-15 01:24:35 +00:00
|
|
|
// Extract test case class names from specified files.
|
2008-08-18 18:52:31 +00:00
|
|
|
foreach ($args['test_names'] as $file) {
|
2012-07-15 01:24:35 +00:00
|
|
|
if (!file_exists($file)) {
|
|
|
|
simpletest_script_print_error('File not found: ' . $file);
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
$content = file_get_contents($file);
|
|
|
|
// Extract a potential namespace.
|
|
|
|
$namespace = FALSE;
|
|
|
|
if (preg_match('@^namespace ([^ ;]+)@m', $content, $matches)) {
|
|
|
|
$namespace = $matches[1];
|
|
|
|
}
|
|
|
|
// Extract all class names.
|
|
|
|
// Abstract classes are excluded on purpose.
|
|
|
|
preg_match_all('@^class ([^ ]+)@m', $content, $matches);
|
|
|
|
if (!$namespace) {
|
|
|
|
$test_list = array_merge($test_list, $matches[1]);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
foreach ($matches[1] as $class_name) {
|
|
|
|
$test_list[] = $namespace . '\\' . $class_name;
|
|
|
|
}
|
2008-08-18 18:52:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-07-07 06:22:18 +00:00
|
|
|
else {
|
2012-07-15 01:24:35 +00:00
|
|
|
$groups = simpletest_test_get_all();
|
2008-07-07 06:22:18 +00:00
|
|
|
foreach ($args['test_names'] as $group_name) {
|
2012-07-15 01:24:35 +00:00
|
|
|
$test_list = array_merge($test_list, array_keys($groups[$group_name]));
|
2008-07-07 06:22:18 +00:00
|
|
|
}
|
|
|
|
}
|
2008-05-26 19:43:46 +00:00
|
|
|
}
|
2008-06-29 12:22:28 +00:00
|
|
|
|
2008-07-07 06:22:18 +00:00
|
|
|
if (empty($test_list)) {
|
|
|
|
simpletest_script_print_error('No valid tests were specified.');
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
return $test_list;
|
2008-05-26 19:43:46 +00:00
|
|
|
}
|
|
|
|
|
2008-07-07 06:22:18 +00:00
|
|
|
/**
|
|
|
|
* Initialize the reporter.
|
|
|
|
*/
|
|
|
|
function simpletest_script_reporter_init() {
|
2012-07-15 01:24:35 +00:00
|
|
|
global $args, $test_list, $results_map;
|
2010-11-13 13:54:58 +00:00
|
|
|
|
|
|
|
$results_map = array(
|
|
|
|
'pass' => 'Pass',
|
|
|
|
'fail' => 'Fail',
|
|
|
|
'exception' => 'Exception'
|
|
|
|
);
|
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:24:07 +00:00
|
|
|
|
2008-07-07 06:22:18 +00:00
|
|
|
echo "\n";
|
|
|
|
echo "Drupal test run\n";
|
|
|
|
echo "---------------\n";
|
|
|
|
echo "\n";
|
2008-06-29 12:22:28 +00:00
|
|
|
|
2008-07-07 06:22:18 +00:00
|
|
|
// Tell the user about what tests are to be run.
|
|
|
|
if ($args['all']) {
|
|
|
|
echo "All tests will run.\n\n";
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
echo "Tests to be run:\n";
|
|
|
|
foreach ($test_list as $class_name) {
|
2009-03-31 01:49:55 +00:00
|
|
|
$info = call_user_func(array($class_name, 'getInfo'));
|
2008-07-07 06:22:18 +00:00
|
|
|
echo " - " . $info['name'] . ' (' . $class_name . ')' . "\n";
|
|
|
|
}
|
|
|
|
echo "\n";
|
2008-05-26 19:43:46 +00:00
|
|
|
}
|
2008-07-07 06:22:18 +00:00
|
|
|
|
2011-09-15 02:56:07 +00:00
|
|
|
echo "Test run started:\n";
|
|
|
|
echo " " . format_date($_SERVER['REQUEST_TIME'], 'long') . "\n";
|
2008-09-24 15:48:56 +00:00
|
|
|
timer_start('run-tests');
|
2008-07-07 06:22:18 +00:00
|
|
|
echo "\n";
|
|
|
|
|
2011-09-15 02:56:07 +00:00
|
|
|
echo "Test summary\n";
|
|
|
|
echo "------------\n";
|
2008-06-29 12:22:28 +00:00
|
|
|
echo "\n";
|
2008-05-26 19:43:46 +00:00
|
|
|
}
|
|
|
|
|
2008-07-07 06:22:18 +00:00
|
|
|
/**
|
2010-11-13 13:54:58 +00:00
|
|
|
* Display jUnit XML test results.
|
2008-07-07 06:22:18 +00:00
|
|
|
*/
|
2010-11-13 13:54:58 +00:00
|
|
|
function simpletest_script_reporter_write_xml_results() {
|
2012-06-02 20:50:40 +00:00
|
|
|
global $args, $test_ids, $results_map;
|
2008-06-29 12:22:28 +00:00
|
|
|
|
2012-06-02 20:50:40 +00:00
|
|
|
$results = db_query("SELECT * FROM {simpletest} WHERE test_id IN (:test_ids) ORDER BY test_class, message_id", array(':test_ids' => $test_ids));
|
2010-11-13 13:54:58 +00:00
|
|
|
|
|
|
|
$test_class = '';
|
|
|
|
$xml_files = array();
|
|
|
|
|
|
|
|
foreach ($results as $result) {
|
|
|
|
if (isset($results_map[$result->status])) {
|
|
|
|
if ($result->test_class != $test_class) {
|
|
|
|
// We've moved onto a new class, so write the last classes results to a file:
|
|
|
|
if (isset($xml_files[$test_class])) {
|
|
|
|
file_put_contents($args['xml'] . '/' . $test_class . '.xml', $xml_files[$test_class]['doc']->saveXML());
|
|
|
|
unset($xml_files[$test_class]);
|
|
|
|
}
|
|
|
|
$test_class = $result->test_class;
|
|
|
|
if (!isset($xml_files[$test_class])) {
|
|
|
|
$doc = new DomDocument('1.0');
|
|
|
|
$root = $doc->createElement('testsuite');
|
|
|
|
$root = $doc->appendChild($root);
|
|
|
|
$xml_files[$test_class] = array('doc' => $doc, 'suite' => $root);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// For convenience:
|
|
|
|
$dom_document = &$xml_files[$test_class]['doc'];
|
|
|
|
|
|
|
|
// Create the XML element for this test case:
|
|
|
|
$case = $dom_document->createElement('testcase');
|
|
|
|
$case->setAttribute('classname', $test_class);
|
|
|
|
list($class, $name) = explode('->', $result->function, 2);
|
|
|
|
$case->setAttribute('name', $name);
|
|
|
|
|
|
|
|
// Passes get no further attention, but failures and exceptions get to add more detail:
|
|
|
|
if ($result->status == 'fail') {
|
|
|
|
$fail = $dom_document->createElement('failure');
|
|
|
|
$fail->setAttribute('type', 'failure');
|
|
|
|
$fail->setAttribute('message', $result->message_group);
|
|
|
|
$text = $dom_document->createTextNode($result->message);
|
|
|
|
$fail->appendChild($text);
|
|
|
|
$case->appendChild($fail);
|
|
|
|
}
|
|
|
|
elseif ($result->status == 'exception') {
|
|
|
|
// In the case of an exception the $result->function may not be a class
|
|
|
|
// method so we record the full function name:
|
|
|
|
$case->setAttribute('name', $result->function);
|
|
|
|
|
|
|
|
$fail = $dom_document->createElement('error');
|
|
|
|
$fail->setAttribute('type', 'exception');
|
|
|
|
$fail->setAttribute('message', $result->message_group);
|
|
|
|
$full_message = $result->message . "\n\nline: " . $result->line . "\nfile: " . $result->file;
|
|
|
|
$text = $dom_document->createTextNode($full_message);
|
|
|
|
$fail->appendChild($text);
|
|
|
|
$case->appendChild($fail);
|
|
|
|
}
|
|
|
|
// Append the test case XML to the test suite:
|
|
|
|
$xml_files[$test_class]['suite']->appendChild($case);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// The last test case hasn't been saved to a file yet, so do that now:
|
|
|
|
if (isset($xml_files[$test_class])) {
|
|
|
|
file_put_contents($args['xml'] . '/' . $test_class . '.xml', $xml_files[$test_class]['doc']->saveXML());
|
|
|
|
unset($xml_files[$test_class]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Stop the test timer.
|
|
|
|
*/
|
|
|
|
function simpletest_script_reporter_timer_stop() {
|
2008-07-07 06:22:18 +00:00
|
|
|
echo "\n";
|
2008-09-24 15:48:56 +00:00
|
|
|
$end = timer_stop('run-tests');
|
|
|
|
echo "Test run duration: " . format_interval($end['time'] / 1000);
|
2011-09-15 02:56:07 +00:00
|
|
|
echo "\n\n";
|
2010-11-13 13:54:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Display test results.
|
|
|
|
*/
|
|
|
|
function simpletest_script_reporter_display_results() {
|
2012-06-02 20:50:40 +00:00
|
|
|
global $args, $test_ids, $results_map;
|
2008-06-29 12:22:28 +00:00
|
|
|
|
2008-07-07 06:22:18 +00:00
|
|
|
if ($args['verbose']) {
|
|
|
|
// Report results.
|
2012-01-24 19:25:25 +00:00
|
|
|
echo "Detailed test results\n";
|
|
|
|
echo "---------------------\n";
|
2008-07-07 06:22:18 +00:00
|
|
|
|
2012-06-02 20:50:40 +00:00
|
|
|
$results = db_query("SELECT * FROM {simpletest} WHERE test_id IN (:test_ids) ORDER BY test_class, message_id", array(':test_ids' => $test_ids));
|
2008-07-07 06:22:18 +00:00
|
|
|
$test_class = '';
|
2008-11-24 20:17:07 +00:00
|
|
|
foreach ($results as $result) {
|
2008-07-07 06:22:18 +00:00
|
|
|
if (isset($results_map[$result->status])) {
|
|
|
|
if ($result->test_class != $test_class) {
|
|
|
|
// Display test class every time results are for new test class.
|
|
|
|
echo "\n\n---- $result->test_class ----\n\n\n";
|
|
|
|
$test_class = $result->test_class;
|
2012-01-24 19:25:25 +00:00
|
|
|
|
2012-02-08 11:14:58 +00:00
|
|
|
// Print table header.
|
|
|
|
echo "Status Group Filename Line Function \n";
|
|
|
|
echo "--------------------------------------------------------------------------------\n";
|
2008-07-07 06:22:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
simpletest_script_format_result($result);
|
|
|
|
}
|
|
|
|
}
|
2008-05-26 19:43:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-07-07 06:22:18 +00:00
|
|
|
/**
|
|
|
|
* Format the result so that it fits within the default 80 character
|
|
|
|
* terminal size.
|
|
|
|
*
|
|
|
|
* @param $result The result object to format.
|
|
|
|
*/
|
|
|
|
function simpletest_script_format_result($result) {
|
|
|
|
global $results_map, $color;
|
|
|
|
|
2012-01-24 19:25:25 +00:00
|
|
|
$summary = sprintf("%-9.9s %-10.10s %-17.17s %4.4s %-35.35s\n",
|
|
|
|
$results_map[$result->status], $result->message_group, basename($result->file), $result->line, $result->function);
|
2008-07-07 06:22:18 +00:00
|
|
|
|
|
|
|
simpletest_script_print($summary, simpletest_script_color_code($result->status));
|
2008-06-29 12:22:28 +00:00
|
|
|
|
2008-07-07 06:22:18 +00:00
|
|
|
$lines = explode("\n", wordwrap(trim(strip_tags($result->message)), 76));
|
|
|
|
foreach ($lines as $line) {
|
|
|
|
echo " $line\n";
|
|
|
|
}
|
|
|
|
}
|
2008-06-29 12:22:28 +00:00
|
|
|
|
2008-06-24 21:59:20 +00:00
|
|
|
/**
|
2008-07-07 06:22:18 +00:00
|
|
|
* Print error message prefixed with " ERROR: " and displayed in fail color
|
|
|
|
* if color output is enabled.
|
|
|
|
*
|
|
|
|
* @param $message The message to print.
|
2008-06-24 21:59:20 +00:00
|
|
|
*/
|
2008-07-07 06:22:18 +00:00
|
|
|
function simpletest_script_print_error($message) {
|
|
|
|
simpletest_script_print(" ERROR: $message\n", SIMPLETEST_SCRIPT_COLOR_FAIL);
|
2008-06-24 21:59:20 +00:00
|
|
|
}
|
2008-06-24 21:51:03 +00:00
|
|
|
|
2008-07-07 06:22:18 +00:00
|
|
|
/**
|
|
|
|
* Print a message to the console, if color is enabled then the specified
|
|
|
|
* color code will be used.
|
|
|
|
*
|
|
|
|
* @param $message The message to print.
|
|
|
|
* @param $color_code The color code to use for coloring.
|
|
|
|
*/
|
|
|
|
function simpletest_script_print($message, $color_code) {
|
|
|
|
global $args;
|
|
|
|
if ($args['color']) {
|
|
|
|
echo "\033[" . $color_code . "m" . $message . "\033[0m";
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
echo $message;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the color code associated with the specified status.
|
|
|
|
*
|
|
|
|
* @param $status The status string to get code for.
|
|
|
|
* @return Color code.
|
|
|
|
*/
|
|
|
|
function simpletest_script_color_code($status) {
|
|
|
|
switch ($status) {
|
|
|
|
case 'pass':
|
|
|
|
return SIMPLETEST_SCRIPT_COLOR_PASS;
|
|
|
|
case 'fail':
|
|
|
|
return SIMPLETEST_SCRIPT_COLOR_FAIL;
|
|
|
|
case 'exception':
|
|
|
|
return SIMPLETEST_SCRIPT_COLOR_EXCEPTION;
|
|
|
|
}
|
|
|
|
return 0; // Default formatting.
|
|
|
|
}
|