Newer
Older
<?php
/**
* @file
* This script runs Drupal tests from command line.
*/
require_once __DIR__ . '/../vendor/autoload.php';
use Drupal\Core\StreamWrapper\PublicStream;
const SIMPLETEST_SCRIPT_COLOR_PASS = 32; // Green.
const SIMPLETEST_SCRIPT_COLOR_FAIL = 31; // Red.
const SIMPLETEST_SCRIPT_COLOR_EXCEPTION = 33; // Brown.

Dries Buytaert
committed
// Set defaults and get overrides.
list($args, $count) = simpletest_script_parse_args();
if ($args['help'] || $count == 0) {
simpletest_script_help();
exit;
}

Angie Byron
committed
if ($args['execute-test']) {

Dries Buytaert
committed
// Masquerade as Apache for running tests.
simpletest_script_init("Apache");

Angie Byron
committed
simpletest_script_run_one_test($args['test-id'], $args['execute-test']);

Dries Buytaert
committed
// Sub-process script execution ends here.

Dries Buytaert
committed
}

Dries Buytaert
committed
else {
// Run administrative functions as CLI.

Dries Buytaert
committed
simpletest_script_init(NULL);

Dries Buytaert
committed
}

Dries Buytaert
committed
// Bootstrap to perform initial validation or other operations.
drupal_bootstrap(DRUPAL_BOOTSTRAP_CODE);
if (!\Drupal::moduleHandler()->moduleExists('simpletest')) {
simpletest_script_print_error("The Testing (simpletest) module must be installed before this script can run.");

Dries Buytaert
committed
exit;
}
simpletest_classloader_register();
// We have to add a Request.
$request = \Symfony\Component\HttpFoundation\Request::createFromGlobals();
$container = \Drupal::getContainer();
$container->set('request', $request);

Dries Buytaert
committed
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'));

Dries Buytaert
committed
foreach ($messages as $text) {

Dries Buytaert
committed
echo " - " . $text . "\n";
}
exit;
}
if ($args['list']) {
// Display all available tests.

Dries Buytaert
committed
echo "\nAvailable test groups & classes\n";
echo "-------------------------------\n\n";

Dries Buytaert
committed
$groups = simpletest_script_get_all_tests();

Dries Buytaert
committed
foreach ($groups as $group => $tests) {
echo $group . "\n";
foreach ($tests as $class => $info) {
echo " - " . $info['name'] . ' (' . $class . ')' . "\n";

Dries Buytaert
committed
}
}
exit;
}

Dries Buytaert
committed
$test_list = simpletest_script_get_test_list();
// Try to allocate unlimited time to run the tests.
drupal_set_time_limit(0);

Dries Buytaert
committed
simpletest_script_reporter_init();
// Execute tests.
for ($i = 0; $i < $args['repeat']; $i++) {
simpletest_script_execute_batch($test_list);

Angie Byron
committed
}

Dries Buytaert
committed

Dries Buytaert
committed
// Stop the timer.
simpletest_script_reporter_timer_stop();

Dries Buytaert
committed
// Display results before database is cleared.
simpletest_script_reporter_display_results();

Dries Buytaert
committed
if ($args['xml']) {
simpletest_script_reporter_write_xml_results();
}

Dries Buytaert
committed
// Clean up all test results.
if (!$args['keep-results']) {
simpletest_clean_results_table();
}

Dries Buytaert
committed

Angie Byron
committed
// Test complete, exit.
exit;

