MDL-51053 Restore: Static cache breaks unit tests

This commit is contained in:
sam marshall 2015-08-07 17:47:22 +01:00
parent 57739a72cb
commit 27479b5cc9
3 changed files with 51 additions and 18 deletions

View file

@ -1428,6 +1428,15 @@ class restore_process_categories_and_questions extends restore_execution_step {
* as needed, rebuilding course cache and other friends * as needed, rebuilding course cache and other friends
*/ */
class restore_section_structure_step extends restore_structure_step { class restore_section_structure_step extends restore_structure_step {
/** @var array Cache: Array of id => course format */
private static $courseformats = array();
/**
* Resets a static cache of course formats. Required for unit testing.
*/
public static function reset_caches() {
self::$courseformats = array();
}
protected function define_structure() { protected function define_structure() {
global $CFG; global $CFG;
@ -1600,14 +1609,13 @@ class restore_section_structure_step extends restore_structure_step {
public function process_course_format_options($data) { public function process_course_format_options($data) {
global $DB; global $DB;
static $courseformats = array();
$courseid = $this->get_courseid(); $courseid = $this->get_courseid();
if (!array_key_exists($courseid, $courseformats)) { if (!array_key_exists($courseid, self::$courseformats)) {
// It is safe to have a static cache of course formats because format can not be changed after this point. // It is safe to have a static cache of course formats because format can not be changed after this point.
$courseformats[$courseid] = $DB->get_field('course', 'format', array('id' => $courseid)); self::$courseformats[$courseid] = $DB->get_field('course', 'format', array('id' => $courseid));
} }
$data = (array)$data; $data = (array)$data;
if ($courseformats[$courseid] === $data['format']) { if (self::$courseformats[$courseid] === $data['format']) {
// Import section format options only if both courses (the one that was backed up // Import section format options only if both courses (the one that was backed up
// and the one we are restoring into) have same formats. // and the one we are restoring into) have same formats.
$params = array( $params = array(

View file

@ -105,7 +105,7 @@ class core_backup_moodle2_course_format_testcase extends advanced_testcase {
'numdaystocomplete' => 2); 'numdaystocomplete' => 2);
$courseobject->update_section_format_options($data); $courseobject->update_section_format_options($data);
$this->backup_and_restore($course, $course); $this->backup_and_restore($course, $course, backup::TARGET_EXISTING_ADDING);
$sectionoptions = $courseobject->get_format_options(1); $sectionoptions = $courseobject->get_format_options(1);
$this->assertArrayHasKey('numdaystocomplete', $sectionoptions); $this->assertArrayHasKey('numdaystocomplete', $sectionoptions);
@ -126,37 +126,49 @@ class core_backup_moodle2_course_format_testcase extends advanced_testcase {
$this->resetAfterTest(true); $this->resetAfterTest(true);
$this->setAdminUser(); $this->setAdminUser();
$CFG->enableavailability = true;
$CFG->enablecompletion = true;
// Create a course with some availability data set. // Create a source course using the test_cs2_options format.
$generator = $this->getDataGenerator(); $generator = $this->getDataGenerator();
$course = $generator->create_course( $course = $generator->create_course(
array('format' => 'test_cs2_options', 'numsections' => 3, array('format' => 'test_cs2_options', 'numsections' => 3,
'enablecompletion' => COMPLETION_ENABLED), 'enablecompletion' => COMPLETION_ENABLED),
array('createsections' => true)); array('createsections' => true));
// Create a target course using test_cs_options format.
$newcourse = $generator->create_course( $newcourse = $generator->create_course(
array('format' => 'test_cs_options', 'numsections' => 3, array('format' => 'test_cs_options', 'numsections' => 3,
'enablecompletion' => COMPLETION_ENABLED), 'enablecompletion' => COMPLETION_ENABLED),
array('createsections' => true)); array('createsections' => true));
// Set section 2 to have both options, and a name.
$courseobject = format_base::instance($course->id); $courseobject = format_base::instance($course->id);
$section = $DB->get_record('course_sections', $section = $DB->get_record('course_sections',
array('course' => $course->id, 'section' => 1), '*', MUST_EXIST); array('course' => $course->id, 'section' => 2), '*', MUST_EXIST);
$data = array('id' => $section->id, $data = array('id' => $section->id,
'numdaystocomplete' => 2, 'numdaystocomplete' => 2,
'secondparameter' => 8); 'secondparameter' => 8
);
$courseobject->update_section_format_options($data); $courseobject->update_section_format_options($data);
// Backup and restore it. $DB->set_field('course_sections', 'name', 'Frogs', array('id' => $section->id));
$this->backup_and_restore($course, $newcourse);
// Backup and restore to the new course using 'add to existing' so it
// keeps the current (test_cs_options) format.
$this->backup_and_restore($course, $newcourse, backup::TARGET_EXISTING_ADDING);
// Check that the section contains the options suitable for the new
// format and that even the one with the same name as from the old format
// has NOT been set.
$newcourseobject = format_base::instance($newcourse->id); $newcourseobject = format_base::instance($newcourse->id);
$sectionoptions = $newcourseobject->get_format_options(1); $sectionoptions = $newcourseobject->get_format_options(2);
$this->assertArrayHasKey('numdaystocomplete', $sectionoptions); $this->assertArrayHasKey('numdaystocomplete', $sectionoptions);
$this->assertArrayHasKey('secondparameter', $sectionoptions); $this->assertArrayNotHasKey('secondparameter', $sectionoptions);
$this->assertEquals(0, $sectionoptions['numdaystocomplete']); $this->assertEquals(0, $sectionoptions['numdaystocomplete']);
$this->assertEquals(0, $sectionoptions['secondparameter']);
// However, the name should have been changed, as this does not depend
// on the format.
$modinfo = get_fast_modinfo($newcourse->id);
$section = $modinfo->get_section_info(2);
$this->assertEquals('Frogs', $section->name);
} }
/** /**
@ -164,9 +176,11 @@ class core_backup_moodle2_course_format_testcase extends advanced_testcase {
* *
* @param stdClass $srccourse Course object to backup * @param stdClass $srccourse Course object to backup
* @param stdClass $dstcourse Course object to restore into * @param stdClass $dstcourse Course object to restore into
* @param int $target Target course mode (backup::TARGET_xx)
* @return int ID of newly restored course * @return int ID of newly restored course
*/ */
protected function backup_and_restore($srccourse, $dstcourse = null) { protected function backup_and_restore($srccourse, $dstcourse = null,
$target = backup::TARGET_NEW_COURSE) {
global $USER, $CFG; global $USER, $CFG;
// Turn off file logging, otherwise it can't delete the file (Windows). // Turn off file logging, otherwise it can't delete the file (Windows).
@ -190,7 +204,7 @@ class core_backup_moodle2_course_format_testcase extends advanced_testcase {
} }
$rc = new restore_controller($backupid, $newcourseid, $rc = new restore_controller($backupid, $newcourseid,
backup::INTERACTIVE_NO, backup::MODE_GENERAL, $USER->id, backup::INTERACTIVE_NO, backup::MODE_GENERAL, $USER->id,
backup::TARGET_NEW_COURSE); $target);
$this->assertTrue($rc->execute_precheck()); $this->assertTrue($rc->execute_precheck());
$rc->execute_plan(); $rc->execute_plan();
@ -226,6 +240,12 @@ class format_test_cs_options extends format_topics {
class format_test_cs2_options extends format_test_cs_options { class format_test_cs2_options extends format_test_cs_options {
public function section_format_options($foreditform = false) { public function section_format_options($foreditform = false) {
return array( return array(
'numdaystocomplete' => array(
'type' => PARAM_INT,
'label' => 'Test days',
'element_type' => 'text',
'default' => 0,
),
'secondparameter' => array( 'secondparameter' => array(
'type' => PARAM_INT, 'type' => PARAM_INT,
'label' => 'Test Parmater', 'label' => 'Test Parmater',

View file

@ -239,6 +239,11 @@ class phpunit_util extends testing_util {
\core\update\deployer::reset_caches(true); \core\update\deployer::reset_caches(true);
} }
// Clear static cache within restore.
if (class_exists('restore_section_structure_step')) {
restore_section_structure_step::reset_caches();
}
// purge dataroot directory // purge dataroot directory
self::reset_dataroot(); self::reset_dataroot();