- 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
2014-03-16 18:46:31 +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
/**
* @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
*/
2013-09-02 19:53:23 +00:00
2014-01-25 02:07:30 +00:00
use Drupal\C omponent\U tility\T imer;
2014-03-16 18:46:31 +00:00
use Drupal\C ore\D atabase\D atabase;
2014-04-25 19:13:44 +00:00
use Drupal\C ore\S ite\S ettings;
2014-06-26 10:47:01 +00:00
use Drupal\C ore\T est\T estRunnerKernel;
2014-03-16 18:46:31 +00:00
use Symfony\C omponent\H ttpFoundation\R equest;
2014-06-26 10:47:01 +00:00
$autoloader = require_once __DIR__ . '/../vendor/autoload.php' ;
- 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.
2014-10-03 14:05:31 +00:00
// Restricting the chunk of queries prevents memory exhaustion.
const SIMPLETEST_SCRIPT_SQLITE_VARIABLE_LIMIT = 350;
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( ) ;
2014-11-19 21:11:33 +00:00
exit;
2008-07-07 06:22:18 +00:00
}
2014-03-16 18:46:31 +00:00
simpletest_script_init( ) ;
2014-06-26 10:47:01 +00:00
$request = Request::createFromGlobals( ) ;
$kernel = TestRunnerKernel::createFromRequest( $request , $autoloader ) ;
$kernel ->prepareLegacyRequest( $request ) ;
2014-03-16 18:46:31 +00:00
2011-07-14 04:37:24 +00:00
if ( $args [ 'execute-test' ] ) {
2014-03-16 18:46:31 +00:00
simpletest_script_setup_database( ) ;
2011-07-14 04:37:24 +00:00
simpletest_script_run_one_test( $args [ 'test-id' ] , $args [ 'execute-test' ] ) ;
2014-03-16 18:46:31 +00:00
// Sub-process exited already; this is just for clarity.
2014-11-19 21:11:33 +00:00
exit;
2008-07-07 06:22:18 +00:00
}
2014-03-16 18:46:31 +00:00
simpletest_script_setup_database( TRUE) ;
2008-07-07 06:22:18 +00:00
if ( $args [ 'clean' ] ) {
2014-03-16 18:46:31 +00:00
// Clean up left-over tables and directories.
2008-07-07 06:22:18 +00:00
simpletest_clean_environment( ) ;
echo "\nEnvironment cleaned.\n" ;
// Get the status messages and print them.
2014-03-16 18:46:31 +00:00
$messages = drupal_get_messages( 'status' ) ;
foreach ( $messages [ 'status' ] as $text ) {
2008-07-07 06:22:18 +00:00
echo " - " . $text . "\n" ;
}
2014-11-19 21:11:33 +00:00
exit;
2008-07-07 06:22:18 +00:00
}
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" ;
2014-07-11 03:50:37 +00:00
$groups = simpletest_test_get_all( $args [ 'module' ] ) ;
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 ) {
2014-07-11 03:50:37 +00:00
echo " - $class \n " ;
2008-07-07 06:22:18 +00:00
}
}
2014-11-19 21:11:33 +00:00
exit;
2008-07-07 06:22:18 +00:00
}
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( ) ;
2014-05-28 19:10:45 +00:00
$tests_to_run = array( ) ;
2013-01-30 21:54:14 +00:00
for ( $i = 0; $i < $args [ 'repeat' ] ; $i ++) {
2014-05-28 19:10:45 +00:00
$tests_to_run = array_merge( $tests_to_run , $test_list ) ;
2013-01-24 19:54:26 +00:00
}
2009-07-30 10:46:53 +00:00
2014-05-28 19:10:45 +00:00
// Execute tests.
2014-11-19 21:11:33 +00:00
simpletest_script_execute_batch( $tests_to_run ) ;
2014-05-28 19:10:45 +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.
2014-11-19 21:11:33 +00:00
exit;
2011-07-14 04:37:24 +00:00
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) .
2014-03-16 18:46:31 +00:00
--url The base URL of the root directory of this Drupal checkout; e.g.:
http://drupal.test/
Required unless the Drupal root directory maps exactly to:
http://localhost:80/
Use a https:// URL to force all tests to be run under SSL.
--sqlite A pathname to use for the SQLite database of the test runner.
Required unless this script is executed with a working Drupal
installation that has Simpletest module installed.
A relative pathname is interpreted relative to the Drupal root
directory.
Note that ':memory:' cannot be used, because this script spawns
sub-processes. However, you may use e.g. '/tmpfs/test.sqlite'
--dburl A URI denoting the database driver, credentials, server hostname,
2014-05-05 11:30:43 +00:00
and database name to use in tests.
2014-03-16 18:46:31 +00:00
Required when running tests without a Drupal installation that
contains default database connection info in settings.php.
2014-05-05 11:30:43 +00:00
Examples:
mysql://username:password@localhost/databasename#table_prefix
sqlite://localhost/relative/path/db.sqlite
sqlite://localhost//absolute/path/db.sqlite
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.
2013-01-24 19:54:26 +00:00
--repeat Number of times to repeat the test.
--die-on-fail
2013-01-30 21:54:14 +00:00
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.
2013-01-24 19:54:26 +00:00
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"
2014-07-31 15:11:01 +00:00
or "Profile" or "System" , but there is also a group "Database" .
2008-05-26 19:43:46 +00:00
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"
2014-03-16 18:46:31 +00:00
Without a preinstalled Drupal site and enabled Simpletest module, specify a
SQLite database pathname to create and the default database connection info to
use in tests:
sudo -u [ wwwrun| www-data| etc] php ./core/scripts/{ $args [ 'script' ] }
--sqlite /tmpfs/drupal/test.sqlite
--dburl mysql://username:password@localhost/database
--url http://example.com/ --all
2008-05-26 19:43:46 +00:00
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' = > '' ,
2014-03-16 18:46:31 +00:00
'sqlite' = > NULL,
'dburl' = > NULL,
2008-10-19 20:12:55 +00:00
'php' = > '' ,
2008-07-07 06:22:18 +00:00
'concurrency' = > 1,
'all' = > FALSE,
2013-11-22 23:59:11 +00:00
'module' = > NULL,
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( ) ,
2013-01-24 19:54:26 +00:00
'repeat' = > 1,
'die-on-fail' = > FALSE,
2008-07-07 06:22:18 +00:00
// 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 '. " ) ;
2014-11-19 21:11:33 +00:00
exit;
2008-07-07 06:22:18 +00:00
}
}
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." ) ;
2014-11-19 21:11:33 +00:00
exit;
2008-07-24 06:46:28 +00:00
}
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.
*/
2014-03-16 18:46:31 +00:00
function simpletest_script_init( ) {
2008-07-07 06:22:18 +00:00
global $args , $php ;
$host = 'localhost' ;
$path = '' ;
2013-12-08 07:51:26 +00:00
$port = '80' ;
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( ) ;
2014-11-19 21:11:33 +00:00
exit( ) ;
2008-09-23 10:55:27 +00:00
}
2008-07-07 06:22:18 +00:00
2012-09-02 04:50:06 +00:00
// Get URL from arguments.
2008-07-07 06:22:18 +00:00
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' ] : '' ) ;
2013-12-10 03:53:47 +00:00
$path = isset( $parsed_url [ 'path' ] ) ? rtrim( rtrim( $parsed_url [ 'path' ] ) , '/' ) : '' ;
2013-12-08 07:51:26 +00:00
$port = ( isset( $parsed_url [ 'port' ] ) ? $parsed_url [ 'port' ] : $port ) ;
2013-06-06 08:14:16 +00:00
if ( $path = = '/' ) {
$path = '' ;
}
2009-12-17 22:02:26 +00:00
// If the passed URL schema is 'https' then setup the $_SERVER variables
2012-09-02 04:50:06 +00:00
// properly so that testing will run under HTTPS.
2009-12-17 22:02:26 +00:00
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' ;
2013-12-08 07:51:26 +00:00
$_SERVER [ 'SERVER_PORT' ] = $port ;
2014-03-16 18:46:31 +00:00
$_SERVER [ 'SERVER_SOFTWARE' ] = NULL;
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' ;
2013-08-21 01:26:31 +00:00
$_SERVER [ 'SCRIPT_FILENAME' ] = $path .'/index.php' ;
2008-07-07 06:22:18 +00:00
$_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__ . '/../..' ) ) ;
2014-03-16 18:46:31 +00:00
}
/**
* Sets up database connection info for running tests.
*
* If this script is executed from within a real Drupal installation, then this
* function essentially performs nothing ( unless the --sqlite or --dburl
* parameters were passed) .
*
* Otherwise, there are three database connections of concern:
* - --sqlite: The test runner connection, providing access to Simpletest
* database tables for recording test IDs and assertion results.
* - --dburl: A database connection that is used as base connection info for all
* tests; i.e., every test will spawn from this connection. In case this
* connection uses e.g. SQLite, then all tests will run against SQLite. This
* is exposed as $databases [ 'default' ] [ 'default' ] to Drupal.
* - The actual database connection used within a test. This is the same as
* --dburl, but uses an additional database table prefix. This is
* $databases [ 'default' ] [ 'default' ] within a test environment. The original
* connection is retained in
* $databases [ 'simpletest_original_default' ] [ 'default' ] and restored after
* each test.
*
* @param bool $new
* Whether this process is a run-tests.sh master process. If TRUE, the SQLite
* database file specified by --sqlite ( if any) is set up. Otherwise, database
* connections are prepared only.
*/
function simpletest_script_setup_database( $new = FALSE) {
2014-05-05 11:30:43 +00:00
global $args ;
2014-03-16 18:46:31 +00:00
// If there is an existing Drupal installation that contains a database
// connection info in settings.php, then $databases [ 'default' ] [ 'default' ] will
// hold the default database connection already. This connection is assumed to
// be valid, and this connection will be used in tests, so that they run
// against e.g. MySQL instead of SQLite.
// However, in case no Drupal installation exists, this default database
// connection can be set and/or overridden with the --dburl parameter.
if ( !empty( $args [ 'dburl' ] ) ) {
// Remove a possibly existing default connection ( from settings.php) .
Database::removeConnection( 'default' ) ;
$info = parse_url( $args [ 'dburl' ] ) ;
if ( !isset( $info [ 'scheme' ] , $info [ 'host' ] , $info [ 'path' ] ) ) {
simpletest_script_print_error( 'Invalid --dburl. Minimum requirement: driver://host/database' ) ;
2014-11-19 21:11:33 +00:00
exit( 1) ;
2014-03-16 18:46:31 +00:00
}
$info += array(
'user' = > '' ,
'pass' = > '' ,
'fragment' = > '' ,
) ;
2014-05-05 11:30:43 +00:00
if ( $info [ 'path' ] [ 0] = = = '/' ) {
$info [ 'path' ] = substr( $info [ 'path' ] , 1) ;
}
if ( $info [ 'scheme' ] = = = 'sqlite' && $info [ 'path' ] [ 0] != = '/' ) {
$info [ 'path' ] = DRUPAL_ROOT . '/' . $info [ 'path' ] ;
}
2014-03-16 18:46:31 +00:00
$databases [ 'default' ] [ 'default' ] = array(
'driver' = > $info [ 'scheme' ] ,
'username' = > $info [ 'user' ] ,
'password' = > $info [ 'pass' ] ,
'host' = > $info [ 'host' ] ,
2014-05-05 11:30:43 +00:00
'database' = > $info [ 'path' ] ,
2014-03-16 18:46:31 +00:00
'prefix' = > array(
'default' = > $info [ 'fragment' ] ,
) ,
) ;
2014-09-09 11:44:19 +00:00
if ( isset( $info [ 'port' ] ) ) {
$databases [ 'default' ] [ 'default' ] [ 'port' ] = $info [ 'port' ] ;
}
2014-03-16 18:46:31 +00:00
}
2014-05-05 11:30:43 +00:00
// Otherwise, use the default database connection from settings.php.
else {
$databases [ 'default' ] = Database::getConnectionInfo( 'default' ) ;
2014-03-16 18:46:31 +00:00
}
// If there is no default database connection for tests, we cannot continue .
if ( !isset( $databases [ 'default' ] [ 'default' ] ) ) {
simpletest_script_print_error( 'Missing default database connection for tests. Use --dburl to specify one.' ) ;
2014-11-19 21:11:33 +00:00
exit( 1) ;
2014-03-16 18:46:31 +00:00
}
Database::addConnectionInfo( 'default' , 'default' , $databases [ 'default' ] [ 'default' ] ) ;
// If no --sqlite parameter has been passed, then Simpletest module is assumed
// to be installed, so the test runner database connection is the default
// database connection.
if ( empty( $args [ 'sqlite' ] ) ) {
$sqlite = FALSE;
$databases [ 'test-runner' ] [ 'default' ] = $databases [ 'default' ] [ 'default' ] ;
}
// Otherwise, set up a SQLite connection for the test runner.
else {
if ( $args [ 'sqlite' ] [ 0] = = = '/' ) {
$sqlite = $args [ 'sqlite' ] ;
}
else {
$sqlite = DRUPAL_ROOT . '/' . $args [ 'sqlite' ] ;
}
$databases [ 'test-runner' ] [ 'default' ] = array(
'driver' = > 'sqlite' ,
'database' = > $sqlite ,
'prefix' = > array(
'default' = > '' ,
) ,
) ;
// Create the test runner SQLite database, unless it exists already.
if ( $new && !file_exists( $sqlite ) ) {
if ( !is_dir( dirname( $sqlite ) ) ) {
mkdir( dirname( $sqlite ) ) ;
}
touch( $sqlite ) ;
}
}
// Add the test runner database connection.
Database::addConnectionInfo( 'test-runner' , 'default' , $databases [ 'test-runner' ] [ 'default' ] ) ;
// Create the Simpletest schema.
try {
$schema = Database::getConnection( 'default' , 'test-runner' ) ->schema( ) ;
}
catch ( \P DOException $e ) {
simpletest_script_print_error( $databases [ 'test-runner' ] [ 'default' ] [ 'driver' ] . ': ' . $e ->getMessage( ) ) ;
2014-11-19 21:11:33 +00:00
exit( 1) ;
2014-03-16 18:46:31 +00:00
}
if ( $new && $sqlite ) {
require_once DRUPAL_ROOT . '/' . drupal_get_path( 'module' , 'simpletest' ) . '/simpletest.install' ;
foreach ( simpletest_schema( ) as $name = > $table_spec ) {
if ( $schema ->tableExists( $name ) ) {
$schema ->dropTable( $name ) ;
}
$schema ->createTable( $name , $table_spec ) ;
}
}
// Verify that the Simpletest database schema exists by checking one table.
if ( !$schema ->tableExists( 'simpletest' ) ) {
simpletest_script_print_error( 'Missing Simpletest database schema. Either install Simpletest module or use the --sqlite parameter.' ) ;
2014-11-19 21:11:33 +00:00
exit( 1) ;
2014-03-16 18:46:31 +00:00
}
}
2008-07-07 06:22:18 +00:00
/**
* Execute a batch of tests.
*/
2013-03-08 14:05:32 +00:00
function simpletest_script_execute_batch( $test_classes ) {
2012-06-02 20:50:40 +00:00
global $args , $test_ids ;
2013-05-20 08:30:48 +00:00
2011-07-14 04:37:24 +00:00
// Multi-process execution.
$children = array( ) ;
2013-03-08 14:05:32 +00:00
while ( !empty( $test_classes ) || !empty( $children ) ) {
2011-07-14 04:37:24 +00:00
while ( count( $children ) < $args [ 'concurrency' ] ) {
2013-03-08 14:05:32 +00:00
if ( empty( $test_classes ) ) {
2011-07-14 04:37:24 +00:00
break;
2008-06-29 12:22:28 +00:00
}
2011-07-14 04:37:24 +00:00
2014-03-16 18:46:31 +00:00
$test_id = Database::getConnection( 'default' , 'test-runner' )
->insert( 'simpletest_test_id' ) ->useDefaults( array( 'test_id' ) ) ->execute( ) ;
2012-06-02 20:50:40 +00:00
$test_ids [ ] = $test_id ;
2013-03-07 02:48:50 +00:00
2013-03-08 14:05:32 +00:00
$test_class = array_shift( $test_classes ) ;
2013-03-07 02:48:50 +00:00
// Process phpunit tests immediately since they are fast and we don' t need
// to fork for them.
2014-11-20 05:41:34 +00:00
if ( is_subclass_of( $test_class , '\PHPUnit_Framework_TestCase' ) ) {
2014-11-19 21:11:33 +00:00
simpletest_script_run_phpunit( $test_id , $test_class ) ;
2013-03-07 02:48:50 +00:00
continue ;
}
// Fork a child process.
2011-07-14 04:37:24 +00:00
$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" ;
2014-11-19 21:11:33 +00:00
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' ] ) ;
2014-11-19 21:11:33 +00:00
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" ;
2013-01-24 19:54:26 +00:00
if ( $args [ 'die-on-fail' ] ) {
list( $db_prefix , ) = simpletest_last_test_get( $child [ 'test_id' ] ) ;
2014-02-10 17:31:31 +00:00
$test_directory = 'sites/simpletest/' . substr( $db_prefix , 10) ;
2013-01-24 19:54:26 +00:00
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" ;
2013-01-30 21:54:14 +00:00
$args [ 'keep-results' ] = TRUE;
// Exit repeat loop immediately.
$args [ 'repeat' ] = -1;
2013-01-24 19:54:26 +00:00
}
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
}
}
}
}
2013-03-07 02:48:50 +00:00
/**
* Run a group of phpunit tests.
*/
2013-03-08 14:05:32 +00:00
function simpletest_script_run_phpunit( $test_id , $class ) {
2014-11-19 21:11:33 +00:00
$results = simpletest_run_phpunit_tests( $test_id , array( $class ) ) ;
2013-03-07 02:48:50 +00:00
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' :
2013-03-08 14:05:32 +00:00
$summaries [ $result [ 'test_class' ] ] [ '#debug' ] ++;
2013-03-07 02:48:50 +00:00
break;
}
}
foreach ( $summaries as $class = > $summary ) {
2014-03-16 18:46:31 +00:00
simpletest_script_reporter_display_summary( $class , $summary ) ;
2013-03-07 02:48:50 +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 ) {
Issue #2167109 by Berdir, sun, alexpott, ACF, acrollet, adamdicarlo, Albert Volkman, andreiashu, andyceo, andypost, anenkov, aspilicious, barbun, beejeebus, boombatower, cam8001, chriscalip, chx, cosmicdreams, dagmar, damiankloip, dawehner, deviance, disasm, dixon_, dstol, ebrowet, Gábor Hojtsy, heyrocker, Hydra, ianthomas_uk, japicoder, jcisio, jibran, julien, justafish, jvns, KarenS, kbasarab, kim.pepper, larowlan, Lars Toomre, leschekfm, Letharion, LinL, lirantal, Lukas von Blarer, marcingy, Mike Wacker, mrf, mtift, mtunay, n3or, nadavoid, nick_schuch, Niklas Fiekas, ParisLiakos, pcambra, penyaskito, pfrenssen, plopesc, Pol, Rok Žlender, rvilar, swentel, tim.plunkett, tobiasb, tsvenson, typhonius, vasi1186, vijaycs85, wamilton, webchick, webflo, wizonesolutions, xjm, yched, YesCT, znerol: Remove Variable subsystem.
2014-01-28 13:07:47 +00:00
global $args ;
2012-08-10 15:18:47 +00:00
2011-07-14 04:37:24 +00:00
try {
$test = new $test_class ( $test_id ) ;
2013-01-30 21:54:14 +00:00
$test ->dieOnFail = ( bool) $args [ 'die-on-fail' ] ;
2014-02-05 18:21:55 +00:00
$test ->verbose = ( bool) $args [ 'verbose' ] ;
2011-07-14 04:37:24 +00:00
$test ->run( ) ;
2014-03-16 18:46:31 +00:00
simpletest_script_reporter_display_summary( $test_class , $test ->results) ;
2008-05-26 19:43:46 +00:00
2011-07-14 04:37:24 +00:00
// Finished, kill this runner.
2014-11-19 21:11:33 +00:00
exit( 0) ;
2011-07-14 04:37:24 +00:00
}
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 ;
2014-11-19 21:11:33 +00:00
exit( 1) ;
2011-07-14 04:37:24 +00:00
}
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' ] ) ;
2014-03-16 18:46:31 +00:00
if ( !empty( $args [ 'sqlite' ] ) ) {
$command .= ' --sqlite ' . escapeshellarg( $args [ 'sqlite' ] ) ;
}
if ( !empty( $args [ 'dburl' ] ) ) {
$command .= ' --dburl ' . escapeshellarg( $args [ 'dburl' ] ) ;
}
2012-08-10 15:18:47 +00:00
$command .= ' --php ' . escapeshellarg( $php ) ;
$command .= " --test-id $test_id " ;
2013-01-24 19:54:26 +00:00
foreach ( array( 'verbose' , 'keep-results' , 'color' , 'die-on-fail' ) as $arg ) {
2012-08-10 15:18:47 +00:00
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 ) ;
2014-02-10 17:31:31 +00:00
// Check whether a test site directory was setup already.
// @see \D rupal\s impletest\T estBase::prepareEnvironment( )
$test_directory = DRUPAL_ROOT . '/sites/simpletest/' . substr( $db_prefix , 10) ;
2012-06-02 20:50:40 +00:00
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 ;
}
}
2014-02-10 17:31:31 +00:00
// Delete the test site directory.
2012-06-02 20:50:40 +00:00
// simpletest_clean_temporary_directories( ) cannot be used here, since it
// would also delete file directories of other tests that are potentially
// running concurrently.
2012-10-22 09:14:49 +00:00
file_unmanaged_delete_recursive( $test_directory , array( 'Drupal\simpletest\TestBase' , 'filePreDeleteCallback' ) ) ;
2014-03-16 18:46:31 +00:00
$messages [ ] = "- Removed test site directory." ;
2012-06-02 20:50:40 +00:00
}
// Clear out all database tables from the test.
2014-03-16 18:46:31 +00:00
$schema = Database::getConnection( 'default' , 'default' ) ->schema( ) ;
2012-06-02 20:50:40 +00:00
$count = 0;
2014-03-16 18:46:31 +00:00
foreach ( $schema ->findTables( $db_prefix . '%' ) as $table ) {
$schema ->dropTable( $table ) ;
2012-06-02 20:50:40 +00:00
$count ++;
}
if ( $count ) {
2014-03-16 18:46:31 +00:00
$messages [ ] = " - Removed $count leftover tables. " ;
2012-06-02 20:50:40 +00:00
}
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( ) ;
2013-11-22 23:59:11 +00:00
if ( $args [ 'all' ] || $args [ 'module' ] ) {
2014-07-11 03:50:37 +00:00
$groups = simpletest_test_get_all( $args [ 'module' ] ) ;
2012-07-15 01:24:35 +00:00
$all_tests = array( ) ;
foreach ( $groups as $group = > $tests ) {
2013-03-08 14:05:32 +00:00
$all_tests = array_merge( $all_tests , array_keys( $tests ) ) ;
2012-07-15 01:24:35 +00:00
}
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' ] ) {
2014-08-29 06:38:35 +00:00
$test_list = array( ) ;
foreach ( $args [ 'test_names' ] as $test_class ) {
if ( class_exists( $test_class ) ) {
$test_list [ ] = $test_class ;
}
else {
$groups = simpletest_test_get_all( ) ;
$all_classes = array( ) ;
foreach ( $groups as $group ) {
$all_classes = array_merge( $all_classes , array_keys( $group ) ) ;
}
simpletest_script_print_error( 'Test class not found: ' . $test_class ) ;
simpletest_script_print_alternatives( $test_class , $all_classes , 6) ;
2014-11-19 21:11:33 +00:00
exit( 1) ;
2014-08-29 06:38:35 +00:00
}
2012-07-15 01:24:35 +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 ) ;
2014-11-19 21:11:33 +00:00
exit;
2012-07-15 01:24:35 +00:00
}
$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 ) {
2013-03-08 14:05:32 +00:00
$test_list = array_merge( $test_list , $matches [ 1] ) ;
2012-07-15 01:24:35 +00:00
}
else {
foreach ( $matches [ 1] as $class_name ) {
2013-11-07 15:04:00 +00:00
$namespace_class = $namespace . '\\' . $class_name ;
2014-11-20 05:41:34 +00:00
if ( is_subclass_of( $namespace_class , '\Drupal\simpletest\TestBase' ) || is_subclass_of( $namespace_class , '\PHPUnit_Framework_TestCase' ) ) {
2013-11-07 15:04:00 +00:00
$test_list [ ] = $namespace_class ;
}
2012-07-15 01:24:35 +00:00
}
2008-08-18 18:52:31 +00:00
}
}
}
2008-07-07 06:22:18 +00:00
else {
2014-07-11 03:50:37 +00:00
$groups = simpletest_test_get_all( ) ;
2008-07-07 06:22:18 +00:00
foreach ( $args [ 'test_names' ] as $group_name ) {
2014-08-29 06:38:35 +00:00
if ( isset( $groups [ $group_name ] ) ) {
$test_list = array_merge( $test_list , array_keys( $groups [ $group_name ] ) ) ;
}
else {
simpletest_script_print_error( 'Test group not found: ' . $group_name ) ;
simpletest_script_print_alternatives( $group_name , array_keys( $groups ) ) ;
2014-11-19 21:11:33 +00:00
exit( 1) ;
2014-08-29 06:38:35 +00:00
}
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.' ) ;
2014-11-19 21:11:33 +00:00
exit;
2008-07-07 06:22:18 +00:00
}
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" ;
2013-03-08 14:05:32 +00:00
foreach ( $test_list as $class_name ) {
2014-03-16 18:46:31 +00:00
echo " - $class_name \n " ;
2008-07-07 06:22:18 +00:00
}
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" ;
2014-03-16 18:46:31 +00:00
echo " " . date( 'l, F j, Y - H:i' , $_SERVER [ 'REQUEST_TIME' ] ) . "\n" ;
2014-01-25 02:07:30 +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
}
2014-03-16 18:46:31 +00:00
/**
* Displays the assertion result summary for a single test class.
*
* @param string $class
* The test class name that was run.
* @param array $results
* The assertion results using #pass, #fail, #exception, #debug array keys.
*/
function simpletest_script_reporter_display_summary( $class , $results ) {
// Output all test results vertically aligned.
// Cut off the class name after 60 chars, and pad each group with 3 digits
// by default ( more than 999 assertions are rare) .
$output = vsprintf( '%-60.60s %10s %9s %14s %12s' , array(
$class ,
$results [ '#pass' ] . ' passes' ,
!$results [ '#fail' ] ? '' : $results [ '#fail' ] . ' fails' ,
!$results [ '#exception' ] ? '' : $results [ '#exception' ] . ' exceptions' ,
!$results [ '#debug' ] ? '' : $results [ '#debug' ] . ' messages' ,
) ) ;
$status = ( $results [ '#fail' ] || $results [ '#exception' ] ? 'fail' : 'pass' ) ;
simpletest_script_print( $output . "\n" , simpletest_script_color_code( $status ) ) ;
}
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
2014-10-01 08:11:18 +00:00
$results = simpletest_script_load_messages_by_test_id( $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" ;
2014-01-25 02:07:30 +00:00
$end = Timer::stop( 'run-tests' ) ;
2014-08-05 10:39:21 +00:00
echo "Test run duration: " . \D rupal::service( 'date.formatter' ) ->formatInterval( $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
2014-10-01 08:11:18 +00:00
$results = simpletest_script_load_messages_by_test_id( $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.
}
2014-08-29 06:38:35 +00:00
/**
* Prints alternative test names.
*
* Searches the provided array of string values for close matches based on the
* Levenshtein algorithm.
*
* @see http://php.net/manual/en/function.levenshtein.php
*
* @param string $string
* A string to test.
* @param array $array
* A list of strings to search.
* @param int $degree
* The matching strictness. Higher values return fewer matches. A value of
* 4 means that the function will return strings from $array if the candidate
* string in $array would be identical to $string by changing 1/4 or fewer of
* its characters.
*/
function simpletest_script_print_alternatives( $string , $array , $degree = 4) {
$alternatives = array( ) ;
foreach ( $array as $item ) {
$lev = levenshtein( $string , $item ) ;
if ( $lev <= strlen( $item ) / $degree || FALSE != = strpos( $string , $item ) ) {
$alternatives [ ] = $item ;
}
}
if ( !empty( $alternatives ) ) {
simpletest_script_print( " Did you mean?\n" , SIMPLETEST_SCRIPT_COLOR_FAIL) ;
foreach ( $alternatives as $alternative ) {
simpletest_script_print( " - $alternative \n " , SIMPLETEST_SCRIPT_COLOR_FAIL) ;
}
}
}
2014-10-01 08:11:18 +00:00
/**
* Loads the simpletest messages from the database.
*
* Messages are ordered by test class and message id.
*
* @param array $test_ids
* Array of test IDs of the messages to be loaded.
*
* @return array
* Array of simpletest messages from the database.
*/
function simpletest_script_load_messages_by_test_id( $test_ids ) {
global $args ;
$results = array( ) ;
// Sqlite has a maximum number of variables per query. If required, the
// database query is split into chunks.
if ( count( $test_ids ) > SIMPLETEST_SCRIPT_SQLITE_VARIABLE_LIMIT && !empty( $args [ 'sqlite' ] ) ) {
$test_id_chunks = array_chunk( $test_ids , SIMPLETEST_SCRIPT_SQLITE_VARIABLE_LIMIT) ;
}
else {
$test_id_chunks = array( $test_ids ) ;
}
foreach ( $test_id_chunks as $test_id_chunk ) {
$result_chunk = Database::getConnection( 'default' , 'test-runner' )
->query( "SELECT * FROM {simpletest} WHERE test_id IN (:test_ids) ORDER BY test_class, message_id" , array(
':test_ids' = > $test_id_chunk ,
) ) ->fetchAll( ) ;
if ( $result_chunk ) {
$results = array_merge( $results , $result_chunk ) ;
}
}
return $results ;
}