Dries Buytaert
committed
/**
* Print help text.
*/
function simpletest_script_help() {
global $args;
echo <<<EOF
Run Drupal tests from the shell.

Dries Buytaert
committed
Usage: {$args['script']} [OPTIONS] <tests>
Example: {$args['script']} Profile
All arguments are long options.
--help Print this page.

Dries Buytaert
committed
--list Display all available test groups.
--clean Cleans up database tables or directories from previous, failed,
tests and then exits (no tests are run).
--url Immediately precedes a URL to set the host and path. You will

Dries Buytaert
committed
need this parameter if Drupal is in a subdirectory on your
localhost and you have not set \$base_url in settings.php. Tests
can be run under SSL by including https:// in the URL.

Dries Buytaert
committed
--php The absolute path to the PHP executable. Usually not needed.

Dries Buytaert
committed
--concurrency [num]

Angie Byron
committed
Run tests in parallel, up to [num] tests at a time.

Dries Buytaert
committed

Dries Buytaert
committed
--all Run all available tests.

Dries Buytaert
committed
--module Run all tests belonging to the specified module name.
(e.g., 'node')

Dries Buytaert
committed
--class Run tests identified by specific class names, instead of group names.
--file Run tests identified by specific file names, instead of group names.

Nate Lampton
committed
Specify the path and the extension
(i.e. 'core/modules/user/user.test').

Dries Buytaert
committed
--xml <path>
If provided, test results will be written as xml files to this path.
--color Output text format results with color highlighting.

Dries Buytaert
committed
--verbose Output detailed assertion messages in addition to summary.
--keep-results
Keeps detailed assertion results (in the database) after tests
have completed. By default, assertion results are cleared.

Angie Byron
committed
--repeat Number of times to repeat the test.
--die-on-fail
Exit test execution immediately upon any failed assertion. This
allows to access the test site by changing settings.php to use the
test database and configuration directories. Use in combination
with --repeat for debugging random test failures.

Angie Byron
committed
<test1>[,<test2>[,<test3> ...]]

Dries Buytaert
committed
One or more tests to be run. By default, these are interpreted

Angie Byron
committed
as the names of test groups as shown at

Dries Buytaert
committed
admin/config/development/testing.
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

Dries Buytaert
committed
specific test classes whose test methods will be run. Tests must
be separated by commas. Ignored if --all is specified.

Dries Buytaert
committed
To run this script you will normally invoke it from the root directory of your

Dries Buytaert
committed
Drupal installation as the webserver user (differs per configuration), or root:

Nate Lampton
committed
sudo -u [wwwrun|www-data|etc] php ./core/scripts/{$args['script']}

Dries Buytaert
committed
--url http://example.com/ --all

Nate Lampton
committed
sudo -u [wwwrun|www-data|etc] php ./core/scripts/{$args['script']}

Angie Byron
committed
--url http://example.com/ --class "Drupal\block\Tests\BlockTest"
\n
EOF;
}

Dries Buytaert
committed
/**
* 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' => '',

Dries Buytaert
committed
'php' => '',

Dries Buytaert
committed
'concurrency' => 1,
'all' => FALSE,
'module' => NULL,

Dries Buytaert
committed
'class' => FALSE,

Dries Buytaert
committed
'color' => FALSE,
'verbose' => FALSE,
'keep-results' => FALSE,

Dries Buytaert
committed
'test_names' => array(),

Angie Byron
committed
'repeat' => 1,
'die-on-fail' => FALSE,

Dries Buytaert
committed
// Used internally.

Angie Byron
committed
'test-id' => 0,
'execute-test' => '',

Dries Buytaert
committed
'xml' => '',

Dries Buytaert
committed
);
// 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']);
}
// Clear extraneous values.

Dries Buytaert
committed
$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);
$count++;

Dries Buytaert
committed
}
}

Dries Buytaert
committed
// Validate the concurrency argument
if (!is_numeric($args['concurrency']) || $args['concurrency'] <= 0) {
simpletest_script_print_error("--concurrency must be a strictly positive integer.");
exit;
}

Dries Buytaert
committed
return array($args, $count);
}

Dries Buytaert
committed
/**
* Initialize script variables and perform general setup requirements.
*/

