MDL-66903 testing: Helper to load fixture files
This commit is contained in:
@@ -745,4 +745,38 @@ abstract class advanced_testcase extends base_testcase {
|
||||
}
|
||||
$tasks->close();
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience method to load a fixture from a component's fixture directory.
|
||||
*
|
||||
* @param string $component
|
||||
* @param string $path
|
||||
* @throws coding_exception
|
||||
*/
|
||||
protected static function load_fixture(
|
||||
string $component,
|
||||
string $path
|
||||
): void {
|
||||
$fullpath = sprintf(
|
||||
"%s/tests/fixtures/%s",
|
||||
\core_component::get_component_directory($component),
|
||||
$path,
|
||||
);
|
||||
if (!file_exists($fullpath)) {
|
||||
throw new \coding_exception("Fixture file not found: $fullpath");
|
||||
}
|
||||
|
||||
global $ADMIN;
|
||||
global $CFG;
|
||||
global $DB;
|
||||
global $SITE;
|
||||
global $USER;
|
||||
global $OUTPUT;
|
||||
global $PAGE;
|
||||
global $SESSION;
|
||||
global $COURSE;
|
||||
global $SITE;
|
||||
|
||||
require_once($fullpath);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user