Merge branch 'MDL-37458_master' of git://github.com/dmonllao/moodle
This commit is contained in:
+23
-763
@@ -23,6 +23,7 @@
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
require_once(__DIR__.'/../../testing/classes/util.php');
|
||||
|
||||
/**
|
||||
* Collection of utility methods.
|
||||
@@ -32,31 +33,10 @@
|
||||
* @copyright 2012 Petr Skoda {@link http://skodak.org}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
class phpunit_util {
|
||||
/** @var string current version hash from php files */
|
||||
protected static $versionhash = null;
|
||||
|
||||
/** @var array original content of all database tables*/
|
||||
protected static $tabledata = null;
|
||||
|
||||
/** @var array original structure of all database tables */
|
||||
protected static $tablestructure = null;
|
||||
|
||||
/** @var array original structure of all database tables */
|
||||
protected static $sequencenames = null;
|
||||
|
||||
class phpunit_util extends testing_util {
|
||||
/** @var array An array of original globals, restored after each test */
|
||||
protected static $globals = array();
|
||||
|
||||
/** @var int last value of db writes counter, used for db resetting */
|
||||
public static $lastdbwrites = null;
|
||||
|
||||
/** @var testing_data_generator */
|
||||
protected static $generator = null;
|
||||
|
||||
/** @var resource used for prevention of parallel test execution */
|
||||
protected static $lockhandle = null;
|
||||
|
||||
/** @var array list of debugging messages triggered during the last test execution */
|
||||
protected static $debuggings = array();
|
||||
|
||||
@@ -64,54 +44,14 @@ class phpunit_util {
|
||||
protected static $messagesink = null;
|
||||
|
||||
/**
|
||||
* Prevent parallel test execution - this can not work in Moodle because we modify database and dataroot.
|
||||
*
|
||||
* Note: do not call manually!
|
||||
*
|
||||
* @internal
|
||||
* @static
|
||||
* @return void
|
||||
* @var array Files to skip when resetting dataroot folder
|
||||
*/
|
||||
public static function acquire_test_lock() {
|
||||
global $CFG;
|
||||
if (!file_exists("$CFG->phpunit_dataroot/phpunit")) {
|
||||
// dataroot not initialised yet
|
||||
return;
|
||||
}
|
||||
if (!file_exists("$CFG->phpunit_dataroot/phpunit/lock")) {
|
||||
file_put_contents("$CFG->phpunit_dataroot/phpunit/lock", 'This file prevents concurrent execution of Moodle PHPUnit tests');
|
||||
phpunit_boostrap_fix_file_permissions("$CFG->phpunit_dataroot/phpunit/lock");
|
||||
}
|
||||
if (self::$lockhandle = fopen("$CFG->phpunit_dataroot/phpunit/lock", 'r')) {
|
||||
$wouldblock = null;
|
||||
$locked = flock(self::$lockhandle, (LOCK_EX | LOCK_NB), $wouldblock);
|
||||
if (!$locked) {
|
||||
if ($wouldblock) {
|
||||
echo "Waiting for other test execution to complete...\n";
|
||||
}
|
||||
$locked = flock(self::$lockhandle, LOCK_EX);
|
||||
}
|
||||
if (!$locked) {
|
||||
fclose(self::$lockhandle);
|
||||
self::$lockhandle = null;
|
||||
}
|
||||
}
|
||||
register_shutdown_function(array('phpunit_util', 'release_test_lock'));
|
||||
}
|
||||
protected static $datarootskiponreset = array('.', '..', 'phpunittestdir.txt', 'phpunit', '.htaccess');
|
||||
|
||||
/**
|
||||
* Note: do not call manually!
|
||||
* @internal
|
||||
* @static
|
||||
* @return void
|
||||
* @var array Files to skip when dropping dataroot folder
|
||||
*/
|
||||
public static function release_test_lock() {
|
||||
if (self::$lockhandle) {
|
||||
flock(self::$lockhandle, LOCK_UN);
|
||||
fclose(self::$lockhandle);
|
||||
self::$lockhandle = null;
|
||||
}
|
||||
}
|
||||
protected static $datarootskipondrop = array('.', '..', 'lock', 'webrunner.xml');
|
||||
|
||||
/**
|
||||
* Load global $CFG;
|
||||
@@ -129,7 +69,7 @@ class phpunit_util {
|
||||
initialise_cfg();
|
||||
return;
|
||||
}
|
||||
if ($dbhash !== phpunit_util::get_version_hash()) {
|
||||
if ($dbhash !== self::get_version_hash()) {
|
||||
// do not set CFG - the only way forward is to drop and reinstall
|
||||
return;
|
||||
}
|
||||
@@ -137,413 +77,6 @@ class phpunit_util {
|
||||
initialise_cfg();
|
||||
}
|
||||
|
||||
/**
|
||||
* Get data generator
|
||||
* @static
|
||||
* @return testing_data_generator
|
||||
*/
|
||||
public static function get_data_generator() {
|
||||
if (is_null(self::$generator)) {
|
||||
require_once(__DIR__.'/../../testing/generator/lib.php');
|
||||
self::$generator = new testing_data_generator();
|
||||
}
|
||||
return self::$generator;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns contents of all tables right after installation.
|
||||
* @static
|
||||
* @return array $table=>$records
|
||||
*/
|
||||
protected static function get_tabledata() {
|
||||
global $CFG;
|
||||
|
||||
if (!file_exists("$CFG->dataroot/phpunit/tabledata.ser")) {
|
||||
// not initialised yet
|
||||
return array();
|
||||
}
|
||||
|
||||
if (!isset(self::$tabledata)) {
|
||||
$data = file_get_contents("$CFG->dataroot/phpunit/tabledata.ser");
|
||||
self::$tabledata = unserialize($data);
|
||||
}
|
||||
|
||||
if (!is_array(self::$tabledata)) {
|
||||
phpunit_bootstrap_error(1, 'Can not read dataroot/phpunit/tabledata.ser or invalid format, reinitialize test database.');
|
||||
}
|
||||
|
||||
return self::$tabledata;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns structure of all tables right after installation.
|
||||
* @static
|
||||
* @return array $table=>$records
|
||||
*/
|
||||
public static function get_tablestructure() {
|
||||
global $CFG;
|
||||
|
||||
if (!file_exists("$CFG->dataroot/phpunit/tablestructure.ser")) {
|
||||
// not initialised yet
|
||||
return array();
|
||||
}
|
||||
|
||||
if (!isset(self::$tablestructure)) {
|
||||
$data = file_get_contents("$CFG->dataroot/phpunit/tablestructure.ser");
|
||||
self::$tablestructure = unserialize($data);
|
||||
}
|
||||
|
||||
if (!is_array(self::$tablestructure)) {
|
||||
phpunit_bootstrap_error(1, 'Can not read dataroot/phpunit/tablestructure.ser or invalid format, reinitialize test database.');
|
||||
}
|
||||
|
||||
return self::$tablestructure;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the names of sequences for each autoincrementing id field in all standard tables.
|
||||
* @static
|
||||
* @return array $table=>$sequencename
|
||||
*/
|
||||
public static function get_sequencenames() {
|
||||
global $DB;
|
||||
|
||||
if (isset(self::$sequencenames)) {
|
||||
return self::$sequencenames;
|
||||
}
|
||||
|
||||
if (!$structure = self::get_tablestructure()) {
|
||||
return array();
|
||||
}
|
||||
|
||||
self::$sequencenames = array();
|
||||
foreach ($structure as $table=>$ignored) {
|
||||
$name = $DB->get_manager()->generator->getSequenceFromDB(new xmldb_table($table));
|
||||
if ($name !== false) {
|
||||
self::$sequencenames[$table] = $name;
|
||||
}
|
||||
}
|
||||
|
||||
return self::$sequencenames;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns list of tables that are unmodified and empty.
|
||||
*
|
||||
* @static
|
||||
* @return array of table names, empty if unknown
|
||||
*/
|
||||
protected static function guess_unmodified_empty_tables() {
|
||||
global $DB;
|
||||
|
||||
$dbfamily = $DB->get_dbfamily();
|
||||
|
||||
if ($dbfamily === 'mysql') {
|
||||
$empties = array();
|
||||
$prefix = $DB->get_prefix();
|
||||
$rs = $DB->get_recordset_sql("SHOW TABLE STATUS LIKE ?", array($prefix.'%'));
|
||||
foreach ($rs as $info) {
|
||||
$table = strtolower($info->name);
|
||||
if (strpos($table, $prefix) !== 0) {
|
||||
// incorrect table match caused by _
|
||||
continue;
|
||||
}
|
||||
if (!is_null($info->auto_increment)) {
|
||||
$table = preg_replace('/^'.preg_quote($prefix, '/').'/', '', $table);
|
||||
if ($info->auto_increment == 1) {
|
||||
$empties[$table] = $table;
|
||||
}
|
||||
}
|
||||
}
|
||||
$rs->close();
|
||||
return $empties;
|
||||
|
||||
} else if ($dbfamily === 'mssql') {
|
||||
$empties = array();
|
||||
$prefix = $DB->get_prefix();
|
||||
$sql = "SELECT t.name
|
||||
FROM sys.identity_columns i
|
||||
JOIN sys.tables t ON t.object_id = i.object_id
|
||||
WHERE t.name LIKE ?
|
||||
AND i.name = 'id'
|
||||
AND i.last_value IS NULL";
|
||||
$rs = $DB->get_recordset_sql($sql, array($prefix.'%'));
|
||||
foreach ($rs as $info) {
|
||||
$table = strtolower($info->name);
|
||||
if (strpos($table, $prefix) !== 0) {
|
||||
// incorrect table match caused by _
|
||||
continue;
|
||||
}
|
||||
$table = preg_replace('/^'.preg_quote($prefix, '/').'/', '', $table);
|
||||
$empties[$table] = $table;
|
||||
}
|
||||
$rs->close();
|
||||
return $empties;
|
||||
|
||||
} else if ($dbfamily === 'oracle') {
|
||||
$sequences = phpunit_util::get_sequencenames();
|
||||
$sequences = array_map('strtoupper', $sequences);
|
||||
$lookup = array_flip($sequences);
|
||||
$empties = array();
|
||||
list($seqs, $params) = $DB->get_in_or_equal($sequences);
|
||||
$sql = "SELECT sequence_name FROM user_sequences WHERE last_number = 1 AND sequence_name $seqs";
|
||||
$rs = $DB->get_recordset_sql($sql, $params);
|
||||
foreach ($rs as $seq) {
|
||||
$table = $lookup[$seq->sequence_name];
|
||||
$empties[$table] = $table;
|
||||
}
|
||||
$rs->close();
|
||||
return $empties;
|
||||
|
||||
} else {
|
||||
return array();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Reset all database sequences to initial values.
|
||||
*
|
||||
* @static
|
||||
* @param array $empties tables that are known to be unmodified and empty
|
||||
* @return void
|
||||
*/
|
||||
public static function reset_all_database_sequences(array $empties = null) {
|
||||
global $DB;
|
||||
|
||||
if (!$data = self::get_tabledata()) {
|
||||
// not initialised yet
|
||||
return;
|
||||
}
|
||||
if (!$structure = self::get_tablestructure()) {
|
||||
// not initialised yet
|
||||
return;
|
||||
}
|
||||
|
||||
$dbfamily = $DB->get_dbfamily();
|
||||
if ($dbfamily === 'postgres') {
|
||||
$queries = array();
|
||||
$prefix = $DB->get_prefix();
|
||||
foreach ($data as $table=>$records) {
|
||||
if (isset($structure[$table]['id']) and $structure[$table]['id']->auto_increment) {
|
||||
if (empty($records)) {
|
||||
$nextid = 1;
|
||||
} else {
|
||||
$lastrecord = end($records);
|
||||
$nextid = $lastrecord->id + 1;
|
||||
}
|
||||
$queries[] = "ALTER SEQUENCE {$prefix}{$table}_id_seq RESTART WITH $nextid";
|
||||
}
|
||||
}
|
||||
if ($queries) {
|
||||
$DB->change_database_structure(implode(';', $queries));
|
||||
}
|
||||
|
||||
} else if ($dbfamily === 'mysql') {
|
||||
$sequences = array();
|
||||
$prefix = $DB->get_prefix();
|
||||
$rs = $DB->get_recordset_sql("SHOW TABLE STATUS LIKE ?", array($prefix.'%'));
|
||||
foreach ($rs as $info) {
|
||||
$table = strtolower($info->name);
|
||||
if (strpos($table, $prefix) !== 0) {
|
||||
// incorrect table match caused by _
|
||||
continue;
|
||||
}
|
||||
if (!is_null($info->auto_increment)) {
|
||||
$table = preg_replace('/^'.preg_quote($prefix, '/').'/', '', $table);
|
||||
$sequences[$table] = $info->auto_increment;
|
||||
}
|
||||
}
|
||||
$rs->close();
|
||||
$prefix = $DB->get_prefix();
|
||||
foreach ($data as $table=>$records) {
|
||||
if (isset($structure[$table]['id']) and $structure[$table]['id']->auto_increment) {
|
||||
if (isset($sequences[$table])) {
|
||||
if (empty($records)) {
|
||||
$nextid = 1;
|
||||
} else {
|
||||
$lastrecord = end($records);
|
||||
$nextid = $lastrecord->id + 1;
|
||||
}
|
||||
if ($sequences[$table] != $nextid) {
|
||||
$DB->change_database_structure("ALTER TABLE {$prefix}{$table} AUTO_INCREMENT = $nextid");
|
||||
}
|
||||
|
||||
} else {
|
||||
// some problem exists, fallback to standard code
|
||||
$DB->get_manager()->reset_sequence($table);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
} else if ($dbfamily === 'oracle') {
|
||||
$sequences = phpunit_util::get_sequencenames();
|
||||
$sequences = array_map('strtoupper', $sequences);
|
||||
$lookup = array_flip($sequences);
|
||||
|
||||
$current = array();
|
||||
list($seqs, $params) = $DB->get_in_or_equal($sequences);
|
||||
$sql = "SELECT sequence_name, last_number FROM user_sequences WHERE sequence_name $seqs";
|
||||
$rs = $DB->get_recordset_sql($sql, $params);
|
||||
foreach ($rs as $seq) {
|
||||
$table = $lookup[$seq->sequence_name];
|
||||
$current[$table] = $seq->last_number;
|
||||
}
|
||||
$rs->close();
|
||||
|
||||
foreach ($data as $table=>$records) {
|
||||
if (isset($structure[$table]['id']) and $structure[$table]['id']->auto_increment) {
|
||||
$lastrecord = end($records);
|
||||
if ($lastrecord) {
|
||||
$nextid = $lastrecord->id + 1;
|
||||
} else {
|
||||
$nextid = 1;
|
||||
}
|
||||
if (!isset($current[$table])) {
|
||||
$DB->get_manager()->reset_sequence($table);
|
||||
} else if ($nextid == $current[$table]) {
|
||||
continue;
|
||||
}
|
||||
// reset as fast as possible - alternatively we could use http://stackoverflow.com/questions/51470/how-do-i-reset-a-sequence-in-oracle
|
||||
$seqname = $sequences[$table];
|
||||
$cachesize = $DB->get_manager()->generator->sequence_cache_size;
|
||||
$DB->change_database_structure("DROP SEQUENCE $seqname");
|
||||
$DB->change_database_structure("CREATE SEQUENCE $seqname START WITH $nextid INCREMENT BY 1 NOMAXVALUE CACHE $cachesize");
|
||||
}
|
||||
}
|
||||
|
||||
} else {
|
||||
// note: does mssql support any kind of faster reset?
|
||||
if (is_null($empties)) {
|
||||
$empties = self::guess_unmodified_empty_tables();
|
||||
}
|
||||
foreach ($data as $table=>$records) {
|
||||
if (isset($empties[$table])) {
|
||||
continue;
|
||||
}
|
||||
if (isset($structure[$table]['id']) and $structure[$table]['id']->auto_increment) {
|
||||
$DB->get_manager()->reset_sequence($table);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Reset all database tables to default values.
|
||||
* @static
|
||||
* @return bool true if reset done, false if skipped
|
||||
*/
|
||||
public static function reset_database() {
|
||||
global $DB;
|
||||
|
||||
if (!is_null(self::$lastdbwrites) and self::$lastdbwrites == $DB->perf_get_writes()) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$tables = $DB->get_tables(false);
|
||||
if (!$tables or empty($tables['config'])) {
|
||||
// not installed yet
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!$data = self::get_tabledata()) {
|
||||
// not initialised yet
|
||||
return false;
|
||||
}
|
||||
if (!$structure = self::get_tablestructure()) {
|
||||
// not initialised yet
|
||||
return false;
|
||||
}
|
||||
|
||||
$empties = self::guess_unmodified_empty_tables();
|
||||
|
||||
foreach ($data as $table=>$records) {
|
||||
if (empty($records)) {
|
||||
if (isset($empties[$table])) {
|
||||
// table was not modified and is empty
|
||||
} else {
|
||||
$DB->delete_records($table, array());
|
||||
}
|
||||
continue;
|
||||
}
|
||||
|
||||
if (isset($structure[$table]['id']) and $structure[$table]['id']->auto_increment) {
|
||||
$currentrecords = $DB->get_records($table, array(), 'id ASC');
|
||||
$changed = false;
|
||||
foreach ($records as $id=>$record) {
|
||||
if (!isset($currentrecords[$id])) {
|
||||
$changed = true;
|
||||
break;
|
||||
}
|
||||
if ((array)$record != (array)$currentrecords[$id]) {
|
||||
$changed = true;
|
||||
break;
|
||||
}
|
||||
unset($currentrecords[$id]);
|
||||
}
|
||||
if (!$changed) {
|
||||
if ($currentrecords) {
|
||||
$lastrecord = end($records);
|
||||
$DB->delete_records_select($table, "id > ?", array($lastrecord->id));
|
||||
continue;
|
||||
} else {
|
||||
continue;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$DB->delete_records($table, array());
|
||||
foreach ($records as $record) {
|
||||
$DB->import_record($table, $record, false, true);
|
||||
}
|
||||
}
|
||||
|
||||
// reset all next record ids - aka sequences
|
||||
self::reset_all_database_sequences($empties);
|
||||
|
||||
// remove extra tables
|
||||
foreach ($tables as $table) {
|
||||
if (!isset($data[$table])) {
|
||||
$DB->get_manager()->drop_table(new xmldb_table($table));
|
||||
}
|
||||
}
|
||||
|
||||
self::$lastdbwrites = $DB->perf_get_writes();
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Purge dataroot directory
|
||||
* @static
|
||||
* @return void
|
||||
*/
|
||||
public static function reset_dataroot() {
|
||||
global $CFG;
|
||||
|
||||
$handle = opendir($CFG->dataroot);
|
||||
$skip = array('.', '..', 'phpunittestdir.txt', 'phpunit', '.htaccess');
|
||||
while (false !== ($item = readdir($handle))) {
|
||||
if (in_array($item, $skip)) {
|
||||
continue;
|
||||
}
|
||||
if (is_dir("$CFG->dataroot/$item")) {
|
||||
remove_dir("$CFG->dataroot/$item", false);
|
||||
} else {
|
||||
unlink("$CFG->dataroot/$item");
|
||||
}
|
||||
}
|
||||
closedir($handle);
|
||||
make_temp_directory('');
|
||||
make_cache_directory('');
|
||||
make_cache_directory('htmlpurifier');
|
||||
// Reset the cache API so that it recreates it's required directories as well.
|
||||
cache_factory::reset();
|
||||
// Purge all data from the caches. This is required for consistency.
|
||||
// Any file caches that happened to be within the data root will have already been clearer (because we just deleted cache)
|
||||
// and now we will purge any other caches as well.
|
||||
cache_helper::purge_all();
|
||||
}
|
||||
|
||||
/**
|
||||
* Reset contents of all database tables to initial values, reset caches, etc.
|
||||
*
|
||||
@@ -724,35 +257,6 @@ class phpunit_util {
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Does this site (db and dataroot) appear to be used for production?
|
||||
* We try very hard to prevent accidental damage done to production servers!!
|
||||
*
|
||||
* @static
|
||||
* @return bool
|
||||
*/
|
||||
public static function is_test_site() {
|
||||
global $DB, $CFG;
|
||||
|
||||
if (!file_exists("$CFG->dataroot/phpunittestdir.txt")) {
|
||||
// this is already tested in bootstrap script,
|
||||
// but anyway presence of this file means the dataroot is for testing
|
||||
return false;
|
||||
}
|
||||
|
||||
$tables = $DB->get_tables(false);
|
||||
if ($tables) {
|
||||
if (!$DB->get_manager()->table_exists('config')) {
|
||||
return false;
|
||||
}
|
||||
if (!get_config('core', 'phpunittest')) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Is this site initialised to run unit tests?
|
||||
*
|
||||
@@ -760,36 +264,19 @@ class phpunit_util {
|
||||
* @return int array errorcode=>message, 0 means ok
|
||||
*/
|
||||
public static function testing_ready_problem() {
|
||||
global $CFG, $DB;
|
||||
|
||||
$tables = $DB->get_tables(false);
|
||||
global $DB;
|
||||
|
||||
if (!self::is_test_site()) {
|
||||
// dataroot was verified in bootstrap, so it must be DB
|
||||
return array(PHPUNIT_EXITCODE_CONFIGERROR, 'Can not use database for testing, try different prefix');
|
||||
}
|
||||
|
||||
$tables = $DB->get_tables(false);
|
||||
if (empty($tables)) {
|
||||
return array(PHPUNIT_EXITCODE_INSTALL, '');
|
||||
}
|
||||
|
||||
if (!file_exists("$CFG->dataroot/phpunit/tabledata.ser") or !file_exists("$CFG->dataroot/phpunit/tablestructure.ser")) {
|
||||
return array(PHPUNIT_EXITCODE_REINSTALL, '');
|
||||
}
|
||||
|
||||
if (!file_exists("$CFG->dataroot/phpunit/versionshash.txt")) {
|
||||
return array(PHPUNIT_EXITCODE_REINSTALL, '');
|
||||
}
|
||||
|
||||
$hash = phpunit_util::get_version_hash();
|
||||
$oldhash = file_get_contents("$CFG->dataroot/phpunit/versionshash.txt");
|
||||
|
||||
if ($hash !== $oldhash) {
|
||||
return array(PHPUNIT_EXITCODE_REINSTALL, '');
|
||||
}
|
||||
|
||||
$dbhash = get_config('core', 'phpunittest');
|
||||
if ($hash !== $dbhash) {
|
||||
if (!self::is_test_data_updated()) {
|
||||
return array(PHPUNIT_EXITCODE_REINSTALL, '');
|
||||
}
|
||||
|
||||
@@ -816,52 +303,13 @@ class phpunit_util {
|
||||
if ($displayprogress) {
|
||||
echo "Purging dataroot:\n";
|
||||
}
|
||||
|
||||
self::reset_dataroot();
|
||||
phpunit_bootstrap_initdataroot($CFG->dataroot);
|
||||
$keep = array('.', '..', 'lock', 'webrunner.xml');
|
||||
$files = scandir("$CFG->dataroot/phpunit");
|
||||
foreach ($files as $file) {
|
||||
if (in_array($file, $keep)) {
|
||||
continue;
|
||||
}
|
||||
$path = "$CFG->dataroot/phpunit/$file";
|
||||
if (is_dir($path)) {
|
||||
remove_dir($path, false);
|
||||
} else {
|
||||
unlink($path);
|
||||
}
|
||||
}
|
||||
testing_initdataroot($CFG->dataroot, 'phpunit');
|
||||
self::drop_dataroot();
|
||||
|
||||
// drop all tables
|
||||
$tables = $DB->get_tables(false);
|
||||
if (isset($tables['config'])) {
|
||||
// config always last to prevent problems with interrupted drops!
|
||||
unset($tables['config']);
|
||||
$tables['config'] = 'config';
|
||||
}
|
||||
|
||||
if ($displayprogress) {
|
||||
echo "Dropping tables:\n";
|
||||
}
|
||||
$dotsonline = 0;
|
||||
foreach ($tables as $tablename) {
|
||||
$table = new xmldb_table($tablename);
|
||||
$DB->get_manager()->drop_table($table);
|
||||
|
||||
if ($dotsonline == 60) {
|
||||
if ($displayprogress) {
|
||||
echo "\n";
|
||||
}
|
||||
$dotsonline = 0;
|
||||
}
|
||||
if ($displayprogress) {
|
||||
echo '.';
|
||||
}
|
||||
$dotsonline += 1;
|
||||
}
|
||||
if ($displayprogress) {
|
||||
echo "\n";
|
||||
}
|
||||
self::drop_database($displayprogress);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -899,84 +347,11 @@ class phpunit_util {
|
||||
$timezones = get_records_csv($CFG->libdir.'/timezone.txt', 'timezone');
|
||||
update_timezone_records($timezones);
|
||||
|
||||
// add test db flag
|
||||
$hash = phpunit_util::get_version_hash();
|
||||
set_config('phpunittest', $hash);
|
||||
// Store version hash in the database and in a file.
|
||||
self::store_versions_hash();
|
||||
|
||||
// store data for all tables
|
||||
$data = array();
|
||||
$structure = array();
|
||||
$tables = $DB->get_tables();
|
||||
foreach ($tables as $table) {
|
||||
$columns = $DB->get_columns($table);
|
||||
$structure[$table] = $columns;
|
||||
if (isset($columns['id']) and $columns['id']->auto_increment) {
|
||||
$data[$table] = $DB->get_records($table, array(), 'id ASC');
|
||||
} else {
|
||||
// there should not be many of these
|
||||
$data[$table] = $DB->get_records($table, array());
|
||||
}
|
||||
}
|
||||
$data = serialize($data);
|
||||
file_put_contents("$CFG->dataroot/phpunit/tabledata.ser", $data);
|
||||
phpunit_boostrap_fix_file_permissions("$CFG->dataroot/phpunit/tabledata.ser");
|
||||
|
||||
$structure = serialize($structure);
|
||||
file_put_contents("$CFG->dataroot/phpunit/tablestructure.ser", $structure);
|
||||
phpunit_boostrap_fix_file_permissions("$CFG->dataroot/phpunit/tablestructure.ser");
|
||||
|
||||
// hash all plugin versions - helps with very fast detection of db structure changes
|
||||
file_put_contents("$CFG->dataroot/phpunit/versionshash.txt", $hash);
|
||||
phpunit_boostrap_fix_file_permissions("$CFG->dataroot/phpunit/versionshash.txt", $hash);
|
||||
}
|
||||
|
||||
/**
|
||||
* Calculate unique version hash for all plugins and core.
|
||||
* @static
|
||||
* @return string sha1 hash
|
||||
*/
|
||||
public static function get_version_hash() {
|
||||
global $CFG;
|
||||
|
||||
if (self::$versionhash) {
|
||||
return self::$versionhash;
|
||||
}
|
||||
|
||||
$versions = array();
|
||||
|
||||
// main version first
|
||||
$version = null;
|
||||
include($CFG->dirroot.'/version.php');
|
||||
$versions['core'] = $version;
|
||||
|
||||
// modules
|
||||
$mods = get_plugin_list('mod');
|
||||
ksort($mods);
|
||||
foreach ($mods as $mod => $fullmod) {
|
||||
$module = new stdClass();
|
||||
$module->version = null;
|
||||
include($fullmod.'/version.php');
|
||||
$versions[$mod] = $module->version;
|
||||
}
|
||||
|
||||
// now the rest of plugins
|
||||
$plugintypes = get_plugin_types();
|
||||
unset($plugintypes['mod']);
|
||||
ksort($plugintypes);
|
||||
foreach ($plugintypes as $type=>$unused) {
|
||||
$plugs = get_plugin_list($type);
|
||||
ksort($plugs);
|
||||
foreach ($plugs as $plug=>$fullplug) {
|
||||
$plugin = new stdClass();
|
||||
$plugin->version = null;
|
||||
@include($fullplug.'/version.php');
|
||||
$versions[$plug] = $plugin->version;
|
||||
}
|
||||
}
|
||||
|
||||
self::$versionhash = sha1(serialize($versions));
|
||||
|
||||
return self::$versionhash;
|
||||
// Store database data and structure.
|
||||
self::store_database_state();
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -1020,7 +395,7 @@ class phpunit_util {
|
||||
$result = false;
|
||||
if (is_writable($CFG->dirroot)) {
|
||||
if ($result = file_put_contents("$CFG->dirroot/phpunit.xml", $data)) {
|
||||
phpunit_boostrap_fix_file_permissions("$CFG->dirroot/phpunit.xml");
|
||||
testing_fix_file_permissions("$CFG->dirroot/phpunit.xml");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1030,7 +405,7 @@ class phpunit_util {
|
||||
'<directory suffix="_test.php">'.$CFG->dirroot.(DIRECTORY_SEPARATOR === '\\' ? '\\\\' : DIRECTORY_SEPARATOR).'$1</directory>',
|
||||
$data);
|
||||
file_put_contents("$CFG->dataroot/phpunit/webrunner.xml", $data);
|
||||
phpunit_boostrap_fix_file_permissions("$CFG->dataroot/phpunit/webrunner.xml");
|
||||
testing_fix_file_permissions("$CFG->dataroot/phpunit/webrunner.xml");
|
||||
|
||||
return (bool)$result;
|
||||
}
|
||||
@@ -1055,17 +430,8 @@ class phpunit_util {
|
||||
$ftemplate = file_get_contents("$CFG->dirroot/phpunit.xml.dist");
|
||||
$ftemplate = preg_replace('|<!--All core suites.*</testsuites>|s', '<!--@component_suite@-->', $ftemplate);
|
||||
|
||||
// Get all the components
|
||||
$components = self::get_all_plugins_with_tests() + self::get_all_subsystems_with_tests();
|
||||
|
||||
// Get all the directories having tests
|
||||
$directories = self::get_all_directories_with_tests();
|
||||
|
||||
// Find any directory not covered by proper components
|
||||
$remaining = array_diff($directories, $components);
|
||||
|
||||
// Add them to the list of components
|
||||
$components += $remaining;
|
||||
// Gets all the components with tests
|
||||
$components = tests_finder::get_components_with_tests('phpunit');
|
||||
|
||||
// Create the corresponding phpunit.xml file for each component
|
||||
foreach ($components as $cname => $cpath) {
|
||||
@@ -1084,7 +450,7 @@ class phpunit_util {
|
||||
$result = false;
|
||||
if (is_writable($cpath)) {
|
||||
if ($result = (bool)file_put_contents("$cpath/phpunit.xml", $fcontents)) {
|
||||
phpunit_boostrap_fix_file_permissions("$cpath/phpunit.xml");
|
||||
testing_fix_file_permissions("$cpath/phpunit.xml");
|
||||
}
|
||||
}
|
||||
// Problems writing file, throw error
|
||||
@@ -1094,112 +460,6 @@ class phpunit_util {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns all the plugins having PHPUnit tests
|
||||
*
|
||||
* @return array all the plugins having PHPUnit tests
|
||||
*
|
||||
*/
|
||||
private static function get_all_plugins_with_tests() {
|
||||
$pluginswithtests = array();
|
||||
|
||||
$plugintypes = get_plugin_types();
|
||||
ksort($plugintypes);
|
||||
foreach ($plugintypes as $type => $unused) {
|
||||
$plugs = get_plugin_list($type);
|
||||
ksort($plugs);
|
||||
foreach ($plugs as $plug => $fullplug) {
|
||||
// Look for tests recursively
|
||||
if (self::directory_has_tests($fullplug)) {
|
||||
$pluginswithtests[$type . '_' . $plug] = $fullplug;
|
||||
}
|
||||
}
|
||||
}
|
||||
return $pluginswithtests;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns all the subsystems having PHPUnit tests
|
||||
*
|
||||
* Note we are hacking here the list of subsystems
|
||||
* to cover some well-known subsystems that are not properly
|
||||
* returned by the {@link get_core_subsystems()} function.
|
||||
*
|
||||
* @return array all the subsystems having PHPUnit tests
|
||||
*/
|
||||
private static function get_all_subsystems_with_tests() {
|
||||
global $CFG;
|
||||
|
||||
$subsystemswithtests = array();
|
||||
|
||||
$subsystems = get_core_subsystems();
|
||||
|
||||
// Hack the list a bit to cover some well-known ones
|
||||
$subsystems['backup'] = 'backup';
|
||||
$subsystems['db-dml'] = 'lib/dml';
|
||||
$subsystems['db-ddl'] = 'lib/ddl';
|
||||
|
||||
ksort($subsystems);
|
||||
foreach ($subsystems as $subsys => $relsubsys) {
|
||||
if ($relsubsys === null) {
|
||||
continue;
|
||||
}
|
||||
$fullsubsys = $CFG->dirroot . '/' . $relsubsys;
|
||||
if (!is_dir($fullsubsys)) {
|
||||
continue;
|
||||
}
|
||||
// Look for tests recursively
|
||||
if (self::directory_has_tests($fullsubsys)) {
|
||||
$subsystemswithtests['core_' . $subsys] = $fullsubsys;
|
||||
}
|
||||
}
|
||||
return $subsystemswithtests;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns all the directories having tests
|
||||
*
|
||||
* @return array all directories having tests
|
||||
*/
|
||||
private static function get_all_directories_with_tests() {
|
||||
global $CFG;
|
||||
|
||||
$dirs = array();
|
||||
$dirite = new RecursiveDirectoryIterator($CFG->dirroot);
|
||||
$iteite = new RecursiveIteratorIterator($dirite);
|
||||
$sep = preg_quote(DIRECTORY_SEPARATOR, '|');
|
||||
$regite = new RegexIterator($iteite, '|'.$sep.'tests'.$sep.'.*_test\.php$|');
|
||||
foreach ($regite as $path => $element) {
|
||||
$key = dirname(dirname($path));
|
||||
$value = trim(str_replace('/', '_', str_replace($CFG->dirroot, '', $key)), '_');
|
||||
$dirs[$key] = $value;
|
||||
}
|
||||
ksort($dirs);
|
||||
return array_flip($dirs);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns if a given directory has tests (recursively)
|
||||
*
|
||||
* @param $dir string full path to the directory to look for phpunit tests
|
||||
* @return bool if a given directory has tests (true) or no (false)
|
||||
*/
|
||||
private static function directory_has_tests($dir) {
|
||||
if (!is_dir($dir)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$dirite = new RecursiveDirectoryIterator($dir);
|
||||
$iteite = new RecursiveIteratorIterator($dirite);
|
||||
$sep = preg_quote(DIRECTORY_SEPARATOR, '|');
|
||||
$regite = new RegexIterator($iteite, '|'.$sep.'tests'.$sep.'.*_test\.php$|');
|
||||
$regite->rewind();
|
||||
if ($regite->valid()) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* To be called from debugging() only.
|
||||
* @param string $message
|
||||
|
||||
Reference in New Issue
Block a user