Dries Buytaert
committed
function simpletest_script_init($server_software) {

Dries Buytaert
committed
global $args, $php;
$host = 'localhost';
$path = '';
// Determine location of php command automatically, unless a command line argument is supplied.
if (!empty($args['php'])) {

Dries Buytaert
committed
$php = $args['php'];
}
elseif ($php_env = getenv('_')) {

Dries Buytaert
committed
// '_' is an environment variable set by the shell. It contains the command that was executed.
$php = $php_env;

Dries Buytaert
committed
}
elseif ($sudo = getenv('SUDO_COMMAND')) {

Dries Buytaert
committed
// 'SUDO_COMMAND' is an environment variable set by the sudo program.
// Extract only the PHP interpreter, not the rest of the command.
list($php, ) = explode(' ', $sudo, 2);

Dries Buytaert
committed
}
else {
simpletest_script_print_error('Unable to automatically determine the path to the PHP interpreter. Supply the --php command line argument.');

Dries Buytaert
committed
simpletest_script_help();

Dries Buytaert
committed
exit();
}

Dries Buytaert
committed

Angie Byron
committed
// Get URL from arguments.

Dries Buytaert
committed
if (!empty($args['url'])) {
$parsed_url = parse_url($args['url']);

Dries Buytaert
committed
$host = $parsed_url['host'] . (isset($parsed_url['port']) ? ':' . $parsed_url['port'] : '');
$path = isset($parsed_url['path']) ? rtrim($parsed_url['path']) : '';
if ($path == '/') {
$path = '';
}
// If the passed URL schema is 'https' then setup the $_SERVER variables

Angie Byron
committed
// properly so that testing will run under HTTPS.
if ($parsed_url['scheme'] == 'https') {
$_SERVER['HTTPS'] = 'on';
}

Dries Buytaert
committed
}
$_SERVER['HTTP_HOST'] = $host;
$_SERVER['REMOTE_ADDR'] = '127.0.0.1';
$_SERVER['SERVER_ADDR'] = '127.0.0.1';

Dries Buytaert
committed
$_SERVER['SERVER_SOFTWARE'] = $server_software;

Dries Buytaert
committed
$_SERVER['SERVER_NAME'] = 'localhost';
$_SERVER['REQUEST_URI'] = $path .'/';
$_SERVER['REQUEST_METHOD'] = 'GET';

Dries Buytaert
committed
$_SERVER['SCRIPT_NAME'] = $path .'/index.php';
$_SERVER['SCRIPT_FILENAME'] = $path .'/index.php';

Dries Buytaert
committed
$_SERVER['PHP_SELF'] = $path .'/index.php';
$_SERVER['HTTP_USER_AGENT'] = 'Drupal command line';
if (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') {
// Ensure that any and all environment variables are changed to https://.
foreach ($_SERVER as $key => $value) {
$_SERVER[$key] = str_replace('http://', 'https://', $_SERVER[$key]);
}
}

Nate Lampton
committed
chdir(realpath(__DIR__ . '/../..'));

Angie Byron
committed
require_once dirname(__DIR__) . '/includes/bootstrap.inc';

Dries Buytaert
committed
}

Dries Buytaert
committed
/**
* Get all available tests from simpletest and PHPUnit.
*
* @param string $module
* Name of a module. If set then only tests belonging to this module are
* returned.
*

Dries Buytaert
committed
* @return
* An array of tests keyed with the groups specified in each of the tests
* getInfo() method and then keyed by the test class. An example of the array
* structure is provided below.
*
* @code
* $groups['Block'] => array(
* 'BlockTestCase' => array(
* 'name' => 'Block functionality',
* 'description' => 'Add, edit and delete custom block...',
* 'group' => 'Block',
* ),
* );
* @endcode
*/
function simpletest_script_get_all_tests($module = NULL) {
$tests = simpletest_test_get_all($module);
$tests['PHPUnit'] = simpletest_phpunit_get_available_tests($module);

Dries Buytaert
committed
return $tests;
}

Dries Buytaert
committed
/**
* Execute a batch of tests.
*/

