Moodle APIs 3.11
Moodle 3.11.11+ (Build: 20221125)
|
Static Public Member Functions | |
static | bootstrap_init () |
Called during bootstrap only! | |
static | bootstrap_moodle_info () |
Print some Moodle related info to console. | |
static | build_config_file () |
Builds dirroot/phpunit.xml file using defaults from /phpunit.xml.dist. More... | |
static | clean_tables_updated_by_scenario_list () |
Delete tablesupdatedbyscenario file. More... | |
static | drop_site ($displayprogress=false) |
Drop all test site data. More... | |
static | get_data_generator () |
Get data generator. More... | |
static | get_dataroot () |
Return the dataroot. More... | |
static | get_environment () |
Return list of environment versions on which tests will run. More... | |
static | get_git_hash () |
Try to get current git hash of the Moodle in $CFG->dirroot. More... | |
static | get_global_backup ($name) |
Returns original state of global variable. More... | |
static | get_originaldatafilesjson () |
Return the name of the JSON file containing the init filenames. More... | |
static | get_sequencenames () |
Returns the names of sequences for each autoincrementing id field in all standard tables. More... | |
static | get_site_info () |
Gets a text-based site version description. More... | |
static | get_tablestructure () |
Returns structure of all tables right after installation. More... | |
static | initialise_cfg () |
Load global $CFG;. | |
static | install_site () |
Perform a fresh test site installation. More... | |
static | is_test_data_updated () |
Returns whether test database and dataroot were created using the current version codebase. More... | |
static | is_test_site () |
Does this site (db and dataroot) appear to be used for production? We try very hard to prevent accidental damage done to production servers!! More... | |
static | reset_all_data ($detectchanges=false) |
Reset contents of all database tables to initial values, reset caches, etc. More... | |
static | reset_all_database_sequences (array $empties=null) |
Reset all database sequences to initial values. More... | |
static | reset_database () |
Reset all database tables to default values. More... | |
static | reset_dataroot () |
Purge dataroot directory. More... | |
static | reset_updated_table_list () |
Reset updated table list. More... | |
static | set_dataroot ($dataroot) |
Set the dataroot. More... | |
static | set_table_modified_by_sql ($sql) |
Set state of modified tables. More... | |
static | testing_ready_problem () |
Is this site initialised to run unit tests? More... | |
Static Public Attributes | |
static int | $lastdbwrites = null |
last value of db writes counter, used for db resetting | |
static array | $tableupdated = array() |
list of updated tables. | |
Static Protected Member Functions | |
static | drop_database ($displayprogress=false) |
Drop the whole test database. More... | |
static | drop_dataroot () |
Drops the test framework dataroot. More... | |
static | get_framework () |
Returns the testing framework name. More... | |
static | get_tabledata () |
Returns contents of all tables right after installation. More... | |
static | get_tables_updated_by_scenario_list_path () |
Returns the path to the file which holds list of tables updated in scenario. More... | |
static | guess_unmodified_empty_tables () |
Returns list of tables that are unmodified and empty. More... | |
static | save_original_data_files () |
Save the list of the original dataroot files into a json file. | |
static | skip_original_data_files ($utilclassname) |
Skip the original dataroot files to not been reset. More... | |
static | store_database_state () |
Stores the status of the database. More... | |
static | store_versions_hash () |
Stores the version hash in both database and dataroot. | |
Static Protected Attributes | |
static array | $datarootskipondrop = array('.', '..', 'lock') |
Files to skip when dropping dataroot folder. | |
static array | $datarootskiponreset = array('.', '..', 'phpunittestdir.txt', 'phpunit', '.htaccess') |
Files to skip when resetting dataroot folder. | |
static array | $debuggings = array() |
list of debugging messages triggered during the last test execution | |
static phpunit_message_sink | $eventsink = null |
alternative target for moodle messaging | |
static testing_data_generator | $generator = null |
static array | $globals = array() |
An array of original globals, restored after each test. | |
static phpunit_message_sink | $messagesink = null |
alternative target for moodle messaging | |
static phpunit_phpmailer_sink | $phpmailersink = null |
alternative target for phpmailer messaging | |
static array | $sequencenames = null |
original structure of all database tables | |
static int | $sequencenextstartingid = null |
next sequence value for a single test cycle. | |
static array | $tabledata = null |
original content of all database tables | |
static array | $tablestructure = null |
original structure of all database tables | |
static string | $versionhash = null |
current version hash from php files | |
|
static |
Builds dirroot/phpunit.xml file using defaults from /phpunit.xml.dist.
bool | true means main config file created, false means only dataroot file created |
|
staticinherited |
Delete tablesupdatedbyscenario file.
This should be called before suite, to ensure full db reset.
|
staticprotectedinherited |
Drop the whole test database.
bool | $displayprogress |
|
staticprotectedinherited |
Drops the test framework dataroot.
Reimplemented in behat_util.
|
static |
Drop all test site data.
Note: To be used from CLI scripts only.
bool | $displayprogress | if true, this method will echo progress information. |
void | may terminate execution with exit code |
|
staticinherited |
Get data generator.
testing_data_generator |
|
staticinherited |
Return the dataroot.
It's useful when mocking the dataroot when unit testing this class itself.
string | the dataroot. |
|
staticinherited |
Return list of environment versions on which tests will run.
Environment includes:
array |
|
staticfinalprotectedinherited |
Returns the testing framework name.
string |
|
staticinherited |
Try to get current git hash of the Moodle in $CFG->dirroot.
string | null if unknown, sha1 hash if known |
|
static |
Returns original state of global variable.
string | $name |
mixed |
|
staticinherited |
Return the name of the JSON file containing the init filenames.
string |
|
staticinherited |
Returns the names of sequences for each autoincrementing id field in all standard tables.
array::$table,=>$sequencename |
|
staticinherited |
Gets a text-based site version description.
string | The site info |
Reimplemented in behat_util.
|
staticprotectedinherited |
Returns contents of all tables right after installation.
array::$table,=>$records |
|
staticfinalprotectedinherited |
Returns the path to the file which holds list of tables updated in scenario.
string |
|
staticinherited |
Returns structure of all tables right after installation.
array::$table,=>$records |
|
staticprotectedinherited |
Returns list of tables that are unmodified and empty.
array | of table names, empty if unknown |
|
static |
Perform a fresh test site installation.
Note: To be used from CLI scripts only.
void | may terminate execution with exit code |
|
staticinherited |
Returns whether test database and dataroot were created using the current version codebase.
bool |
|
staticinherited |
Does this site (db and dataroot) appear to be used for production? We try very hard to prevent accidental damage done to production servers!!
bool |
|
static |
Reset contents of all database tables to initial values, reset caches, etc.
Note: this is relatively slow (cca 2 seconds for pg and 7 for mysql) - please use with care!
bool | $detectchanges | true - changes in global state and database are reported as errors false - no errors reported null - only critical problems are reported as errors |
void |
|
staticinherited |
Reset all database sequences to initial values.
array | $empties | tables that are known to be unmodified and empty |
void |
|
static |
Reset all database tables to default values.
bool | true if reset done, false if skipped |
Reimplemented from testing_util.
|
staticinherited |
Purge dataroot directory.
void |
|
staticinherited |
Reset updated table list.
This should be done after every reset.
|
staticinherited |
Set the dataroot.
It's useful when mocking the dataroot when unit testing this class itself.
string | $dataroot | the dataroot of the test framework. |
|
staticinherited |
Set state of modified tables.
string | $sql | sql which is updating the table. |
|
staticprotectedinherited |
Skip the original dataroot files to not been reset.
string | $utilclassname | the util class name.. |
|
staticprotectedinherited |
Stores the status of the database.
Serializes the contents and the structure and stores it in the test framework space in dataroot
|
static |
Is this site initialised to run unit tests?
int | array errorcode=>message, 0 means ok |