Dries Buytaert
committed
function simpletest_script_execute_batch($test_classes) {

Dries Buytaert
committed
global $args, $test_ids;

Angie Byron
committed
// Multi-process execution.
$children = array();

Dries Buytaert
committed
while (!empty($test_classes) || !empty($children)) {

Angie Byron
committed
while (count($children) < $args['concurrency']) {

Dries Buytaert
committed
if (empty($test_classes)) {

Angie Byron
committed
break;

Dries Buytaert
committed
}

Angie Byron
committed

Dries Buytaert
committed
$test_id = db_insert('simpletest_test_id')->useDefaults(array('test_id'))->execute();
$test_ids[] = $test_id;

Dries Buytaert
committed

Dries Buytaert
committed
$test_class = array_shift($test_classes);

Dries Buytaert
committed
// Process phpunit tests immediately since they are fast and we don't need
// to fork for them.

Dries Buytaert
committed
if (is_subclass_of($test_class, 'Drupal\Tests\UnitTestCase')) {
simpletest_script_run_phpunit($test_id, $test_class);

Dries Buytaert
committed
continue;
}
// Fork a child process.

Angie Byron
committed
$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;

Dries Buytaert
committed
}

Angie Byron
committed
// Register our new child.
$children[] = array(
'process' => $process,

Dries Buytaert
committed
'test_id' => $test_id,

Angie Byron
committed
'class' => $test_class,
'pipes' => $pipes,
);
}

Dries Buytaert
committed

Angie Byron
committed
// 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']) {

Dries Buytaert
committed
echo 'FATAL ' . $child['class'] . ': test runner returned a non-zero error code (' . $status['exitcode'] . ').' . "\n";

Angie Byron
committed
if ($args['die-on-fail']) {
list($db_prefix, ) = simpletest_last_test_get($child['test_id']);
$public_files = PublicStream::basePath();

Angie Byron
committed
$test_directory = $public_files . '/simpletest/' . substr($db_prefix, 10);
echo 'Simpletest database and files kept and test exited immediately on fail so should be reproducible if you change settings.php to use the database prefix '. $db_prefix . ' and config directories in '. $test_directory . "\n";
$args['keep-results'] = TRUE;
// Exit repeat loop immediately.
$args['repeat'] = -1;

Angie Byron
committed
}

Dries Buytaert
committed
}

Dries Buytaert
committed
// Free-up space by removing any potentially created resources.
if (!$args['keep-results']) {
simpletest_script_cleanup($child['test_id'], $child['class'], $status['exitcode']);
}

Dries Buytaert
committed
// Remove this child.

Angie Byron
committed
unset($children[$cid]);

Dries Buytaert
committed
}
}
}
}

Dries Buytaert
committed
/**
* Run a group of phpunit tests.
*/

Dries Buytaert
committed
function simpletest_script_run_phpunit($test_id, $class) {
$results = simpletest_run_phpunit_tests($test_id, array($class));

Dries Buytaert
committed
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
simpletest_process_phpunit_results($results);
// Map phpunit results to a data structure we can pass to
// _simpletest_format_summary_line.
$summaries = array();
foreach ($results as $result) {
if (!isset($summaries[$result['test_class']])) {
$summaries[$result['test_class']] = array(
'#pass' => 0,
'#fail' => 0,
'#exception' => 0,
'#debug' => 0,
);
}
switch ($result['status']) {
case 'pass':
$summaries[$result['test_class']]['#pass']++;
break;
case 'fail':
$summaries[$result['test_class']]['#fail']++;
break;
case 'exception':
$summaries[$result['test_class']]['#exception']++;
break;
case 'debug':

Dries Buytaert
committed
$summaries[$result['test_class']]['#debug']++;

Dries Buytaert
committed
break;
}
}
foreach ($summaries as $class => $summary) {
$had_fails = $summary['#fail'] > 0;
$had_exceptions = $summary['#exception'] > 0;
$status = ($had_fails || $had_exceptions ? 'fail' : 'pass');
$info = call_user_func(array($class, 'getInfo'));
simpletest_script_print($info['name'] . ' ' . _simpletest_format_summary_line($summary) . "\n", simpletest_script_color_code($status));
}
}

Dries Buytaert
committed
/**

Angie Byron
committed
* Bootstrap Drupal and run a single test.

Dries Buytaert
committed
*/
function simpletest_script_run_one_test($test_id, $test_class) {
global $args, $conf;

Angie Byron
committed
try {
// Bootstrap Drupal.
drupal_bootstrap(DRUPAL_BOOTSTRAP_CODE);

catch
committed
simpletest_classloader_register();
// We have to add a Request.
$request = \Symfony\Component\HttpFoundation\Request::createFromGlobals();
$container = \Drupal::getContainer();
$container->set('request', $request);

catch
committed
// Override configuration according to command line parameters.
$conf['simpletest.settings']['verbose'] = $args['verbose'];
$conf['simpletest.settings']['clear_results'] = !$args['keep-results'];

Angie Byron
committed
$test = new $test_class($test_id);
$test->dieOnFail = (bool) $args['die-on-fail'];

Angie Byron
committed
$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));

Angie Byron
committed
// Finished, kill this runner.
exit(0);
}

Dries Buytaert
committed
// DrupalTestCase::run() catches exceptions already, so this is only reached
// when an exception is thrown in the wrapping test runner environment.

Angie Byron
committed
catch (Exception $e) {
echo (string) $e;
exit(1);
}

Dries Buytaert
committed
/**

Angie Byron
committed
* 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.

Dries Buytaert
committed
*/

Angie Byron
committed
function simpletest_script_command($test_id, $test_class) {

Dries Buytaert
committed
global $args, $php;

Dries Buytaert
committed
$command = escapeshellarg($php) . ' ' . escapeshellarg('./core/scripts/' . $args['script']);
$command .= ' --url ' . escapeshellarg($args['url']);
$command .= ' --php ' . escapeshellarg($php);
$command .= " --test-id $test_id";

Angie Byron
committed
foreach (array('verbose', 'keep-results', 'color', 'die-on-fail') as $arg) {
if ($args[$arg]) {
$command .= ' --' . $arg;
}
// --execute-test and class name needs to come last.
$command .= ' --execute-test ' . escapeshellarg($test_class);

Angie Byron
committed
return $command;

Dries Buytaert
committed
}

Dries Buytaert
committed
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
/**
* 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 = PublicStream::basePath();

Dries Buytaert
committed
$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, array('Drupal\simpletest\TestBase', 'filePreDeleteCallback'));

Dries Buytaert
committed
$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";
}
}

Dries Buytaert
committed
/**
* Get list of tests based on arguments. If --all specified then

Dries Buytaert
committed
* 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() {

Dries Buytaert
committed
global $args;

Dries Buytaert
committed
$test_list = array();
if ($args['all'] || $args['module']) {
$groups = simpletest_script_get_all_tests($args['module']);

Dries Buytaert
committed
$all_tests = array();
foreach ($groups as $group => $tests) {

Dries Buytaert
committed
$all_tests = array_merge($all_tests, array_keys($tests));

Dries Buytaert
committed
}

Angie Byron
committed
$test_list = $all_tests;

Dries Buytaert
committed
}
else {
if ($args['class']) {

Dries Buytaert
committed
foreach ($args['test_names'] as $class_name) {

Dries Buytaert
committed
$test_list[] = $class_name;
}
}

Angie Byron
committed
elseif ($args['file']) {

Dries Buytaert
committed
// Extract test case class names from specified files.
foreach ($args['test_names'] as $file) {

Dries Buytaert
committed
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) {

Dries Buytaert
committed
$test_list = array_merge($test_list, $matches[1]);

Dries Buytaert
committed
}
else {
foreach ($matches[1] as $class_name) {

Alex Pott
committed
$namespace_class = $namespace . '\\' . $class_name;
if (is_subclass_of($namespace_class, '\Drupal\simpletest\TestBase') || is_subclass_of($namespace_class, '\Drupal\Tests\UnitTestCase')) {
$test_list[] = $namespace_class;
}

Dries Buytaert
committed
}

Dries Buytaert
committed
else {

Dries Buytaert
committed
$groups = simpletest_script_get_all_tests();

Dries Buytaert
committed
foreach ($args['test_names'] as $group_name) {

Dries Buytaert
committed
$test_list = array_merge($test_list, array_keys($groups[$group_name]));

Dries Buytaert
committed
}
}

Dries Buytaert
committed

Dries Buytaert
committed
if (empty($test_list)) {
simpletest_script_print_error('No valid tests were specified.');
exit;
}
return $test_list;

Dries Buytaert
committed
/**
* Initialize the reporter.
*/
function simpletest_script_reporter_init() {

Dries Buytaert
committed
global $args, $test_list, $results_map;

Dries Buytaert
committed
$results_map = array(
'pass' => 'Pass',
'fail' => 'Fail',
'exception' => 'Exception'
);

Dries Buytaert
committed
echo "\n";
echo "Drupal test run\n";
echo "---------------\n";
echo "\n";

Dries Buytaert
committed

Dries Buytaert
committed
// 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";

Dries Buytaert
committed
foreach ($test_list as $class_name) {
$info = call_user_func(array($class_name, 'getInfo'));
echo " - " . $info['name'] . ' (' . $class_name . ')' . "\n";

Dries Buytaert
committed
}
echo "\n";

Dries Buytaert
committed

Dries Buytaert
committed
echo "Test run started:\n";
echo " " . format_date($_SERVER['REQUEST_TIME'], 'long') . "\n";
timer_start('run-tests');

Dries Buytaert
committed
echo "\n";

Dries Buytaert
committed
echo "Test summary\n";
echo "------------\n";

Dries Buytaert
committed
echo "\n";

Dries Buytaert
committed
/**

Dries Buytaert
committed
* Display jUnit XML test results.

Dries Buytaert
committed
*/

Dries Buytaert
committed
function simpletest_script_reporter_write_xml_results() {

Dries Buytaert
committed
global $args, $test_ids, $results_map;

Dries Buytaert
committed

Dries Buytaert
committed
$results = db_query("SELECT * FROM {simpletest} WHERE test_id IN (:test_ids) ORDER BY test_class, message_id", array(':test_ids' => $test_ids));

Dries Buytaert
committed
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
$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() {

Dries Buytaert
committed
echo "\n";
$end = timer_stop('run-tests');
echo "Test run duration: " . format_interval($end['time'] / 1000);

Dries Buytaert
committed
echo "\n\n";

Dries Buytaert
committed
}
/**
* Display test results.
*/
function simpletest_script_reporter_display_results() {

Dries Buytaert
committed
global $args, $test_ids, $results_map;

Dries Buytaert
committed

Dries Buytaert
committed
if ($args['verbose']) {
// Report results.

Dries Buytaert
committed
echo "Detailed test results\n";
echo "---------------------\n";

Dries Buytaert
committed

Dries Buytaert
committed
$results = db_query("SELECT * FROM {simpletest} WHERE test_id IN (:test_ids) ORDER BY test_class, message_id", array(':test_ids' => $test_ids));

Dries Buytaert
committed
$test_class = '';

Dries Buytaert
committed
foreach ($results as $result) {

Dries Buytaert
committed
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;

Dries Buytaert
committed

catch
committed
// Print table header.
echo "Status Group Filename Line Function \n";
echo "--------------------------------------------------------------------------------\n";

Dries Buytaert
committed
}
simpletest_script_format_result($result);
}
}

Dries Buytaert
committed
/**
* 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;

Dries Buytaert
committed
$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);

Dries Buytaert
committed
simpletest_script_print($summary, simpletest_script_color_code($result->status));

Dries Buytaert
committed

Dries Buytaert
committed
$lines = explode("\n", wordwrap(trim(strip_tags($result->message)), 76));
foreach ($lines as $line) {
echo " $line\n";
}
}

Dries Buytaert
committed

Dries Buytaert
committed
/**

Dries Buytaert
committed
* Print error message prefixed with " ERROR: " and displayed in fail color
* if color output is enabled.
*
* @param $message The message to print.

Dries Buytaert
committed
*/

Dries Buytaert
committed
function simpletest_script_print_error($message) {
simpletest_script_print(" ERROR: $message\n", SIMPLETEST_SCRIPT_COLOR_FAIL);

Dries Buytaert
committed
}

Dries Buytaert
committed

Dries Buytaert
committed
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
/**
* 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.
}