MDL-21432 backup 2.0 - initial commit. util dir
This commit is contained in:
@@ -0,0 +1,93 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-factories
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* Non instantiable helper class providing different backup checks
|
||||
*
|
||||
* This class contains various static methods available in order to easily
|
||||
* perform a bunch of backup architecture tests
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
abstract class backup_check {
|
||||
|
||||
public static function check_format_and_type($format, $type) {
|
||||
global $CFG;
|
||||
|
||||
$file = $CFG->dirroot . '/backup/' . $format . '/backup_plan_builder.class.php';
|
||||
if (! file_exists($file)) {
|
||||
throw new backup_controller_exception('backup_check_unsupported_format', $format);
|
||||
}
|
||||
require_once($file);
|
||||
if (!in_array($type, backup_plan_builder::supported_backup_types())) {
|
||||
throw new backup_controller_exception('backup_check_unsupported_type', $type);
|
||||
}
|
||||
|
||||
require_once($CFG->dirroot . '/backup/moodle2/backup_plan_builder.class.php');
|
||||
}
|
||||
|
||||
public static function check_id($type, $id) {
|
||||
global $DB;
|
||||
switch ($type) {
|
||||
case backup::TYPE_1ACTIVITY:
|
||||
// id must exist in course_modules table
|
||||
if (! $DB->record_exists('course_modules', array('id' => $id))) {
|
||||
throw new backup_controller_exception('backup_check_module_not_exists', $id);
|
||||
}
|
||||
break;
|
||||
case backup::TYPE_1SECTION:
|
||||
// id must exist in course_sections table
|
||||
if (! $DB->record_exists('course_sections', array('id' => $id))) {
|
||||
throw new backup_controller_exception('backup_check_section_not_exists', $id);
|
||||
}
|
||||
break;
|
||||
case backup::TYPE_1COURSE:
|
||||
// id must exist in course table
|
||||
if (! $DB->record_exists('course', array('id' => $id))) {
|
||||
throw new backup_controller_exception('backup_check_course_not_exists', $id);
|
||||
}
|
||||
break;
|
||||
default:
|
||||
throw new backup_controller_exception('backup_check_incorrect_type', $type);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
public static function check_user($userid) {
|
||||
global $DB;
|
||||
// userid must exist in user table
|
||||
if (! $DB->record_exists('user', array('id' => $userid))) {
|
||||
throw new backup_controller_exception('backup_check_user_not_exists', $userid);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
public static function check_security($backup_controller, $apply) {
|
||||
if (! $backup_controller instanceof backup_controller) {
|
||||
throw new backup_controller_exception('backup_check_security_requires_backup_controller');
|
||||
}
|
||||
$backup_controller->log('checking plan security', backup::LOG_INFO);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,228 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-tests
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
// Prevent direct access to this file
|
||||
if (!defined('MOODLE_INTERNAL')) {
|
||||
die('Direct access to this script is forbidden.');
|
||||
}
|
||||
|
||||
// Include all the needed stuff
|
||||
require_once($CFG->dirroot . '/backup/util/includes/backup_includes.php');
|
||||
|
||||
/*
|
||||
* check tests (all)
|
||||
*/
|
||||
class backup_check_test extends UnitTestCase {
|
||||
|
||||
public static $includecoverage = array('backup/util/checks');
|
||||
public static $excludecoverage = array('backup/util/checks/simpletest');
|
||||
|
||||
protected $moduleid; // course_modules id used for testing
|
||||
protected $sectionid; // course_sections id used for testing
|
||||
protected $courseid; // course id used for testing
|
||||
protected $userid; // user record id
|
||||
|
||||
protected $errorlogloggerlevel; // To store $CFG->backup_error_log_logger_level
|
||||
protected $fileloggerlevel; // To store level $CFG->backup_file_logger_level
|
||||
protected $databaseloggerlevel; // To store $CFG->backup_database_logger_level
|
||||
protected $outputindentedloggerlevel; // To store $CFG->backup_output_indented_logger_level
|
||||
protected $fileloggerextra; // To store $CFG->backup_file_logger_extra
|
||||
protected $fileloggerlevelextra; // To store level $CFG->backup_file_logger_level_extra
|
||||
protected $debugging; // To store $CFG->debug
|
||||
protected $debugdisplay; // To store $CFG->debugdisplay
|
||||
|
||||
function __construct() {
|
||||
global $DB, $USER, $CFG;
|
||||
|
||||
$this->moduleid = 0;
|
||||
$this->sectionid = 0;
|
||||
$this->courseid = 0;
|
||||
$this->userid = $USER->id;
|
||||
|
||||
// Check we have (at least) one course_module
|
||||
if ($coursemodule = $DB->get_record('course_modules', array(), '*', IGNORE_MULTIPLE)) {
|
||||
$this->moduleid = $coursemodule->id;
|
||||
$this->sectionid = $coursemodule->section;
|
||||
$this->courseid = $coursemodule->course;
|
||||
}
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
function skip() {
|
||||
$this->skipIf(empty($this->moduleid), 'backup_check_test require at least one course module to exist');
|
||||
$this->skipIf(empty($this->sectionid),'backup_check_test require at least one course section to exist');
|
||||
$this->skipIf(empty($this->courseid), 'backup_check_test require at least one course to exist');
|
||||
$this->skipIf(empty($this->userid),'backup_check_test require one valid user to exist');
|
||||
}
|
||||
|
||||
function setUp() {
|
||||
global $CFG;
|
||||
parent::setUp();
|
||||
// Avoid any file logger to be created, we'll restore original settings on tearDown()
|
||||
// Fetch the rest of CFG variables to be able to restore them after tests
|
||||
// and normalize default values
|
||||
$this->errorlogloggerlevel = isset($CFG->backup_error_log_logger_level) ? $CFG->backup_error_log_logger_level : null;
|
||||
$CFG->backup_error_log_logger_level = backup::LOG_NONE;
|
||||
|
||||
$this->outputindentedloggerlevel = isset($CFG->backup_output_indented_logger_level) ? $CFG->backup_output_indented_logger_level : null;
|
||||
$CFG->backup_output_indented_logger_level = backup::LOG_NONE;
|
||||
|
||||
$this->fileloggerlevel = isset($CFG->backup_file_logger_level) ? $CFG->backup_file_logger_level : null;
|
||||
$CFG->backup_file_logger_level = backup::LOG_NONE;
|
||||
|
||||
$this->databaseloggerlevel = isset($CFG->backup_database_logger_level) ? $CFG->backup_database_logger_level : null;
|
||||
$CFG->backup_database_logger_level = backup::LOG_NONE;
|
||||
|
||||
$this->fileloggerextra = isset($CFG->backup_file_logger_extra) ? $CFG->backup_file_logger_extra : null;
|
||||
unset($CFG->backup_file_logger_extra);
|
||||
$this->fileloggerlevelextra = isset($CFG->backup_file_logger_level_extra) ? $CFG->backup_file_logger_level_extra : null;
|
||||
$CFG->backup_file_logger_level_extra = backup::LOG_NONE;
|
||||
|
||||
$this->debugging = isset($CFG->debug) ? $CFG->debug : null;
|
||||
$this->debugdisplay = isset($CFG->debugdisplay) ? $CFG->debugdisplay : null;
|
||||
}
|
||||
|
||||
function tearDown() {
|
||||
global $CFG;
|
||||
// Restore original file_logger levels
|
||||
if ($this->errorlogloggerlevel !== null) {
|
||||
$CFG->backup_error_log_logger_level = $this->errorlogloggerlevel;
|
||||
} else {
|
||||
unset($CFG->backup_error_log_logger_level);
|
||||
}
|
||||
|
||||
if ($this->outputindentedloggerlevel !== null) {
|
||||
$CFG->backup_output_indented_logger_level = $this->outputindentedloggerlevel;
|
||||
} else {
|
||||
unset($CFG->backup_output_indented_logger_level);
|
||||
}
|
||||
|
||||
if ($this->fileloggerlevel !== null) {
|
||||
$CFG->backup_file_logger_level = $this->fileloggerlevel;
|
||||
} else {
|
||||
unset($CFG->backup_file_logger_level);
|
||||
}
|
||||
|
||||
if ($this->databaseloggerlevel !== null) {
|
||||
$CFG->backup_database_logger_level = $this->databaseloggerlevel;
|
||||
} else {
|
||||
unset($CFG->backup_database_logger_level);
|
||||
}
|
||||
|
||||
if ($this->fileloggerextra !== null) {
|
||||
$CFG->backup_file_logger_extra = $this->fileloggerextra;
|
||||
} else {
|
||||
unset($CFG->backup_file_logger_extra);
|
||||
}
|
||||
if ($this->fileloggerlevelextra !== null) {
|
||||
$CFG->backup_file_logger_level_extra = $this->fileloggerlevelextra;
|
||||
} else {
|
||||
unset($CFG->backup_file_logger_level_extra);
|
||||
}
|
||||
// Restore the rest of $CFG settings
|
||||
if ($this->debugging !== null) {
|
||||
$CFG->debug = $this->debugging;
|
||||
} else {
|
||||
unset($CFG->debug);
|
||||
}
|
||||
if ($this->debugdisplay !== null) {
|
||||
$CFG->debugdisplay = $this->debugdisplay;
|
||||
} else {
|
||||
unset($CFG->debugdisplay);
|
||||
}
|
||||
parent::tearDown();
|
||||
}
|
||||
|
||||
/*
|
||||
* test backup_check class
|
||||
*/
|
||||
function test_backup_check() {
|
||||
|
||||
// Check against existing course module/section course or fail
|
||||
$this->assertTrue(backup_check::check_id(backup::TYPE_1ACTIVITY, $this->moduleid));
|
||||
$this->assertTrue(backup_check::check_id(backup::TYPE_1SECTION, $this->sectionid));
|
||||
$this->assertTrue(backup_check::check_id(backup::TYPE_1COURSE, $this->courseid));
|
||||
$this->assertTrue(backup_check::check_user($this->userid));
|
||||
|
||||
// Check agains non-existing course module/section/course (0)
|
||||
try {
|
||||
backup_check::check_id(backup::TYPE_1ACTIVITY, 0);
|
||||
$this->assertTrue(false, 'backup_controller_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof backup_controller_exception);
|
||||
$this->assertEqual($e->errorcode, 'backup_check_module_not_exists');
|
||||
}
|
||||
try {
|
||||
backup_check::check_id(backup::TYPE_1SECTION, 0);
|
||||
$this->assertTrue(false, 'backup_controller_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof backup_controller_exception);
|
||||
$this->assertEqual($e->errorcode, 'backup_check_section_not_exists');
|
||||
}
|
||||
try {
|
||||
backup_check::check_id(backup::TYPE_1COURSE, 0);
|
||||
$this->assertTrue(false, 'backup_controller_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof backup_controller_exception);
|
||||
$this->assertEqual($e->errorcode, 'backup_check_course_not_exists');
|
||||
}
|
||||
|
||||
// Try wrong type
|
||||
try {
|
||||
backup_check::check_id(12345678,0);
|
||||
$this->assertTrue(false, 'backup_controller_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof backup_controller_exception);
|
||||
$this->assertEqual($e->errorcode, 'backup_check_incorrect_type');
|
||||
}
|
||||
|
||||
// Test non-existing user
|
||||
$userid = 0;
|
||||
try {
|
||||
backup_check::check_user($userid);
|
||||
$this->assertTrue(false, 'backup_controller_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof backup_controller_exception);
|
||||
$this->assertEqual($e->errorcode, 'backup_check_user_not_exists');
|
||||
}
|
||||
|
||||
// Security check tests
|
||||
// Try to pass wrong controller
|
||||
try {
|
||||
backup_check::check_security(new stdclass(), true);
|
||||
$this->assertTrue(false, 'backup_controller_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof backup_controller_exception);
|
||||
$this->assertEqual($e->errorcode, 'backup_check_security_requires_backup_controller');
|
||||
}
|
||||
|
||||
// Pass correct controller, check must return true in any case with $apply enabled
|
||||
// and $bc must continue being mock_backup_controller
|
||||
$bc = new backup_controller(backup::TYPE_1ACTIVITY, $this->moduleid, backup::FORMAT_MOODLE,
|
||||
backup::INTERACTIVE_NO, backup::MODE_GENERAL, $this->userid);
|
||||
$this->assertTrue(backup_check::check_security($bc, true));
|
||||
$this->assertTrue($bc instanceof backup_controller);
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,344 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-dbops
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* Non instantiable helper class providing DB support to the @backup_controller
|
||||
*
|
||||
* This class contains various static methods available for all the DB operations
|
||||
* performed by the backup_controller class
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
abstract class backup_controller_dbops extends backup_dbops {
|
||||
|
||||
public static function save_controller($controller, $checksum) {
|
||||
global $DB;
|
||||
// Check we are going to save one backup_controller
|
||||
if (! $controller instanceof backup_controller) {
|
||||
throw new backup_controller_exception('backup_controller_expected');
|
||||
}
|
||||
// Check checksum is ok. Sounds silly but it isn't ;-)
|
||||
if (!$controller->is_checksum_correct($checksum)) {
|
||||
throw new backup_dbops_exception('backup_controller_dbops_saving_checksum_mismatch');
|
||||
}
|
||||
// Get all the columns
|
||||
$rec = new stdclass();
|
||||
$rec->backupid = $controller->get_backupid();
|
||||
$rec->type = $controller->get_type();
|
||||
$rec->itemid = $controller->get_id();
|
||||
$rec->format = $controller->get_format();
|
||||
$rec->interactive = $controller->get_interactive();
|
||||
$rec->purpose = $controller->get_mode();
|
||||
$rec->userid = $controller->get_userid();
|
||||
$rec->status = $controller->get_status();
|
||||
$rec->execution = $controller->get_execution();
|
||||
$rec->executiontime= $controller->get_executiontime();
|
||||
$rec->checksum = $checksum;
|
||||
// Serialize information
|
||||
$rec->controller = base64_encode(serialize($controller));
|
||||
// Send it to DB
|
||||
if ($recexists = $DB->get_record('backup_controllers', array('backupid' => $rec->backupid))) {
|
||||
$rec->id = $recexists->id;
|
||||
$rec->timemodified = time();
|
||||
$DB->update_record('backup_controllers', $rec);
|
||||
} else {
|
||||
$rec->timecreated = time();
|
||||
$rec->timemodified = 0;
|
||||
$rec->id = $DB->insert_record('backup_controllers', $rec);
|
||||
}
|
||||
return $rec->id;
|
||||
}
|
||||
|
||||
public static function load_controller($backupid) {
|
||||
global $DB;
|
||||
if (! $controllerrec = $DB->get_record('backup_controllers', array('backupid' => $backupid))) {
|
||||
throw new backup_dbops_exception('backup_controller_dbops_nonexisting');
|
||||
}
|
||||
$controller = unserialize(base64_decode($controllerrec->controller));
|
||||
// Check checksum is ok. Sounds silly but it isn't ;-)
|
||||
if (!$controller->is_checksum_correct($controllerrec->checksum)) {
|
||||
throw new backup_dbops_exception('backup_controller_dbops_loading_checksum_mismatch');
|
||||
}
|
||||
return $controller;
|
||||
}
|
||||
|
||||
public static function create_backup_ids_temp_table($backupid) {
|
||||
global $CFG, $DB;
|
||||
$dbman = $DB->get_manager(); // We are going to use database_manager services
|
||||
|
||||
// Note: For now we are going to load the backup_ids_template from core lib/db/install.xml
|
||||
// that way, any change in the "template" will be applied here automatically. If this causes
|
||||
// too much slow, we can always forget about the template and keep maintained the xmldb_table
|
||||
// structure inline - manually - here.
|
||||
$templatetablename = 'backup_ids_template';
|
||||
$targettablename = 'backup_ids_temp';
|
||||
$xmldb_file = new xmldb_file($CFG->dirroot . '/lib/db/install.xml');
|
||||
if (!$xmldb_file->fileExists()) {
|
||||
throw new ddl_exception('ddlxmlfileerror', null, 'File does not exist');
|
||||
}
|
||||
$loaded = $xmldb_file->loadXMLStructure();
|
||||
if (!$loaded || !$xmldb_file->isLoaded()) {
|
||||
throw new ddl_exception('ddlxmlfileerror', null, 'not loaded??');
|
||||
}
|
||||
$xmldb_structure = $xmldb_file->getStructure();
|
||||
$xmldb_table = $xmldb_structure->getTable($templatetablename);
|
||||
if (is_null($xmldb_table)) {
|
||||
throw new ddl_exception('ddlunknowntable', null, 'The table ' . $templatetablename . ' is not defined in file ' . $file);
|
||||
}
|
||||
// Set default backupid (not needed but this enforce any missing backupid). That's hackery in action!
|
||||
$xmldb_table->getField('backupid')->setDefault($backupid);
|
||||
// Clean prev & next, we are alone
|
||||
$xmldb_table->setNext(null);
|
||||
$xmldb_table->setPrevious(null);
|
||||
// Rename
|
||||
$xmldb_table->setName($targettablename);
|
||||
|
||||
$dbman->create_temp_table($xmldb_table); // And create it
|
||||
}
|
||||
|
||||
public static function drop_backup_ids_temp_table($backupid) {
|
||||
global $DB;
|
||||
$dbman = $DB->get_manager(); // We are going to use database_manager services
|
||||
|
||||
$targettablename = 'backup_ids_temp';
|
||||
$table = new xmldb_table($targettablename);
|
||||
$dbman->drop_temp_table($table); // And drop it
|
||||
}
|
||||
|
||||
/**
|
||||
* Given one type and id from controller, return the corresponding courseid
|
||||
*/
|
||||
public static function get_courseid_from_type_id($type, $id) {
|
||||
global $DB;
|
||||
if ($type == backup::TYPE_1COURSE) {
|
||||
return $id; // id is the course id
|
||||
|
||||
} else if ($type == backup::TYPE_1SECTION) {
|
||||
if (! $courseid = $DB->get_field('course_sections', 'course', array('id' => $id))) {
|
||||
throw new backup_dbops_exception('course_not_found_for_section', $id);
|
||||
}
|
||||
return $courseid;
|
||||
} else if ($type == backup::TYPE_1ACTIVITY) {
|
||||
if (! $courseid = $DB->get_field('course_modules', 'course', array('id' => $id))) {
|
||||
throw new backup_dbops_exception('course_not_found_for_moduleid', $id);
|
||||
}
|
||||
return $courseid;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Given one activity task, return the activity information and related settings
|
||||
* Used by get_moodle_backup_information()
|
||||
*/
|
||||
private static function get_activity_backup_information($task) {
|
||||
|
||||
$contentinfo = array(
|
||||
'moduleid' => $task->get_moduleid(),
|
||||
'sectionid' => $task->get_sectionid(),
|
||||
'modulename' => $task->get_modulename(),
|
||||
'title' => $task->get_name(),
|
||||
'directory' => 'activities/' . $task->get_modulename() . '_' . $task->get_moduleid());
|
||||
|
||||
// Now get activity settings
|
||||
// Calculate prefix to find valid settings
|
||||
$prefix = basename($contentinfo['directory']);
|
||||
$settingsinfo = array();
|
||||
foreach ($task->get_settings() as $setting) {
|
||||
// Discard ones without valid prefix
|
||||
if (strpos($setting->get_name(), $prefix) !== 0) {
|
||||
continue;
|
||||
}
|
||||
// Validate level is correct (activity)
|
||||
if ($setting->get_level() != backup_setting::ACTIVITY_LEVEL) {
|
||||
throw new backup_controller_exception('setting_not_activity_level', $setting);
|
||||
}
|
||||
$settinginfo = array(
|
||||
'level' => 'activity',
|
||||
'activity' => $prefix,
|
||||
'name' => $setting->get_name(),
|
||||
'value' => $setting->get_value());
|
||||
$settingsinfo[] = (object)$settinginfo;
|
||||
}
|
||||
return array($contentinfo, $settingsinfo);
|
||||
}
|
||||
|
||||
/**
|
||||
* Given one section task, return the section information and related settings
|
||||
* Used by get_moodle_backup_information()
|
||||
*/
|
||||
private static function get_section_backup_information($task) {
|
||||
|
||||
$contentinfo = array(
|
||||
'sectionid' => $task->get_sectionid(),
|
||||
'title' => $task->get_name(),
|
||||
'directory' => 'sections/' . 'section_' . $task->get_sectionid());
|
||||
|
||||
// Now get section settings
|
||||
// Calculate prefix to find valid settings
|
||||
$prefix = basename($contentinfo['directory']);
|
||||
$settingsinfo = array();
|
||||
foreach ($task->get_settings() as $setting) {
|
||||
// Discard ones without valid prefix
|
||||
if (strpos($setting->get_name(), $prefix) !== 0) {
|
||||
continue;
|
||||
}
|
||||
// Validate level is correct (section)
|
||||
if ($setting->get_level() != backup_setting::SECTION_LEVEL) {
|
||||
throw new backup_controller_exception('setting_not_section_level', $setting);
|
||||
}
|
||||
$settinginfo = array(
|
||||
'level' => 'section',
|
||||
'section ' => $prefix,
|
||||
'name' => $setting->get_name(),
|
||||
'value' => $setting->get_value());
|
||||
$settingsinfo[] = (object)$settinginfo;
|
||||
}
|
||||
return array($contentinfo, $settingsinfo);
|
||||
}
|
||||
|
||||
/**
|
||||
* Given one course task, return the course information and related settings
|
||||
* Used by get_moodle_backup_information()
|
||||
*/
|
||||
private static function get_course_backup_information($task) {
|
||||
|
||||
$contentinfo = array(
|
||||
'courseid' => $task->get_courseid(),
|
||||
'title' => $task->get_name(),
|
||||
'directory' => 'course');
|
||||
|
||||
// Now get course settings
|
||||
// Calculate prefix to find valid settings
|
||||
$prefix = basename($contentinfo['directory']);
|
||||
$settingsinfo = array();
|
||||
foreach ($task->get_settings() as $setting) {
|
||||
// Discard ones without valid prefix
|
||||
if (strpos($setting->get_name(), $prefix) !== 0) {
|
||||
continue;
|
||||
}
|
||||
// Validate level is correct (course)
|
||||
if ($setting->get_level() != backup_setting::COURSE_LEVEL) {
|
||||
throw new backup_controller_exception('setting_not_course_level', $setting);
|
||||
}
|
||||
$settinginfo = array(
|
||||
'level' => 'course',
|
||||
'name' => $setting->get_name(),
|
||||
'value' => $setting->get_value());
|
||||
$settingsinfo[] = (object)$settinginfo;
|
||||
}
|
||||
return array($contentinfo, $settingsinfo);
|
||||
}
|
||||
|
||||
/**
|
||||
* Given one root task, return the course information and related settings
|
||||
* Used by get_moodle_backup_information()
|
||||
*/
|
||||
private static function get_root_backup_information($task) {
|
||||
|
||||
// Now get root settings
|
||||
$settingsinfo = array();
|
||||
foreach ($task->get_settings() as $setting) {
|
||||
// Validate level is correct (root)
|
||||
if ($setting->get_level() != backup_setting::ROOT_LEVEL) {
|
||||
throw new backup_controller_exception('setting_not_root_level', $setting);
|
||||
}
|
||||
$settinginfo = array(
|
||||
'level' => 'root',
|
||||
'name' => $setting->get_name(),
|
||||
'value' => $setting->get_value());
|
||||
$settingsinfo[] = (object)$settinginfo;
|
||||
}
|
||||
return array(null, $settingsinfo);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get details information for main moodle_backup.xml file, extracting it from
|
||||
* the specified controller
|
||||
*/
|
||||
public static function get_moodle_backup_information($backupid) {
|
||||
|
||||
$detailsinfo = array(); // Information details
|
||||
$contentsinfo= array(); // Information about backup contents
|
||||
$settingsinfo= array(); // Information about backup settings
|
||||
$bc = self::load_controller($backupid); // Load controller
|
||||
|
||||
// Details info
|
||||
$detailsinfo['backup_id'] = $bc->get_backupid();
|
||||
$detailsinfo['type'] = $bc->get_type();
|
||||
$detailsinfo['format'] = $bc->get_format();
|
||||
$detailsinfo['interactive'] = $bc->get_interactive();
|
||||
$detailsinfo['mode'] = $bc->get_mode();
|
||||
$detailsinfo['execution'] = $bc->get_execution();
|
||||
$detailsinfo['executiontime'] = $bc->get_executiontime();
|
||||
|
||||
|
||||
// Init content placeholders
|
||||
$contentsinfo['activities'] = array();
|
||||
$contentsinfo['sections'] = array();
|
||||
$contentsinfo['course'] = array();
|
||||
|
||||
// Contents info (extract information from tasks)
|
||||
foreach ($bc->get_plan()->get_tasks() as $task) {
|
||||
|
||||
if ($task instanceof backup_activity_task) { // Activity task
|
||||
|
||||
list($contentinfo, $settings) = self::get_activity_backup_information($task);
|
||||
$contentsinfo['activities'][] = $contentinfo;
|
||||
$settingsinfo = array_merge($settingsinfo, $settings);
|
||||
|
||||
} else if ($task instanceof backup_section_task) { // Section task
|
||||
|
||||
list($contentinfo, $settings) = self::get_section_backup_information($task);
|
||||
$contentsinfo['sections'][] = $contentinfo;
|
||||
$settingsinfo = array_merge($settingsinfo, $settings);
|
||||
|
||||
} else if ($task instanceof backup_course_task) { // Course task
|
||||
|
||||
list($contentinfo, $settings) = self::get_course_backup_information($task);
|
||||
$contentsinfo['course'][] = $contentinfo;
|
||||
$settingsinfo = array_merge($settingsinfo, $settings);
|
||||
|
||||
} else if ($task instanceof backup_root_task) { // Root task
|
||||
|
||||
list($contentinfo, $settings) = self::get_root_backup_information($task);
|
||||
$settingsinfo = array_merge($settingsinfo, $settings);
|
||||
}
|
||||
}
|
||||
|
||||
return array(array((object)$detailsinfo), $contentsinfo, $settingsinfo);
|
||||
}
|
||||
|
||||
/**
|
||||
* Update CFG->backup_version and CFG->backup_release if change in
|
||||
* version is detected.
|
||||
*/
|
||||
public static function apply_version_and_release() {
|
||||
global $CFG;
|
||||
|
||||
if ($CFG->backup_version < backup::VERSION) {
|
||||
set_config('backup_version', backup::VERSION);
|
||||
set_config('backup_release', backup::RELEASE);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-dbops
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* Base abstract class for all the helper classes providing DB operations
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
abstract class backup_dbops { }
|
||||
|
||||
/*
|
||||
* Exception class used by all the @dbops stuff
|
||||
*/
|
||||
class backup_dbops_exception extends backup_exception {
|
||||
|
||||
public function __construct($errorcode, $a=NULL, $debuginfo=null) {
|
||||
parent::__construct($errorcode, 'error', '', $a, null, $debuginfo);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,124 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-dbops
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* Non instantiable helper class providing DB support to the @backup_plan class
|
||||
*
|
||||
* This class contains various static methods available for all the DB operations
|
||||
* performed by the @backup_plan (and builder) classes
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
abstract class backup_plan_dbops extends backup_dbops {
|
||||
|
||||
/**
|
||||
* Given one course module id, return one array with all the block intances that belong to it
|
||||
*/
|
||||
public static function get_blockids_from_moduleid($moduleid) {
|
||||
global $DB;
|
||||
|
||||
// Get the context of the module
|
||||
$contextid = get_context_instance(CONTEXT_MODULE, $moduleid)->id;
|
||||
|
||||
// Get all the block instances which parentcontextid is the module contextid
|
||||
$blockids = array();
|
||||
$instances = $DB->get_records('block_instances', array('parentcontextid' => $contextid), '', 'id');
|
||||
foreach ($instances as $instance) {
|
||||
$blockids[] = $instance->id;
|
||||
}
|
||||
return $blockids;
|
||||
}
|
||||
|
||||
/**
|
||||
* Given one course id, return one array with all the block intances that belong to it
|
||||
*/
|
||||
public static function get_blockids_from_courseid($courseid) {
|
||||
global $DB;
|
||||
|
||||
// Get the context of the course
|
||||
$contextid = get_context_instance(CONTEXT_COURSE, $courseid)->id;
|
||||
|
||||
// Get all the block instances which parentcontextid is the course contextid
|
||||
$blockids = array();
|
||||
$instances = $DB->get_records('block_instances', array('parentcontextid' => $contextid), '', 'id');
|
||||
foreach ($instances as $instance) {
|
||||
$blockids[] = $instance->id;
|
||||
}
|
||||
return $blockids;
|
||||
}
|
||||
|
||||
/**
|
||||
* Given one section id, return one array with all the course modules that belong to it
|
||||
*/
|
||||
public static function get_modules_from_sectionid($sectionid) {
|
||||
global $DB;
|
||||
|
||||
// Get the course of the section
|
||||
$courseid = $DB->get_field('course_sections', 'course', array('id' => $sectionid));
|
||||
|
||||
// Get all course modules belonging to requested section
|
||||
$modulesarr = array();
|
||||
$modules = $DB->get_records_sql("
|
||||
SELECT cm.id, m.name AS modname
|
||||
FROM {course_modules} cm
|
||||
JOIN {modules} m ON m.id = cm.module
|
||||
WHERE cm.course = ?
|
||||
AND cm.section = ?", array($courseid, $sectionid));
|
||||
foreach ($modules as $module) {
|
||||
$module = array('id' => $module->id, 'modname' => $module->modname);
|
||||
$modulesarr[] = (object)$module;
|
||||
}
|
||||
return $modulesarr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Given one course id, return one array with all the course_sections belonging to it
|
||||
*/
|
||||
public static function get_sections_from_courseid($courseid) {
|
||||
global $DB;
|
||||
|
||||
// Get all sections belonging to requested course
|
||||
$sectionsarr = array();
|
||||
$sections = $DB->get_records('course_sections', array('course' => $courseid));
|
||||
foreach ($sections as $section) {
|
||||
$sectionsarr[] = $section->id;
|
||||
}
|
||||
return $sectionsarr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the wwwroot of the $CFG->mnet_localhost_id host
|
||||
* caching it along the request
|
||||
*/
|
||||
public static function get_mnet_localhost_wwwroot() {
|
||||
global $CFG, $DB;
|
||||
|
||||
static $wwwroot = null;
|
||||
|
||||
if (is_null($wwwroot)) {
|
||||
$wwwroot = $DB->get_field('mnet_host', 'wwwroot', array('id' => $CFG->mnet_localhost_id));
|
||||
}
|
||||
return $wwwroot;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,152 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-dbops
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* Non instantiable helper class providing DB support to the backup_structure stuff
|
||||
*
|
||||
* This class contains various static methods available for all the DB operations
|
||||
* performed by the backup_structure stuff (mainly @backup_nested_element class)
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
abstract class backup_structure_dbops extends backup_dbops {
|
||||
|
||||
public static function get_iterator($element, $params, $processor) {
|
||||
global $DB;
|
||||
// Check we are going to get_iterator for one backup_nested_element
|
||||
if (! $element instanceof backup_nested_element) {
|
||||
throw new base_element_struct_exception('backup_nested_element_expected');
|
||||
}
|
||||
// If var_array, table and sql are null, and element has no final elements it is one nested element without source
|
||||
// Just return one 1 element iterator without information
|
||||
if ($element->get_source_array() === null && $element->get_source_table() === null &&
|
||||
$element->get_source_sql() === null && count($element->get_final_elements()) == 0) {
|
||||
return new backup_array_iterator(array(0 => null));
|
||||
|
||||
} else if ($element->get_source_array() !== null) { // It's one array, return array_iterator
|
||||
return new backup_array_iterator($element->get_source_array());
|
||||
|
||||
} else if ($element->get_source_table() !== null) { // It's one table, return recordset iterator
|
||||
return $DB->get_recordset($element->get_source_table(), self::convert_params_to_values($params, $processor));
|
||||
|
||||
} else if ($element->get_source_sql() !== null) { // It's one sql, return recordset iterator
|
||||
return $DB->get_recordset_sql($element->get_source_sql(), self::convert_params_to_values($params, $processor));
|
||||
|
||||
} else { // No sources, supress completely, using null iterator
|
||||
return new backup_null_iterator();
|
||||
}
|
||||
}
|
||||
|
||||
protected static function convert_params_to_values($params, $processor) {
|
||||
$newparams = array();
|
||||
foreach ($params as $key => $param) {
|
||||
$newvalue = null;
|
||||
// If we have a base element, get its current value, exception if not set
|
||||
if ($param instanceof base_atom) {
|
||||
if ($param->is_set()) {
|
||||
$newvalue = $param->get_value();
|
||||
} else {
|
||||
throw new base_element_struct_exception('valueofparamelementnotset', $param->get_name());
|
||||
}
|
||||
|
||||
} else if ($param < 0) { // Possibly one processor variable, let's process it
|
||||
// See @backup class for all the VAR_XXX variables available.
|
||||
// Note1: backup::VAR_PARENTID is handled by nested elements themselves
|
||||
// Note2: trying to use one non-existing var will throw exception
|
||||
$newvalue = $processor->get_var($param);
|
||||
|
||||
// Else we have one raw param value, use it
|
||||
} else {
|
||||
$newvalue = $param;
|
||||
}
|
||||
|
||||
$newparams[$key] = $newvalue;
|
||||
}
|
||||
return $newparams;
|
||||
}
|
||||
|
||||
public static function insert_backup_ids_record($backupid, $itemname, $itemid) {
|
||||
global $DB;
|
||||
// We need to do some magic with scales (that are stored in negative way)
|
||||
if ($itemname == 'scale') {
|
||||
$itemid = -($itemid);
|
||||
}
|
||||
// Now, we skip any annotation with negatives/zero/nulls, ids table only stores true id (always > 0)
|
||||
if ($itemid <= 0 || is_null($itemid)) {
|
||||
return;
|
||||
}
|
||||
// TODO: Analyze if some static (and limited) cache by the 3 params could save us a bunch of record_exists() calls
|
||||
// Note: Sure it will!
|
||||
if (!$DB->record_exists('backup_ids_temp', array('backupid' => $backupid, 'itemname' => $itemname, 'itemid' => $itemid))) {
|
||||
$DB->insert_record('backup_ids_temp', array('backupid' => $backupid, 'itemname' => $itemname, 'itemid' => $itemid));
|
||||
}
|
||||
}
|
||||
|
||||
public static function annotate_files($backupid, $contextid, $filearea, $itemid) {
|
||||
global $DB;
|
||||
$sql = 'SELECT id
|
||||
FROM {files}
|
||||
WHERE contextid = ?
|
||||
AND filearea = ?';
|
||||
$params = array($contextid, $filearea);
|
||||
|
||||
if (!is_null($itemid)) { // Add itemid to query and params if necessary
|
||||
$sql .= ' AND itemid = ?';
|
||||
$params[] = $itemid;
|
||||
}
|
||||
$rs = $DB->get_recordset_sql($sql, $params);
|
||||
foreach ($rs as $record) {
|
||||
self::insert_backup_ids_record($backupid, 'file', $record->id);
|
||||
}
|
||||
$rs->close();
|
||||
}
|
||||
|
||||
/**
|
||||
* Moves all the existing 'item' annotations to their final 'itemfinal' ones
|
||||
* for a given backup.
|
||||
*/
|
||||
public static function move_annotations_to_final($backupid, $itemname) {
|
||||
global $DB;
|
||||
$rs = $DB->get_recordset('backup_ids_temp', array('backupid' => $backupid, 'itemname' => $itemname));
|
||||
foreach($rs as $annotation) {
|
||||
// If corresponding 'itemfinal' annotation does not exist, update 'item' to 'itemfinal'
|
||||
if (! $DB->record_exists('backup_ids_temp', array('backupid' => $backupid,
|
||||
'itemname' => $itemname . 'final',
|
||||
'itemid' => $annotation->itemid))) {
|
||||
$DB->set_field('backup_ids_temp', 'itemname', $itemname . 'final', array('id' => $annotation->id));
|
||||
}
|
||||
}
|
||||
$rs->close();
|
||||
// All the remaining 'user' annotations can be safely deleted
|
||||
$DB->delete_records('backup_ids_temp', array('backupid' => $backupid, 'itemname' => $itemname));
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns true/false if there are annotations for a given item
|
||||
*/
|
||||
public static function annotations_exist($backupid, $itemname) {
|
||||
global $DB;
|
||||
return (bool)$DB->count_records('backup_ids_temp', array('backupid' => $backupid, 'itemname' => $itemname));
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,267 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-tests
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
// Prevent direct access to this file
|
||||
if (!defined('MOODLE_INTERNAL')) {
|
||||
die('Direct access to this script is forbidden.');
|
||||
}
|
||||
|
||||
// Include all the needed stuff
|
||||
require_once($CFG->dirroot . '/backup/util/includes/backup_includes.php');
|
||||
|
||||
/*
|
||||
* dbops tests (all)
|
||||
*/
|
||||
class backup_dbops_test extends UnitTestCase {
|
||||
|
||||
public static $includecoverage = array('backup/util/dbops');
|
||||
public static $excludecoverage = array('backup/util/dbops/simpletest');
|
||||
|
||||
protected $moduleid; // course_modules id used for testing
|
||||
protected $sectionid; // course_sections id used for testing
|
||||
protected $courseid; // course id used for testing
|
||||
protected $user; // user record used for testing
|
||||
|
||||
protected $todelete; // array of records to be deleted after tests
|
||||
|
||||
protected $errorlogloggerlevel; // To store $CFG->backup_error_log_logger_level
|
||||
protected $fileloggerlevel; // To store level $CFG->backup_file_logger_level
|
||||
protected $databaseloggerlevel; // To store $CFG->backup_database_logger_level
|
||||
protected $outputindentedloggerlevel; // To store $CFG->backup_output_indented_logger_level
|
||||
protected $fileloggerextra; // To store $CFG->backup_file_logger_extra
|
||||
protected $fileloggerlevelextra; // To store level $CFG->backup_file_logger_level_extra
|
||||
protected $debugging; // To store $CFG->debug
|
||||
protected $debugdisplay; // To store $CFG->debugdisplay
|
||||
|
||||
function __construct() {
|
||||
global $DB, $USER, $CFG;
|
||||
|
||||
$this->moduleid = 0;
|
||||
$this->sectionid = 0;
|
||||
$this->courseid = 0;
|
||||
$this->userid = $USER->id;
|
||||
$this->todelete = array();
|
||||
|
||||
// Check we have (at least) one course_module
|
||||
if ($coursemodule = $DB->get_record('course_modules', array(), '*', IGNORE_MULTIPLE)) {
|
||||
$this->moduleid = $coursemodule->id;
|
||||
$this->sectionid = $coursemodule->section;
|
||||
$this->courseid = $coursemodule->course;
|
||||
}
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
function setUp() {
|
||||
global $CFG;
|
||||
parent::setUp();
|
||||
// Avoid any file logger to be created, we'll restore original settings on tearDown()
|
||||
// Fetch the rest of CFG variables to be able to restore them after tests
|
||||
// and normalize default values
|
||||
$this->errorlogloggerlevel = isset($CFG->backup_error_log_logger_level) ? $CFG->backup_error_log_logger_level : null;
|
||||
$CFG->backup_error_log_logger_level = backup::LOG_NONE;
|
||||
|
||||
$this->outputindentedloggerlevel = isset($CFG->backup_output_indented_logger_level) ? $CFG->backup_output_indented_logger_level : null;
|
||||
$CFG->backup_output_indented_logger_level = backup::LOG_NONE;
|
||||
|
||||
$this->fileloggerlevel = isset($CFG->backup_file_logger_level) ? $CFG->backup_file_logger_level : null;
|
||||
$CFG->backup_file_logger_level = backup::LOG_NONE;
|
||||
|
||||
$this->databaseloggerlevel = isset($CFG->backup_database_logger_level) ? $CFG->backup_database_logger_level : null;
|
||||
$CFG->backup_database_logger_level = backup::LOG_NONE;
|
||||
|
||||
$this->fileloggerextra = isset($CFG->backup_file_logger_extra) ? $CFG->backup_file_logger_extra : null;
|
||||
unset($CFG->backup_file_logger_extra);
|
||||
$this->fileloggerlevelextra = isset($CFG->backup_file_logger_level_extra) ? $CFG->backup_file_logger_level_extra : null;
|
||||
$CFG->backup_file_logger_level_extra = backup::LOG_NONE;
|
||||
|
||||
$this->debugging = isset($CFG->debug) ? $CFG->debug : null;
|
||||
$this->debugdisplay = isset($CFG->debugdisplay) ? $CFG->debugdisplay : null;
|
||||
}
|
||||
|
||||
function skip() {
|
||||
$this->skipIf(empty($this->moduleid), 'backup_dbops_test require at least one course module to exist');
|
||||
$this->skipIf(empty($this->sectionid),'backup_dbops_test require at least one course section to exist');
|
||||
$this->skipIf(empty($this->courseid), 'backup_dbops_test require at least one course to exist');
|
||||
$this->skipIf(empty($this->userid),'backup_dbops_test require one valid user to exist');
|
||||
}
|
||||
|
||||
function tearDown() {
|
||||
global $DB, $CFG;
|
||||
// Delete all the records marked to
|
||||
foreach ($this->todelete as $todelete) {
|
||||
$DB->delete_records($todelete[0], array('id' => $todelete[1]));
|
||||
}
|
||||
|
||||
// Restore original file_logger levels
|
||||
if ($this->errorlogloggerlevel !== null) {
|
||||
$CFG->backup_error_log_logger_level = $this->errorlogloggerlevel;
|
||||
} else {
|
||||
unset($CFG->backup_error_log_logger_level);
|
||||
}
|
||||
|
||||
if ($this->outputindentedloggerlevel !== null) {
|
||||
$CFG->backup_output_indented_logger_level = $this->outputindentedloggerlevel;
|
||||
} else {
|
||||
unset($CFG->backup_output_indented_logger_level);
|
||||
}
|
||||
|
||||
if ($this->fileloggerlevel !== null) {
|
||||
$CFG->backup_file_logger_level = $this->fileloggerlevel;
|
||||
} else {
|
||||
unset($CFG->backup_file_logger_level);
|
||||
}
|
||||
|
||||
if ($this->databaseloggerlevel !== null) {
|
||||
$CFG->backup_database_logger_level = $this->databaseloggerlevel;
|
||||
} else {
|
||||
unset($CFG->backup_database_logger_level);
|
||||
}
|
||||
|
||||
if ($this->fileloggerextra !== null) {
|
||||
$CFG->backup_file_logger_extra = $this->fileloggerextra;
|
||||
} else {
|
||||
unset($CFG->backup_file_logger_extra);
|
||||
}
|
||||
if ($this->fileloggerlevelextra !== null) {
|
||||
$CFG->backup_file_logger_level_extra = $this->fileloggerlevelextra;
|
||||
} else {
|
||||
unset($CFG->backup_file_logger_level_extra);
|
||||
}
|
||||
// Restore the rest of $CFG settings
|
||||
if ($this->debugging !== null) {
|
||||
$CFG->debug = $this->debugging;
|
||||
} else {
|
||||
unset($CFG->debug);
|
||||
}
|
||||
if ($this->debugdisplay !== null) {
|
||||
$CFG->debugdisplay = $this->debugdisplay;
|
||||
} else {
|
||||
unset($CFG->debugdisplay);
|
||||
}
|
||||
parent::tearDown();
|
||||
}
|
||||
|
||||
/*
|
||||
* test backup_ops class
|
||||
*/
|
||||
function test_backup_dbops() {
|
||||
// Nothing to do here, abstract class + exception, will be tested by the rest
|
||||
}
|
||||
|
||||
/*
|
||||
* test backup_controller_dbops class
|
||||
*/
|
||||
function test_backup_controller_dbops() {
|
||||
global $DB;
|
||||
|
||||
$dbman = $DB->get_manager(); // Going to use some database_manager services for testing
|
||||
|
||||
// Instantiate non interactive backup_controller
|
||||
$bc = new mock_backup_controller4dbops(backup::TYPE_1ACTIVITY, $this->moduleid, backup::FORMAT_MOODLE,
|
||||
backup::INTERACTIVE_NO, backup::MODE_GENERAL, $this->userid);
|
||||
$this->assertTrue($bc instanceof backup_controller);
|
||||
// Calculate checksum
|
||||
$checksum = $bc->calculate_checksum();
|
||||
$this->assertEqual(strlen($checksum), 32); // is one md5
|
||||
|
||||
// save controller
|
||||
$recid = backup_controller_dbops::save_controller($bc, $checksum);
|
||||
$this->assertTrue($recid);
|
||||
$this->todelete[] = array('backup_controllers', $recid); // mark this record for deletion
|
||||
// save it again (should cause update to happen)
|
||||
$recid2 = backup_controller_dbops::save_controller($bc, $checksum);
|
||||
$this->assertTrue($recid2);
|
||||
$this->todelete[] = array('backup_controllers', $recid2); // mark this record for deletion
|
||||
$this->assertEqual($recid, $recid2); // Same record in both save operations
|
||||
|
||||
// Try incorrect checksum
|
||||
$bc = new mock_backup_controller4dbops(backup::TYPE_1ACTIVITY, $this->moduleid, backup::FORMAT_MOODLE,
|
||||
backup::INTERACTIVE_NO, backup::MODE_GENERAL, $this->userid);
|
||||
$checksum = $bc->calculate_checksum();
|
||||
try {
|
||||
$recid = backup_controller_dbops::save_controller($bc, 'lalala');
|
||||
$this->assertTrue(false, 'backup_dbops_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof backup_dbops_exception);
|
||||
$this->assertEqual($e->errorcode, 'backup_controller_dbops_saving_checksum_mismatch');
|
||||
}
|
||||
|
||||
// Try to save non backup_controller object
|
||||
$bc = new stdclass();
|
||||
try {
|
||||
$recid = backup_controller_dbops::save_controller($bc, 'lalala');
|
||||
$this->assertTrue(false, 'backup_controller_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof backup_controller_exception);
|
||||
$this->assertEqual($e->errorcode, 'backup_controller_expected');
|
||||
}
|
||||
|
||||
// save and load controller (by backupid). Then compare
|
||||
$bc = new mock_backup_controller4dbops(backup::TYPE_1ACTIVITY, $this->sectionid, backup::FORMAT_MOODLE,
|
||||
backup::INTERACTIVE_NO, backup::MODE_GENERAL, $this->userid);
|
||||
$checksum = $bc->calculate_checksum(); // Calculate checksum
|
||||
$backupid = $bc->get_backupid();
|
||||
$this->assertEqual(strlen($backupid), 32); // is one md5
|
||||
$recid = backup_controller_dbops::save_controller($bc, $checksum); // save controller
|
||||
$this->todelete[] = array('backup_controllers', $recid); // mark this record for deletion
|
||||
$newbc = backup_controller_dbops::load_controller($backupid); // load controller
|
||||
$this->assertTrue($newbc instanceof backup_controller);
|
||||
$newchecksum = $newbc->calculate_checksum();
|
||||
$this->assertEqual($newchecksum, $checksum);
|
||||
|
||||
// try to load non-existing controller
|
||||
try {
|
||||
$bc = backup_controller_dbops::load_controller('1234567890');
|
||||
$this->assertTrue(false, 'backup_dbops_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof backup_dbops_exception);
|
||||
$this->assertEqual($e->errorcode, 'backup_controller_dbops_nonexisting');
|
||||
}
|
||||
|
||||
// backup_ids_temp table tests
|
||||
// If, for any reason table exists, drop it
|
||||
if ($dbman->table_exists('backup_ids_temp')) {
|
||||
$dbman->drop_temp_table(new xmldb_table('backup_ids_temp'));
|
||||
}
|
||||
// Check backup_ids_temp table doesn't exist
|
||||
$this->assertFalse($dbman->table_exists('backup_ids_temp'));
|
||||
// Create and check it exists
|
||||
backup_controller_dbops::create_backup_ids_temp_table('testingid');
|
||||
$this->assertTrue($dbman->table_exists('backup_ids_temp'));
|
||||
// Drop and check it doesn't exists anymore
|
||||
backup_controller_dbops::drop_backup_ids_temp_table('testingid');
|
||||
$this->assertFalse($dbman->table_exists('backup_ids_temp'));
|
||||
}
|
||||
}
|
||||
|
||||
class mock_backup_controller4dbops extends backup_controller {
|
||||
|
||||
/**
|
||||
* Change standard behavior so the checksum is also stored and not onlt calculated
|
||||
*/
|
||||
public function calculate_checksum() {
|
||||
$this->checksum = parent::calculate_checksum();
|
||||
return $this->checksum;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,52 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-tests
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
// Prevent direct access to this file
|
||||
if (!defined('MOODLE_INTERNAL')) {
|
||||
die('Direct access to this script is forbidden.');
|
||||
}
|
||||
|
||||
// Include all the needed stuff
|
||||
//require_once($CFG->dirroot . '/backup/util/helper/backup_helper.class.php');
|
||||
|
||||
/*
|
||||
* dbops tests (all)
|
||||
*/
|
||||
class backup_destinations_test extends UnitTestCase {
|
||||
|
||||
public static $includecoverage = array('backup/util/destinations');
|
||||
public static $excludecoverage = array('backup/util/destinations/simpletest');
|
||||
|
||||
/*
|
||||
* test backup_destination class
|
||||
*/
|
||||
function test_backup_destination() {
|
||||
}
|
||||
|
||||
/*
|
||||
* test backup_destination_osfs class
|
||||
*/
|
||||
function test_backup_destination_osfs() {
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,162 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-factories
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* Non instantiable factory class providing different backup object instances
|
||||
*
|
||||
* This class contains various methods available in order to easily
|
||||
* create different parts of the backup architecture in an easy way
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
abstract class backup_factory {
|
||||
|
||||
public static function get_destination_chain($type, $id, $mode, $execution) {
|
||||
return null;
|
||||
}
|
||||
|
||||
public static function get_logger_chain($interactive, $execution, $backupid) {
|
||||
global $CFG;
|
||||
|
||||
$dfltloglevel = backup::LOG_WARNING; // Default logging level
|
||||
if (debugging('', DEBUG_DEVELOPER)) { // Debug developer raises default logging level
|
||||
$dfltloglevel = backup::LOG_DEBUG;
|
||||
}
|
||||
|
||||
$enabledloggers = array(); // Array to store all enabled loggers
|
||||
|
||||
// Create error_log_logger, observing $CFG->backup_error_log_logger_level
|
||||
$elllevel = isset($CFG->backup_error_log_logger_level) ? $CFG->backup_error_log_logger_level : $dfltloglevel;
|
||||
$enabledloggers[] = new error_log_logger($elllevel);
|
||||
|
||||
// Create output_indented_logger, observing $CFG->backup_output_indented_logger_level and $CFG->debugdisplay,
|
||||
// defaulting to LOG_WARNING. Only if interactive and inmediate
|
||||
if ($CFG->debugdisplay && $interactive == backup::INTERACTIVE_YES && $execution == backup::EXECUTION_INMEDIATE) {
|
||||
$oillevel = isset($CFG->backup_output_indented_logger_level) ? $CFG->backup_output_indented_logger_level : $dfltloglevel;;
|
||||
$enabledloggers[] = new output_indented_logger($oillevel, false, false);
|
||||
}
|
||||
|
||||
// Create file_logger, observing $CFG->backup_file_logger_level
|
||||
check_dir_exists($CFG->dataroot . '/temp/backup', true, true); // need to ensure that temp/backup already exists
|
||||
$fllevel = isset($CFG->backup_file_logger_level) ? $CFG->backup_file_logger_level : $dfltloglevel;
|
||||
$enabledloggers[] = new file_logger($fllevel, true, true, $CFG->dataroot . '/temp/backup/' . $backupid . '.log.html');
|
||||
|
||||
// Create database_logger, observing $CFG->backup_database_logger_level and defaulting to LOG_WARNING
|
||||
// and pointing to the backup_logs table
|
||||
$dllevel = isset($CFG->backup_database_logger_level) ? $CFG->backup_database_logger_level : backup::LOG_WARNING;
|
||||
$columns = array('backupid' => $backupid);
|
||||
$enabledloggers[] = new database_logger($dllevel, 'timecreated', 'level', 'message', 'backup_logs', $columns);
|
||||
|
||||
// Create extra file_logger, observing $CFG->backup_file_logger_extra and $CFG->backup_file_logger_extra_level
|
||||
if (isset($CFG->backup_file_logger_extra)) {
|
||||
$flelevel = isset($CFG->backup_file_logger_extra_level) ? $CFG->backup_file_logger_extra_level : $fllevel;
|
||||
$enabledloggers[] = new file_logger($flelevel, true, true, $CFG->backup_file_logger_extra);
|
||||
}
|
||||
|
||||
// Build the chain
|
||||
$loggers = null;
|
||||
foreach ($enabledloggers as $currentlogger) {
|
||||
if ($loggers == null) {
|
||||
$loggers = $currentlogger;
|
||||
} else {
|
||||
$lastlogger->set_next($currentlogger);
|
||||
}
|
||||
$lastlogger = $currentlogger;
|
||||
}
|
||||
|
||||
return $loggers;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Given one format and one course module id, return the corresponding
|
||||
* backup_xxxx_activity_task()
|
||||
*/
|
||||
public static function get_backup_activity_task($format, $moduleid) {
|
||||
global $CFG, $DB;
|
||||
|
||||
// Check moduleid exists
|
||||
if (!$coursemodule = get_coursemodule_from_id(false, $moduleid)) {
|
||||
throw new backup_task_exception('activity_task_coursemodule_not_found', $moduleid);
|
||||
}
|
||||
$classname = 'backup_' . $coursemodule->modname . '_activity_task';
|
||||
return new $classname($coursemodule->name, $moduleid);
|
||||
}
|
||||
|
||||
/**
|
||||
* Given one format, one block id and, optionally, one moduleid, return the corresponding backup_xxx_block_task()
|
||||
*/
|
||||
public static function get_backup_block_task($format, $blockid, $moduleid = null) {
|
||||
global $CFG, $DB;
|
||||
|
||||
// Check blockid exists
|
||||
if (!$block = $DB->get_record('block_instances', array('id' => $blockid))) {
|
||||
throw new backup_task_exception('block_task_block_instance_not_found', $blockid);
|
||||
}
|
||||
|
||||
// Set default block backup task
|
||||
$classname = 'backup_default_block_task';
|
||||
$testname = 'backup_' . $block->blockname . '_block_task';
|
||||
// If the block has custom backup/restore task class (testname), use it
|
||||
if (class_exists($testname)) {
|
||||
$classname = $testname;
|
||||
}
|
||||
return new $classname($block->blockname, $blockid, $moduleid);
|
||||
}
|
||||
|
||||
/**
|
||||
* Given one format and one section id, return the corresponding backup_section_task()
|
||||
*/
|
||||
public static function get_backup_section_task($format, $sectionid) {
|
||||
global $DB;
|
||||
|
||||
// Check section exists
|
||||
if (!$section = $DB->get_record('course_sections', array('id' => $sectionid))) {
|
||||
throw new backup_task_exception('section_task_section_not_found', $sectionid);
|
||||
}
|
||||
|
||||
return new backup_section_task($section->section, $sectionid);
|
||||
}
|
||||
|
||||
/**
|
||||
* Given one format and one course id, return the corresponding backup_course_task()
|
||||
*/
|
||||
public static function get_backup_course_task($format, $courseid) {
|
||||
global $DB;
|
||||
|
||||
// Check course exists
|
||||
if (!$course = $DB->get_record('course', array('id' => $courseid))) {
|
||||
throw new backup_task_exception('course_task_course_not_found', $courseid);
|
||||
}
|
||||
|
||||
return new backup_course_task($course->shortname, $courseid);
|
||||
}
|
||||
|
||||
/**
|
||||
* Dispatches the creation of the @backup_plan to the proper format builder
|
||||
*/
|
||||
static public function build_plan($controller) {
|
||||
backup_plan_builder::build_plan($controller);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,205 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-tests
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
// Prevent direct access to this file
|
||||
if (!defined('MOODLE_INTERNAL')) {
|
||||
die('Direct access to this script is forbidden.');
|
||||
}
|
||||
|
||||
// Include all the needed stuff
|
||||
require_once($CFG->dirroot . '/backup/util/interfaces/checksumable.class.php');
|
||||
require_once($CFG->dirroot . '/backup/backup.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/loggers/base_logger.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/loggers/error_log_logger.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/loggers/output_indented_logger.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/loggers/database_logger.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/loggers/file_logger.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/factories/backup_factory.class.php');
|
||||
|
||||
/*
|
||||
* backup_factory tests (all)
|
||||
*/
|
||||
class backup_factories_test extends UnitTestCase {
|
||||
|
||||
public static $includecoverage = array('backup/util/factories');
|
||||
public static $excludecoverage = array('backup/util/factories/simpletest');
|
||||
|
||||
protected $errorlogloggerlevel; // To store $CFG->backup_error_log_logger_level
|
||||
protected $fileloggerlevel; // To store level $CFG->backup_file_logger_level
|
||||
protected $databaseloggerlevel; // To store $CFG->backup_database_logger_level
|
||||
protected $outputindentedloggerlevel; // To store $CFG->backup_output_indented_logger_level
|
||||
protected $fileloggerextra; // To store $CFG->backup_file_logger_extra
|
||||
protected $fileloggerlevelextra; // To store level $CFG->backup_file_logger_level_extra
|
||||
protected $debugging; // To store $CFG->debug
|
||||
protected $debugdisplay; // To store $CFG->debugdisplay
|
||||
|
||||
function setUp() {
|
||||
global $CFG;
|
||||
parent::setUp();
|
||||
// Avoid any file logger to be created, we'll restore original settings on tearDown()
|
||||
// Fetch the rest of CFG variables to be able to restore them after tests
|
||||
// and normalize default values
|
||||
$this->errorlogloggerlevel = isset($CFG->backup_error_log_logger_level) ? $CFG->backup_error_log_logger_level : null;
|
||||
$CFG->backup_error_log_logger_level = backup::LOG_NONE;
|
||||
|
||||
$this->outputindentedloggerlevel = isset($CFG->backup_output_indented_logger_level) ? $CFG->backup_output_indented_logger_level : null;
|
||||
$CFG->backup_output_indented_logger_level = backup::LOG_NONE;
|
||||
|
||||
$this->fileloggerlevel = isset($CFG->backup_file_logger_level) ? $CFG->backup_file_logger_level : null;
|
||||
$CFG->backup_file_logger_level = backup::LOG_NONE;
|
||||
|
||||
$this->databaseloggerlevel = isset($CFG->backup_database_logger_level) ? $CFG->backup_database_logger_level : null;
|
||||
$CFG->backup_database_logger_level = backup::LOG_NONE;
|
||||
|
||||
$this->fileloggerextra = isset($CFG->backup_file_logger_extra) ? $CFG->backup_file_logger_extra : null;
|
||||
unset($CFG->backup_file_logger_extra);
|
||||
$this->fileloggerlevelextra = isset($CFG->backup_file_logger_level_extra) ? $CFG->backup_file_logger_level_extra : null;
|
||||
$CFG->backup_file_logger_level_extra = backup::LOG_NONE;
|
||||
|
||||
$this->debugging = isset($CFG->debug) ? $CFG->debug : null;
|
||||
$this->debugdisplay = isset($CFG->debugdisplay) ? $CFG->debugdisplay : null;
|
||||
}
|
||||
|
||||
function tearDown() {
|
||||
global $CFG;
|
||||
// Restore original file_logger levels
|
||||
if ($this->errorlogloggerlevel !== null) {
|
||||
$CFG->backup_error_log_logger_level = $this->errorlogloggerlevel;
|
||||
} else {
|
||||
unset($CFG->backup_error_log_logger_level);
|
||||
}
|
||||
|
||||
if ($this->outputindentedloggerlevel !== null) {
|
||||
$CFG->backup_output_indented_logger_level = $this->outputindentedloggerlevel;
|
||||
} else {
|
||||
unset($CFG->backup_output_indented_logger_level);
|
||||
}
|
||||
|
||||
if ($this->fileloggerlevel !== null) {
|
||||
$CFG->backup_file_logger_level = $this->fileloggerlevel;
|
||||
} else {
|
||||
unset($CFG->backup_file_logger_level);
|
||||
}
|
||||
|
||||
if ($this->databaseloggerlevel !== null) {
|
||||
$CFG->backup_database_logger_level = $this->databaseloggerlevel;
|
||||
} else {
|
||||
unset($CFG->backup_database_logger_level);
|
||||
}
|
||||
|
||||
if ($this->fileloggerextra !== null) {
|
||||
$CFG->backup_file_logger_extra = $this->fileloggerextra;
|
||||
} else {
|
||||
unset($CFG->backup_file_logger_extra);
|
||||
}
|
||||
if ($this->fileloggerlevelextra !== null) {
|
||||
$CFG->backup_file_logger_level_extra = $this->fileloggerlevelextra;
|
||||
} else {
|
||||
unset($CFG->backup_file_logger_level_extra);
|
||||
}
|
||||
// Restore the rest of $CFG settings
|
||||
if ($this->debugging !== null) {
|
||||
$CFG->debug = $this->debugging;
|
||||
} else {
|
||||
unset($CFG->debug);
|
||||
}
|
||||
if ($this->debugdisplay !== null) {
|
||||
$CFG->debugdisplay = $this->debugdisplay;
|
||||
} else {
|
||||
unset($CFG->debugdisplay);
|
||||
}
|
||||
parent::tearDown();
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* test get_logger_chain() method
|
||||
*/
|
||||
function test_backup_factory() {
|
||||
global $CFG;
|
||||
|
||||
// Default instantiate, all levels = backup::LOG_NONE
|
||||
// With debugdisplay enabled
|
||||
$CFG->debugdisplay = true;
|
||||
$logger1 = backup_factory::get_logger_chain(backup::INTERACTIVE_YES, backup::EXECUTION_INMEDIATE, 'test');
|
||||
$this->assertTrue($logger1 instanceof error_log_logger); // 1st logger is error_log_logger
|
||||
$this->assertEqual($logger1->get_level(), backup::LOG_NONE);
|
||||
$logger2 = $logger1->get_next();
|
||||
$this->assertTrue($logger2 instanceof output_indented_logger); // 2nd logger is output_indented_logger
|
||||
$this->assertEqual($logger2->get_level(), backup::LOG_NONE);
|
||||
$logger3 = $logger2->get_next();
|
||||
$this->assertTrue($logger3 instanceof file_logger); // 3rd logger is file_logger
|
||||
$this->assertEqual($logger3->get_level(), backup::LOG_NONE);
|
||||
$logger4 = $logger3->get_next();
|
||||
$this->assertTrue($logger4 instanceof database_logger); // 4th logger is database_logger
|
||||
$this->assertEqual($logger4->get_level(), backup::LOG_NONE);
|
||||
$logger5 = $logger4->get_next();
|
||||
$this->assertTrue($logger5 === null);
|
||||
|
||||
// With debugdisplay disabled
|
||||
$CFG->debugdisplay = false;
|
||||
$logger1 = backup_factory::get_logger_chain(backup::INTERACTIVE_YES, backup::EXECUTION_INMEDIATE, 'test');
|
||||
$this->assertTrue($logger1 instanceof error_log_logger); // 1st logger is error_log_logger
|
||||
$this->assertEqual($logger1->get_level(), backup::LOG_NONE);
|
||||
$logger2 = $logger1->get_next();
|
||||
$this->assertTrue($logger2 instanceof file_logger); // 2nd logger is file_logger
|
||||
$this->assertEqual($logger2->get_level(), backup::LOG_NONE);
|
||||
$logger3 = $logger2->get_next();
|
||||
$this->assertTrue($logger3 instanceof database_logger); // 3rd logger is database_logger
|
||||
$this->assertEqual($logger3->get_level(), backup::LOG_NONE);
|
||||
$logger4 = $logger3->get_next();
|
||||
$this->assertTrue($logger4 === null);
|
||||
|
||||
// Instantiate with debugging enabled and $CFG->backup_error_log_logger_level not set
|
||||
$CFG->debugdisplay = true;
|
||||
$CFG->debug = DEBUG_DEVELOPER;
|
||||
unset($CFG->backup_error_log_logger_level);
|
||||
$logger1 = backup_factory::get_logger_chain(backup::INTERACTIVE_YES, backup::EXECUTION_INMEDIATE, 'test');
|
||||
$this->assertTrue($logger1 instanceof error_log_logger); // 1st logger is error_log_logger
|
||||
$this->assertEqual($logger1->get_level(), backup::LOG_DEBUG); // and must have backup::LOG_DEBUG level
|
||||
// Set $CFG->backup_error_log_logger_level to backup::LOG_WARNING and test again
|
||||
$CFG->backup_error_log_logger_level = backup::LOG_WARNING;
|
||||
$logger1 = backup_factory::get_logger_chain(backup::INTERACTIVE_YES, backup::EXECUTION_INMEDIATE, 'test');
|
||||
$this->assertTrue($logger1 instanceof error_log_logger); // 1st logger is error_log_logger
|
||||
$this->assertEqual($logger1->get_level(), backup::LOG_WARNING); // and must have backup::LOG_WARNING level
|
||||
|
||||
// Instantiate in non-interactive mode, output_indented_logger must be out
|
||||
$logger1 = backup_factory::get_logger_chain(backup::INTERACTIVE_NO, backup::EXECUTION_INMEDIATE, 'test');
|
||||
$logger2 = $logger1->get_next();
|
||||
$this->assertTrue($logger2 instanceof file_logger); // 2nd logger is file_logger (output_indented_logger skiped)
|
||||
|
||||
// Define extra file logger and instantiate, should be 5th and last logger
|
||||
$CFG->backup_file_logger_extra = '/tmp/test.html';
|
||||
$CFG->backup_file_logger_level_extra = backup::LOG_NONE;
|
||||
$logger1 = backup_factory::get_logger_chain(backup::INTERACTIVE_YES, backup::EXECUTION_INMEDIATE, 'test');
|
||||
$logger2 = $logger1->get_next();
|
||||
$logger3 = $logger2->get_next();
|
||||
$logger4 = $logger3->get_next();
|
||||
$logger5 = $logger4->get_next();
|
||||
$this->assertTrue($logger5 instanceof file_logger); // 5rd logger is file_logger (extra)
|
||||
$this->assertEqual($logger3->get_level(), backup::LOG_NONE);
|
||||
$logger6 = $logger5->get_next();
|
||||
$this->assertTrue($logger6 === null);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,104 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-helper
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* Helper class for anonymization of data
|
||||
*
|
||||
* This functions includes a collection of methods that are invoked
|
||||
* from the backup process when anonymization services have been
|
||||
* requested.
|
||||
*
|
||||
* The name of each method must be "process_parentname_name", as defined
|
||||
* byt the @anonymizer_final_element final element class, where
|
||||
* parentname is the name ob the parent tag and name the name of the tag
|
||||
* contents to be anonymized (i.e. process_user_username) with one param
|
||||
* being the value to anonymize.
|
||||
*
|
||||
* Note: current implementation of anonymization is pretty simple, just some
|
||||
* sequential values are used. If we want more elaborated generation, it
|
||||
* can be replaced later (using generators or wathever). Don't forget we must
|
||||
* ensure some fields (username, idnumber, email) are unique always.
|
||||
*
|
||||
* TODO: Improve to use more advanced anonymization
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
class backup_anonymizer_helper {
|
||||
|
||||
public static function process_user_auth($value) {
|
||||
return 'manual'; // Set them to manual always
|
||||
}
|
||||
|
||||
public static function process_user_username($value) {
|
||||
static $counter = 0;
|
||||
$counter++;
|
||||
return 'anon' . $counter; // Just a counter
|
||||
}
|
||||
|
||||
public static function process_user_idnumber($value) {
|
||||
return ''; // Just blank it
|
||||
}
|
||||
|
||||
public static function process_user_firstname($value) {
|
||||
static $counter = 0;
|
||||
$counter++;
|
||||
return 'anonfirstname' . $counter; // Just a counter
|
||||
}
|
||||
|
||||
public static function process_user_lastname($value) {
|
||||
static $counter = 0;
|
||||
$counter++;
|
||||
return 'anonlastname' . $counter; // Just a counter
|
||||
}
|
||||
|
||||
public static function process_user_email($value) {
|
||||
static $counter = 0;
|
||||
$counter++;
|
||||
return 'anon' . $counter . '@doesntexist.com'; // Just a counter
|
||||
}
|
||||
|
||||
public static function process_user_emailstop($value) {
|
||||
return 1; // Stop email for anon users
|
||||
}
|
||||
|
||||
public static function process_user_lastip($value) {
|
||||
return '127.0.0.1'; // Set lastip to localhost
|
||||
}
|
||||
|
||||
public static function process_user_picture($value) {
|
||||
return 0; // No picture
|
||||
}
|
||||
|
||||
public static function process_user_url($value) {
|
||||
return ''; // No url
|
||||
}
|
||||
|
||||
public static function process_user_description($value) {
|
||||
return ''; // No user description
|
||||
}
|
||||
|
||||
public static function process_user_imagealt($value) {
|
||||
return ''; // No user imagealt
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,66 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-helper
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* Implementation of iterator interface to work with common arrays
|
||||
*
|
||||
* This class implements the iterator interface in order to provide one
|
||||
* common API to be used in backup and restore when, within the same code,
|
||||
* both database recordsets (already iteratorors) and arrays of information
|
||||
* are used.
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
class backup_array_iterator implements iterator {
|
||||
|
||||
private $arr;
|
||||
|
||||
public function __construct(array $arr) {
|
||||
$this->arr = $arr;
|
||||
}
|
||||
|
||||
public function rewind() {
|
||||
return reset($this->arr);
|
||||
}
|
||||
|
||||
public function current() {
|
||||
return current($this->arr);
|
||||
}
|
||||
|
||||
public function key() {
|
||||
return key($this->arr);
|
||||
}
|
||||
|
||||
public function next() {
|
||||
return next($this->arr);
|
||||
}
|
||||
|
||||
public function valid() {
|
||||
return key($this->arr) !== null;
|
||||
}
|
||||
|
||||
public function close() { // Added to provide compatibility with recordset iterators
|
||||
reset($this->arr); // Just reset the array
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,136 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-helper
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* Collection of helper functions to handle files
|
||||
*
|
||||
* This class implements various functions related with moodle storage
|
||||
* handling (get file from storage, put it there...) and some others
|
||||
* to use the zip/unzip facilities.
|
||||
*
|
||||
* Note: It's supposed that, some day, files implementation will offer
|
||||
* those functions without needeing to know storage internals at all.
|
||||
* That day, we'll move related functions here to proper file api ones.
|
||||
*
|
||||
* TODO: Unse File API facilities when available instead of har-coded
|
||||
* storage access here.
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
class backup_file_manager {
|
||||
|
||||
/**
|
||||
* Returns the full path to the storage base dir
|
||||
*/
|
||||
public static function get_moodle_storage_base_dir() {
|
||||
global $CFG;
|
||||
|
||||
if (isset($CFG->filedir)) {
|
||||
return $CFG->filedir;
|
||||
} else {
|
||||
return $CFG->dataroot.'/filedir';
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the full path to backup storage base dir
|
||||
*/
|
||||
public static function get_backup_storage_base_dir($backupid) {
|
||||
global $CFG;
|
||||
|
||||
return $CFG->dataroot . '/temp/backup/' . $backupid . '/files';
|
||||
}
|
||||
|
||||
/**
|
||||
* Given one file content hash, returns the path (relative to filedir)
|
||||
* to the file.
|
||||
*/
|
||||
public static function get_content_file_location($contenthash) {
|
||||
$l1 = $contenthash[0].$contenthash[1];
|
||||
$l2 = $contenthash[2].$contenthash[3];
|
||||
$l3 = $contenthash[4].$contenthash[5];
|
||||
return "$l1/$l2/$l3/$contenthash";
|
||||
}
|
||||
|
||||
/**
|
||||
* Copy one file from moodle storage to backup storage
|
||||
*/
|
||||
public static function copy_file_moodle2backup($backupid, $filerecorid) {
|
||||
global $DB;
|
||||
|
||||
// Normalise param
|
||||
if (!is_object($filerecorid)) {
|
||||
$filerecorid = $DB->get_record('files', array('id' => $filerecorid));
|
||||
}
|
||||
|
||||
// Directory, nothing to do
|
||||
if ($filerecorid->filename === '.') {
|
||||
return;
|
||||
}
|
||||
|
||||
// Calculate source and target paths (use same subdirs strategy for both)
|
||||
$sourcefilepath = self::get_moodle_storage_base_dir() . '/' .
|
||||
self::get_content_file_location($filerecorid->contenthash);
|
||||
$targetfilepath = self::get_backup_storage_base_dir($backupid) . '/' .
|
||||
self::get_content_file_location($filerecorid->contenthash);
|
||||
|
||||
// Check source exists and is readable
|
||||
if (!file_exists($sourcefilepath) || !is_readable($sourcefilepath)) {
|
||||
throw new backup_helper_exception('cannot_read_file_from_filepool', $sourcefilepath);
|
||||
}
|
||||
|
||||
// Create target dir if necessary
|
||||
if (!file_exists(dirname($targetfilepath))) {
|
||||
if (!check_dir_exists(dirname($targetfilepath), true, true)) {
|
||||
throw new backup_helper_exception('cannot_create_directory', dirname($targetfilepath));
|
||||
}
|
||||
}
|
||||
|
||||
// And copy the file (if doesn't exist already)
|
||||
if (!file_exists($targetfilepath)) {
|
||||
if (!copy($sourcefilepath, $targetfilepath)) {
|
||||
throw new backup_helper_exception('cannot_copy_file', $sourcefilepath, $targetfilepath);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Copy one file from backup storage to moodle storage
|
||||
*/
|
||||
public static function copy_file_backup2moodle($backupid, $filerecorid) {
|
||||
global $DB;
|
||||
|
||||
// Normalise param
|
||||
if (!is_object($filerecorid)) {
|
||||
$filerecorid = $DB->get_record('files', array('id' => $filerecorid));
|
||||
}
|
||||
|
||||
// Directory, nothing to do
|
||||
if ($filerecorid->filename === '.') {
|
||||
return;
|
||||
}
|
||||
|
||||
// TODO: Finish this on restore
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,58 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-helper
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* Non instantiable helper class providing general helper methods for backup/restore
|
||||
*
|
||||
* This class contains various general helper static methods available for backup/restore
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
abstract class backup_general_helper extends backup_helper {
|
||||
|
||||
/**
|
||||
* Calculate one checksum for any array/object. Works recursively
|
||||
*/
|
||||
public static function array_checksum_recursive($arr) {
|
||||
|
||||
$checksum = ''; // Init checksum
|
||||
|
||||
// Check we are going to process one array always, objects must be cast before
|
||||
if (!is_array($arr)) {
|
||||
throw new backup_helper_exception('array_expected');
|
||||
}
|
||||
foreach ($arr as $key => $value) {
|
||||
if ($value instanceof checksumable) {
|
||||
$checksum = md5($checksum . '-' . $key . '-' . $value->calculate_checksum());
|
||||
} else if (is_object($value)) {
|
||||
$checksum = md5($checksum . '-' . $key . '-' . self::array_checksum_recursive((array)$value));
|
||||
} else if (is_array($value)) {
|
||||
$checksum = md5($checksum . '-' . $key . '-' . self::array_checksum_recursive($value));
|
||||
} else {
|
||||
$checksum = md5($checksum . '-' . $key . '-' . $value);
|
||||
}
|
||||
}
|
||||
return $checksum;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,176 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-helper
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* Base abstract class for all the helper classes providing various operations
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
abstract class backup_helper {
|
||||
|
||||
/**
|
||||
* Given one backupid, create all the needed dirs to have one backup temp dir available
|
||||
*/
|
||||
static public function check_and_create_backup_dir($backupid) {
|
||||
global $CFG;
|
||||
if (!check_dir_exists($CFG->dataroot . '/temp/backup/' . $backupid, true, true)) {
|
||||
throw new backup_helper_exception('cannot_create_backup_temp_dir');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Given one backupid, ensure its temp dir is completelly empty
|
||||
*/
|
||||
static public function clear_backup_dir($backupid) {
|
||||
global $CFG;
|
||||
if (!self::delete_dir_contents($CFG->dataroot . '/temp/backup/' . $backupid)) {
|
||||
throw new backup_helper_exception('cannot_empty_backup_temp_dir');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Given one fullpath to directory, delete its contents recursively
|
||||
* Copied originally from somewhere in the net.
|
||||
* TODO: Modernise this
|
||||
*/
|
||||
static public function delete_dir_contents($dir, $excludeddir='') {
|
||||
if (!is_dir($dir)) {
|
||||
// if we've been given a directory that doesn't exist yet, return true.
|
||||
// this happens when we're trying to clear out a course that has only just
|
||||
// been created.
|
||||
return true;
|
||||
}
|
||||
$slash = "/";
|
||||
|
||||
// Create arrays to store files and directories
|
||||
$dir_files = array();
|
||||
$dir_subdirs = array();
|
||||
|
||||
// Make sure we can delete it
|
||||
chmod($dir, 0777);
|
||||
|
||||
if ((($handle = opendir($dir))) == false) {
|
||||
// The directory could not be opened
|
||||
return false;
|
||||
}
|
||||
|
||||
// Loop through all directory entries, and construct two temporary arrays containing files and sub directories
|
||||
while (false !== ($entry = readdir($handle))) {
|
||||
if (is_dir($dir. $slash .$entry) && $entry != ".." && $entry != "." && $entry != $excludeddir) {
|
||||
$dir_subdirs[] = $dir. $slash .$entry;
|
||||
|
||||
} else if ($entry != ".." && $entry != "." && $entry != $excludeddir) {
|
||||
$dir_files[] = $dir. $slash .$entry;
|
||||
}
|
||||
}
|
||||
|
||||
// Delete all files in the curent directory return false and halt if a file cannot be removed
|
||||
for ($i=0; $i<count($dir_files); $i++) {
|
||||
chmod($dir_files[$i], 0777);
|
||||
if (((unlink($dir_files[$i]))) == false) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
// Empty sub directories and then remove the directory
|
||||
for ($i=0; $i<count($dir_subdirs); $i++) {
|
||||
chmod($dir_subdirs[$i], 0777);
|
||||
if (self::delete_dir_contents($dir_subdirs[$i]) == false) {
|
||||
return false;
|
||||
} else {
|
||||
if (remove_dir($dir_subdirs[$i]) == false) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Close directory
|
||||
closedir($handle);
|
||||
|
||||
// Success, every thing is gone return true
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Delete all the temp dirs older than the time specified
|
||||
*/
|
||||
static public function delete_old_backup_dirs($deletefrom) {
|
||||
global $CFG;
|
||||
|
||||
$status = true;
|
||||
// Get files and directories in the temp backup dir witout descend
|
||||
$list = get_directory_list($CFG->dataroot . '/temp/backup', '', false, true, true);
|
||||
foreach ($list as $file) {
|
||||
$file_path = $CFG->dataroot . '/temp/backup/' . $file;
|
||||
$moddate = filemtime($file_path);
|
||||
if ($status && $moddate < $deletefrom) {
|
||||
//If directory, recurse
|
||||
if (is_dir($file_path)) {
|
||||
$status = self::delete_dir_contents($file_path);
|
||||
//There is nothing, delete the directory itself
|
||||
if ($status) {
|
||||
$status = rmdir($file_path);
|
||||
}
|
||||
//If file
|
||||
} else {
|
||||
unlink($file_path);
|
||||
}
|
||||
}
|
||||
}
|
||||
if (!$status) {
|
||||
throw new backup_helper_exception('problem_deleting_old_backup_temp_dirs');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* This function will be invoked by any log() method in backup/restore, acting
|
||||
* as a simple forwarder to the standard loggers but also, if the $display
|
||||
* parameter is true, supporting translation via get_string() and sending to
|
||||
* standard output.
|
||||
*/
|
||||
static public function log($message, $level, $a, $depth, $display, $logger) {
|
||||
// Send to standard loggers
|
||||
$logmessage = $message;
|
||||
$options = empty($depth) ? array() : array('depth' => $depth);
|
||||
if (!empty($a)) {
|
||||
$logmessage = $logmessage . ' ' . implode(', ', (array)$a);
|
||||
}
|
||||
$logger->process($logmessage, $level, $options);
|
||||
|
||||
// If $display specified, send translated string to output_controller
|
||||
if ($display) {
|
||||
output_controller::get_instance()->output($message, 'backup', $a, $depth);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Exception class used by all the @helper stuff
|
||||
*/
|
||||
class backup_helper_exception extends backup_exception {
|
||||
|
||||
public function __construct($errorcode, $a=NULL, $debuginfo=null) {
|
||||
parent::__construct($errorcode, $a, $debuginfo);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,55 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-helper
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* Implementation of iterator interface to work without information
|
||||
*
|
||||
* This class implementes the iterator but does nothing (as far as it
|
||||
* doesn't handle real data at all). It's here to provide one common
|
||||
* API when we want to skip some elements from structure, while also
|
||||
* working with array/db iterators at the same time.
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
class backup_null_iterator implements iterator {
|
||||
|
||||
public function rewind() {
|
||||
}
|
||||
|
||||
public function current() {
|
||||
}
|
||||
|
||||
public function key() {
|
||||
}
|
||||
|
||||
public function next() {
|
||||
}
|
||||
|
||||
public function valid() {
|
||||
return false;
|
||||
}
|
||||
|
||||
public function close() { // Added to provide compatibility with recordset iterators
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,55 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-tests
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
// Prevent direct access to this file
|
||||
if (!defined('MOODLE_INTERNAL')) {
|
||||
die('Direct access to this script is forbidden.');
|
||||
}
|
||||
|
||||
// Include all the needed stuff
|
||||
require_once($CFG->dirroot . '/backup/util/interfaces/checksumable.class.php');
|
||||
require_once($CFG->dirroot . '/backup/backup.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/helper/backup_helper.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/helper/backup_general_helper.class.php');
|
||||
|
||||
/*
|
||||
* backup_helper tests (all)
|
||||
*/
|
||||
class backup_helper_test extends UnitTestCase {
|
||||
|
||||
public static $includecoverage = array('backup/util/helper');
|
||||
public static $excludecoverage = array('backup/util/helper/simpletest');
|
||||
|
||||
/*
|
||||
* test backup_helper class
|
||||
*/
|
||||
function test_backup_helper() {
|
||||
}
|
||||
|
||||
/*
|
||||
* test backup_general_helper class
|
||||
*/
|
||||
function test_backup_general_helper() {
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,88 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-includes
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
// Prevent direct access to this file
|
||||
if (!defined('MOODLE_INTERNAL')) {
|
||||
die('Direct access to this script is forbidden.');
|
||||
}
|
||||
|
||||
// Include all the backup needed stuff
|
||||
require_once($CFG->dirroot . '/backup/util/interfaces/checksumable.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/interfaces/executable.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/interfaces/processable.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/interfaces/annotable.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/interfaces/loggable.class.php');
|
||||
require_once($CFG->dirroot . '/backup/backup.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/output/output_controller.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/factories/backup_factory.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/dbops/backup_dbops.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/dbops/backup_structure_dbops.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/dbops/backup_controller_dbops.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/dbops/backup_plan_dbops.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/checks/backup_check.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/structure/base_atom.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/structure/base_attribute.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/structure/base_final_element.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/structure/base_nested_element.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/structure/base_optigroup.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/structure/base_processor.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/structure/backup_attribute.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/structure/backup_final_element.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/structure/backup_nested_element.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/structure/backup_optigroup.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/structure/backup_optigroup_element.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/structure/backup_structure_processor.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/helper/backup_helper.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/helper/backup_general_helper.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/helper/backup_null_iterator.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/helper/backup_array_iterator.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/helper/backup_anonymizer_helper.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/helper/backup_file_manager.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/xml/xml_writer.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/xml/output/xml_output.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/xml/output/file_xml_output.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/xml/contenttransformer/xml_contenttransformer.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/loggers/base_logger.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/loggers/error_log_logger.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/loggers/file_logger.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/loggers/database_logger.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/loggers/output_indented_logger.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/settings/base_setting.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/settings/backup_setting.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/settings/root/root_backup_setting.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/settings/activity/activity_backup_setting.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/settings/section/section_backup_setting.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/settings/course/course_backup_setting.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/plan/base_plan.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/plan/backup_plan.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/plan/base_task.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/plan/backup_task.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/plan/base_step.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/plan/backup_step.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/plan/backup_structure_step.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/plan/backup_execution_step.class.php');
|
||||
require_once($CFG->dirroot . '/backup/controller/backup_controller.class.php');
|
||||
|
||||
// And some moodle stuff too
|
||||
require_once($CFG->libdir.'/gradelib.php');
|
||||
@@ -0,0 +1,41 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-interfaces
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* Interface to apply to all the classes we want to be annotable in the backup/restore process
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
interface annotable {
|
||||
|
||||
/**
|
||||
* This function implements the annotation of the current value associating it with $itemname
|
||||
*/
|
||||
public function annotate($backupid);
|
||||
|
||||
/**
|
||||
* This function sets the $itemname to be used when annotating
|
||||
*/
|
||||
public function set_annotation_item($itemname);
|
||||
}
|
||||
@@ -0,0 +1,49 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-interfaces
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* Interface to apply to all the classes we want to calculate their checksum
|
||||
*
|
||||
* Each class being part of @backup_controller will implement this interface
|
||||
* in order to be able to calculate one objective and unique checksum for
|
||||
* the whole controller class.
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
interface checksumable {
|
||||
|
||||
/**
|
||||
* This function will return one unique and stable checksum for one instance
|
||||
* of the class implementing it. It's each implementation responsibility to
|
||||
* do it recursively if needed and use optional store (caching) of the checksum if
|
||||
* necessary/possible
|
||||
*/
|
||||
public function calculate_checksum();
|
||||
|
||||
/**
|
||||
* Given one checksum, returns if matches object's checksum (true) or no (false)
|
||||
*/
|
||||
public function is_checksum_correct($checksum);
|
||||
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-interfaces
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* Interface to apply to all the classes we want to be executable (plan/part/task)
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
interface executable {
|
||||
|
||||
/**
|
||||
* This function will perform all the actions necessary to achieve the execution
|
||||
* of the plan/part/task
|
||||
*/
|
||||
public function execute();
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-interfaces
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* Interface to apply to all the classes we want to be able to write to logs
|
||||
*
|
||||
* Any class being part of one backup/restore and needing to senf informatio
|
||||
* to logs must implement this interface (and have access to the @logger
|
||||
* instantiated object)
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
interface loggable {
|
||||
|
||||
/**
|
||||
* This function will be responsible for handling the params, and to call
|
||||
* to the corresponding logger->process() once all modifications in params
|
||||
* have been performed
|
||||
*/
|
||||
public function log($message, $level, $a = null, $depth = null, $display = false);
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-interfaces
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* Interface to apply to all the classes we want to be processable by one @base_processor
|
||||
*
|
||||
* Any class being part of one backup/restore structure must implement this interface
|
||||
* in order to be able to be processed by a given processor (visitor pattern)
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
interface processable {
|
||||
|
||||
/**
|
||||
* This function will call to the corresponding processor method in other to
|
||||
* make them perform the desired tasks.
|
||||
*/
|
||||
public function process($processor);
|
||||
}
|
||||
@@ -0,0 +1,166 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-logger
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* Base abstract class for all the loggers to be used in backup/restore
|
||||
*
|
||||
* Any message passed will be processed by all the loggers in the defined chain
|
||||
* (note some implementations may be not strictly "loggers" but classes performing
|
||||
* other sort of tasks (avoiding browser/php timeouts, painters...). One simple 1-way
|
||||
* basic chain of commands/responsibility pattern.
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
abstract class base_logger implements checksumable {
|
||||
|
||||
protected $level; // minimum level of logging this logger must handle (valid level from @backup class)
|
||||
protected $showdate; // flag to decide if the logger must output the date (true) or no (false)
|
||||
protected $showlevel; // flag to decide if the logger must output the level (true) or no (false)
|
||||
protected $next; // next logger in the chain
|
||||
|
||||
public function __construct($level, $showdate = false, $showlevel = false) {
|
||||
// TODO: check level is correct
|
||||
$this->level = $level;
|
||||
$this->showdate = $showdate;
|
||||
$this->showlevel = $showlevel;
|
||||
$this->next = null;
|
||||
}
|
||||
|
||||
public final function set_next($next) {
|
||||
// TODO: Check is a base logger
|
||||
|
||||
// TODO: Check next hasn't been set already
|
||||
|
||||
// TODO: Avoid circular dependencies
|
||||
if ($this->is_circular_reference($next)) {
|
||||
$a = new stdclass();
|
||||
$a->alreadyinchain = get_class($this);
|
||||
$a->main = get_class($next);
|
||||
throw new base_logger_exception('logger_circular_reference', $a);
|
||||
}
|
||||
|
||||
$this->next = $next;
|
||||
}
|
||||
|
||||
public function get_next() {
|
||||
return $this->next;
|
||||
}
|
||||
|
||||
public function get_level() {
|
||||
return $this->level;
|
||||
}
|
||||
|
||||
// checksumable interface methods
|
||||
|
||||
public function calculate_checksum() {
|
||||
// Checksum is a simple md5 hash of classname, level and
|
||||
// on each specialised logger, its own atrributes
|
||||
// Not following the chain at all.
|
||||
return md5(get_class($this) . '-' . $this->level);
|
||||
}
|
||||
|
||||
public function is_checksum_correct($checksum) {
|
||||
return $this->calculate_checksum() === $checksum;
|
||||
}
|
||||
|
||||
// Protected API starts here
|
||||
|
||||
abstract protected function action($message, $level, $options = null); // To implement
|
||||
|
||||
public final function process($message, $level, $options = null) {
|
||||
$result = true;
|
||||
if ($this->level != backup::LOG_NONE && $this->level >= $level) { // Perform action conditionally
|
||||
$result = $this->action($message, $level, $options);
|
||||
}
|
||||
if ($result === false) { // Something was wrong, stop the chain
|
||||
return $result;
|
||||
}
|
||||
if ($this->next !== null) { // The chain continues being processed
|
||||
$result = $this->next->process($message, $level, $options);
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
|
||||
protected function is_circular_reference($obj) {
|
||||
// Get object all nexts recursively and check if $this is already there
|
||||
$nexts = $obj->get_nexts();
|
||||
if (array_key_exists($this->calculate_checksum(), $nexts) || $obj == $this) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
protected function get_nexts() {
|
||||
$nexts = array();
|
||||
if ($this->next !== null) {
|
||||
$nexts[$this->next->calculate_checksum()] = $this->next->calculate_checksum();
|
||||
$nexts = array_merge($nexts, $this->next->get_nexts());
|
||||
}
|
||||
return $nexts;
|
||||
}
|
||||
|
||||
protected function get_datestr() {
|
||||
return userdate(time(), '%c');
|
||||
}
|
||||
|
||||
protected function get_levelstr($level) {
|
||||
$result = 'undefined';
|
||||
switch ($level) {
|
||||
case backup::LOG_ERROR:
|
||||
$result = 'error';
|
||||
break;
|
||||
case backup::LOG_WARNING:
|
||||
$result = 'warn';
|
||||
break;
|
||||
case backup::LOG_INFO:
|
||||
$result = 'info';
|
||||
break;
|
||||
case backup::LOG_DEBUG:
|
||||
$result = 'debug';
|
||||
break;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
|
||||
protected function get_prefix($level, $options) {
|
||||
$prefix = '';
|
||||
if ($this->showdate) {
|
||||
$prefix .= '[' . $this->get_datestr() . '] ';
|
||||
}
|
||||
if ($this->showlevel) {
|
||||
$prefix .= '[' . $this->get_levelstr($level) . '] ';
|
||||
}
|
||||
return $prefix;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Exception class used by all the @base_logger stuff
|
||||
*/
|
||||
class base_logger_exception extends backup_exception {
|
||||
|
||||
public function __construct($errorcode, $a=NULL, $debuginfo=null) {
|
||||
parent::__construct($errorcode, $a, $debuginfo);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,74 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-logger
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* Logger implementation that sends messages to database
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
class database_logger extends base_logger {
|
||||
|
||||
protected $datecol; // Name of the field where the timestamp will be stored
|
||||
protected $levelcol; // Name of the field where the level of the message will be stored
|
||||
protected $messagecol; // Name of the field where the message will be stored
|
||||
protected $logtable; // Table, without prefix where information must be logged
|
||||
protected $columns; // Array of columns and values to set in all actions logged
|
||||
|
||||
// Protected API starts here
|
||||
|
||||
public function __construct($level, $datecol = false, $levelcol = false, $messagecol = null, $logtable = null, $columns = null) {
|
||||
// TODO check $datecol exists
|
||||
// TODO check $levelcol exists
|
||||
// TODO check $logtable exists
|
||||
// TODO check $messagecol exists
|
||||
// TODO check all $columns exist
|
||||
$this->datecol = $datecol;
|
||||
$this->levelcol = $levelcol;
|
||||
$this->messagecol = $messagecol;
|
||||
$this->logtable = $logtable;
|
||||
$this->columns = $columns;
|
||||
parent::__construct($level, (bool)$datecol, (bool)$levelcol);
|
||||
}
|
||||
|
||||
protected function action($message, $level, $options = null) {
|
||||
$columns = $this->columns;
|
||||
if ($this->datecol) {
|
||||
$columns[$this->datecol] = time();
|
||||
}
|
||||
if ($this->levelcol) {
|
||||
$columns[$this->levelcol] = $level;
|
||||
}
|
||||
$columns[$this->messagecol] = $message; //TODO: should this be cleaned?
|
||||
return $this->insert_log_record($this->logtable, $columns);
|
||||
}
|
||||
|
||||
protected function insert_log_record($table, $columns) {
|
||||
// TODO: Allow to use an alternate connection (created in constructor)
|
||||
// based in some CFG->backup_database_logger_newconn = true in order
|
||||
// to preserve DB logs if the whole backup/restore transaction is
|
||||
// rollback
|
||||
global $DB;
|
||||
return $DB->insert_record($this->logtable, $columns, false); // Don't return inserted id
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-logger
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* Logger implementation that sends messages to error_log()
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
class error_log_logger extends base_logger {
|
||||
|
||||
// Protected API starts here
|
||||
|
||||
protected function action($message, $level, $options = null) {
|
||||
return error_log($message);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,85 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-logger
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* Logger implementation that sends indented messages (depth option) to one file
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
class file_logger extends base_logger {
|
||||
|
||||
protected $fullpath; // Full path to OS file where contents will be stored
|
||||
protected $fhandle; // File handle where all write operations happen
|
||||
|
||||
public function __construct($level, $showdate = false, $showlevel = false, $fullpath = null) {
|
||||
if (empty($fullpath)) {
|
||||
throw new base_logger_exception('missing_fullpath_parameter', $fullpath);
|
||||
}
|
||||
if (!is_writable(dirname($fullpath))) {
|
||||
throw new base_logger_exception('file_not_writable', $fullpath);
|
||||
}
|
||||
// Open the OS file for writing (append)
|
||||
$this->fullpath = $fullpath;
|
||||
if ($level > backup::LOG_NONE) { // Only create the file if we are going to log something
|
||||
if (! $this->fhandle = fopen($this->fullpath, 'a')) {
|
||||
throw new base_logger_exception('error_opening_file', $fullpath);
|
||||
}
|
||||
}
|
||||
parent::__construct($level, $showdate, $showlevel);
|
||||
}
|
||||
|
||||
public function __destruct() {
|
||||
@fclose($this->fhandle); // Blindy close the file handler (no exceptions in destruct)
|
||||
}
|
||||
|
||||
public function __sleep() {
|
||||
@fclose($this->fhandle); // Blindy close the file handler before serialization
|
||||
return array('level', 'showdate', 'showlevel', 'next', 'fullpath');
|
||||
}
|
||||
|
||||
public function __wakeup() {
|
||||
if ($this->level > backup::LOG_NONE) { // Only create the file if we are going to log something
|
||||
if (! $this->fhandle = fopen($this->fullpath, 'a')) {
|
||||
throw new base_logger_exception('error_opening_file', $fullpath);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Protected API starts here
|
||||
|
||||
protected function action($message, $level, $options = null) {
|
||||
$prefix = $this->get_prefix($level, $options);
|
||||
$depth = isset($options['depth']) ? $options['depth'] : 0;
|
||||
// Depending of the type (extension of the file), format differently
|
||||
if (substr($this->fullpath, -5) !== '.html') {
|
||||
$content = $prefix . str_repeat(' ', $depth) . $message . PHP_EOL;
|
||||
} else {
|
||||
$content = $prefix . str_repeat(' ', $depth) . htmlentities($message, ENT_QUOTES) . '<br/>' . PHP_EOL;
|
||||
}
|
||||
if (false === fwrite($this->fhandle, $content)) {
|
||||
throw new base_logger_exception('error_writing_file', $this->fullpath);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,46 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-logger
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* Logger implementation that sends indented messages (depth option) to output
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
class output_indented_logger extends base_logger {
|
||||
|
||||
// Protected API starts here
|
||||
|
||||
protected function action($message, $level, $options = null) {
|
||||
$prefix = $this->get_prefix($level, $options);
|
||||
$depth = isset($options['depth']) ? $options['depth'] : 0;
|
||||
// Depending of running from browser/command line, format differently
|
||||
if (defined('STDOUT')) {
|
||||
echo $prefix . str_repeat(' ', $depth) . $message . PHP_EOL;
|
||||
} else {
|
||||
echo $prefix . str_repeat(' ', $depth) . htmlentities($message, ENT_QUOTES) . '<br/>' . PHP_EOL;
|
||||
}
|
||||
flush();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,45 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-logger
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* Logger implementation that sends text messages to output
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
class output_text_logger extends base_logger {
|
||||
|
||||
// Protected API starts here
|
||||
|
||||
protected function action($message, $level, $options = null) {
|
||||
$prefix = $this->get_prefix($level, $options);
|
||||
// Depending of running from browser/command line, format differently
|
||||
if (defined('STDOUT')) {
|
||||
echo $prefix . $message . PHP_EOL;
|
||||
} else {
|
||||
echo $prefix . htmlentities($message, ENT_QUOTES) . '<br/>' . PHP_EOL;
|
||||
}
|
||||
flush();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,393 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-tests
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
// Prevent direct access to this file
|
||||
if (!defined('MOODLE_INTERNAL')) {
|
||||
die('Direct access to this script is forbidden.');
|
||||
}
|
||||
|
||||
// Include all the needed stuff
|
||||
require_once($CFG->dirroot . '/backup/util/interfaces/checksumable.class.php');
|
||||
require_once($CFG->dirroot . '/backup/backup.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/loggers/base_logger.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/loggers/error_log_logger.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/loggers/output_text_logger.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/loggers/output_indented_logger.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/loggers/database_logger.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/loggers/file_logger.class.php');
|
||||
|
||||
/*
|
||||
* logger tests (all)
|
||||
*/
|
||||
class logger_test extends UnitTestCase {
|
||||
|
||||
public static $includecoverage = array('backup/util/loggers');
|
||||
public static $excludecoverage = array('backup/util/loggers/simpletest');
|
||||
|
||||
/*
|
||||
* test base_logger class
|
||||
*/
|
||||
function test_base_logger() {
|
||||
// Test logger with simple action (message * level)
|
||||
$lo = new mock_base_logger1(backup::LOG_ERROR);
|
||||
$msg = 13;
|
||||
$this->assertEqual($lo->process($msg, backup::LOG_ERROR), $msg * backup::LOG_ERROR);
|
||||
// With lowest level must resturn true
|
||||
$lo = new mock_base_logger1(backup::LOG_ERROR);
|
||||
$msg = 13;
|
||||
$this->assertTrue($lo->process($msg, backup::LOG_DEBUG));
|
||||
|
||||
// Chain 2 loggers, we must get as result the result of the ineer one
|
||||
$lo1 = new mock_base_logger1(backup::LOG_ERROR);
|
||||
$lo2 = new mock_base_logger2(backup::LOG_ERROR);
|
||||
$lo1->set_next($lo2);
|
||||
$msg = 13;
|
||||
$this->assertEqual($lo1->process($msg, backup::LOG_ERROR), $msg + backup::LOG_ERROR);
|
||||
|
||||
// Try circular reference
|
||||
$lo1 = new mock_base_logger1(backup::LOG_ERROR);
|
||||
try {
|
||||
$lo1->set_next($lo1); //self
|
||||
$this->assertTrue(false, 'base_logger_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof base_logger_exception);
|
||||
$this->assertEqual($e->errorcode, 'logger_circular_reference');
|
||||
$this->assertTrue($e->a instanceof stdclass);
|
||||
$this->assertEqual($e->a->main, get_class($lo1));
|
||||
$this->assertEqual($e->a->alreadyinchain, get_class($lo1));
|
||||
}
|
||||
|
||||
$lo1 = new mock_base_logger1(backup::LOG_ERROR);
|
||||
$lo2 = new mock_base_logger2(backup::LOG_ERROR);
|
||||
$lo3 = new mock_base_logger3(backup::LOG_ERROR);
|
||||
$lo1->set_next($lo2);
|
||||
$lo2->set_next($lo3);
|
||||
try {
|
||||
$lo3->set_next($lo1);
|
||||
$this->assertTrue(false, 'base_logger_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof base_logger_exception);
|
||||
$this->assertEqual($e->errorcode, 'logger_circular_reference');
|
||||
$this->assertTrue($e->a instanceof stdclass);
|
||||
$this->assertEqual($e->a->main, get_class($lo1));
|
||||
$this->assertEqual($e->a->alreadyinchain, get_class($lo3));
|
||||
}
|
||||
|
||||
// Test stopper logger
|
||||
$lo1 = new mock_base_logger1(backup::LOG_ERROR);
|
||||
$lo2 = new mock_base_logger2(backup::LOG_ERROR);
|
||||
$lo3 = new mock_base_logger3(backup::LOG_ERROR);
|
||||
$lo1->set_next($lo2);
|
||||
$lo2->set_next($lo3);
|
||||
$this->assertFalse($lo1->process('test', backup::LOG_ERROR));
|
||||
|
||||
// Test checksum correct
|
||||
$lo1 = new mock_base_logger1(backup::LOG_ERROR);
|
||||
$lo1->is_checksum_correct(get_class($lo1) . '-' . backup::LOG_ERROR);
|
||||
|
||||
// Test get_levelstr()
|
||||
$lo1 = new mock_base_logger1(backup::LOG_ERROR);
|
||||
$this->assertEqual($lo1->get_levelstr(backup::LOG_NONE), 'undefined');
|
||||
$this->assertEqual($lo1->get_levelstr(backup::LOG_ERROR), 'error');
|
||||
$this->assertEqual($lo1->get_levelstr(backup::LOG_WARNING), 'warn');
|
||||
$this->assertEqual($lo1->get_levelstr(backup::LOG_INFO), 'info');
|
||||
$this->assertEqual($lo1->get_levelstr(backup::LOG_DEBUG), 'debug');
|
||||
}
|
||||
|
||||
/*
|
||||
* test error_log_logger class
|
||||
*/
|
||||
function test_error_log_logger() {
|
||||
// Not much really to test, just intantiate and execute, should return true
|
||||
$lo = new error_log_logger(backup::LOG_ERROR);
|
||||
$this->assertTrue($lo instanceof error_log_logger);
|
||||
$message = 'This log exists because you have run Moodle unit tests: Ignore it';
|
||||
$result = $lo->process($message, backup::LOG_ERROR);
|
||||
$this->assertTrue($result);
|
||||
}
|
||||
|
||||
/*
|
||||
* test output_text_logger class
|
||||
*/
|
||||
function test_output_text_logger() {
|
||||
// Instantiate without date nor level output
|
||||
$lo = new output_text_logger(backup::LOG_ERROR);
|
||||
$this->assertTrue($lo instanceof output_text_logger);
|
||||
$message = 'testing output_text_logger';
|
||||
ob_start(); // Capture output
|
||||
$result = $lo->process($message, backup::LOG_ERROR);
|
||||
$contents = ob_get_contents();
|
||||
ob_end_clean(); // End capture and discard
|
||||
$this->assertTrue($result);
|
||||
$this->assertTrue(strpos($contents, $message) !== false);
|
||||
|
||||
// Instantiate with date and level output
|
||||
$lo = new output_text_logger(backup::LOG_ERROR, true, true);
|
||||
$this->assertTrue($lo instanceof output_text_logger);
|
||||
$message = 'testing output_text_logger';
|
||||
ob_start(); // Capture output
|
||||
$result = $lo->process($message, backup::LOG_ERROR);
|
||||
$contents = ob_get_contents();
|
||||
ob_end_clean(); // End capture and discard
|
||||
$this->assertTrue($result);
|
||||
$this->assertTrue(strpos($contents,'[') === 0);
|
||||
$this->assertTrue(strpos($contents,'[error]') !== false);
|
||||
$this->assertTrue(strpos($contents, $message) !== false);
|
||||
$this->assertTrue(substr_count($contents , '] ') >= 2);
|
||||
}
|
||||
|
||||
/*
|
||||
* test output_indented_logger class
|
||||
*/
|
||||
function test_output_indented_logger() {
|
||||
// Instantiate without date nor level output
|
||||
$options = array('depth' => 2);
|
||||
$lo = new output_indented_logger(backup::LOG_ERROR);
|
||||
$this->assertTrue($lo instanceof output_indented_logger);
|
||||
$message = 'testing output_indented_logger';
|
||||
ob_start(); // Capture output
|
||||
$result = $lo->process($message, backup::LOG_ERROR, $options);
|
||||
$contents = ob_get_contents();
|
||||
ob_end_clean(); // End capture and discard
|
||||
$this->assertTrue($result);
|
||||
if (defined('STDOUT')) {
|
||||
$check = ' ';
|
||||
} else {
|
||||
$check = ' ';
|
||||
}
|
||||
$this->assertTrue(strpos($contents, str_repeat($check, $options['depth']) . $message) !== false);
|
||||
|
||||
// Instantiate with date and level output
|
||||
$options = array('depth' => 3);
|
||||
$lo = new output_indented_logger(backup::LOG_ERROR, true, true);
|
||||
$this->assertTrue($lo instanceof output_indented_logger);
|
||||
$message = 'testing output_indented_logger';
|
||||
ob_start(); // Capture output
|
||||
$result = $lo->process($message, backup::LOG_ERROR, $options);
|
||||
$contents = ob_get_contents();
|
||||
ob_end_clean(); // End capture and discard
|
||||
$this->assertTrue($result);
|
||||
$this->assertTrue(strpos($contents,'[') === 0);
|
||||
$this->assertTrue(strpos($contents,'[error]') !== false);
|
||||
$this->assertTrue(strpos($contents, $message) !== false);
|
||||
$this->assertTrue(substr_count($contents , '] ') >= 2);
|
||||
if (defined('STDOUT')) {
|
||||
$check = ' ';
|
||||
} else {
|
||||
$check = ' ';
|
||||
}
|
||||
$this->assertTrue(strpos($contents, str_repeat($check, $options['depth']) . $message) !== false);
|
||||
}
|
||||
|
||||
/*
|
||||
* test database_logger class
|
||||
*/
|
||||
function test_database_logger() {
|
||||
// Instantiate with date and level output (and with specs from the global moodle "log" table so checks will pass
|
||||
$now = time();
|
||||
$datecol = 'time';
|
||||
$levelcol = 'action';
|
||||
$messagecol = 'info';
|
||||
$logtable = 'log';
|
||||
$columns = array('url' => 'http://127.0.0.1');
|
||||
$loglevel = backup::LOG_ERROR;
|
||||
$lo = new mock_database_logger(backup::LOG_ERROR, $datecol, $levelcol, $messagecol, $logtable, $columns);
|
||||
$this->assertTrue($lo instanceof database_logger);
|
||||
$message = 'testing database_logger';
|
||||
$result = $lo->process($message, $loglevel);
|
||||
// Check everything is ready to be inserted to DB
|
||||
$this->assertEqual($result['table'], $logtable);
|
||||
$this->assertTrue($result['columns'][$datecol] >= $now);
|
||||
$this->assertEqual($result['columns'][$levelcol], $loglevel);
|
||||
$this->assertEqual($result['columns'][$messagecol], $message);
|
||||
$this->assertEqual($result['columns']['url'], $columns['url']);
|
||||
}
|
||||
|
||||
/*
|
||||
* test file_logger class
|
||||
*/
|
||||
function test_file_logger() {
|
||||
global $CFG;
|
||||
|
||||
$file = $CFG->dataroot . '/temp/test/test_file_logger.txt';
|
||||
// Remove the test dir and any content
|
||||
@remove_dir(dirname($file));
|
||||
// Recreate test dir
|
||||
if (!check_dir_exists(dirname($file), true, true)) {
|
||||
throw moodle_exception('error_creating_temp_dir', 'error', dirname($file));
|
||||
}
|
||||
|
||||
// Instantiate with date and level output, and also use the depth option
|
||||
$options = array('depth' => 3);
|
||||
$lo1 = new file_logger(backup::LOG_ERROR, true, true, $file);
|
||||
$this->assertTrue($lo1 instanceof file_logger);
|
||||
$message1 = 'testing file_logger';
|
||||
$result = $lo1->process($message1, backup::LOG_ERROR, $options);
|
||||
$this->assertTrue($result);
|
||||
|
||||
// Another file_logger is going towrite there too without closing
|
||||
$options = array();
|
||||
$lo2 = new file_logger(backup::LOG_WARNING, true, true, $file);
|
||||
$this->assertTrue($lo2 instanceof file_logger);
|
||||
$message2 = 'testing file_logger2';
|
||||
$result = $lo2->process($message2, backup::LOG_WARNING, $options);
|
||||
$this->assertTrue($result);
|
||||
|
||||
// Destruct loggers
|
||||
$lo1 = null;
|
||||
$lo2 = null;
|
||||
|
||||
// Load file results to analyze them
|
||||
$fcontents = file_get_contents($file);
|
||||
$acontents = explode(PHP_EOL, $fcontents); // Split by line
|
||||
$this->assertTrue(strpos($acontents[0], $message1) !== false);
|
||||
$this->assertTrue(strpos($acontents[0], '[error]') !== false);
|
||||
$this->assertTrue(strpos($acontents[0], ' ') !== false);
|
||||
$this->assertTrue(substr_count($acontents[0] , '] ') >= 2);
|
||||
$this->assertTrue(strpos($acontents[1], $message2) !== false);
|
||||
$this->assertTrue(strpos($acontents[1], '[warn]') !== false);
|
||||
$this->assertTrue(strpos($acontents[1], ' ') === false);
|
||||
$this->assertTrue(substr_count($acontents[1] , '] ') >= 2);
|
||||
unlink($file); // delete file
|
||||
|
||||
// Try one html file
|
||||
$file = $CFG->dataroot . '/temp/test/test_file_logger.html';
|
||||
$options = array('depth' => 1);
|
||||
$lo = new file_logger(backup::LOG_ERROR, true, true, $file);
|
||||
$this->assertTrue($lo instanceof file_logger);
|
||||
$this->assertTrue(file_exists($file));
|
||||
$message = 'testing file_logger';
|
||||
$result = $lo->process($message, backup::LOG_ERROR, $options);
|
||||
// Get file contents and inspect them
|
||||
$fcontents = file_get_contents($file);
|
||||
$this->assertTrue($result);
|
||||
$this->assertTrue(strpos($fcontents, $message) !== false);
|
||||
$this->assertTrue(strpos($fcontents, '[error]') !== false);
|
||||
$this->assertTrue(strpos($fcontents, ' ') !== false);
|
||||
$this->assertTrue(substr_count($fcontents , '] ') >= 2);
|
||||
unlink($file); // delete file
|
||||
|
||||
// Instantiate, write something, force deletion, try to write again
|
||||
$file = $CFG->dataroot . '/temp/test/test_file_logger.html';
|
||||
$lo = new mock_file_logger(backup::LOG_ERROR, true, true, $file);
|
||||
$this->assertTrue(file_exists($file));
|
||||
$message = 'testing file_logger';
|
||||
$result = $lo->process($message, backup::LOG_ERROR);
|
||||
fclose($lo->get_fhandle()); // close file
|
||||
try {
|
||||
$result = @$lo->process($message, backup::LOG_ERROR); // Try to write again
|
||||
$this->assertTrue(false, 'base_logger_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof base_logger_exception);
|
||||
$this->assertEqual($e->errorcode, 'error_writing_file');
|
||||
}
|
||||
|
||||
// Instantiate without file
|
||||
try {
|
||||
$lo = new file_logger(backup::LOG_WARNING, true, true, '');
|
||||
$this->assertTrue(false, 'base_logger_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof base_logger_exception);
|
||||
$this->assertEqual($e->errorcode, 'missing_fullpath_parameter');
|
||||
}
|
||||
|
||||
// Instantiate in (near) impossible path
|
||||
$file = $CFG->dataroot . '/temp/test_azby/test_file_logger.txt';
|
||||
try {
|
||||
$lo = new file_logger(backup::LOG_WARNING, true, true, $file);
|
||||
$this->assertTrue(false, 'base_logger_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof base_logger_exception);
|
||||
$this->assertEqual($e->errorcode, 'file_not_writable');
|
||||
$this->assertEqual($e->a, $file);
|
||||
}
|
||||
|
||||
// Instatiate one file logger with level = backup::LOG_NONE
|
||||
$file = $CFG->dataroot . '/temp/test/test_file_logger.txt';
|
||||
$lo = new file_logger(backup::LOG_NONE, true, true, $file);
|
||||
$this->assertTrue($lo instanceof file_logger);
|
||||
$this->assertFalse(file_exists($file));
|
||||
|
||||
// Remove the test dir and any content
|
||||
@remove_dir(dirname($file));
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* helper extended base_logger class that implements some methods for testing
|
||||
* Simply return the product of message and level
|
||||
*/
|
||||
class mock_base_logger1 extends base_logger {
|
||||
|
||||
protected function action($message, $level, $options = null) {
|
||||
return $message * $level; // Simply return that, for testing
|
||||
}
|
||||
public function get_levelstr($level) {
|
||||
return parent::get_levelstr($level);
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* helper extended base_logger class that implements some methods for testing
|
||||
* Simply return the sum of message and level
|
||||
*/
|
||||
class mock_base_logger2 extends base_logger {
|
||||
|
||||
protected function action($message, $level, $options = null) {
|
||||
return $message + $level; // Simply return that, for testing
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* helper extended base_logger class that implements some methods for testing
|
||||
* Simply return 8
|
||||
*/
|
||||
class mock_base_logger3 extends base_logger {
|
||||
|
||||
protected function action($message, $level, $options = null) {
|
||||
return false; // Simply return false, for testing stopper
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* helper extended database_logger class that implements some methods for testing
|
||||
* Returns the complete info that normally will be used by insert record calls
|
||||
*/
|
||||
class mock_database_logger extends database_logger {
|
||||
|
||||
protected function insert_log_record($table, $columns) {
|
||||
return array('table' => $table, 'columns' => $columns);
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* helper extended file_logger class that implements some methods for testing
|
||||
* Returns the, usually protected, fhandle
|
||||
*/
|
||||
class mock_file_logger extends file_logger {
|
||||
|
||||
function get_fhandle() {
|
||||
return $this->fhandle;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,74 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-output
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
|
||||
/**
|
||||
* This class decides, based in environment/backup controller settings about
|
||||
* the best way to send information to output, independently of the process
|
||||
* and the loggers. Instantiated/configured by @backup_controller constructor
|
||||
*
|
||||
* Mainly used by backup_helper::log() (that receives all the log requests from
|
||||
* the rest of backup objects) to split messages both to loggers and to output.
|
||||
*
|
||||
* This class adopts the singleton pattern to be able to provide some persistency
|
||||
* and global access.
|
||||
*/
|
||||
class output_controller {
|
||||
|
||||
private static $instance; // The unique instance of output_controller available along the request
|
||||
private $list; // progress_trace object we are going to use for output
|
||||
private $active; // To be able to stop output completely or active it again
|
||||
|
||||
private function __construct() { // Private constructor
|
||||
if (defined('STDOUT')) { // text mode
|
||||
$this->list = new text_progress_trace();
|
||||
} else {
|
||||
$this->list = new html_list_progress_trace();
|
||||
}
|
||||
$this->active = false; // Somebody has to active me before outputing anything
|
||||
}
|
||||
|
||||
public static function get_instance() {
|
||||
if (!isset(self::$instance)) {
|
||||
self::$instance = new output_controller();
|
||||
}
|
||||
return self::$instance;
|
||||
}
|
||||
|
||||
public function set_active($active) {
|
||||
if ($this->active && (bool)$active == false) { // Stopping, call finished()
|
||||
$this->list->finished();
|
||||
}
|
||||
$this->active = (bool)$active;
|
||||
}
|
||||
|
||||
public function output($message, $langfile, $a, $depth) {
|
||||
if ($this->active) {
|
||||
$stringkey = preg_replace('/\s/', '', $message); // String key is message without whitespace
|
||||
$message = get_string($stringkey, $langfile, $a);
|
||||
$this->list->output($message, $depth);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-plan
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* Abstract class defining the needed stuff to execute code on backup
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
abstract class backup_execution_step extends backup_step {
|
||||
|
||||
public function execute() {
|
||||
// Simple, for now
|
||||
$this->define_execution();
|
||||
}
|
||||
|
||||
// Protected API starts here
|
||||
|
||||
/**
|
||||
* Function that will contain all the code to be executed
|
||||
*/
|
||||
abstract protected function define_execution();
|
||||
}
|
||||
@@ -0,0 +1,95 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-plan
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* Implementable class defining the needed stuf for one backup plan
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
class backup_plan extends base_plan implements loggable {
|
||||
|
||||
protected $controller; // The backup controller building/executing this plan
|
||||
protected $basepath; // Fullpath to dir where backup is created
|
||||
|
||||
/**
|
||||
* Constructor - instantiates one object of this class
|
||||
*/
|
||||
public function __construct($controller) {
|
||||
global $CFG;
|
||||
|
||||
if (! $controller instanceof backup_controller) {
|
||||
throw new backup_plan_exception('wrong_backup_controller_specified');
|
||||
}
|
||||
$this->controller = $controller;
|
||||
$this->basepath = $CFG->dataroot . '/temp/backup/' . $controller->get_backupid();
|
||||
parent::__construct('backup_plan');
|
||||
}
|
||||
|
||||
public function build() {
|
||||
backup_factory::build_plan($this->controller); // Dispatch to correct format
|
||||
$this->built = true;
|
||||
}
|
||||
|
||||
public function get_backupid() {
|
||||
return $this->controller->get_backupid();
|
||||
}
|
||||
|
||||
public function get_courseid() {
|
||||
return $this->controller->get_courseid();
|
||||
}
|
||||
|
||||
public function get_basepath() {
|
||||
return $this->basepath;
|
||||
}
|
||||
|
||||
public function get_logger() {
|
||||
return $this->controller->get_logger();
|
||||
}
|
||||
|
||||
public function log($message, $level, $a = null, $depth = null, $display = false) {
|
||||
backup_helper::log($message, $level, $a, $depth, $display, $this->get_logger());
|
||||
}
|
||||
|
||||
/**
|
||||
* Function responsible for executing the tasks of any plan
|
||||
*/
|
||||
public function execute() {
|
||||
if ($this->controller->get_status() != backup::STATUS_AWAITING) {
|
||||
throw new backup_controller_exception('backup_not_executable_awaiting_required', $this->controller->get_status());
|
||||
}
|
||||
$this->controller->set_status(backup::STATUS_EXECUTING);
|
||||
parent::execute();
|
||||
$this->controller->set_status(backup::STATUS_FINISHED_OK);
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Exception class used by all the @backup_plan stuff
|
||||
*/
|
||||
class backup_plan_exception extends base_plan_exception {
|
||||
|
||||
public function __construct($errorcode, $a=NULL, $debuginfo=null) {
|
||||
parent::__construct($errorcode, $a, $debuginfo);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,51 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-plan
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* Abstract class defining the needed stuf for one backup step
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
abstract class backup_step extends base_step {
|
||||
|
||||
/**
|
||||
* Constructor - instantiates one object of this class
|
||||
*/
|
||||
public function __construct($name, $task = null) {
|
||||
if (!is_null($task) && !($task instanceof backup_task)) {
|
||||
throw new backup_step_exception('wrong_backup_task_specified');
|
||||
}
|
||||
parent::__construct($name, $task);
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Exception class used by all the @backup_step stuff
|
||||
*/
|
||||
class backup_step_exception extends base_step_exception {
|
||||
|
||||
public function __construct($errorcode, $a=NULL, $debuginfo=null) {
|
||||
parent::__construct($errorcode, $a, $debuginfo);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,114 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-plan
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* Abstract class defining the needed stuff to backup one @backup_structure
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
abstract class backup_structure_step extends backup_step {
|
||||
|
||||
protected $filename; // Name of the file to be generated
|
||||
protected $contenttransformer; // xml content transformer being used
|
||||
// (need it here, apart from xml_writer,
|
||||
// thanks to serialized data to process -
|
||||
// say thanks to blocks!)
|
||||
|
||||
/**
|
||||
* Constructor - instantiates one object of this class
|
||||
*/
|
||||
public function __construct($name, $filename, $task = null) {
|
||||
if (!is_null($task) && !($task instanceof backup_task)) {
|
||||
throw new backup_step_exception('wrong_backup_task_specified');
|
||||
}
|
||||
$this->filename = $filename;
|
||||
parent::__construct($name, $task);
|
||||
}
|
||||
|
||||
public function execute() {
|
||||
|
||||
$fullpath = $this->task->get_taskbasepath();
|
||||
|
||||
// We MUST have one fullpath here, else, error
|
||||
if (empty($fullpath)) {
|
||||
throw new backup_step_exception('backup_structure_step_undefined_fullpath');
|
||||
}
|
||||
|
||||
// Append the filename to the fullpath
|
||||
$fullpath = rtrim($fullpath, '/') . '/' . $this->filename;
|
||||
|
||||
// Create output, transformer, writer, processor
|
||||
$xo = new file_xml_output($fullpath);
|
||||
$xt = null;
|
||||
if (class_exists('backup_xml_transformer')) {
|
||||
$xt = new backup_xml_transformer($this->get_courseid());
|
||||
$this->contenttransformer = $xt; // Save the reference to the transformer
|
||||
// as far as we are going to need it out
|
||||
// from xml_writer (blame serialized data!)
|
||||
}
|
||||
$xw = new xml_writer($xo, $xt);
|
||||
$pr = new backup_structure_processor($xw);
|
||||
|
||||
// Set processor variables from settings
|
||||
foreach ($this->get_settings() as $setting) {
|
||||
$pr->set_var($setting->get_name(), $setting->get_value());
|
||||
}
|
||||
// Add backupid as one more var for processor
|
||||
$pr->set_var(backup::VAR_BACKUPID, $this->get_backupid());
|
||||
|
||||
// Get structure definition
|
||||
$structure = $this->define_structure();
|
||||
if (! $structure instanceof backup_nested_element) {
|
||||
throw new backup_step_exception('backup_structure_step_wrong_structure');
|
||||
}
|
||||
|
||||
// Start writer
|
||||
$xw->start();
|
||||
|
||||
// Process structure definition
|
||||
$structure->process($pr);
|
||||
|
||||
// Close everything
|
||||
$xw->stop();
|
||||
}
|
||||
|
||||
// Protected API starts here
|
||||
|
||||
/**
|
||||
* This function simply marks one param to be considered as straight sql
|
||||
* param, so it won't be searched in the structure tree nor converted at
|
||||
* all. Useful for better integration of definition of sources in structure
|
||||
* and DB stuff.
|
||||
*/
|
||||
protected function is_sqlparam($value) {
|
||||
return array('sqlparam' => $value);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Function that will return the structure to be processed by this backup_step.
|
||||
* Must return one backup_nested_element
|
||||
*/
|
||||
abstract protected function define_structure();
|
||||
}
|
||||
@@ -0,0 +1,51 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-plan
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* Abstract class defining the needed stuf for one backup task (a collection of steps)
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
abstract class backup_task extends base_task {
|
||||
|
||||
/**
|
||||
* Constructor - instantiates one object of this class
|
||||
*/
|
||||
public function __construct($name, $plan = null) {
|
||||
if (!is_null($plan) && !($plan instanceof backup_plan)) {
|
||||
throw new backup_task_exception('wrong_backup_plan_specified');
|
||||
}
|
||||
parent::__construct($name, $plan);
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Exception class used by all the @backup_task stuff
|
||||
*/
|
||||
class backup_task_exception extends base_task_exception {
|
||||
|
||||
public function __construct($errorcode, $a=NULL, $debuginfo=null) {
|
||||
parent::__construct($errorcode, $a, $debuginfo);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,139 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-plan
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* Abstract class defining the basis for one execution (backup/restore) plan
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
abstract class base_plan implements checksumable, executable {
|
||||
|
||||
protected $name; // One simple name for identification purposes
|
||||
protected $settings; // One array of (accumulated from tasks) base_setting elements
|
||||
protected $tasks; // One array of base_task elements
|
||||
|
||||
protected $built; // Flag to know if one plan has been built
|
||||
|
||||
/**
|
||||
* Constructor - instantiates one object of this class
|
||||
*/
|
||||
public function __construct($name) {
|
||||
$this->name = $name;
|
||||
$this->settings = array();
|
||||
$this->tasks = array();
|
||||
$this->built = false;
|
||||
}
|
||||
|
||||
public function get_name() {
|
||||
return $this->name;
|
||||
}
|
||||
|
||||
public function add_task($task) {
|
||||
if (! $task instanceof base_task) {
|
||||
throw new base_plan_exception('wrong_base_task_specified');
|
||||
}
|
||||
$this->tasks[] = $task;
|
||||
// link the task with the plan
|
||||
$task->set_plan($this);
|
||||
// Append task settings to plan array, if not present, for comodity
|
||||
foreach ($task->get_settings() as $key => $setting) {
|
||||
if (!in_array($setting, $this->settings)) {
|
||||
$this->settings[] = $setting;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public function get_tasks() {
|
||||
return $this->tasks;
|
||||
}
|
||||
|
||||
public function get_settings() {
|
||||
return $this->settings;
|
||||
}
|
||||
|
||||
/**
|
||||
* return one setting by name, useful to request root/course settings
|
||||
* that are, by definition, unique by name. Throws exception if multiple
|
||||
* are found
|
||||
*
|
||||
* TODO: Change this to string indexed array for quicker lookup. Not critical
|
||||
*/
|
||||
public function get_setting($name) {
|
||||
$result = null;
|
||||
foreach ($this->settings as $key => $setting) {
|
||||
if ($setting->get_name() == $name) {
|
||||
if ($result != null) {
|
||||
throw new base_plan_exception('multiple_settings_by_name_found', $name);
|
||||
} else {
|
||||
$result = $setting;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (!$result) {
|
||||
throw new base_plan_exception('setting_by_name_not_found', $name);
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Function responsible for building the tasks of any plan
|
||||
* with their corresponding settings
|
||||
* (must set the $built property to true)
|
||||
*/
|
||||
public abstract function build();
|
||||
|
||||
public function is_checksum_correct($checksum) {
|
||||
return $this->calculate_checksum() === $checksum;
|
||||
}
|
||||
|
||||
public function calculate_checksum() {
|
||||
// Let's do it using name and tasks (settings are part of tasks)
|
||||
return md5($this->name . '-' . backup_general_helper::array_checksum_recursive($this->tasks));
|
||||
}
|
||||
|
||||
/**
|
||||
* Function responsible for executing the tasks of any plan
|
||||
*/
|
||||
public function execute() {
|
||||
if (!$this->built) {
|
||||
throw new base_plan_exception('base_plan_not_built');
|
||||
}
|
||||
foreach ($this->tasks as $task) {
|
||||
$task->build();
|
||||
$task->execute();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Exception class used by all the @base_plan stuff
|
||||
*/
|
||||
class base_plan_exception extends moodle_exception {
|
||||
|
||||
public function __construct($errorcode, $a=NULL, $debuginfo=null) {
|
||||
parent::__construct($errorcode, '', '', $a, $debuginfo);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,122 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-plan
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* Abstract class defining the basis for one execution (backup/restore) step
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
abstract class base_step implements executable, loggable {
|
||||
|
||||
protected $name; // One simple name for identification purposes
|
||||
protected $task; // Task this is part of
|
||||
|
||||
/**
|
||||
* Constructor - instantiates one object of this class
|
||||
*/
|
||||
public function __construct($name, $task = null) {
|
||||
if (!is_null($task) && !($task instanceof base_task)) {
|
||||
throw new base_step_exception('wrong_base_task_specified');
|
||||
}
|
||||
$this->name = $name;
|
||||
$this->task = $task;
|
||||
if (!is_null($task)) { // Add the step to the task if specified
|
||||
$task->add_step($this);
|
||||
}
|
||||
}
|
||||
|
||||
public function get_name() {
|
||||
return $this->name;
|
||||
}
|
||||
|
||||
public function set_task($task) {
|
||||
if (! $task instanceof base_task) {
|
||||
throw new base_step_exception('wrong_base_task_specified');
|
||||
}
|
||||
$this->task = $task;
|
||||
}
|
||||
|
||||
public function log($message, $level, $a = null, $depth = null, $display = false) {
|
||||
if (is_null($this->task)) {
|
||||
throw new base_step_exception('not_specified_base_task');
|
||||
}
|
||||
backup_helper::log($message, $level, $a, $depth, $display, $this->get_logger());
|
||||
}
|
||||
|
||||
/// Protected API starts here
|
||||
|
||||
protected function get_settings() {
|
||||
if (is_null($this->task)) {
|
||||
throw new base_step_exception('not_specified_base_task');
|
||||
}
|
||||
return $this->task->get_settings();
|
||||
}
|
||||
|
||||
protected function get_setting($name) {
|
||||
if (is_null($this->task)) {
|
||||
throw new base_step_exception('not_specified_base_task');
|
||||
}
|
||||
return $this->task->get_setting($name);
|
||||
}
|
||||
|
||||
protected function get_setting_value($name) {
|
||||
if (is_null($this->task)) {
|
||||
throw new base_step_exception('not_specified_base_task');
|
||||
}
|
||||
return $this->task->get_setting_value($name);
|
||||
}
|
||||
|
||||
protected function get_backupid() {
|
||||
if (is_null($this->task)) {
|
||||
throw new base_step_exception('not_specified_base_task');
|
||||
}
|
||||
return $this->task->get_backupid();
|
||||
}
|
||||
|
||||
protected function get_courseid() {
|
||||
if (is_null($this->task)) {
|
||||
throw new base_step_exception('not_specified_base_task');
|
||||
}
|
||||
return $this->task->get_courseid();
|
||||
}
|
||||
|
||||
protected function get_basepath() {
|
||||
return $this->task->get_basepath();
|
||||
}
|
||||
|
||||
protected function get_logger() {
|
||||
return $this->task->get_logger();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Exception class used by all the @base_step stuff
|
||||
*/
|
||||
class base_step_exception extends moodle_exception {
|
||||
|
||||
public function __construct($errorcode, $a=NULL, $debuginfo=null) {
|
||||
parent::__construct($errorcode, '', '', $a, $debuginfo);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,187 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-plan
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* Abstract class defining the basis for one execution (backup/restore) task
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
abstract class base_task implements checksumable, executable, loggable {
|
||||
|
||||
protected $name; // One simple name for identification purposes
|
||||
protected $plan; // Plan this is part of
|
||||
protected $settings; // One array of base_setting elements to define this task
|
||||
protected $steps; // One array of base_task elements
|
||||
|
||||
protected $built; // Flag to know if one plan has been built
|
||||
|
||||
/**
|
||||
* Constructor - instantiates one object of this class
|
||||
*/
|
||||
public function __construct($name, $plan = null) {
|
||||
if (!is_null($plan) && !($plan instanceof base_plan)) {
|
||||
throw new base_task_exception('wrong_base_plan_specified');
|
||||
}
|
||||
$this->name = $name;
|
||||
$this->plan = $plan;
|
||||
$this->settings = array();
|
||||
$this->steps = array();
|
||||
$this->built = false;
|
||||
if (!is_null($plan)) { // Add the task to the plan if specified
|
||||
$plan->add_task($this);
|
||||
}
|
||||
}
|
||||
|
||||
public function get_name() {
|
||||
return $this->name;
|
||||
}
|
||||
|
||||
public function get_steps() {
|
||||
return $this->steps;
|
||||
}
|
||||
|
||||
public function get_settings() {
|
||||
return $this->settings;
|
||||
}
|
||||
|
||||
public function get_setting($name) {
|
||||
// First look in task settings
|
||||
$result = null;
|
||||
foreach ($this->settings as $key => $setting) {
|
||||
if ($setting->get_name() == $name) {
|
||||
if ($result != null) {
|
||||
throw new base_task_exception('multiple_settings_by_name_found', $name);
|
||||
} else {
|
||||
$result = $setting;
|
||||
}
|
||||
}
|
||||
}
|
||||
if ($result) {
|
||||
return $result;
|
||||
} else {
|
||||
// Fallback to plan settings
|
||||
return $this->plan->get_setting($name);
|
||||
}
|
||||
}
|
||||
|
||||
public function get_setting_value($name) {
|
||||
return $this->get_setting($name)->get_value();
|
||||
}
|
||||
|
||||
public function get_backupid() {
|
||||
return $this->plan->get_backupid();
|
||||
}
|
||||
|
||||
public function get_courseid() {
|
||||
return $this->plan->get_courseid();
|
||||
}
|
||||
|
||||
public function get_basepath() {
|
||||
return $this->plan->get_basepath();
|
||||
}
|
||||
|
||||
public function get_taskbasepath() {
|
||||
return $this->get_basepath();
|
||||
}
|
||||
|
||||
public function get_logger() {
|
||||
return $this->plan->get_logger();
|
||||
}
|
||||
|
||||
public function log($message, $level, $a = null, $depth = null, $display = false) {
|
||||
backup_helper::log($message, $level, $a, $depth, $display, $this->get_logger());
|
||||
}
|
||||
|
||||
public function add_step($step) {
|
||||
if (! $step instanceof base_step) {
|
||||
throw new base_task_exception('wrong_base_step_specified');
|
||||
}
|
||||
// link the step with the task
|
||||
$step->set_task($this);
|
||||
$this->steps[] = $step;
|
||||
}
|
||||
|
||||
public function set_plan($plan) {
|
||||
if (! $plan instanceof base_plan) {
|
||||
throw new base_task_exception('wrong_base_plan_specified');
|
||||
}
|
||||
$this->plan = $plan;
|
||||
$this->define_settings(); // Settings are defined when plan & task are linked
|
||||
}
|
||||
|
||||
/**
|
||||
* Function responsible for building the steps of any task
|
||||
* (must set the $built property to true)
|
||||
*/
|
||||
public abstract function build();
|
||||
|
||||
/**
|
||||
* Function responsible for executing the steps of any task
|
||||
*/
|
||||
public function execute() {
|
||||
if (!$this->built) {
|
||||
throw new base_task_exception('base_task_not_built', $this->name);
|
||||
}
|
||||
foreach ($this->steps as $step) {
|
||||
$step->execute();
|
||||
}
|
||||
}
|
||||
|
||||
public function is_checksum_correct($checksum) {
|
||||
return $this->calculate_checksum() === $checksum;
|
||||
}
|
||||
|
||||
public function calculate_checksum() {
|
||||
// Let's do it using name and settings and steps
|
||||
return md5($this->name . '-' .
|
||||
backup_general_helper::array_checksum_recursive($this->settings) .
|
||||
backup_general_helper::array_checksum_recursive($this->steps));
|
||||
}
|
||||
|
||||
// Protected API starts here
|
||||
|
||||
/**
|
||||
* This function is invoked on activity creation in order to add all the settings
|
||||
* that are associated with one task. The function will, directly, inject the settings
|
||||
* in the task.
|
||||
*/
|
||||
protected abstract function define_settings();
|
||||
|
||||
protected function add_setting($setting) {
|
||||
if (! $setting instanceof base_setting) {
|
||||
throw new base_setting_exception('wrong_base_setting_specified');
|
||||
}
|
||||
$this->settings[] = $setting;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Exception class used by all the @base_task stuff
|
||||
*/
|
||||
class base_task_exception extends moodle_exception {
|
||||
|
||||
public function __construct($errorcode, $a=NULL, $debuginfo=null) {
|
||||
parent::__construct($errorcode, '', '', $a, $debuginfo);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,211 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-tests
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
// Prevent direct access to this file
|
||||
if (!defined('MOODLE_INTERNAL')) {
|
||||
die('Direct access to this script is forbidden.');
|
||||
}
|
||||
|
||||
// Include all the needed stuff
|
||||
require_once($CFG->dirroot . '/backup/util/includes/backup_includes.php');
|
||||
|
||||
/*
|
||||
* plan tests (all)
|
||||
*/
|
||||
class backup_plan_test extends UnitTestCase {
|
||||
|
||||
public static $includecoverage = array('backup/util/plan');
|
||||
public static $excludecoverage = array('backup/util/plan/simpletest');
|
||||
|
||||
protected $moduleid; // course_modules id used for testing
|
||||
protected $sectionid; // course_sections id used for testing
|
||||
protected $courseid; // course id used for testing
|
||||
protected $user; // user record used for testing
|
||||
|
||||
function __construct() {
|
||||
global $DB, $USER, $CFG;
|
||||
|
||||
$this->moduleid = 0;
|
||||
$this->sectionid = 0;
|
||||
$this->courseid = 0;
|
||||
$this->userid = $USER->id;
|
||||
$this->todelete = array();
|
||||
|
||||
// Check we have (at least) one course_module
|
||||
if ($coursemodule = $DB->get_record('course_modules', array(), '*', IGNORE_MULTIPLE)) {
|
||||
$this->moduleid = $coursemodule->id;
|
||||
$this->sectionid = $coursemodule->section;
|
||||
$this->courseid = $coursemodule->course;
|
||||
}
|
||||
|
||||
// Avoid any logger to be created, we'll restore original settings on tearDown()
|
||||
$this->errorlogloggerlevel = isset($CFG->backup_error_log_logger_level) ? $CFG->backup_error_log_logger_level : null;
|
||||
$this->fileloggerlevel = isset($CFG->backup_file_logger_level) ? $CFG->backup_file_logger_level : null;
|
||||
$this->databaseloggerlevel = isset($CFG->backup_database_logger_level) ? $CFG->backup_database_logger_level : null;
|
||||
$this->fileloggerlevelextra = isset($CFG->backup_file_logger_level_extra) ? $CFG->backup_file_logger_level_extra : null;
|
||||
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
function skip() {
|
||||
$this->skipIf(empty($this->moduleid), 'backup_plan_test require at least one course module to exist');
|
||||
$this->skipIf(empty($this->sectionid),'backup_plan_test require at least one course section to exist');
|
||||
$this->skipIf(empty($this->courseid), 'backup_plan_test require at least one course to exist');
|
||||
$this->skipIf(empty($this->userid),'backup_plan_test require one valid user to exist');
|
||||
}
|
||||
|
||||
function setUp() {
|
||||
global $CFG;
|
||||
|
||||
// Disable all loggers
|
||||
$CFG->backup_error_log_logger_level = backup::LOG_NONE;
|
||||
$CFG->backup_file_logger_level = backup::LOG_NONE;
|
||||
$CFG->backup_database_logger_level = backup::LOG_NONE;
|
||||
$CFG->backup_file_logger_level_extra = backup::LOG_NONE;
|
||||
}
|
||||
|
||||
function tearDown() {
|
||||
global $DB, $CFG;
|
||||
// Delete all the records marked to
|
||||
foreach ($this->todelete as $todelete) {
|
||||
$DB->delete_records($todelete[0], array('id' => $todelete[1]));
|
||||
}
|
||||
// Restore original file_logger levels
|
||||
if ($this->errorlogloggerlevel !== null) {
|
||||
$CFG->backup_error_log_logger_level = $this->errorlogloggerlevel;
|
||||
} else {
|
||||
unset($CFG->backup_error_log_logger_level);
|
||||
}
|
||||
if ($this->fileloggerlevel !== null) {
|
||||
$CFG->backup_file_logger_level = $this->fileloggerlevel;
|
||||
} else {
|
||||
unset($CFG->backup_file_logger_level);
|
||||
}
|
||||
if ($this->databaseloggerlevel !== null) {
|
||||
$CFG->backup_database_logger_level = $this->databaseloggerlevel;
|
||||
} else {
|
||||
unset($CFG->backup_database_logger_level);
|
||||
}
|
||||
if ($this->fileloggerlevelextra !== null) {
|
||||
$CFG->backup_file_logger_level_extra = $this->fileloggerlevelextra;
|
||||
} else {
|
||||
unset($CFG->backup_file_logger_level_extra);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* test base_plan class
|
||||
*/
|
||||
function test_base_plan() {
|
||||
|
||||
// Instantiate
|
||||
$bp = new mock_base_plan('name');
|
||||
$this->assertTrue($bp instanceof base_plan);
|
||||
$this->assertEqual($bp->get_name(), 'name');
|
||||
$this->assertTrue(is_array($bp->get_settings()));
|
||||
$this->assertEqual(count($bp->get_settings()), 0);
|
||||
$this->assertTrue(is_array($bp->get_tasks()));
|
||||
$this->assertEqual(count($bp->get_tasks()), 0);
|
||||
}
|
||||
|
||||
/*
|
||||
* test backup_plan class
|
||||
*/
|
||||
function test_backup_plan() {
|
||||
|
||||
// We need one (non interactive) controller for instatiating plan
|
||||
$bc = new backup_controller(backup::TYPE_1ACTIVITY, $this->moduleid, backup::FORMAT_MOODLE,
|
||||
backup::INTERACTIVE_NO, backup::MODE_GENERAL, $this->userid);
|
||||
// Instantiate one backup plan
|
||||
$bp = new backup_plan($bc);
|
||||
$this->assertTrue($bp instanceof backup_plan);
|
||||
$this->assertEqual($bp->get_name(), 'backup_plan');
|
||||
|
||||
// Calculate checksum and check it
|
||||
$checksum = $bp->calculate_checksum();
|
||||
$this->assertTrue($bp->is_checksum_correct($checksum));
|
||||
}
|
||||
|
||||
/**
|
||||
* wrong base_plan class tests
|
||||
*/
|
||||
function test_base_plan_wrong() {
|
||||
|
||||
// We need one (non interactive) controller for instatiating plan
|
||||
$bc = new backup_controller(backup::TYPE_1ACTIVITY, $this->moduleid, backup::FORMAT_MOODLE,
|
||||
backup::INTERACTIVE_NO, backup::MODE_GENERAL, $this->userid);
|
||||
// Instantiate one backup plan
|
||||
$bp = new backup_plan($bc);
|
||||
// Add wrong task
|
||||
try {
|
||||
$bp->add_task(new stdclass());
|
||||
$this->assertTrue(false, 'base_plan_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof base_plan_exception);
|
||||
$this->assertEqual($e->errorcode, 'wrong_base_task_specified');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* wrong backup_plan class tests
|
||||
*/
|
||||
function test_backup_plan_wrong() {
|
||||
|
||||
// Try to pass one wrong controller
|
||||
try {
|
||||
$bp = new backup_plan(new stdclass());
|
||||
$this->assertTrue(false, 'backup_plan_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof backup_plan_exception);
|
||||
$this->assertEqual($e->errorcode, 'wrong_backup_controller_specified');
|
||||
}
|
||||
try {
|
||||
$bp = new backup_plan(null);
|
||||
$this->assertTrue(false, 'backup_plan_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof backup_plan_exception);
|
||||
$this->assertEqual($e->errorcode, 'wrong_backup_controller_specified');
|
||||
}
|
||||
|
||||
// Try to build one non-existent format plan (when creating the controller)
|
||||
// We need one (non interactive) controller for instatiating plan
|
||||
try {
|
||||
$bc = new backup_controller(backup::TYPE_1ACTIVITY, $this->moduleid, 'non_existing_format',
|
||||
backup::INTERACTIVE_NO, backup::MODE_GENERAL, $this->userid);
|
||||
$this->assertTrue(false, 'backup_controller_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof backup_controller_exception);
|
||||
$this->assertEqual($e->errorcode, 'backup_check_unsupported_format');
|
||||
$this->assertEqual($e->a, 'non_existing_format');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Instantiable class extending base_plan in order to be able to perform tests
|
||||
*/
|
||||
class mock_base_plan extends base_plan {
|
||||
public function build() {
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,336 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-tests
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
// Prevent direct access to this file
|
||||
if (!defined('MOODLE_INTERNAL')) {
|
||||
die('Direct access to this script is forbidden.');
|
||||
}
|
||||
|
||||
// Include all the needed stuff
|
||||
require_once($CFG->dirroot . '/backup/util/interfaces/checksumable.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/interfaces/processable.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/interfaces/annotable.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/interfaces/executable.class.php');
|
||||
require_once($CFG->dirroot . '/backup/backup.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/factories/backup_factory.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/helper/backup_array_iterator.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/dbops/backup_dbops.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/dbops/backup_controller_dbops.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/dbops/backup_structure_dbops.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/helper/backup_helper.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/helper/backup_general_helper.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/checks/backup_check.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/loggers/base_logger.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/loggers/error_log_logger.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/loggers/file_logger.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/loggers/database_logger.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/loggers/output_indented_logger.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/xml/output/xml_output.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/xml/output/file_xml_output.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/xml/xml_writer.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/structure/base_atom.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/structure/base_attribute.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/structure/base_final_element.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/structure/base_nested_element.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/structure/base_optigroup.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/structure/base_processor.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/structure/backup_attribute.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/structure/backup_final_element.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/structure/backup_nested_element.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/structure/backup_optigroup.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/structure/backup_optigroup_element.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/structure/backup_structure_processor.class.php');
|
||||
require_once($CFG->dirroot . '/backup/controller/backup_controller.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/settings/base_setting.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/settings/backup_setting.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/settings/activity/activity_backup_setting.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/plan/base_plan.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/plan/backup_plan.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/plan/base_task.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/plan/backup_task.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/plan/base_step.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/plan/backup_step.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/plan/backup_structure_step.class.php');
|
||||
|
||||
/*
|
||||
* step tests (all)
|
||||
*/
|
||||
class backup_step_test extends UnitTestCase {
|
||||
|
||||
public static $includecoverage = array('backup/util/plan');
|
||||
public static $excludecoverage = array('backup/util/plan/simpletest');
|
||||
|
||||
protected $moduleid; // course_modules id used for testing
|
||||
protected $sectionid; // course_sections id used for testing
|
||||
protected $courseid; // course id used for testing
|
||||
protected $user; // user record used for testing
|
||||
|
||||
function __construct() {
|
||||
global $DB, $USER, $CFG;
|
||||
|
||||
$this->moduleid = 0;
|
||||
$this->sectionid = 0;
|
||||
$this->courseid = 0;
|
||||
$this->userid = $USER->id;
|
||||
$this->todelete = array();
|
||||
|
||||
// Check we have (at least) one course_module
|
||||
if ($coursemodule = $DB->get_record('course_modules', array(), '*', IGNORE_MULTIPLE)) {
|
||||
$this->moduleid = $coursemodule->id;
|
||||
$this->sectionid = $coursemodule->section;
|
||||
$this->courseid = $coursemodule->course;
|
||||
}
|
||||
|
||||
// Avoid any logger to be created, we'll restore original settings on tearDown()
|
||||
$this->errorlogloggerlevel = isset($CFG->backup_error_log_logger_level) ? $CFG->backup_error_log_logger_level : null;
|
||||
$this->fileloggerlevel = isset($CFG->backup_file_logger_level) ? $CFG->backup_file_logger_level : null;
|
||||
$this->databaseloggerlevel = isset($CFG->backup_database_logger_level) ? $CFG->backup_database_logger_level : null;
|
||||
$this->fileloggerlevelextra = isset($CFG->backup_file_logger_level_extra) ? $CFG->backup_file_logger_level_extra : null;
|
||||
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
function skip() {
|
||||
$this->skipIf(empty($this->moduleid), 'backup_step_test require at least one course module to exist');
|
||||
$this->skipIf(empty($this->sectionid),'backup_step_test require at least one course section to exist');
|
||||
$this->skipIf(empty($this->courseid), 'backup_step_test require at least one course to exist');
|
||||
$this->skipIf(empty($this->userid),'backup_step_test require one valid user to exist');
|
||||
}
|
||||
|
||||
function setUp() {
|
||||
global $CFG;
|
||||
|
||||
// Disable all loggers
|
||||
$CFG->backup_error_log_logger_level = backup::LOG_NONE;
|
||||
$CFG->backup_file_logger_level = backup::LOG_NONE;
|
||||
$CFG->backup_database_logger_level = backup::LOG_NONE;
|
||||
$CFG->backup_file_logger_level_extra = backup::LOG_NONE;
|
||||
}
|
||||
|
||||
function tearDown() {
|
||||
global $DB, $CFG;
|
||||
// Delete all the records marked to
|
||||
foreach ($this->todelete as $todelete) {
|
||||
$DB->delete_records($todelete[0], array('id' => $todelete[1]));
|
||||
}
|
||||
// Restore original file_logger levels
|
||||
if ($this->errorlogloggerlevel !== null) {
|
||||
$CFG->backup_error_log_logger_level = $this->errorlogloggerlevel;
|
||||
} else {
|
||||
unset($CFG->backup_error_log_logger_level);
|
||||
}
|
||||
if ($this->fileloggerlevel !== null) {
|
||||
$CFG->backup_file_logger_level = $this->fileloggerlevel;
|
||||
} else {
|
||||
unset($CFG->backup_file_logger_level);
|
||||
}
|
||||
if ($this->databaseloggerlevel !== null) {
|
||||
$CFG->backup_database_logger_level = $this->databaseloggerlevel;
|
||||
} else {
|
||||
unset($CFG->backup_database_logger_level);
|
||||
}
|
||||
if ($this->fileloggerlevelextra !== null) {
|
||||
$CFG->backup_file_logger_level_extra = $this->fileloggerlevelextra;
|
||||
} else {
|
||||
unset($CFG->backup_file_logger_level_extra);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* test base_step class
|
||||
*/
|
||||
function test_base_step() {
|
||||
|
||||
$bp = new mock_base_plan('planname'); // We need one plan
|
||||
$bt = new mock_base_task('taskname', $bp); // We need one task
|
||||
// Instantiate
|
||||
$bs = new mock_base_step('stepname', $bt);
|
||||
$this->assertTrue($bs instanceof base_step);
|
||||
$this->assertEqual($bs->get_name(), 'stepname');
|
||||
}
|
||||
|
||||
/*
|
||||
* test backup_step class
|
||||
*/
|
||||
function test_backup_step() {
|
||||
|
||||
// We need one (non interactive) controller for instatiating plan
|
||||
$bc = new backup_controller(backup::TYPE_1ACTIVITY, $this->moduleid, backup::FORMAT_MOODLE,
|
||||
backup::INTERACTIVE_NO, backup::MODE_GENERAL, $this->userid);
|
||||
// We need one plan
|
||||
$bp = new backup_plan($bc);
|
||||
// We need one task
|
||||
$bt = new mock_backup_task('taskname', $bp);
|
||||
// Instantiate step
|
||||
$bs = new mock_backup_step('stepname', $bt);
|
||||
$this->assertTrue($bs instanceof backup_step);
|
||||
$this->assertEqual($bs->get_name(), 'stepname');
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* test backup_structure_step class
|
||||
*/
|
||||
function test_backup_structure_step() {
|
||||
global $CFG;
|
||||
|
||||
$file = $CFG->dataroot . '/temp/test/test_backup_structure_step.txt';
|
||||
// Remove the test dir and any content
|
||||
@remove_dir(dirname($file));
|
||||
// Recreate test dir
|
||||
if (!check_dir_exists(dirname($file), true, true)) {
|
||||
throw moodle_exception('error_creating_temp_dir', 'error', dirname($file));
|
||||
}
|
||||
|
||||
// We need one (non interactive) controller for instatiating plan
|
||||
$bc = new backup_controller(backup::TYPE_1ACTIVITY, $this->moduleid, backup::FORMAT_MOODLE,
|
||||
backup::INTERACTIVE_NO, backup::MODE_GENERAL, $this->userid);
|
||||
// We need one plan
|
||||
$bp = new backup_plan($bc);
|
||||
// We need one task with mocked basepath
|
||||
$bt = new mock_backup_task_basepath('taskname');
|
||||
$bp->add_task($bt);
|
||||
// Instantiate backup_structure_step (and add it to task)
|
||||
$bs = new mock_backup_structure_step('steptest', basename($file), $bt);
|
||||
// Execute backup_structure_step
|
||||
$bs->execute();
|
||||
|
||||
// Test file has been created
|
||||
$this->assertTrue(file_exists($file));
|
||||
|
||||
// Some simple tests with contents
|
||||
$contents = file_get_contents($file);
|
||||
$this->assertTrue(strpos($contents, '<?xml version="1.0"') !== false);
|
||||
$this->assertTrue(strpos($contents, '<test id="1">') !== false);
|
||||
$this->assertTrue(strpos($contents, '<field1>value1</field1>') !== false);
|
||||
$this->assertTrue(strpos($contents, '<field2>value2</field2>') !== false);
|
||||
$this->assertTrue(strpos($contents, '</test>') !== false);
|
||||
|
||||
unlink($file); // delete file
|
||||
|
||||
// Remove the test dir and any content
|
||||
@remove_dir(dirname($file));
|
||||
}
|
||||
|
||||
/**
|
||||
* wrong base_step class tests
|
||||
*/
|
||||
function test_base_step_wrong() {
|
||||
|
||||
// Try to pass one wrong task
|
||||
try {
|
||||
$bt = new mock_base_step('teststep', new stdclass());
|
||||
$this->assertTrue(false, 'base_step_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof base_step_exception);
|
||||
$this->assertEqual($e->errorcode, 'wrong_base_task_specified');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* wrong backup_step class tests
|
||||
*/
|
||||
function test_backup_test_wrong() {
|
||||
|
||||
// Try to pass one wrong task
|
||||
try {
|
||||
$bt = new mock_backup_step('teststep', new stdclass());
|
||||
$this->assertTrue(false, 'backup_step_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof backup_step_exception);
|
||||
$this->assertEqual($e->errorcode, 'wrong_backup_task_specified');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Instantiable class extending base_step in order to be able to perform tests
|
||||
*/
|
||||
class mock_base_step extends base_step {
|
||||
public function execute() {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Instantiable class extending backup_step in order to be able to perform tests
|
||||
*/
|
||||
class mock_backup_step extends backup_step {
|
||||
public function execute() {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Instantiable class extending backup_task in order to mockup get_taskbasepath()
|
||||
*/
|
||||
class mock_backup_task_basepath extends backup_task {
|
||||
|
||||
public function build() {
|
||||
// Nothing to do
|
||||
}
|
||||
|
||||
public function define_settings() {
|
||||
// Nothing to do
|
||||
}
|
||||
|
||||
public function get_taskbasepath() {
|
||||
global $CFG;
|
||||
return $CFG->dataroot . '/temp/test';
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Instantiable class extending backup_structure_step in order to be able to perform tests
|
||||
*/
|
||||
class mock_backup_structure_step extends backup_structure_step {
|
||||
|
||||
protected function define_structure() {
|
||||
|
||||
// Create really simple structure (1 nested with 1 attr and 2 fields)
|
||||
$test = new backup_nested_element('test',
|
||||
array('id'),
|
||||
array('field1', 'field2')
|
||||
);
|
||||
$test->set_source_array(array(array('id' => 1, 'field1' => 'value1', 'field2' => 'value2')));
|
||||
|
||||
return $test;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Instantiable class extending activity_backup_setting to be added to task and perform tests
|
||||
*/
|
||||
class mock_fullpath_activity_setting extends activity_backup_setting {
|
||||
public function process_change($setting, $ctype, $oldv) {
|
||||
// Nothing to do
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Instantiable class extending activity_backup_setting to be added to task and perform tests
|
||||
*/
|
||||
class mock_backupid_activity_setting extends activity_backup_setting {
|
||||
public function process_change($setting, $ctype, $oldv) {
|
||||
// Nothing to do
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,236 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-tests
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
// Prevent direct access to this file
|
||||
if (!defined('MOODLE_INTERNAL')) {
|
||||
die('Direct access to this script is forbidden.');
|
||||
}
|
||||
|
||||
// Include all the needed stuff
|
||||
require_once($CFG->dirroot . '/backup/util/interfaces/checksumable.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/interfaces/executable.class.php');
|
||||
require_once($CFG->dirroot . '/backup/backup.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/factories/backup_factory.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/dbops/backup_dbops.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/dbops/backup_controller_dbops.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/helper/backup_helper.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/helper/backup_general_helper.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/checks/backup_check.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/loggers/base_logger.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/loggers/error_log_logger.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/loggers/file_logger.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/loggers/database_logger.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/loggers/output_indented_logger.class.php');
|
||||
require_once($CFG->dirroot . '/backup/controller/backup_controller.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/plan/base_plan.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/plan/backup_plan.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/plan/base_task.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/plan/backup_task.class.php');
|
||||
|
||||
/*
|
||||
* task tests (all)
|
||||
*/
|
||||
class backup_task_test extends UnitTestCase {
|
||||
|
||||
public static $includecoverage = array('backup/util/plan');
|
||||
public static $excludecoverage = array('backup/util/plan/simpletest');
|
||||
|
||||
protected $moduleid; // course_modules id used for testing
|
||||
protected $sectionid; // course_sections id used for testing
|
||||
protected $courseid; // course id used for testing
|
||||
protected $user; // user record used for testing
|
||||
|
||||
function __construct() {
|
||||
global $DB, $USER, $CFG;
|
||||
|
||||
$this->moduleid = 0;
|
||||
$this->sectionid = 0;
|
||||
$this->courseid = 0;
|
||||
$this->userid = $USER->id;
|
||||
$this->todelete = array();
|
||||
|
||||
// Check we have (at least) one course_module
|
||||
if ($coursemodule = $DB->get_record('course_modules', array(), '*', IGNORE_MULTIPLE)) {
|
||||
$this->moduleid = $coursemodule->id;
|
||||
$this->sectionid = $coursemodule->section;
|
||||
$this->courseid = $coursemodule->course;
|
||||
}
|
||||
|
||||
// Avoid any logger to be created, we'll restore original settings on tearDown()
|
||||
$this->errorlogloggerlevel = isset($CFG->backup_error_log_logger_level) ? $CFG->backup_error_log_logger_level : null;
|
||||
$this->fileloggerlevel = isset($CFG->backup_file_logger_level) ? $CFG->backup_file_logger_level : null;
|
||||
$this->databaseloggerlevel = isset($CFG->backup_database_logger_level) ? $CFG->backup_database_logger_level : null;
|
||||
$this->fileloggerlevelextra = isset($CFG->backup_file_logger_level_extra) ? $CFG->backup_file_logger_level_extra : null;
|
||||
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
function skip() {
|
||||
$this->skipIf(empty($this->moduleid), 'backup_task_test require at least one course module to exist');
|
||||
$this->skipIf(empty($this->sectionid),'backup_task_test require at least one course section to exist');
|
||||
$this->skipIf(empty($this->courseid), 'backup_task_test require at least one course to exist');
|
||||
$this->skipIf(empty($this->userid),'backup_task_test require one valid user to exist');
|
||||
}
|
||||
|
||||
function setUp() {
|
||||
global $CFG;
|
||||
|
||||
// Disable all loggers
|
||||
$CFG->backup_error_log_logger_level = backup::LOG_NONE;
|
||||
$CFG->backup_file_logger_level = backup::LOG_NONE;
|
||||
$CFG->backup_database_logger_level = backup::LOG_NONE;
|
||||
$CFG->backup_file_logger_level_extra = backup::LOG_NONE;
|
||||
}
|
||||
|
||||
function tearDown() {
|
||||
global $DB, $CFG;
|
||||
// Delete all the records marked to
|
||||
foreach ($this->todelete as $todelete) {
|
||||
$DB->delete_records($todelete[0], array('id' => $todelete[1]));
|
||||
}
|
||||
// Restore original file_logger levels
|
||||
if ($this->errorlogloggerlevel !== null) {
|
||||
$CFG->backup_error_log_logger_level = $this->errorlogloggerlevel;
|
||||
} else {
|
||||
unset($CFG->backup_error_log_logger_level);
|
||||
}
|
||||
if ($this->fileloggerlevel !== null) {
|
||||
$CFG->backup_file_logger_level = $this->fileloggerlevel;
|
||||
} else {
|
||||
unset($CFG->backup_file_logger_level);
|
||||
}
|
||||
if ($this->databaseloggerlevel !== null) {
|
||||
$CFG->backup_database_logger_level = $this->databaseloggerlevel;
|
||||
} else {
|
||||
unset($CFG->backup_database_logger_level);
|
||||
}
|
||||
if ($this->fileloggerlevelextra !== null) {
|
||||
$CFG->backup_file_logger_level_extra = $this->fileloggerlevelextra;
|
||||
} else {
|
||||
unset($CFG->backup_file_logger_level_extra);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* test base_task class
|
||||
*/
|
||||
function test_base_task() {
|
||||
|
||||
$bp = new mock_base_plan('planname'); // We need one plan
|
||||
// Instantiate
|
||||
$bt = new mock_base_task('taskname', $bp);
|
||||
$this->assertTrue($bt instanceof base_task);
|
||||
$this->assertEqual($bt->get_name(), 'taskname');
|
||||
$this->assertTrue(is_array($bt->get_settings()));
|
||||
$this->assertEqual(count($bt->get_settings()), 0);
|
||||
$this->assertTrue(is_array($bt->get_steps()));
|
||||
$this->assertEqual(count($bt->get_steps()), 0);
|
||||
}
|
||||
|
||||
/*
|
||||
* test backup_task class
|
||||
*/
|
||||
function test_backup_task() {
|
||||
|
||||
// We need one (non interactive) controller for instatiating plan
|
||||
$bc = new backup_controller(backup::TYPE_1ACTIVITY, $this->moduleid, backup::FORMAT_MOODLE,
|
||||
backup::INTERACTIVE_NO, backup::MODE_GENERAL, $this->userid);
|
||||
// We need one plan
|
||||
$bp = new backup_plan($bc);
|
||||
// Instantiate task
|
||||
$bt = new mock_backup_task('taskname', $bp);
|
||||
$this->assertTrue($bt instanceof backup_task);
|
||||
$this->assertEqual($bt->get_name(), 'taskname');
|
||||
|
||||
// Calculate checksum and check it
|
||||
$checksum = $bt->calculate_checksum();
|
||||
$this->assertTrue($bt->is_checksum_correct($checksum));
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* wrong base_task class tests
|
||||
*/
|
||||
function test_base_task_wrong() {
|
||||
|
||||
// Try to pass one wrong plan
|
||||
try {
|
||||
$bt = new mock_base_task('tasktest', new stdclass());
|
||||
$this->assertTrue(false, 'base_task_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof base_task_exception);
|
||||
$this->assertEqual($e->errorcode, 'wrong_base_plan_specified');
|
||||
}
|
||||
|
||||
// Add wrong step to task
|
||||
$bp = new mock_base_plan('planname'); // We need one plan
|
||||
// Instantiate
|
||||
$bt = new mock_base_task('taskname', $bp);
|
||||
try {
|
||||
$bt->add_step(new stdclass());
|
||||
$this->assertTrue(false, 'base_task_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof base_task_exception);
|
||||
$this->assertEqual($e->errorcode, 'wrong_base_step_specified');
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* wrong backup_task class tests
|
||||
*/
|
||||
function test_backup_task_wrong() {
|
||||
|
||||
// Try to pass one wrong plan
|
||||
try {
|
||||
$bt = new mock_backup_task('tasktest', new stdclass());
|
||||
$this->assertTrue(false, 'backup_task_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof backup_task_exception);
|
||||
$this->assertEqual($e->errorcode, 'wrong_backup_plan_specified');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Instantiable class extending base_task in order to be able to perform tests
|
||||
*/
|
||||
class mock_base_task extends base_task {
|
||||
public function build() {
|
||||
}
|
||||
|
||||
public function define_settings() {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Instantiable class extending backup_task in order to be able to perform tests
|
||||
*/
|
||||
class mock_backup_task extends backup_task {
|
||||
public function build() {
|
||||
}
|
||||
|
||||
public function define_settings() {
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-settings
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* Abstract class containing all the common stuff for activity backup settings
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
abstract class activity_backup_setting extends backup_setting {
|
||||
|
||||
public function __construct($name, $vtype, $value = null, $visibility = self::VISIBLE, $status = self::NOT_LOCKED) {
|
||||
$this->level = self::ACTIVITY_LEVEL;
|
||||
parent::__construct($name, $vtype, $value, $visibility, $status);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,73 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-settings
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* This abstract class defines one backup_setting
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
abstract class backup_setting extends base_setting implements checksumable {
|
||||
|
||||
// Some constants defining levels of setting
|
||||
const ROOT_LEVEL = 1;
|
||||
const COURSE_LEVEL = 5;
|
||||
const SECTION_LEVEL = 9;
|
||||
const ACTIVITY_LEVEL = 13;
|
||||
|
||||
protected $level; // level of the setting
|
||||
|
||||
public function get_level() {
|
||||
return $this->level;
|
||||
}
|
||||
|
||||
public function add_dependency($obj) {
|
||||
if (! $obj instanceof backup_setting) {
|
||||
throw new backup_setting_exception('dependency_is_not_backkup_setting');
|
||||
}
|
||||
// Check the dependency level is >= current level
|
||||
if ($obj->get_level() < $this->level) {
|
||||
throw new backup_setting_exception('cannot_add_upper_level_dependency');
|
||||
}
|
||||
parent::add_dependency($obj);
|
||||
}
|
||||
|
||||
// checksumable interface methods
|
||||
|
||||
public function calculate_checksum() {
|
||||
// Checksum is a simple md5 hash of name, value, level
|
||||
// Not following dependencies at all. Each setting will
|
||||
// calculate its own checksum
|
||||
return md5($this->name . '-' . $this->value . '-' . $this->level);
|
||||
}
|
||||
|
||||
public function is_checksum_correct($checksum) {
|
||||
return $this->calculate_checksum() === $checksum;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Exception class used by all the @backup_setting stuff
|
||||
*/
|
||||
class backup_setting_exception extends base_setting_exception {
|
||||
}
|
||||
@@ -0,0 +1,298 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-settings
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* This abstract class defines one basic setting
|
||||
*
|
||||
* Each setting will be able to control its name, value (from a list), ui
|
||||
* representation (check box, drop down, text field...), visibility, status
|
||||
* (editable/locked...) and its hierarchy with other settings (using one
|
||||
* like-observer pattern.
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
abstract class base_setting {
|
||||
|
||||
// Some constants defining different ui representations for the setting
|
||||
const UI_NONE = 0;
|
||||
const UI_HTML_CHECKBOX = 10;
|
||||
const UI_HTML_RADIOBUTTON = 20;
|
||||
const UI_HTML_DROPDOWN = 30;
|
||||
const UI_HTML_TEXTFIELD = 40;
|
||||
|
||||
// Type of validation to perform against the value (relaying in PARAM_XXX validations)
|
||||
const IS_BOOLEAN = 'bool';
|
||||
const IS_INTEGER = 'int';
|
||||
const IS_FILENAME= 'file';
|
||||
const IS_PATH = 'path';
|
||||
|
||||
// Visible/hidden
|
||||
const VISIBLE = 1;
|
||||
const HIDDEN = 0;
|
||||
|
||||
// Editable/locked (by different causes)
|
||||
const NOT_LOCKED = 5;
|
||||
const LOCKED_BY_PERMISSION = 6;
|
||||
const LOCKED_BY_HIERARCHY = 7;
|
||||
|
||||
// Type of change to inform dependencies
|
||||
const CHANGED_VALUE = 1;
|
||||
const CHANGED_VISIBILITY = 2;
|
||||
const CHANGED_STATUS = 3;
|
||||
|
||||
protected $name; // name of the setting
|
||||
protected $value; // value of the setting
|
||||
protected $vtype; // type of value (setting_base::IS_BOOLEAN/setting_base::IS_INTEGER...)
|
||||
|
||||
protected $visibility; // visibility of the setting (setting_base::VISIBLE/setting_base::HIDDEN)
|
||||
protected $status; // setting_base::NOT_LOCKED/setting_base::LOCKED_BY_PERMISSION...
|
||||
|
||||
protected $dependencies; // array of dependent (observer) objects (usually setting_base ones)
|
||||
|
||||
// Note: all the UI stuff could go to independent classes in the future...
|
||||
protected $ui_type; // setting_base::UI_HTML_CHECKBOX/setting_base::UI_HTML_RADIOBUTTON...
|
||||
protected $ui_label; // UI label of the setting
|
||||
protected $ui_values; // array of value => ui value of the setting
|
||||
protected $ui_options;// array of custom ui options
|
||||
|
||||
public function __construct($name, $vtype, $value = null, $visibility = self::VISIBLE, $status = self::NOT_LOCKED) {
|
||||
// Check vtype
|
||||
if ($vtype !== self::IS_BOOLEAN && $vtype !== self::IS_INTEGER &&
|
||||
$vtype !== self::IS_FILENAME && $vtype !== self::IS_PATH) {
|
||||
throw new base_setting_exception('setting_invalid_type');
|
||||
}
|
||||
|
||||
// Validate value
|
||||
$value = $this->validate_value($vtype, $value);
|
||||
|
||||
// Check visibility
|
||||
$visibility = $this->validate_visibility($visibility);
|
||||
|
||||
// Check status
|
||||
$status = $this->validate_status($status);
|
||||
|
||||
$this->name = $name;
|
||||
$this->vtype = $vtype;
|
||||
$this->value = $value;
|
||||
$this->visibility = $visibility;
|
||||
$this->status = $status;
|
||||
$this->dependencies= array();
|
||||
|
||||
// Apply these defaults
|
||||
$this->ui_type = self::UI_HTML_DROPDOWN;
|
||||
$this->ui_label = $name;
|
||||
$this->ui_values = array();
|
||||
$this->ui_options = array();
|
||||
}
|
||||
|
||||
public function get_name() {
|
||||
return $this->name;
|
||||
}
|
||||
|
||||
public function get_value() {
|
||||
return $this->value;
|
||||
}
|
||||
|
||||
public function get_visibility() {
|
||||
return $this->visibility;
|
||||
}
|
||||
|
||||
public function get_status() {
|
||||
return $this->status;
|
||||
}
|
||||
|
||||
public function set_value($value) {
|
||||
// Validate value
|
||||
$value = $this->validate_value($this->vtype, $value);
|
||||
// Only can change value if setting is not locked
|
||||
if ($this->status != self::NOT_LOCKED) {
|
||||
switch ($this->status) {
|
||||
case self::LOCKED_BY_PERMISSION:
|
||||
throw new base_setting_exception('setting_locked_by_permission');
|
||||
case self::LOCKED_BY_HIERARCHY:
|
||||
throw new base_setting_exception('setting_locked_by_hierarchy');
|
||||
}
|
||||
}
|
||||
$oldvalue = $this->value;
|
||||
$this->value = $value;
|
||||
if ($value !== $oldvalue) { // Value has changed, let's inform dependencies
|
||||
$this->inform_dependencies(self::CHANGED_VALUE, $oldvalue);
|
||||
}
|
||||
}
|
||||
|
||||
public function set_visibility($visibility) {
|
||||
$visibility = $this->validate_visibility($visibility);
|
||||
$oldvisibility = $this->visibility;
|
||||
$this->visibility = $visibility;
|
||||
if ($visibility !== $oldvisibility) { // Visibility has changed, let's inform dependencies
|
||||
$this->inform_dependencies(self::CHANGED_VISIBILITY, $oldvisibility);
|
||||
}
|
||||
}
|
||||
|
||||
public function set_status($status) {
|
||||
$status = $this->validate_status($status);
|
||||
$oldstatus = $this->status;
|
||||
$this->status = $status;
|
||||
if ($status !== $oldstatus) { // Status has changed, let's inform dependencies
|
||||
$this->inform_dependencies(self::CHANGED_STATUS, $oldstatus);
|
||||
}
|
||||
}
|
||||
|
||||
public function set_ui($type, $label, $values, $options) {
|
||||
$type = $this->validate_ui_type($type);
|
||||
$label =$this->validate_ui_label($label);
|
||||
$this->ui_type = $type;
|
||||
$this->ui_label = $label;
|
||||
$this->set_ui_values($values);
|
||||
$this->set_ui_options($options);
|
||||
}
|
||||
|
||||
public function set_ui_values($values) {
|
||||
$this->ui_values = $values;
|
||||
}
|
||||
|
||||
public function set_ui_options($options) {
|
||||
$this->ui_options = $options;
|
||||
}
|
||||
|
||||
public function add_dependency($obj) {
|
||||
if ($this->is_circular_reference($obj)) {
|
||||
$a = new stdclass();
|
||||
$a->alreadydependent = $this->name;
|
||||
$a->main = $obj->get_name();
|
||||
throw new base_setting_exception('setting_circular_reference', $a);
|
||||
}
|
||||
// Check the settings hasn't been already added
|
||||
if (array_key_exists($obj->get_name(), $this->dependencies)) {
|
||||
throw new base_setting_exception('setting_already_added');
|
||||
}
|
||||
$this->dependencies[$obj->get_name()] = $obj;
|
||||
}
|
||||
|
||||
// Protected API starts here
|
||||
|
||||
protected function validate_value($vtype, $value) {
|
||||
if (is_null($value)) { // Nulls aren't validated
|
||||
return null;
|
||||
}
|
||||
$oldvalue = $value;
|
||||
switch ($vtype) {
|
||||
case self::IS_BOOLEAN:
|
||||
$value = clean_param($oldvalue, PARAM_BOOL); // Just clean
|
||||
break;
|
||||
case self::IS_INTEGER:
|
||||
$value = clean_param($oldvalue, PARAM_INT);
|
||||
if ($value != $oldvalue) {
|
||||
throw new base_setting_exception('setting_invalid_integer', $oldvalue);
|
||||
}
|
||||
break;
|
||||
case self::IS_FILENAME:
|
||||
$value = clean_param($oldvalue, PARAM_FILE);
|
||||
if ($value != $oldvalue) {
|
||||
throw new base_setting_exception('setting_invalid_filename', $oldvalue);
|
||||
}
|
||||
break;
|
||||
case self::IS_PATH:
|
||||
$value = clean_param($oldvalue, PARAM_PATH);
|
||||
if ($value != $oldvalue) {
|
||||
throw new base_setting_exception('setting_invalid_path', $oldvalue);
|
||||
}
|
||||
break;
|
||||
}
|
||||
return $value;
|
||||
}
|
||||
|
||||
protected function validate_visibility($visibility) {
|
||||
if (is_null($visibility)) {
|
||||
$visibility = self::VISIBLE;
|
||||
}
|
||||
if ($visibility !== self::VISIBLE && $visibility !== self::HIDDEN) {
|
||||
throw new base_setting_exception('setting_invalid_visibility');
|
||||
}
|
||||
return $visibility;
|
||||
}
|
||||
|
||||
protected function validate_status($status) {
|
||||
if (is_null($status)) {
|
||||
$status = self::NOT_LOCKED;
|
||||
}
|
||||
if ($status !== self::NOT_LOCKED && $status !== self::LOCKED_BY_PERMISSION && $status !== self::LOCKED_BY_HIERARCHY) {
|
||||
throw new base_setting_exception('setting_invalid_status');
|
||||
}
|
||||
return $status;
|
||||
}
|
||||
|
||||
protected function validate_ui_type($type) {
|
||||
if ($type !== self::UI_HTML_CHECKBOX && $type !== self::UI_HTML_RADIOBUTTON &&
|
||||
$type !== self::UI_HTML_DROPDOWN && $type !== self::UI_HTML_TEXTFIELD) {
|
||||
throw new base_setting_exception('setting_invalid_ui_type');
|
||||
}
|
||||
return $type;
|
||||
}
|
||||
|
||||
protected function validate_ui_label($label) {
|
||||
if (empty($label) || $label !== clean_param($label, PARAM_ALPHAEXT)) {
|
||||
throw new base_setting_exception('setting_invalid_ui_label');
|
||||
}
|
||||
return $label;
|
||||
}
|
||||
|
||||
protected function inform_dependencies($ctype, $oldv) {
|
||||
foreach ($this->dependencies as $dependency) {
|
||||
$dependency->process_change($this, $ctype, $oldv);
|
||||
}
|
||||
}
|
||||
|
||||
protected function is_circular_reference($obj) {
|
||||
// Get object dependencies recursively and check (by name) if $this is already there
|
||||
$dependencies = $obj->get_dependencies();
|
||||
if (array_key_exists($this->name, $dependencies) || $obj == $this) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
protected function get_dependencies() {
|
||||
$dependencies = array();
|
||||
foreach ($this->dependencies as $dependency) {
|
||||
$dependencies[$dependency->get_name()] = $dependency->get_name();
|
||||
$dependencies = array_merge($dependencies, $dependency->get_dependencies());
|
||||
}
|
||||
return $dependencies;
|
||||
}
|
||||
|
||||
// Implementable API starts here
|
||||
|
||||
abstract public function process_change($setting, $ctype, $oldv);
|
||||
}
|
||||
|
||||
/*
|
||||
* Exception class used by all the @setting_base stuff
|
||||
*/
|
||||
class base_setting_exception extends backup_exception {
|
||||
|
||||
public function __construct($errorcode, $a=NULL, $debuginfo=null) {
|
||||
parent::__construct($errorcode, $a, $debuginfo);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-settings
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* Abstract class containing all the common stuff for course backup settings
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
abstract class course_backup_setting extends backup_setting {
|
||||
|
||||
public function __construct($name, $vtype, $value = null, $visibility = self::VISIBLE, $status = self::NOT_LOCKED) {
|
||||
$this->level = self::COURSE_LEVEL;
|
||||
parent::__construct($name, $vtype, $value, $visibility, $status);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-settings
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* Abstract class containing all the common stuff for root backup settings
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
abstract class root_backup_setting extends backup_setting {
|
||||
|
||||
public function __construct($name, $vtype, $value = null, $visibility = self::VISIBLE, $status = self::NOT_LOCKED) {
|
||||
$this->level = self::ROOT_LEVEL;
|
||||
parent::__construct($name, $vtype, $value, $visibility, $status);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-settings
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* Abstract class containing all the common stuff for section backup settings
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
abstract class section_backup_setting extends backup_setting {
|
||||
|
||||
public function __construct($name, $vtype, $value = null, $visibility = self::VISIBLE, $status = self::NOT_LOCKED) {
|
||||
$this->level = self::SECTION_LEVEL;
|
||||
parent::__construct($name, $vtype, $value, $visibility, $status);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,427 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-tests
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
// Prevent direct access to this file
|
||||
if (!defined('MOODLE_INTERNAL')) {
|
||||
die('Direct access to this script is forbidden.');
|
||||
}
|
||||
|
||||
// Include all the needed stuff
|
||||
require_once($CFG->dirroot . '/backup/util/interfaces/checksumable.class.php');
|
||||
require_once($CFG->dirroot . '/backup/backup.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/settings/base_setting.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/settings/backup_setting.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/settings/root/root_backup_setting.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/settings/activity/activity_backup_setting.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/settings/section/section_backup_setting.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/settings/course/course_backup_setting.class.php');
|
||||
|
||||
/*
|
||||
* setting tests (all)
|
||||
*/
|
||||
class setting_test extends UnitTestCase {
|
||||
|
||||
public static $includecoverage = array('backup/util/settings');
|
||||
public static $excludecoverage = array('backup/util/settings/simpletest');
|
||||
|
||||
/*
|
||||
* test base_setting class
|
||||
*/
|
||||
function test_base_setting() {
|
||||
// Instantiate base_setting and check everything
|
||||
$bs = new mock_base_setting('test', base_setting::IS_BOOLEAN);
|
||||
$this->assertTrue($bs instanceof base_setting);
|
||||
$this->assertEqual($bs->get_name(), 'test');
|
||||
$this->assertEqual($bs->get_vtype(), base_setting::IS_BOOLEAN);
|
||||
$this->assertTrue(is_null($bs->get_value()));
|
||||
$this->assertEqual($bs->get_visibility(), base_setting::VISIBLE);
|
||||
$this->assertEqual($bs->get_status(), base_setting::NOT_LOCKED);
|
||||
|
||||
// Instantiate base_setting with explicit nulls
|
||||
$bs = new mock_base_setting('test', base_setting::IS_FILENAME, 'filename.txt', null, null);
|
||||
$this->assertEqual($bs->get_value() , 'filename.txt');
|
||||
$this->assertEqual($bs->get_visibility(), base_setting::VISIBLE);
|
||||
$this->assertEqual($bs->get_status(), base_setting::NOT_LOCKED);
|
||||
|
||||
// Instantiate base_setting and set value, visibility and status
|
||||
$bs = new mock_base_setting('test', base_setting::IS_BOOLEAN);
|
||||
$bs->set_value(true);
|
||||
$this->assertTrue($bs->get_value());
|
||||
$bs->set_visibility(base_setting::HIDDEN);
|
||||
$this->assertEqual($bs->get_visibility(), base_setting::HIDDEN);
|
||||
$bs->set_status(base_setting::LOCKED_BY_HIERARCHY);
|
||||
$this->assertEqual($bs->get_status(), base_setting::LOCKED_BY_HIERARCHY);
|
||||
|
||||
// Instantiate with wrong vtype
|
||||
try {
|
||||
$bs = new mock_base_setting('test', 'one_wrong_type');
|
||||
$this->assertTrue(false, 'base_setting_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof base_setting_exception);
|
||||
$this->assertEqual($e->errorcode, 'setting_invalid_type');
|
||||
}
|
||||
|
||||
// Instantiate with wrong integer value
|
||||
try {
|
||||
$bs = new mock_base_setting('test', base_setting::IS_INTEGER, 99.99);
|
||||
$this->assertTrue(false, 'base_setting_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof base_setting_exception);
|
||||
$this->assertEqual($e->errorcode, 'setting_invalid_integer');
|
||||
}
|
||||
|
||||
// Instantiate with wrong filename value
|
||||
try {
|
||||
$bs = new mock_base_setting('test', base_setting::IS_FILENAME, '../../filename.txt');
|
||||
$this->assertTrue(false, 'base_setting_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof base_setting_exception);
|
||||
$this->assertEqual($e->errorcode, 'setting_invalid_filename');
|
||||
}
|
||||
|
||||
// Instantiate with wrong visibility
|
||||
try {
|
||||
$bs = new mock_base_setting('test', base_setting::IS_BOOLEAN, null, 'one_wrong_visibility');
|
||||
$this->assertTrue(false, 'base_setting_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof base_setting_exception);
|
||||
$this->assertEqual($e->errorcode, 'setting_invalid_visibility');
|
||||
}
|
||||
|
||||
// Instantiate with wrong status
|
||||
try {
|
||||
$bs = new mock_base_setting('test', base_setting::IS_BOOLEAN, null, null, 'one_wrong_status');
|
||||
$this->assertTrue(false, 'base_setting_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof base_setting_exception);
|
||||
$this->assertEqual($e->errorcode, 'setting_invalid_status');
|
||||
}
|
||||
|
||||
// Instantiate base_setting and try to set wrong ui_type
|
||||
$bs = new mock_base_setting('test', base_setting::IS_BOOLEAN);
|
||||
try {
|
||||
$bs->set_ui('one_wrong_ui_type', 'label', array(), array());
|
||||
$this->assertTrue(false, 'base_setting_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof base_setting_exception);
|
||||
$this->assertEqual($e->errorcode, 'setting_invalid_ui_type');
|
||||
}
|
||||
|
||||
// Instantiate base_setting and try to set wrong ui_label
|
||||
$bs = new mock_base_setting('test', base_setting::IS_BOOLEAN);
|
||||
try {
|
||||
$bs->set_ui(base_setting::UI_HTML_CHECKBOX, 'one/wrong/label', array(), array());
|
||||
$this->assertTrue(false, 'base_setting_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof base_setting_exception);
|
||||
$this->assertEqual($e->errorcode, 'setting_invalid_ui_label');
|
||||
}
|
||||
// Try to change value of locked setting by permission
|
||||
$bs = new mock_base_setting('test', base_setting::IS_BOOLEAN, null, null, base_setting::LOCKED_BY_PERMISSION);
|
||||
try {
|
||||
$bs->set_value(true);
|
||||
$this->assertTrue(false, 'base_setting_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof base_setting_exception);
|
||||
$this->assertEqual($e->errorcode, 'setting_locked_by_permission');
|
||||
}
|
||||
|
||||
// Try to change value of locked setting by permission
|
||||
$bs = new mock_base_setting('test', base_setting::IS_BOOLEAN, null, null, base_setting::LOCKED_BY_HIERARCHY);
|
||||
try {
|
||||
$bs->set_value(true);
|
||||
$this->assertTrue(false, 'base_setting_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof base_setting_exception);
|
||||
$this->assertEqual($e->errorcode, 'setting_locked_by_hierarchy');
|
||||
}
|
||||
|
||||
// Try to add same setting twice
|
||||
$bs1 = new mock_base_setting('test1', base_setting::IS_INTEGER, null);
|
||||
$bs2 = new mock_base_setting('test2', base_setting::IS_INTEGER, null);
|
||||
$bs1->add_dependency($bs2);
|
||||
try {
|
||||
$bs1->add_dependency($bs2);
|
||||
$this->assertTrue(false, 'base_setting_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof base_setting_exception);
|
||||
$this->assertEqual($e->errorcode, 'setting_already_added');
|
||||
}
|
||||
|
||||
// Try to create one circular reference
|
||||
$bs1 = new mock_base_setting('test1', base_setting::IS_INTEGER, null);
|
||||
try {
|
||||
$bs1->add_dependency($bs1); // self
|
||||
$this->assertTrue(false, 'base_setting_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof base_setting_exception);
|
||||
$this->assertEqual($e->errorcode, 'setting_circular_reference');
|
||||
$this->assertTrue($e->a instanceof stdclass);
|
||||
$this->assertEqual($e->a->main, 'test1');
|
||||
$this->assertEqual($e->a->alreadydependent, 'test1');
|
||||
}
|
||||
|
||||
$bs1 = new mock_base_setting('test1', base_setting::IS_INTEGER, null);
|
||||
$bs2 = new mock_base_setting('test2', base_setting::IS_INTEGER, null);
|
||||
$bs3 = new mock_base_setting('test3', base_setting::IS_INTEGER, null);
|
||||
$bs4 = new mock_base_setting('test4', base_setting::IS_INTEGER, null);
|
||||
$bs1->add_dependency($bs2);
|
||||
$bs2->add_dependency($bs3);
|
||||
$bs3->add_dependency($bs4);
|
||||
try {
|
||||
$bs4->add_dependency($bs1);
|
||||
$this->assertTrue(false, 'base_setting_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof base_setting_exception);
|
||||
$this->assertEqual($e->errorcode, 'setting_circular_reference');
|
||||
$this->assertTrue($e->a instanceof stdclass);
|
||||
$this->assertEqual($e->a->main, 'test1');
|
||||
$this->assertEqual($e->a->alreadydependent, 'test4');
|
||||
}
|
||||
|
||||
// Create 3 settings and observe between them, last one must
|
||||
// automatically inherit all the settings defined in the main one
|
||||
$bs1 = new mock_base_setting('test1', base_setting::IS_INTEGER, null);
|
||||
$bs2 = new mock_base_setting('test2', base_setting::IS_INTEGER, null);
|
||||
$bs3 = new mock_base_setting('test3', base_setting::IS_INTEGER, null);
|
||||
$bs1->add_dependency($bs2);
|
||||
$bs2->add_dependency($bs3);
|
||||
// Check values are spreaded ok
|
||||
$bs1->set_value(123);
|
||||
$this->assertEqual($bs1->get_value(), 123);
|
||||
$this->assertEqual($bs2->get_value(), $bs1->get_value());
|
||||
$this->assertEqual($bs3->get_value(), $bs1->get_value());
|
||||
|
||||
// Add one more setting and set value again
|
||||
$bs4 = new mock_base_setting('test4', base_setting::IS_INTEGER, null);
|
||||
$bs2->add_dependency($bs4);
|
||||
$bs2->set_value(321);
|
||||
$this->assertEqual($bs2->get_value(), 321);
|
||||
$this->assertEqual($bs3->get_value(), $bs2->get_value());
|
||||
$this->assertEqual($bs4->get_value(), $bs3->get_value());
|
||||
|
||||
// Check visibility is spreaded ok
|
||||
$bs1->set_visibility(base_setting::HIDDEN);
|
||||
$this->assertEqual($bs2->get_visibility(), $bs1->get_visibility());
|
||||
$this->assertEqual($bs3->get_visibility(), $bs1->get_visibility());
|
||||
// Check status is spreaded ok
|
||||
$bs1->set_status(base_setting::LOCKED_BY_HIERARCHY);
|
||||
$this->assertEqual($bs2->get_status(), $bs1->get_status());
|
||||
$this->assertEqual($bs3->get_status(), $bs1->get_status());
|
||||
|
||||
// Create 3 settings and observe between them, put them in one array,
|
||||
// force serialize/deserialize to check the observable pattern continues
|
||||
// working after that
|
||||
$bs1 = new mock_base_setting('test1', base_setting::IS_INTEGER, null);
|
||||
$bs2 = new mock_base_setting('test2', base_setting::IS_INTEGER, null);
|
||||
$bs3 = new mock_base_setting('test3', base_setting::IS_INTEGER, null);
|
||||
$bs1->add_dependency($bs2);
|
||||
$bs2->add_dependency($bs3);
|
||||
// Serialize
|
||||
$arr = array($bs1, $bs2, $bs3);
|
||||
$ser = base64_encode(serialize($arr));
|
||||
// Unserialize and copy to new objects
|
||||
$newarr = unserialize(base64_decode($ser));
|
||||
$ubs1 = $newarr[0];
|
||||
$ubs2 = $newarr[1];
|
||||
$ubs3 = $newarr[2];
|
||||
// Must continue being base settings
|
||||
$this->assertTrue($ubs1 instanceof base_setting);
|
||||
$this->assertTrue($ubs2 instanceof base_setting);
|
||||
$this->assertTrue($ubs3 instanceof base_setting);
|
||||
// Set parent setting
|
||||
$ubs1->set_value(1234);
|
||||
$ubs1->set_visibility(base_setting::HIDDEN);
|
||||
$ubs1->set_status(base_setting::LOCKED_BY_HIERARCHY);
|
||||
// Check changes have been spreaded
|
||||
$this->assertEqual($ubs2->get_visibility(), $ubs1->get_visibility());
|
||||
$this->assertEqual($ubs3->get_visibility(), $ubs1->get_visibility());
|
||||
$this->assertEqual($ubs2->get_status(), $ubs1->get_status());
|
||||
$this->assertEqual($ubs3->get_status(), $ubs1->get_status());
|
||||
|
||||
// Check ui_attributes
|
||||
$bs1 = new mock_base_setting('test1', base_setting::IS_INTEGER, null);
|
||||
$bs1->set_ui(base_setting::UI_HTML_DROPDOWN, 'dropdown', array(1 => 'One', 2 => 'Two'), array('opt1' => 1, 'opt2' => 2));
|
||||
list($type, $label, $values, $options) = $bs1->get_ui_info();
|
||||
$this->assertEqual($type, base_setting::UI_HTML_DROPDOWN);
|
||||
$this->assertEqual($label, 'dropdown');
|
||||
$this->assertEqual(count($values), 2);
|
||||
$this->assertEqual($values[1], 'One');
|
||||
$this->assertEqual($values[2], 'Two');
|
||||
$this->assertEqual(count($options), 2);
|
||||
$this->assertEqual($options['opt1'], 1);
|
||||
$this->assertEqual($options['opt2'], 2);
|
||||
}
|
||||
|
||||
/*
|
||||
* test backup_setting class
|
||||
*/
|
||||
function test_backup_setting() {
|
||||
// Instantiate backup_setting class and set level
|
||||
$bs = new mock_backup_setting('test', base_setting::IS_INTEGER, null);
|
||||
$bs->set_level(1);
|
||||
$this->assertEqual($bs->get_level(), 1);
|
||||
|
||||
// Instantiate backup setting class and try to add one non backup_setting dependency
|
||||
$bs = new mock_backup_setting('test', base_setting::IS_INTEGER, null);
|
||||
try {
|
||||
$bs->add_dependency(new stdclass());
|
||||
$this->assertTrue(false, 'backup_setting_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof backup_setting_exception);
|
||||
$this->assertEqual($e->errorcode, 'dependency_is_not_backkup_setting');
|
||||
}
|
||||
|
||||
// Try to assing upper level dependency
|
||||
$bs1 = new mock_backup_setting('test1', base_setting::IS_INTEGER, null);
|
||||
$bs1->set_level(1);
|
||||
$bs2 = new mock_backup_setting('test2', base_setting::IS_INTEGER, null);
|
||||
$bs2->set_level(2);
|
||||
try {
|
||||
$bs2->add_dependency($bs1);
|
||||
$this->assertTrue(false, 'backup_setting_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof backup_setting_exception);
|
||||
$this->assertEqual($e->errorcode, 'cannot_add_upper_level_dependency');
|
||||
}
|
||||
|
||||
// Check dependencies are working ok
|
||||
$bs1 = new mock_backup_setting('test1', base_setting::IS_INTEGER, null);
|
||||
$bs1->set_level(1);
|
||||
$bs2 = new mock_backup_setting('test2', base_setting::IS_INTEGER, null);
|
||||
$bs2->set_level(1); // Same level *must* work
|
||||
$bs1->add_dependency($bs2);
|
||||
$bs1->set_value(123456);
|
||||
$this->assertEqual($bs2->get_value(), $bs1->get_value());
|
||||
}
|
||||
|
||||
/*
|
||||
* test activity_backup_setting class
|
||||
*/
|
||||
function test_activity_backup_setting() {
|
||||
$bs = new mock_activity_backup_setting('test', base_setting::IS_INTEGER, null);
|
||||
$this->assertEqual($bs->get_level(), backup_setting::ACTIVITY_LEVEL);
|
||||
|
||||
// Check checksum implementation is working
|
||||
$bs1 = new mock_activity_backup_setting('test', base_setting::IS_INTEGER, null);
|
||||
$bs1->set_value(123);
|
||||
$checksum = $bs1->calculate_checksum();
|
||||
$this->assertTrue($checksum);
|
||||
$this->assertTrue($bs1->is_checksum_correct($checksum));
|
||||
}
|
||||
|
||||
/*
|
||||
* test section_backup_setting class
|
||||
*/
|
||||
function test_section_backup_setting() {
|
||||
$bs = new mock_section_backup_setting('test', base_setting::IS_INTEGER, null);
|
||||
$this->assertEqual($bs->get_level(), backup_setting::SECTION_LEVEL);
|
||||
|
||||
// Check checksum implementation is working
|
||||
$bs1 = new mock_section_backup_setting('test', base_setting::IS_INTEGER, null);
|
||||
$bs1->set_value(123);
|
||||
$checksum = $bs1->calculate_checksum();
|
||||
$this->assertTrue($checksum);
|
||||
$this->assertTrue($bs1->is_checksum_correct($checksum));
|
||||
}
|
||||
|
||||
/*
|
||||
* test course_backup_setting class
|
||||
*/
|
||||
function test_course_backup_setting() {
|
||||
$bs = new mock_course_backup_setting('test', base_setting::IS_INTEGER, null);
|
||||
$this->assertEqual($bs->get_level(), backup_setting::COURSE_LEVEL);
|
||||
|
||||
// Check checksum implementation is working
|
||||
$bs1 = new mock_course_backup_setting('test', base_setting::IS_INTEGER, null);
|
||||
$bs1->set_value(123);
|
||||
$checksum = $bs1->calculate_checksum();
|
||||
$this->assertTrue($checksum);
|
||||
$this->assertTrue($bs1->is_checksum_correct($checksum));
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* helper extended base_setting class that makes some methods public for testing
|
||||
*/
|
||||
class mock_base_setting extends base_setting {
|
||||
public function get_vtype() {
|
||||
return $this->vtype;
|
||||
}
|
||||
|
||||
public function process_change($setting, $ctype, $oldv) {
|
||||
// Simply, inherit from the main object
|
||||
$this->set_value($setting->get_value());
|
||||
$this->set_visibility($setting->get_visibility());
|
||||
$this->set_status($setting->get_status());
|
||||
}
|
||||
|
||||
public function get_ui_info() {
|
||||
// Return an array with all the ui info to be tested
|
||||
return array($this->ui_type, $this->ui_label, $this->ui_values, $this->ui_options);
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* helper extended backup_setting class that makes some methods public for testing
|
||||
*/
|
||||
class mock_backup_setting extends backup_setting {
|
||||
public function set_level($level) {
|
||||
$this->level = $level;
|
||||
}
|
||||
|
||||
public function process_change($setting, $ctype, $oldv) {
|
||||
// Simply, inherit from the main object
|
||||
$this->set_value($setting->get_value());
|
||||
$this->set_visibility($setting->get_visibility());
|
||||
$this->set_status($setting->get_status());
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* helper extended activity_backup_setting class that makes some methods public for testing
|
||||
*/
|
||||
class mock_activity_backup_setting extends activity_backup_setting {
|
||||
public function process_change($setting, $ctype, $oldv) {
|
||||
// Do nothing
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* helper extended section_backup_setting class that makes some methods public for testing
|
||||
*/
|
||||
class mock_section_backup_setting extends section_backup_setting {
|
||||
public function process_change($setting, $ctype, $oldv) {
|
||||
// Do nothing
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* helper extended course_backup_setting class that makes some methods public for testing
|
||||
*/
|
||||
class mock_course_backup_setting extends course_backup_setting {
|
||||
public function process_change($setting, $ctype, $oldv) {
|
||||
// Do nothing
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,61 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-structure
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
|
||||
/**
|
||||
* Instantiable class representing one attribute atom (name/value) piece of information on backup
|
||||
*/
|
||||
class backup_attribute extends base_attribute implements processable, annotable {
|
||||
|
||||
protected $annotationitem; // To store the item this element will be responsible to annotate
|
||||
|
||||
public function process($processor) {
|
||||
if (!$processor instanceof base_processor) { // No correct processor, throw exception
|
||||
throw new base_element_struct_exception('incorrect_processor');
|
||||
}
|
||||
$processor->process_attribute($this);
|
||||
}
|
||||
|
||||
public function set_annotation_item($itemname) {
|
||||
if (!empty($this->annotationitem)) {
|
||||
$a = new stdclass();
|
||||
$a->attribute = $this->get_name();
|
||||
$a->annotating= $this->annotationitem;
|
||||
throw new base_element_struct_exception('attribute_already_used_for_annotation', $a);
|
||||
}
|
||||
$this->annotationitem = $itemname;
|
||||
}
|
||||
|
||||
public function annotate($backupid) {
|
||||
if (empty($this->annotationitem)) { // We aren't annotating this item
|
||||
return;
|
||||
}
|
||||
if (!$this->is_set()) {
|
||||
throw new base_element_struct_exception('attribute_has_not_value', $this->get_name());
|
||||
}
|
||||
backup_structure_dbops::insert_backup_ids_record($backupid, $this->annotationitem, $this->get_value());
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,70 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-structure
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
|
||||
/**
|
||||
* Instantiable class representing one final element atom (name/value/parent) piece of information on backup
|
||||
*/
|
||||
class backup_final_element extends base_final_element implements processable, annotable {
|
||||
|
||||
protected $annotationitem; // To store the item this element will be responsible to annotate
|
||||
|
||||
public function process($processor) {
|
||||
if (!$processor instanceof base_processor) { // No correct processor, throw exception
|
||||
throw new base_element_struct_exception('incorrect_processor');
|
||||
}
|
||||
$processor->process_final_element($this);
|
||||
}
|
||||
|
||||
public function set_annotation_item($itemname) {
|
||||
if (!empty($this->annotationitem)) {
|
||||
$a = new stdclass();
|
||||
$a->attribute = $this->get_name();
|
||||
$a->annotating= $this->annotationitem;
|
||||
throw new base_element_struct_exception('element_already_used_for_annotation', $a);
|
||||
}
|
||||
$this->annotationitem = $itemname;
|
||||
}
|
||||
|
||||
public function annotate($backupid) {
|
||||
if (empty($this->annotationitem)) { // We aren't annotating this item
|
||||
return;
|
||||
}
|
||||
if (!$this->is_set()) {
|
||||
throw new base_element_struct_exception('element_has_not_value', $this->get_name());
|
||||
}
|
||||
backup_structure_dbops::insert_backup_ids_record($backupid, $this->annotationitem, $this->get_value());
|
||||
}
|
||||
|
||||
// Protected API starts here
|
||||
|
||||
/**
|
||||
* Returns one instace of the @base_attribute class to work with
|
||||
* when attributes are added simply by name
|
||||
*/
|
||||
protected function get_new_attribute($name) {
|
||||
return new backup_attribute($name);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,282 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-structure
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
|
||||
/**
|
||||
* Instantiable class representing one nestable element (non final) piece of information on backup
|
||||
*/
|
||||
class backup_nested_element extends base_nested_element implements processable {
|
||||
|
||||
protected $var_array; // To be used in case we pass one in-memory structure
|
||||
protected $table; // Table (without prefix) to fetch records from
|
||||
protected $sql; // Raw SQL to fetch records from
|
||||
protected $params; // Unprocessed params as specified in the set_source() call
|
||||
protected $procparams;// Processed (path resolved) params array
|
||||
protected $aliases; // Define DB->final element aliases
|
||||
protected $fileannotelement; // Element to be used as itemid for file annotations
|
||||
protected $fileannotareas; // array of file areas to be searched by file annotations
|
||||
protected $counter; // Number of instances of this element that have been processed
|
||||
|
||||
/**
|
||||
* Constructor - instantiates one backup_nested_element, specifying its basic info.
|
||||
*
|
||||
* @param string $name name of the element
|
||||
* @param array $attributes attributes this element will handle (optional, defaults to null)
|
||||
* @param array $final_elements this element will handle (optional, defaults to null)
|
||||
*/
|
||||
public function __construct($name, $attributes = null, $final_elements = null) {
|
||||
parent::__construct($name, $attributes, $final_elements);
|
||||
$this->var_array = null;
|
||||
$this->table = null;
|
||||
$this->sql = null;
|
||||
$this->params = null;
|
||||
$this->procparams= null;
|
||||
$this->aliases = array();
|
||||
$this->fileannotelement = null;
|
||||
$this->fileannotareas = array();
|
||||
$this->counter = 0;
|
||||
}
|
||||
|
||||
public function process($processor) {
|
||||
if (!$processor instanceof base_processor) { // No correct processor, throw exception
|
||||
throw new base_element_struct_exception('incorrect_processor');
|
||||
}
|
||||
|
||||
$iterator = $this->get_iterator($processor); // Get the iterator over backup-able data
|
||||
|
||||
foreach ($iterator as $key => $values) { // Process each "ocurrrence" of the nested element (recordset or array)
|
||||
|
||||
// Fill the values of the attributes and final elements with the $values from the iterator
|
||||
$this->fill_values($values);
|
||||
|
||||
// Perform pre-process tasks for the nested_element
|
||||
$processor->pre_process_nested_element($this);
|
||||
|
||||
// Delegate the process of each attribute
|
||||
foreach ($this->get_attributes() as $attribute) {
|
||||
$attribute->process($processor);
|
||||
}
|
||||
|
||||
// Main process tasks for the nested element, once its attributes have been processed
|
||||
$processor->process_nested_element($this);
|
||||
|
||||
// Delegate the process of each final_element
|
||||
foreach ($this->get_final_elements() as $final_element) {
|
||||
$final_element->process($processor);
|
||||
}
|
||||
|
||||
// Delegate the process to the optigroup
|
||||
if ($this->get_optigroup()) {
|
||||
$this->get_optigroup()->process($processor);
|
||||
}
|
||||
|
||||
// Delegate the process to each child nested_element
|
||||
foreach ($this->get_children() as $child) {
|
||||
$child->process($processor);
|
||||
}
|
||||
|
||||
// Perform post-process tasks for the nested element
|
||||
$processor->post_process_nested_element($this);
|
||||
|
||||
// Everything processed, clean values before next iteration
|
||||
$this->clean_values();
|
||||
|
||||
// Increment counter for this element
|
||||
$this->counter++;
|
||||
|
||||
// For root element, check we only have 1 element
|
||||
if ($this->get_parent() === null && $this->counter > 1) {
|
||||
throw new base_element_struct_exception('root_only_one_ocurrence', $this->get_name());
|
||||
}
|
||||
}
|
||||
// Close the iterator (DB recordset / array iterator)
|
||||
$iterator->close();
|
||||
}
|
||||
|
||||
public function set_source_array($arr) {
|
||||
// TODO: Only elements having final elements can set source
|
||||
$this->var_array = $arr;
|
||||
}
|
||||
|
||||
public function set_source_table($table, $params) {
|
||||
if (!is_array($params)) { // Check we are passing array
|
||||
throw new base_element_struct_exception('setsourcerequiresarrayofparams');
|
||||
}
|
||||
// TODO: Only elements having final elements can set source
|
||||
$this->table = $table;
|
||||
$this->procparams = $this->convert_table_params($params);
|
||||
}
|
||||
|
||||
public function set_source_sql($sql, $params) {
|
||||
if (!is_array($params)) { // Check we are passing array
|
||||
throw new base_element_struct_exception('setsourcerequiresarrayofparams');
|
||||
}
|
||||
// TODO: Only elements having final elements can set source
|
||||
$this->sql = $sql;
|
||||
$this->procparams = $this->convert_sql_params($params);
|
||||
}
|
||||
|
||||
public function set_source_alias($dbname, $finalelementname) {
|
||||
// Get final element
|
||||
$finalelement = $this->get_final_element($finalelementname);
|
||||
if (!$finalelement) { // Final element incorrect, throw exception
|
||||
throw new base_element_struct_exception('incorrectaliasfinalnamenotfound', $finalelementname);
|
||||
} else {
|
||||
$this->aliases[$dbname] = $finalelement;
|
||||
}
|
||||
}
|
||||
|
||||
public function annotate_files($areas, $elementname) {
|
||||
if (!is_array($areas)) { // Check we are passing array
|
||||
throw new base_element_struct_exception('annotate_files_requires_array_of_areas', $areas);
|
||||
}
|
||||
$annotations = $this->get_file_annotations();
|
||||
if (!empty($annotations[0])) { // Check we haven't defined file annotations already
|
||||
throw new base_element_struct_exception('annotate_files_already_defined', $this->get_name());
|
||||
}
|
||||
if ($elementname !== null) { // Check elementname is valid
|
||||
$element = $this->find_element($elementname);
|
||||
// Annotate the element
|
||||
$this->fileannotelement= $element;
|
||||
}
|
||||
// Annotate the areas
|
||||
$this->fileannotareas = $areas;
|
||||
}
|
||||
|
||||
public function annotate_ids($itemname, $elementname) {
|
||||
$element = $this->find_element($elementname);
|
||||
$element->set_annotation_item($itemname);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns one array containing the element in the
|
||||
* @backup_structure and the areas to be searched
|
||||
*/
|
||||
public function get_file_annotations() {
|
||||
if (empty($this->fileannotareas)) {
|
||||
return array(null, null);
|
||||
}
|
||||
return array($this->fileannotareas, $this->fileannotelement);
|
||||
}
|
||||
|
||||
public function get_source_array() {
|
||||
return $this->var_array;
|
||||
}
|
||||
|
||||
public function get_source_table() {
|
||||
return $this->table;
|
||||
}
|
||||
|
||||
public function get_source_sql() {
|
||||
return $this->sql;
|
||||
}
|
||||
|
||||
public function get_counter() {
|
||||
return $this->counter;
|
||||
}
|
||||
|
||||
/**
|
||||
* Simple filler that, matching by name, will fill both attributes and final elements
|
||||
* depending of this nested element, debugging info about non-matching elements and/or
|
||||
* elements present in both places. Accept both arrays and objects.
|
||||
*/
|
||||
public function fill_values($values) {
|
||||
$values = (array)$values;
|
||||
|
||||
foreach ($values as $key => $value) {
|
||||
$found = 0;
|
||||
if ($attribute = $this->get_attribute($key)) { // Set value for attributes
|
||||
$attribute->set_value($value);
|
||||
$found++;
|
||||
}
|
||||
if ($final = $this->get_final_element($key)) { // Set value for final elements
|
||||
$final->set_value($value);
|
||||
$found++;
|
||||
}
|
||||
if (isset($this->aliases[$key])) { // Last chance, set value by processing final element aliases
|
||||
$this->aliases[$key]->set_value($value);
|
||||
$found++;
|
||||
}
|
||||
// Found more than once, notice
|
||||
// TODO: Route this through backup loggers
|
||||
if ($found > 1) {
|
||||
debugging('Key found more than once ' . $key, DEBUG_DEVELOPER);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// Protected API starts here
|
||||
|
||||
protected function convert_table_params($params) {
|
||||
return $this->convert_sql_params($params);
|
||||
}
|
||||
|
||||
protected function convert_sql_params($params) {
|
||||
$procparams = array(); // Reset processed params
|
||||
foreach ($params as $key => $param) {
|
||||
$procparams[$key] = $this->find_element($param);
|
||||
}
|
||||
return $procparams;
|
||||
}
|
||||
|
||||
protected function find_element($param) {
|
||||
if ($param == backup::VAR_PARENTID) { // Look for first parent having id attribute/final_element
|
||||
$param = $this->find_first_parent_by_name('id');
|
||||
|
||||
// If the param is array, with key 'sqlparam', return the value without modifications
|
||||
} else if (is_array($param) && isset($param['sqlparam'])) {
|
||||
return $param['sqlparam'];
|
||||
|
||||
} else if (((int)$param) >= 0) { // Search by path if param isn't a backup::XXX candidate
|
||||
$param = $this->find_element_by_path($param);
|
||||
}
|
||||
return $param; // Return the param unmodified
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns one instace of the @base_attribute class to work with
|
||||
* when attributes are added simply by name
|
||||
*/
|
||||
protected function get_new_attribute($name) {
|
||||
return new backup_attribute($name);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns one instace of the @final_element class to work with
|
||||
* when final_elements are added simply by name
|
||||
*/
|
||||
protected function get_new_final_element($name) {
|
||||
return new backup_final_element($name);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns one PHP iterator over each "ocurrence" of this nested
|
||||
* element (array or DB recordset). Delegated to backup_structure_dbops class
|
||||
*/
|
||||
protected function get_iterator($processor) {
|
||||
return backup_structure_dbops::get_iterator($this, $this->procparams, $processor);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,85 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-structure
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
|
||||
/**
|
||||
* Instantiable class representing one optigroup element for conditional branching
|
||||
*
|
||||
* Objects of this class are internally nested elements, so they support having both
|
||||
* final elements and children (more nested elements) and are able to have one source
|
||||
* and all the stuff supported by nested elements. Their main differences are:
|
||||
*
|
||||
* - Support for conditional execution, using simple equality checks with outer values.
|
||||
* - Don't have representation in the hierarchy, so:
|
||||
* - Their level is the level of the parent of their enclosing optigroup.
|
||||
* - Act as one "path bridge" when looking for parent path values
|
||||
* - They don't support attributes
|
||||
*
|
||||
* Their main use is to allow conditional branching, basically for optional submodules
|
||||
* like question types, assignment subtypes... where different subtrees of information
|
||||
* must be exported. It's correct to assume that each submodule will define its own
|
||||
* optigroup_element for backup purposes.
|
||||
*/
|
||||
class backup_optigroup extends base_optigroup implements processable {
|
||||
|
||||
public function add_child($element) {
|
||||
if (!($element instanceof backup_optigroup_element)) { // parameter must be backup_optigroup_element
|
||||
if (!$found = get_class($element)) {
|
||||
$found = 'non object';
|
||||
}
|
||||
throw new base_optigroup_exception('optigroup_element_incorrect', $found);
|
||||
}
|
||||
parent::add_child($element);
|
||||
}
|
||||
|
||||
public function process($processor) {
|
||||
if (!$processor instanceof base_processor) { // No correct processor, throw exception
|
||||
throw new base_element_struct_exception('incorrect_processor');
|
||||
}
|
||||
// Iterate over all the children backup_optigroup_elements, delegating the process
|
||||
// an knowing it only handles final elements, so we'll delegate process of nested
|
||||
// elements below. Tricky but we need to priorize finals BEFORE nested always.
|
||||
foreach ($this->get_children() as $child) {
|
||||
if ($child->condition_matches()) { // Only if the optigroup_element condition matches
|
||||
$child->process($processor);
|
||||
if (!$this->is_multiple()) {
|
||||
break; // one match found and this optigroup is not multiple => break loop
|
||||
}
|
||||
}
|
||||
}
|
||||
// Now iterate again, but looking for nested elements what will go AFTER all the finals
|
||||
// that have been processed above
|
||||
foreach ($this->get_children() as $child) {
|
||||
if ($child->condition_matches()) { // Only if the optigroup_element condition matches
|
||||
foreach ($child->get_children() as $nested_element) {
|
||||
$nested_element->process($processor);
|
||||
}
|
||||
if (!$this->is_multiple()) {
|
||||
break; // one match found and this optigroup is not multiple => break loop
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,194 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-structure
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
|
||||
/**
|
||||
* Instantiable class representing one optigroup element for conditional branching
|
||||
*
|
||||
* Objects of this class are internally nested elements, so they support having both
|
||||
* final elements and children (more nested elements) and are able to have one source
|
||||
* and all the stuff supported by nested elements. Their main differences are:
|
||||
*
|
||||
* - Support for conditional execution, using simple equality checks with outer values.
|
||||
* - Don't have representation in the hierarchy, so:
|
||||
* - Their level is the level of the parent of their enclosing optigroup.
|
||||
* - Act as one "path bridge" when looking for parent path values
|
||||
* - They don't support attributes
|
||||
*
|
||||
* Their main use is to allow conditional branching, basically for optional submodules
|
||||
* like question types, assignment subtypes... where different subtrees of information
|
||||
* must be exported. It's correct to assume that each submodule will define its own
|
||||
* optigroup_element for backup purposes.
|
||||
*/
|
||||
class backup_optigroup_element extends backup_nested_element {
|
||||
|
||||
private $conditionparam; // Unprocessed param representing on path to look for value
|
||||
private $procconditionparam; // Processed base_element param to look for value
|
||||
private $conditionvalue; // Value to compare the the param value with
|
||||
|
||||
/**
|
||||
* Constructor - instantiates one backup_optigroup_element
|
||||
*
|
||||
* @param string $name of the element
|
||||
* @param array $final_elements this element will handle (optional, defaults to null)
|
||||
* @param string $condition_param param (path) we are using as source for comparing (optional, defaults to null)
|
||||
* @param string $condition_value value we are comparing to (optional, defaults to null)
|
||||
*/
|
||||
public function __construct($name, $final_elements = null, $conditionparam = null, $conditionvalue = null) {
|
||||
parent::__construct($name, null, $final_elements);
|
||||
$this->set_condition($conditionparam, $conditionvalue);
|
||||
}
|
||||
|
||||
// Public API starts here
|
||||
|
||||
/**
|
||||
* Sets the condition for this optigroup
|
||||
*/
|
||||
public function set_condition($conditionparam, $conditionvalue) {
|
||||
// We only resolve the condition if the parent of the element (optigroup) already has parent
|
||||
// else, we'll resolve it once the optigroup parent is defined
|
||||
if ($this->get_parent() && $this->get_parent()->get_parent() && $conditionparam !== null) {
|
||||
$this->procconditionparam = $this->find_element($conditionparam);
|
||||
}
|
||||
$this->conditionparam = $conditionparam;
|
||||
$this->conditionvalue = $conditionvalue;
|
||||
}
|
||||
|
||||
public function get_condition_param() {
|
||||
return $this->conditionparam;
|
||||
}
|
||||
|
||||
public function get_condition_value() {
|
||||
return $this->conditionvalue;
|
||||
}
|
||||
|
||||
/**
|
||||
* Evaluate the condition, returning if matches (true) or no (false)
|
||||
*/
|
||||
public function condition_matches() {
|
||||
$match = false; // By default no match
|
||||
$param = $this->procconditionparam;
|
||||
if ($param instanceof base_atom && $param->is_set()) {
|
||||
$match = ($param->get_value() == $this->conditionvalue); // blame $DB for not having === !
|
||||
} else {
|
||||
$match = ($param == $this->conditionvalue);
|
||||
}
|
||||
return $match;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the level of this element, that will be, the level of the parent (doesn't consume level)
|
||||
* (note this os only a "cosmetic" effect (to_string) as fact as the real responsible for this
|
||||
* is the corresponding structure_processor for the final output.
|
||||
*/
|
||||
public function get_level() {
|
||||
return $this->get_parent() == null ? 1 : $this->get_parent()->get_level();
|
||||
}
|
||||
|
||||
/**
|
||||
* process one optigroup_element
|
||||
*
|
||||
* Note that this ONLY processes the final elements in order to get all them
|
||||
* before processing any nested element. Pending nested elements are processed
|
||||
* by the optigroup caller.
|
||||
*/
|
||||
public function process($processor) {
|
||||
if (!$processor instanceof base_processor) { // No correct processor, throw exception
|
||||
throw new base_element_struct_exception('incorrect_processor');
|
||||
}
|
||||
|
||||
$iterator = $this->get_iterator($processor); // Get the iterator over backup-able data
|
||||
|
||||
$itcounter = 0; // To check that the iterator only has 1 ocurrence
|
||||
foreach ($iterator as $key => $values) { // Process each "ocurrrence" of the nested element (recordset or array)
|
||||
|
||||
// Fill the values of the attributes and final elements with the $values from the iterator
|
||||
$this->fill_values($values);
|
||||
|
||||
// Delegate the process of each final_element
|
||||
foreach ($this->get_final_elements() as $final_element) {
|
||||
$final_element->process($processor);
|
||||
}
|
||||
|
||||
// Everything processed, clean values before next iteration
|
||||
$this->clean_values();
|
||||
|
||||
// Increment counters for this element
|
||||
$this->counter++;
|
||||
$itcounter++;
|
||||
|
||||
// optigroup_element, check we only have 1 element always
|
||||
if ($itcounter > 1) {
|
||||
throw new base_element_struct_exception('optigroup_element_only_one_ocurrence', $this->get_name());
|
||||
}
|
||||
}
|
||||
// Close the iterator (DB recordset / array iterator)
|
||||
$iterator->close();
|
||||
}
|
||||
|
||||
// Forbidden API starts here
|
||||
|
||||
/**
|
||||
* Adding optigroups is forbidden
|
||||
*/
|
||||
public function add_add_optigroup($optigroup) {
|
||||
throw new base_element_struct_exception('optigroup_element_not_optigroup');
|
||||
}
|
||||
|
||||
/**
|
||||
* Adding attributes is forbidden
|
||||
*/
|
||||
public function add_attributes($attributes) {
|
||||
throw new base_element_struct_exception('optigroup_element_not_attributes');
|
||||
}
|
||||
|
||||
/**
|
||||
* Instantiating attributes is forbidden
|
||||
*/
|
||||
protected function get_new_attribute($name) {
|
||||
throw new base_element_struct_exception('optigroup_element_not_attributes');
|
||||
}
|
||||
|
||||
// Protected API starts here
|
||||
|
||||
/**
|
||||
* Returns one instace of the @final_element class to work with
|
||||
* when final_elements are added simply by name
|
||||
*/
|
||||
protected function get_new_final_element($name) {
|
||||
return new backup_final_element($name);
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the parent of the optigroup_element and, at the same time,
|
||||
* process the condition param
|
||||
*/
|
||||
protected function set_parent($element) {
|
||||
parent::set_parent($element);
|
||||
// Force condition param calculation
|
||||
$this->set_condition($this->conditionparam, $this->conditionvalue);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,123 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-structure
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
|
||||
/**
|
||||
* Instantiable class defining the process of backup structures
|
||||
*
|
||||
* This class will process the given backup structure (nested/final/attribute)
|
||||
* based on its definition, triggering as many actions as necessary (pre/post
|
||||
* triggers, ids annotations, deciding based on settings, xml output...). Somehow
|
||||
* one visitor pattern to allow backup structures to work with nice decoupling
|
||||
*/
|
||||
class backup_structure_processor extends base_processor {
|
||||
|
||||
protected $writer; // xml_writer where the processor is going to output data
|
||||
protected $vars; // array of backup::VAR_XXX => helper value pairs to be used by source specifications
|
||||
|
||||
public function __construct(xml_writer $writer) {
|
||||
$this->writer = $writer;
|
||||
$this->vars = array();
|
||||
}
|
||||
|
||||
public function set_var($key, $value) {
|
||||
if (isset($this->vars[$key])) {
|
||||
throw new backup_processor_exception('processorvariablealreadyset', $key);
|
||||
}
|
||||
$this->vars[$key] = $value;
|
||||
}
|
||||
|
||||
public function get_var($key) {
|
||||
if (!isset($this->vars[$key])) {
|
||||
throw new backup_processor_exception('processorvariablenotfound', $key);
|
||||
}
|
||||
return $this->vars[$key];
|
||||
}
|
||||
|
||||
public function pre_process_nested_element(base_nested_element $nested) {
|
||||
// Send open tag to xml_writer
|
||||
$attrarr = array();
|
||||
foreach ($nested->get_attributes() as $attribute) {
|
||||
$attrarr[$attribute->get_name()] = $attribute->get_value();
|
||||
}
|
||||
$this->writer->begin_tag($nested->get_name(), $attrarr);
|
||||
}
|
||||
|
||||
public function process_nested_element(base_nested_element $nested) {
|
||||
// Proceed with all the file annotations for this element
|
||||
list($fileareas, $element) = $nested->get_file_annotations();
|
||||
if ($fileareas) { // If there are areas to search
|
||||
$backupid = $this->get_var(backup::VAR_BACKUPID);
|
||||
$contextid= $this->get_var(backup::VAR_CONTEXTID);
|
||||
$itemid = !is_null($element) ? $element->get_value() : null;
|
||||
foreach ($fileareas as $filearea) {
|
||||
backup_structure_dbops::annotate_files($backupid, $contextid, $filearea, $itemid);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public function post_process_nested_element(base_nested_element $nested) {
|
||||
// Send close tag to xml_writer
|
||||
$this->writer->end_tag($nested->get_name());
|
||||
}
|
||||
|
||||
public function process_final_element(base_final_element $final) {
|
||||
// Send full tag to xml_writer and annotations (only if has value)
|
||||
if ($final->is_set()) {
|
||||
$attrarr = array();
|
||||
foreach ($final->get_attributes() as $attribute) {
|
||||
$attrarr[$attribute->get_name()] = $attribute->get_value();
|
||||
}
|
||||
$this->writer->full_tag($final->get_name(), $final->get_value(), $attrarr);
|
||||
// Annotate current value if configured to do so
|
||||
$final->annotate($this->get_var(backup::VAR_BACKUPID));
|
||||
}
|
||||
}
|
||||
|
||||
public function process_attribute(base_attribute $attribute) {
|
||||
// Annotate current value if configured to do so
|
||||
$attribute->annotate($this->get_var(backup::VAR_BACKUPID));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* backup_processor exception to control all the errors while working with backup_processors
|
||||
*
|
||||
* This exception will be thrown each time the backup_processors detects some
|
||||
* inconsistency related with the elements to process or its configuration
|
||||
*/
|
||||
class backup_processor_exception extends base_processor_exception {
|
||||
|
||||
/**
|
||||
* Constructor - instantiates one backup_processor_exception
|
||||
*
|
||||
* @param string $errorcode key for the corresponding error string
|
||||
* @param object $a extra words and phrases that might be required in the error string
|
||||
* @param string $debuginfo optional debugging information
|
||||
*/
|
||||
public function __construct($errorcode, $a = null, $debuginfo = null) {
|
||||
parent::__construct($errorcode, $a, $debuginfo);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,166 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-structure
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
|
||||
/**
|
||||
* Abstract class representing one atom (name/value) piece of information
|
||||
*/
|
||||
abstract class base_atom {
|
||||
|
||||
/** @var string name of the element (maps to XML name) */
|
||||
private $name;
|
||||
|
||||
/** @var string value of the element (maps to XML content) */
|
||||
private $value;
|
||||
|
||||
/** @var bool flag to indicate when one value has been set (true) or no (false) */
|
||||
private $is_set;
|
||||
|
||||
/**
|
||||
* Constructor - instantiates one base_atom, specifying its basic info.
|
||||
*
|
||||
* @param string $name name of the element
|
||||
* @param string $value optional value of the element
|
||||
*/
|
||||
public function __construct($name) {
|
||||
|
||||
$this->validate_name($name); // Check name
|
||||
|
||||
$this->name = $name;
|
||||
$this->value = null;
|
||||
$this->is_set= false;
|
||||
}
|
||||
|
||||
protected function validate_name($name) {
|
||||
// Validate various name constraints, throwing exception if needed
|
||||
if (empty($name)) {
|
||||
throw new base_atom_struct_exception('backupatomemptyname', $name);
|
||||
}
|
||||
if (preg_replace('/\s/', '', $name) != $name) {
|
||||
throw new base_atom_struct_exception('backupatomwhitespacename', $name);
|
||||
}
|
||||
if (preg_replace('/[^\x30-\x39\x41-\x5a\x5f\x61-\x7a]/', '', $name) != $name) {
|
||||
throw new base_atom_struct_exception('backupatomnotasciiname', $name);
|
||||
}
|
||||
}
|
||||
|
||||
/// Public API starts here
|
||||
|
||||
public function get_name() {
|
||||
return $this->name;
|
||||
}
|
||||
|
||||
public function get_value() {
|
||||
return $this->value;
|
||||
}
|
||||
|
||||
public function set_value($value) {
|
||||
if ($this->is_set) {
|
||||
throw new base_atom_content_exception('backupatomalreadysetvalue', $value);
|
||||
}
|
||||
$this->value = $value;
|
||||
$this->is_set= true;
|
||||
}
|
||||
|
||||
public function clean_value() {
|
||||
$this->value = null;
|
||||
$this->is_set= false;
|
||||
}
|
||||
|
||||
public function is_set() {
|
||||
return $this->is_set;
|
||||
}
|
||||
|
||||
public function to_string($showvalue = false) {
|
||||
$output = $this->name;
|
||||
if ($showvalue) {
|
||||
$value = $this->is_set ? $this->value : 'not set';
|
||||
$output .= ' => ' . $value;
|
||||
}
|
||||
return $output;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* base_atom abstract exception class
|
||||
*
|
||||
* This exceptions will be used by all the base_atom classes
|
||||
* in order to detect any problem or miss-configuration
|
||||
*/
|
||||
abstract class base_atom_exception extends moodle_exception {
|
||||
|
||||
/**
|
||||
* Constructor - instantiates one base_atom_exception.
|
||||
*
|
||||
* @param string $errorcode key for the corresponding error string
|
||||
* @param object $a extra words and phrases that might be required in the error string
|
||||
* @param string $debuginfo optional debugging information
|
||||
*/
|
||||
public function __construct($errorcode, $a = null, $debuginfo = null) {
|
||||
parent::__construct($errorcode, '', '', $a, $debuginfo);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* base_atom exception to control all the errors while creating the objects
|
||||
*
|
||||
* This exception will be thrown each time the base_atom class detects some
|
||||
* inconsistency related with the creation of objects and their attributes
|
||||
* (wrong names)
|
||||
*/
|
||||
class base_atom_struct_exception extends base_atom_exception {
|
||||
|
||||
/**
|
||||
* Constructor - instantiates one base_atom_struct_exception
|
||||
*
|
||||
* @param string $errorcode key for the corresponding error string
|
||||
* @param object $a extra words and phrases that might be required in the error string
|
||||
* @param string $debuginfo optional debugging information
|
||||
*/
|
||||
public function __construct($errorcode, $a = null, $debuginfo = null) {
|
||||
parent::__construct($errorcode, $a, $debuginfo);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* base_atom exception to control all the errors while setting the values
|
||||
*
|
||||
* This exception will be thrown each time the base_atom class detects some
|
||||
* inconsistency related with the creation of contents (values) of the objects
|
||||
* (bad contents, setting without cleaning...)
|
||||
*/
|
||||
class base_atom_content_exception extends base_atom_exception {
|
||||
|
||||
/**
|
||||
* Constructor - instantiates one base_atom_content_exception
|
||||
*
|
||||
* @param string $errorcode key for the corresponding error string
|
||||
* @param object $a extra words and phrases that might be required in the error string
|
||||
* @param string $debuginfo optional debugging information
|
||||
*/
|
||||
public function __construct($errorcode, $a = null, $debuginfo = null) {
|
||||
parent::__construct($errorcode, $a, $debuginfo);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-structure
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
|
||||
/**
|
||||
* Abstract class representing one attribute atom (name/value) piece of information
|
||||
*/
|
||||
abstract class base_attribute extends base_atom {
|
||||
|
||||
public function to_string($showvalue = false) {
|
||||
return '@' . parent::to_string($showvalue);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,257 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-structure
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
|
||||
/**
|
||||
* Abstract class representing one final element atom (name/value/parent) piece of information
|
||||
*/
|
||||
abstract class base_final_element extends base_atom {
|
||||
|
||||
/** @var array base_attributes of the element (maps to XML attributes of the tag) */
|
||||
private $attributes;
|
||||
|
||||
/** @var base_nested_element parent of this element (describes structure of the XML file) */
|
||||
private $parent;
|
||||
|
||||
/**
|
||||
* Constructor - instantiates one base_final_element, specifying its basic info.
|
||||
*
|
||||
* @param string $name name of the element
|
||||
* @param array $attributes attributes this element will handle (optional, defaults to null)
|
||||
*/
|
||||
public function __construct($name, $attributes = null) {
|
||||
parent::__construct($name);
|
||||
$this->attributes = array();
|
||||
if (!empty($attributes)) {
|
||||
$this->add_attributes($attributes);
|
||||
}
|
||||
$this->parent = null;
|
||||
}
|
||||
|
||||
protected function set_parent($element) {
|
||||
if ($this->parent) {
|
||||
$info = new stdClass();
|
||||
$info->currparent= $this->parent->get_name();
|
||||
$info->newparent = $element->get_name();
|
||||
$info->element = $this->get_name();
|
||||
throw new base_element_parent_exception('baseelementhasparent', $info);
|
||||
}
|
||||
$this->parent = $element;
|
||||
}
|
||||
|
||||
protected function get_grandparent() {
|
||||
$parent = $this->parent;
|
||||
if ($parent instanceof base_nested_element) {
|
||||
return $parent->get_grandparent();
|
||||
} else {
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
|
||||
protected function get_grandoptigroupelement_or_grandparent() {
|
||||
$parent = $this->parent;
|
||||
if ($parent instanceof base_optigroup) {
|
||||
return $this; // Have found one parent optigroup, so I (first child of optigroup) am
|
||||
} else if ($parent instanceof base_nested_element) {
|
||||
return $parent->get_grandoptigroupelement_or_grandparent(); // Continue searching
|
||||
} else {
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
|
||||
protected function find_element_by_path($path) {
|
||||
$patharr = explode('/', trim($path, '/')); // Split the path trimming slashes
|
||||
if (substr($path, 0, 1) == '/') { // Absolute path, go to grandparent and process
|
||||
if (!$this->get_grandparent() instanceof base_nested_element) {
|
||||
throw new base_element_struct_exception('baseelementincorrectgrandparent', $patharr[0]);
|
||||
} else if ($this->get_grandparent()->get_name() !== $patharr[0]) {
|
||||
throw new base_element_struct_exception('baseelementincorrectgrandparent', $patharr[0]);
|
||||
} else {
|
||||
$newpath = implode('/', array_slice($patharr, 1)); // Take out 1st element
|
||||
return $this->get_grandparent()->find_element_by_path($newpath); // Process as relative in grandparent
|
||||
}
|
||||
} else {
|
||||
if ($patharr[0] == '..') { // Go to parent
|
||||
if (!$this->get_parent() instanceof base_nested_element) {
|
||||
throw new base_element_struct_exception('baseelementincorrectparent', $patharr[0]);
|
||||
} else {
|
||||
$newpath = implode('/', array_slice($patharr, 1)); // Take out 1st element
|
||||
return $this->get_parent()->find_element_by_path($newpath); // Process as relative in parent
|
||||
}
|
||||
} else if (count($patharr) > 1) { // Go to next child
|
||||
if (!$this->get_child($patharr[0]) instanceof base_nested_element) {
|
||||
throw new base_element_struct_exception('baseelementincorrectchild', $patharr[0]);
|
||||
} else {
|
||||
$newpath = implode('/', array_slice($patharr, 1)); // Take out 1st element
|
||||
return $this->get_child($patharr[0])->find_element_by_path($newpath); // Process as relative in parent
|
||||
}
|
||||
} else { // Return final element or attribute
|
||||
if ($this->get_final_element($patharr[0]) instanceof base_final_element) {
|
||||
return $this->get_final_element($patharr[0]);
|
||||
} else if ($this->get_attribute($patharr[0]) instanceof base_attribute) {
|
||||
return $this->get_attribute($patharr[0]);
|
||||
} else {
|
||||
throw new base_element_struct_exception('baseelementincorrectfinalorattribute', $patharr[0]);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
protected function find_first_parent_by_name($name) {
|
||||
if ($parent = $this->get_parent()) { // If element has parent
|
||||
$element = $parent->get_final_element($name); // Look for name into parent finals
|
||||
$attribute = $parent->get_attribute($name); // Look for name into parent attrs
|
||||
if ($element instanceof base_final_element) {
|
||||
return $element;
|
||||
|
||||
} else if ($attribute instanceof base_attribute) {
|
||||
return $attribute;
|
||||
|
||||
} else { // Not found, go up 1 level and continue searching
|
||||
return $parent->find_first_parent_by_name($name);
|
||||
}
|
||||
} else { // No more parents available, return the original backup::VAR_PARENTID, exception
|
||||
throw new base_element_struct_exception('cannotfindparentidforelement', $name);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/// Public API starts here
|
||||
|
||||
public function get_attributes() {
|
||||
return $this->attributes;
|
||||
}
|
||||
|
||||
public function get_attribute($name) {
|
||||
if (array_key_exists($name, $this->attributes)) {
|
||||
return $this->attributes[$name];
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
public function get_parent() {
|
||||
return $this->parent;
|
||||
}
|
||||
|
||||
public function get_level() {
|
||||
return $this->parent == null ? 1 : $this->parent->get_level() + 1;
|
||||
}
|
||||
|
||||
public function add_attributes($attributes) {
|
||||
if ($attributes instanceof base_attribute || is_string($attributes)) { // Accept 1 attribute, object or string
|
||||
$attributes = array($attributes);
|
||||
}
|
||||
if (is_array($attributes)) {
|
||||
foreach ($attributes as $attribute) {
|
||||
if (is_string($attribute)) { // Accept string attributes
|
||||
$attribute = $this->get_new_attribute($attribute);
|
||||
}
|
||||
if (!($attribute instanceof base_attribute)) {
|
||||
throw new base_element_attribute_exception('baseelementnoattribute', get_class($attribute));
|
||||
}
|
||||
if (array_key_exists($attribute->get_name(), $this->attributes)) {
|
||||
throw new base_element_attribute_exception('baseelementattributeexists', $attribute->get_name());
|
||||
}
|
||||
$this->attributes[$attribute->get_name()] = $attribute;
|
||||
}
|
||||
} else {
|
||||
throw new base_element_attribute_exception('baseelementattributeincorrect');
|
||||
}
|
||||
}
|
||||
|
||||
public function clean_values() {
|
||||
parent::clean_value();
|
||||
if (!empty($this->attributes)) {
|
||||
foreach ($this->attributes as $attribute) {
|
||||
$attribute->clean_value();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public function to_string($showvalue = false) {
|
||||
// Decide the correct prefix
|
||||
$prefix = '#'; // default
|
||||
if ($this->parent instanceof base_optigroup) {
|
||||
$prefix = '?';
|
||||
} else if ($this instanceof base_nested_element) {
|
||||
$prefix = '';
|
||||
}
|
||||
$indent = str_repeat(' ', $this->get_level()); // Indent output based in level (4cc)
|
||||
$output = $indent . $prefix . $this->get_name() . ' (level: ' . $this->get_level() . ')';
|
||||
if ($showvalue) {
|
||||
$value = $this->is_set() ? $this->get_value() : 'not set';
|
||||
$output .= ' => ' . $value;
|
||||
}
|
||||
if (!empty($this->attributes)) {
|
||||
foreach ($this->attributes as $attribute) {
|
||||
$output .= PHP_EOL . $indent . ' ' . $attribute->to_string($showvalue);
|
||||
}
|
||||
}
|
||||
return $output;
|
||||
}
|
||||
|
||||
// Implementable API
|
||||
|
||||
/**
|
||||
* Returns one instace of the @base_attribute class to work with
|
||||
* when attributes are added simply by name
|
||||
*/
|
||||
abstract protected function get_new_attribute($name);
|
||||
}
|
||||
|
||||
/**
|
||||
* base_element exception to control all the errors related with parents handling
|
||||
*/
|
||||
class base_element_parent_exception extends base_atom_exception {
|
||||
|
||||
/**
|
||||
* Constructor - instantiates one base_element_parent_exception
|
||||
*
|
||||
* @param string $errorcode key for the corresponding error string
|
||||
* @param object $a extra words and phrases that might be required in the error string
|
||||
* @param string $debuginfo optional debugging information
|
||||
*/
|
||||
public function __construct($errorcode, $a = null, $debuginfo = null) {
|
||||
parent::__construct($errorcode, $a, $debuginfo);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* base_element exception to control all the errors related with attributes handling
|
||||
*/
|
||||
class base_element_attribute_exception extends base_atom_exception {
|
||||
|
||||
/**
|
||||
* Constructor - instantiates one base_element_attribute_exception
|
||||
*
|
||||
* @param string $errorcode key for the corresponding error string
|
||||
* @param object $a extra words and phrases that might be required in the error string
|
||||
* @param string $debuginfo optional debugging information
|
||||
*/
|
||||
public function __construct($errorcode, $a = null, $debuginfo = null) {
|
||||
parent::__construct($errorcode, $a, $debuginfo);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,242 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-structure
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
|
||||
/**
|
||||
* Abstract class representing one nestable element (non final) piece of information
|
||||
*/
|
||||
abstract class base_nested_element extends base_final_element {
|
||||
|
||||
/** @var array final elements of the element (maps to XML final elements of the tag) */
|
||||
private $final_elements;
|
||||
|
||||
/** @var array children base_elements of this element (describes structure of the XML file) */
|
||||
private $children;
|
||||
|
||||
/** @var base_optigroup optional group of this element (branches to be processed conditionally) */
|
||||
private $optigroup;
|
||||
|
||||
/** @var array elements already used by the base_element, to avoid circular references */
|
||||
private $used;
|
||||
|
||||
/**
|
||||
* Constructor - instantiates one base_nested_element, specifying its basic info.
|
||||
*
|
||||
* @param string $name name of the element
|
||||
* @param array $attributes attributes this element will handle (optional, defaults to null)
|
||||
* @param array $final_elements this element will handle (optional, defaults to null)
|
||||
*/
|
||||
public function __construct($name, $attributes = null, $final_elements = null) {
|
||||
parent::__construct($name, $attributes);
|
||||
$this->final_elements = array();
|
||||
if (!empty($final_elements)) {
|
||||
$this->add_final_elements($final_elements);
|
||||
}
|
||||
$this->children = array();
|
||||
$this->optigroup = null;
|
||||
$this->used[] = $name;
|
||||
}
|
||||
|
||||
protected function get_used() {
|
||||
return $this->used;
|
||||
}
|
||||
|
||||
protected function set_used($used) {
|
||||
$this->used = $used;
|
||||
}
|
||||
|
||||
protected function add_used($element) {
|
||||
$this->used = array_merge($this->used, $element->get_used());
|
||||
}
|
||||
|
||||
protected function check_and_set_used($element) {
|
||||
$grandparent = $this->get_grandoptigroupelement_or_grandparent();
|
||||
if ($existing = array_intersect($grandparent->get_used(), $element->get_used())) { // Check the element isn't being used already
|
||||
throw new base_element_struct_exception('baseelementexisting', implode($existing));
|
||||
}
|
||||
$grandparent->add_used($element);
|
||||
// If the parent is one optigroup, add the element useds to it too
|
||||
if ($grandparent->get_parent() instanceof base_optigroup) {
|
||||
$grandparent->get_parent()->add_used($element);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/// Public API starts here
|
||||
|
||||
public function get_final_elements() {
|
||||
return $this->final_elements;
|
||||
}
|
||||
|
||||
public function get_final_element($name) {
|
||||
if (array_key_exists($name, $this->final_elements)) {
|
||||
return $this->final_elements[$name];
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
public function get_children() {
|
||||
return $this->children;
|
||||
}
|
||||
|
||||
public function get_child($name) {
|
||||
if (array_key_exists($name, $this->children)) {
|
||||
return $this->children[$name];
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
public function get_optigroup() {
|
||||
return $this->optigroup;
|
||||
}
|
||||
|
||||
public function add_final_elements($final_elements) {
|
||||
if ($final_elements instanceof base_final_element || is_string($final_elements)) { // Accept 1 final_element, object or string
|
||||
$final_elements = array($final_elements);
|
||||
}
|
||||
if (is_array($final_elements)) {
|
||||
foreach ($final_elements as $final_element) {
|
||||
if (is_string($final_element)) { // Accept string final_elements
|
||||
$final_element = $this->get_new_final_element($final_element);
|
||||
}
|
||||
if (!($final_element instanceof base_final_element)) {
|
||||
throw new base_element_struct_exception('baseelementnofinalelement', get_class($final_element));
|
||||
}
|
||||
if (array_key_exists($final_element->get_name(), $this->final_elements)) {
|
||||
throw new base_element_struct_exception('baseelementexists', $final_element->get_name());
|
||||
}
|
||||
$this->final_elements[$final_element->get_name()] = $final_element;
|
||||
$final_element->set_parent($this);
|
||||
}
|
||||
} else {
|
||||
throw new base_element_struct_exception('baseelementincorrect');
|
||||
}
|
||||
}
|
||||
|
||||
public function add_child($element) {
|
||||
if (!($element instanceof base_nested_element)) { // parameter must be a base_nested_element
|
||||
if (!$found = get_class($element)) {
|
||||
$found = 'non object';
|
||||
}
|
||||
throw new base_element_struct_exception('nestedelementincorrect', $found);
|
||||
}
|
||||
$this->check_and_set_used($element);
|
||||
$this->children[$element->get_name()] = $element;
|
||||
$element->set_parent($this);
|
||||
}
|
||||
|
||||
public function add_optigroup($optigroup) {
|
||||
if (!($optigroup instanceof base_optigroup)) { // parameter must be a base_optigroup
|
||||
if (!$found = get_class($optigroup)) {
|
||||
$found = 'non object';
|
||||
}
|
||||
throw new base_element_struct_exception('optigroupincorrect', $found);
|
||||
}
|
||||
if ($this->optigroup !== null) {
|
||||
throw new base_element_struct_exception('optigroupalreadyset', $found);
|
||||
}
|
||||
$this->check_and_set_used($optigroup);
|
||||
$this->optigroup = $optigroup;
|
||||
$optigroup->set_parent($this);
|
||||
}
|
||||
|
||||
public function get_value() {
|
||||
throw new base_element_struct_exception('nestedelementnotvalue');
|
||||
}
|
||||
|
||||
public function set_value($value) {
|
||||
throw new base_element_struct_exception('nestedelementnotvalue');
|
||||
}
|
||||
|
||||
public function clean_value() {
|
||||
throw new base_element_struct_exception('nestedelementnotvalue');
|
||||
}
|
||||
|
||||
public function clean_values() {
|
||||
parent::clean_values();
|
||||
if (!empty($this->final_elements)) {
|
||||
foreach ($this->final_elements as $final_element) {
|
||||
$final_element->clean_values();
|
||||
}
|
||||
}
|
||||
if (!empty($this->children)) {
|
||||
foreach ($this->children as $child) {
|
||||
$child->clean_values();
|
||||
}
|
||||
}
|
||||
if (!empty($this->optigroup)) {
|
||||
$this->optigroup->clean_values();
|
||||
}
|
||||
}
|
||||
|
||||
public function to_string($showvalue = false) {
|
||||
$output = parent::to_string($showvalue);
|
||||
if (!empty($this->final_elements)) {
|
||||
foreach ($this->final_elements as $final_element) {
|
||||
$output .= PHP_EOL . $final_element->to_string($showvalue);
|
||||
}
|
||||
}
|
||||
if (!empty($this->children)) {
|
||||
foreach ($this->children as $child) {
|
||||
$output .= PHP_EOL . $child->to_string($showvalue);
|
||||
}
|
||||
}
|
||||
if (!empty($this->optigroup)) {
|
||||
$output .= PHP_EOL . $this->optigroup->to_string($showvalue);
|
||||
}
|
||||
return $output;
|
||||
}
|
||||
|
||||
// Implementable API
|
||||
|
||||
/**
|
||||
* Returns one instace of the @final_element class to work with
|
||||
* when final_elements are added simply by name
|
||||
*/
|
||||
abstract protected function get_new_final_element($name);
|
||||
}
|
||||
|
||||
/**
|
||||
* base_element exception to control all the errors while building the nested tree
|
||||
*
|
||||
* This exception will be thrown each time the base_element class detects some
|
||||
* inconsistency related with the building of the nested tree representing one base part
|
||||
* (invalid objects, circular references, double parents...)
|
||||
*/
|
||||
class base_element_struct_exception extends base_atom_exception {
|
||||
|
||||
/**
|
||||
* Constructor - instantiates one base_element_struct_exception
|
||||
*
|
||||
* @param string $errorcode key for the corresponding error string
|
||||
* @param object $a extra words and phrases that might be required in the error string
|
||||
* @param string $debuginfo optional debugging information
|
||||
*/
|
||||
public function __construct($errorcode, $a = null, $debuginfo = null) {
|
||||
parent::__construct($errorcode, $a, $debuginfo);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,179 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-structure
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
|
||||
/**
|
||||
* Abstract class representing one optigroup for conditional branching
|
||||
*/
|
||||
abstract class base_optigroup extends base_nested_element {
|
||||
|
||||
/** @var boolean flag indicating if multiple branches can be processed (true) or no (false) */
|
||||
private $multiple;
|
||||
|
||||
/**
|
||||
* Constructor - instantiates one base_optigroup, specifying its basic info
|
||||
*
|
||||
* @param string $name name of the element
|
||||
* @param array $elements base_optigroup_elements of this group
|
||||
* @param bool $multiple to decide if the group allows multiple branches processing or no
|
||||
*/
|
||||
public function __construct($name, $elements = null, $multiple = false) {
|
||||
parent::__construct($name);
|
||||
$this->multiple = $multiple;
|
||||
if (!empty($elements)) {
|
||||
$this->add_children($elements);
|
||||
}
|
||||
}
|
||||
|
||||
// Public API starts here
|
||||
|
||||
/**
|
||||
* Return the level of this element, that will be, the level of the parent (doesn't consume level)
|
||||
* (note this os only a "cosmetic" effect (to_string) as fact as the real responsible for this
|
||||
* is the corresponding structure_processor for the final output.
|
||||
*/
|
||||
public function get_level() {
|
||||
return $this->get_parent() == null ? 1 : $this->get_parent()->get_level();
|
||||
}
|
||||
|
||||
public function to_string($showvalue = false) {
|
||||
$indent = str_repeat(' ', $this->get_level()); // Indent output based in level (4cc)
|
||||
$output = $indent . '!' . $this->get_name() . ' (level: ' . $this->get_level() . ')';
|
||||
$children = $this->get_children();
|
||||
if (!empty($children)) {
|
||||
foreach ($this->get_children() as $child) {
|
||||
$output .= PHP_EOL . $child->to_string($showvalue);
|
||||
}
|
||||
}
|
||||
return $output;
|
||||
}
|
||||
|
||||
// Forbidden API starts here
|
||||
|
||||
/**
|
||||
* Adding attributes is forbidden
|
||||
*/
|
||||
public function add_attributes($attributes) {
|
||||
throw new base_element_struct_exception('optigroup_not_attributes');
|
||||
}
|
||||
|
||||
/**
|
||||
* Instantiating attributes is forbidden
|
||||
*/
|
||||
protected function get_new_attribute($name) {
|
||||
throw new base_element_struct_exception('optigroup_not_attributes');
|
||||
}
|
||||
|
||||
/**
|
||||
* Adding final elements is forbidden
|
||||
*/
|
||||
public function add_final_elements($attributes) {
|
||||
throw new base_element_struct_exception('optigroup_not_final_elements');
|
||||
}
|
||||
|
||||
/**
|
||||
* Instantiating final elements is forbidden
|
||||
*/
|
||||
protected function get_new_final_element($name) {
|
||||
throw new base_element_struct_exception('optigroup_not_final_elements');
|
||||
}
|
||||
|
||||
// Protected API starts here
|
||||
|
||||
protected function add_children($elements) {
|
||||
if ($elements instanceof base_nested_element) { // Accept 1 element, object
|
||||
$elements = array($elements);
|
||||
}
|
||||
if (is_array($elements)) {
|
||||
foreach ($elements as $element) {
|
||||
$this->add_child($element);
|
||||
}
|
||||
} else {
|
||||
throw new base_optigroup_exception('optigroup_elements_incorrect');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the parent of the optigroup and, at the same time, process all the
|
||||
* condition params in all the childs
|
||||
*/
|
||||
protected function set_parent($element) {
|
||||
parent::set_parent($element);
|
||||
// Force condition param calculation in all children
|
||||
foreach ($this->get_children() as $child) {
|
||||
$child->set_condition($child->get_condition_param(), $child->get_condition_value());
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Recalculate all the used elements in the optigroup, observing
|
||||
* restrictions and passing the new used to outer level
|
||||
*/
|
||||
function add_used($element) {
|
||||
$newused = array();
|
||||
// Iterate over all the element useds, filling $newused and
|
||||
// observing the multiple setting
|
||||
foreach ($element->get_used() as $used) {
|
||||
if (!in_array($used, $this->get_used())) { // it's a new one, add to $newused array
|
||||
$newused[] = $used;
|
||||
$this->set_used(array_merge($this->get_used(), array($used))); // add to the optigroup used array
|
||||
} else { // it's an existing one, exception on multiple optigroups
|
||||
if ($this->multiple) {
|
||||
throw new base_optigroup_exception('multiple_optigroup_duplicate_element', $used);
|
||||
}
|
||||
}
|
||||
}
|
||||
// Finally, inform about newused to the next grand(parent/optigroupelement)
|
||||
if ($newused && $this->get_parent()) {
|
||||
$element->set_used($newused); // Only about the newused
|
||||
$grandparent = $this->get_grandoptigroupelement_or_grandparent();
|
||||
$grandparent->check_and_set_used($element);
|
||||
}
|
||||
}
|
||||
|
||||
protected function is_multiple() {
|
||||
return $this->multiple;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* base_optigroup_exception to control all the errors while building the optigroups
|
||||
*
|
||||
* This exception will be thrown each time the base_optigroup class detects some
|
||||
* inconsistency related with the building of the group
|
||||
*/
|
||||
class base_optigroup_exception extends base_atom_exception {
|
||||
|
||||
/**
|
||||
* Constructor - instantiates one base_optigroup_exception
|
||||
*
|
||||
* @param string $errorcode key for the corresponding error string
|
||||
* @param object $a extra words and phrases that might be required in the error string
|
||||
* @param string $debuginfo optional debugging information
|
||||
*/
|
||||
public function __construct($errorcode, $a = null, $debuginfo = null) {
|
||||
parent::__construct($errorcode, $a, $debuginfo);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,59 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-structure
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
|
||||
/**
|
||||
* Abstract class representing the required implementation for classes able to process structure classes
|
||||
*/
|
||||
abstract class base_processor {
|
||||
|
||||
abstract function pre_process_nested_element(base_nested_element $nested);
|
||||
abstract function process_nested_element(base_nested_element $nested);
|
||||
abstract function post_process_nested_element(base_nested_element $nested);
|
||||
|
||||
abstract function process_final_element(base_final_element $final);
|
||||
|
||||
abstract function process_attribute(base_attribute $attribute);
|
||||
}
|
||||
|
||||
/**
|
||||
* base_processor abstract exception class
|
||||
*
|
||||
* This exceptions will be used by all the processor classes
|
||||
* in order to detect any problem or miss-configuration
|
||||
*/
|
||||
abstract class base_processor_exception extends moodle_exception {
|
||||
|
||||
/**
|
||||
* Constructor - instantiates one base_processor_exception.
|
||||
*
|
||||
* @param string $errorcode key for the corresponding error string
|
||||
* @param object $a extra words and phrases that might be required in the error string
|
||||
* @param string $debuginfo optional debugging information
|
||||
*/
|
||||
public function __construct($errorcode, $a = null, $debuginfo = null) {
|
||||
parent::__construct($errorcode, '', '', $a, $debuginfo);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,123 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* Mockup elements shared by various structure tests
|
||||
*
|
||||
* @package moodlecore
|
||||
* @subpackage backup-tests
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
/**
|
||||
* helper extended base_attribute class that implements some methods for instantiating and testing
|
||||
*/
|
||||
class mock_base_attribute extends base_attribute {
|
||||
// Nothing to do. Just allow instances to be created
|
||||
}
|
||||
|
||||
/**
|
||||
* helper extended final_element class that implements some methods for instantiating and testing
|
||||
*/
|
||||
class mock_base_final_element extends base_final_element {
|
||||
/// Implementable API
|
||||
protected function get_new_attribute($name) {
|
||||
return new mock_base_attribute($name);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* helper extended nested_element class that implements some methods for instantiating and testing
|
||||
*/
|
||||
class mock_base_nested_element extends base_nested_element {
|
||||
/// Implementable API
|
||||
protected function get_new_attribute($name) {
|
||||
return new mock_base_attribute($name);
|
||||
}
|
||||
|
||||
protected function get_new_final_element($name) {
|
||||
return new mock_base_final_element($name);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* helper extended optigroup class that implements some methods for instantiating and testing
|
||||
*/
|
||||
class mock_base_optigroup extends base_optigroup {
|
||||
/// Implementable API
|
||||
protected function get_new_attribute($name) {
|
||||
return new mock_base_attribute($name);
|
||||
}
|
||||
|
||||
protected function get_new_final_element($name) {
|
||||
return new mock_base_final_element($name);
|
||||
}
|
||||
|
||||
public function is_multiple() {
|
||||
return parent::is_multiple();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* helper class that extends backup_final_element in order to skip its value
|
||||
*/
|
||||
class mock_skip_final_element extends backup_final_element {
|
||||
|
||||
public function set_value($value) {
|
||||
$this->clean_value();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* helper class that extends backup_final_element in order to modify its value
|
||||
*/
|
||||
class mock_modify_final_element extends backup_final_element {
|
||||
public function set_value($value) {
|
||||
parent::set_value('original was ' . $value . ', now changed');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* helper class that extends backup_final_element to delegate any calculation to another class
|
||||
*/
|
||||
class mock_final_element_interceptor extends backup_final_element {
|
||||
public function set_value($value) {
|
||||
// Get grandparent name
|
||||
$gpname = $this->get_grandparent()->get_name();
|
||||
// Get parent name
|
||||
$pname = $this->get_parent()->get_name();
|
||||
// Get my name
|
||||
$myname = $this->get_name();
|
||||
// Define class and function name
|
||||
$classname = 'mock_' . $gpname . '_' . $pname . '_interceptor';
|
||||
$methodname= 'intercept_' . $pname . '_' . $myname;
|
||||
// Invoke the interception method
|
||||
$result = call_user_func(array($classname, $methodname), $value);
|
||||
// Finally set it
|
||||
parent::set_value($result);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* test interceptor class (its methods are called from interceptor)
|
||||
*/
|
||||
abstract class mock_forum_forum_interceptor {
|
||||
static function intercept_forum_completionposts($element) {
|
||||
return 'intercepted!';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,648 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* Unit tests for base_final_element.class.php
|
||||
*
|
||||
* @package moodlecore
|
||||
* @subpackage backup-tests
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
// Prevent direct access to this file
|
||||
if (!defined('MOODLE_INTERNAL')) {
|
||||
die('Direct access to this script is forbidden.');
|
||||
}
|
||||
|
||||
// Include all the needed stuff
|
||||
require_once($CFG->dirroot . '/backup/util/includes/backup_includes.php');
|
||||
require_once($CFG->dirroot . '/backup/util/xml/output/memory_xml_output.class.php');
|
||||
|
||||
/**
|
||||
* Unit test case the all the backup structure classes. Note: Uses database
|
||||
*/
|
||||
class backup_structure_test extends UnitTestCaseUsingDatabase {
|
||||
|
||||
public static $includecoverage = array(
|
||||
'backup/util/structure'
|
||||
);
|
||||
public static $excludecoverage = array(
|
||||
'backup/util/structure/simpletest'
|
||||
);
|
||||
|
||||
protected $testtables = array(
|
||||
'lib' => array(
|
||||
'files'),
|
||||
'mod/forum' => array(
|
||||
'forum', 'forum_discussions', 'forum_posts',
|
||||
'forum_ratings', 'forum_read'));
|
||||
|
||||
protected $forumid; // To store the inserted forum->id
|
||||
protected $contextid; // Official contextid for these tests
|
||||
|
||||
|
||||
public function setUp() {
|
||||
parent::setUp();
|
||||
|
||||
$this->switch_to_test_db(); // Switch to test DB for all the execution
|
||||
|
||||
foreach ($this->testtables as $dir => $tables) {
|
||||
$this->create_test_tables($tables, $dir); // Create tables
|
||||
}
|
||||
|
||||
$this->contextid = 666; // Let's assume this is the context for the forum
|
||||
$this->fill_records(); // Add common stuff needed by various test methods
|
||||
}
|
||||
|
||||
public function tearDown() {
|
||||
parent::tearDown(); // In charge of droppng all the test tables
|
||||
}
|
||||
|
||||
private function fill_records() {
|
||||
global $DB;
|
||||
|
||||
// Create one forum
|
||||
$forum_data = (object)array('course' => 1, 'name' => 'Test forum', 'intro' => 'Intro forum');
|
||||
$this->forumid = $DB->insert_record('forum', $forum_data);
|
||||
// With two related file
|
||||
$f1_forum_data = (object)array(
|
||||
'contenthash' => 'testf1', 'contextid' => $this->contextid,
|
||||
'filearea' => 'forum_intro', 'filename' => 'tf1', 'itemid' => 0,
|
||||
'filesize' => 123, 'timecreated' => 0, 'timemodified' => 0,
|
||||
'pathnamehash' => 'testf1'
|
||||
);
|
||||
$DB->insert_record('files', $f1_forum_data);
|
||||
$f2_forum_data = (object)array(
|
||||
'contenthash' => 'tesft2', 'contextid' => $this->contextid,
|
||||
'filearea' => 'forum_intro', 'filename' => 'tf2', 'itemid' => 0,
|
||||
'filesize' => 123, 'timecreated' => 0, 'timemodified' => 0,
|
||||
'pathnamehash' => 'testf2'
|
||||
);
|
||||
$DB->insert_record('files', $f2_forum_data);
|
||||
|
||||
// Create two discussions
|
||||
$discussion1 = (object)array('course' => 1, 'forum' => $this->forumid, 'name' => 'd1', 'userid' => 100, 'groupid' => 200);
|
||||
$d1id = $DB->insert_record('forum_discussions', $discussion1);
|
||||
$discussion2 = (object)array('course' => 1, 'forum' => $this->forumid, 'name' => 'd2', 'userid' => 101, 'groupid' => 201);
|
||||
$d2id = $DB->insert_record('forum_discussions', $discussion2);
|
||||
|
||||
// Create four posts
|
||||
$post1 = (object)array('discussion' => $d1id, 'userid' => 100, 'subject' => 'p1', 'message' => 'm1');
|
||||
$p1id = $DB->insert_record('forum_posts', $post1);
|
||||
$post2 = (object)array('discussion' => $d1id, 'parent' => $p1id, 'userid' => 102, 'subject' => 'p2', 'message' => 'm2');
|
||||
$p2id = $DB->insert_record('forum_posts', $post2);
|
||||
$post3 = (object)array('discussion' => $d1id, 'parent' => $p2id, 'userid' => 103, 'subject' => 'p3', 'message' => 'm3');
|
||||
$p3id = $DB->insert_record('forum_posts', $post3);
|
||||
$post4 = (object)array('discussion' => $d2id, 'userid' => 101, 'subject' => 'p4', 'message' => 'm4');
|
||||
$p4id = $DB->insert_record('forum_posts', $post4);
|
||||
// With two related file
|
||||
$f1_post1 = (object)array(
|
||||
'contenthash' => 'testp1', 'contextid' => $this->contextid,
|
||||
'filearea' => 'forum_post', 'filename' => 'tp1', 'itemid' => $p1id,
|
||||
'filesize' => 123, 'timecreated' => 0, 'timemodified' => 0,
|
||||
'pathnamehash' => 'testp1'
|
||||
);
|
||||
$DB->insert_record('files', $f1_post1);
|
||||
$f1_post2 = (object)array(
|
||||
'contenthash' => 'testp2', 'contextid' => $this->contextid,
|
||||
'filearea' => 'forum_attachment', 'filename' => 'tp2', 'itemid' => $p2id,
|
||||
'filesize' => 123, 'timecreated' => 0, 'timemodified' => 0,
|
||||
'pathnamehash' => 'testp2'
|
||||
);
|
||||
$DB->insert_record('files', $f1_post2);
|
||||
|
||||
// Create two ratings
|
||||
$rating1 = (object)array('userid' => 104, 'post' => $p1id, 'rating' => 2);
|
||||
$r1id = $DB->insert_record('forum_ratings', $rating1);
|
||||
$rating2 = (object)array('userid' => 105, 'post' => $p1id, 'rating' => 3);
|
||||
$r2id = $DB->insert_record('forum_ratings', $rating2);
|
||||
|
||||
// Create 1 reads
|
||||
$read1 = (object)array('userid' => 102, 'forumid' => $this->forumid, 'discussionid' => $d2id, 'postid' => $p4id);
|
||||
$DB->insert_record('forum_read', $read1);
|
||||
}
|
||||
|
||||
/**
|
||||
* Backup structures tests (construction, definition and execution)
|
||||
*/
|
||||
function test_backup_structure_construct() {
|
||||
global $DB;
|
||||
|
||||
$backupid = 'Testing Backup ID'; // Official backupid for these tests
|
||||
|
||||
// Create all the elements that will conform the tree
|
||||
$forum = new backup_nested_element('forum',
|
||||
array('id'),
|
||||
array(
|
||||
'type', 'name', 'intro', 'introformat',
|
||||
'assessed', 'assesstimestart', 'assesstimefinish', 'scale',
|
||||
'maxbytes', 'maxattachments', 'forcesubscribe', 'trackingtype',
|
||||
'rsstype', 'rssarticles', 'timemodified', 'warnafter',
|
||||
'blockafter',
|
||||
new backup_final_element('blockperiod'),
|
||||
new mock_skip_final_element('completiondiscussions'),
|
||||
new mock_modify_final_element('completionreplies'),
|
||||
new mock_final_element_interceptor('completionposts'))
|
||||
);
|
||||
$discussions = new backup_nested_element('discussions');
|
||||
$discussion = new backup_nested_element('discussion',
|
||||
array('id'),
|
||||
array(
|
||||
'forum', 'name', 'firstpost', 'userid',
|
||||
'groupid', 'assessed', 'timemodified', 'usermodified',
|
||||
'timestart', 'timeend')
|
||||
);
|
||||
$posts = new backup_nested_element('posts');
|
||||
$post = new backup_nested_element('post',
|
||||
array('id'),
|
||||
array(
|
||||
'discussion', 'parent', 'userid', 'created',
|
||||
'modified', 'mailed', 'subject', 'message',
|
||||
'messageformat', 'messagetrust', 'attachment', 'totalscore',
|
||||
'mailnow')
|
||||
);
|
||||
$ratings = new backup_nested_element('ratings');
|
||||
$rating = new backup_nested_element('rating',
|
||||
array('id'),
|
||||
array('userid', 'post', 'time', 'post_rating')
|
||||
);
|
||||
$reads = new backup_nested_element('readposts');
|
||||
$read = new backup_nested_element('read',
|
||||
array('id'),
|
||||
array(
|
||||
'userid', 'discussionid', 'postid',
|
||||
'firstread', 'lastread')
|
||||
);
|
||||
$inventeds = new backup_nested_element('invented_elements',
|
||||
array('reason', 'version')
|
||||
);
|
||||
$invented = new backup_nested_element('invented',
|
||||
null,
|
||||
array('one', 'two', 'three')
|
||||
);
|
||||
$one = $invented->get_final_element('one');
|
||||
$one->add_attributes(array('attr1', 'attr2'));
|
||||
|
||||
// Build the tree
|
||||
$forum->add_child($discussions);
|
||||
$discussions->add_child($discussion);
|
||||
|
||||
$discussion->add_child($posts);
|
||||
$posts->add_child($post);
|
||||
|
||||
$post->add_child($ratings);
|
||||
$ratings->add_child($rating);
|
||||
|
||||
$forum->add_child($reads);
|
||||
$reads->add_child($read);
|
||||
|
||||
$forum->add_child($inventeds);
|
||||
$inventeds->add_child($invented);
|
||||
|
||||
// Let's add 1 optigroup with 3 elements
|
||||
$alternative1 = new backup_optigroup_element('alternative1',
|
||||
array('name', 'value'), '../../id', 1);
|
||||
$alternative2 = new backup_optigroup_element('alternative2',
|
||||
array('name', 'value'), backup::VAR_PARENTID, 2);
|
||||
$alternative3 = new backup_optigroup_element('alternative3',
|
||||
array('name', 'value'), '/forum/discussions/discussion/posts/post/id', 3);
|
||||
// Create the optigroup, adding one element
|
||||
$optigroup = new backup_optigroup('alternatives', $alternative1, false);
|
||||
// Add second opti element
|
||||
$optigroup->add_child($alternative2);
|
||||
|
||||
// Add optigroup to post element
|
||||
$post->add_optigroup($optigroup);
|
||||
// Add third opti element, on purpose after the add_optigroup() line above to check param evaluation works ok
|
||||
$optigroup->add_child($alternative3);
|
||||
|
||||
/// Create some new nested elements, both named 'dupetest1', and add them to alternative1 and alternative2
|
||||
/// (not problem as far as the optigroup in not unique)
|
||||
$dupetest1 = new backup_nested_element('dupetest1', null, array('field1', 'field2'));
|
||||
$dupetest2 = new backup_nested_element('dupetest2', null, array('field1', 'field2'));
|
||||
$dupetest3 = new backup_nested_element('dupetest3', null, array('field1', 'field2'));
|
||||
$dupetest4 = new backup_nested_element('dupetest1', null, array('field1', 'field2'));
|
||||
$dupetest1->add_child($dupetest3);
|
||||
$dupetest2->add_child($dupetest4);
|
||||
$alternative1->add_child($dupetest1);
|
||||
$alternative2->add_child($dupetest2);
|
||||
|
||||
// Define sources
|
||||
$forum->set_source_table('forum', array('id' => backup::VAR_ACTIVITYID));
|
||||
$discussion->set_source_sql('SELECT *
|
||||
FROM {forum_discussions}
|
||||
WHERE forum = ?',
|
||||
array('/forum/id')
|
||||
);
|
||||
$post->set_source_table('forum_posts', array('discussion' => '/forum/discussions/discussion/id'));
|
||||
$rating->set_source_sql('SELECT *
|
||||
FROM {forum_ratings}
|
||||
WHERE post = ?',
|
||||
array(backup::VAR_PARENTID)
|
||||
);
|
||||
|
||||
$read->set_source_table('forum_read', array('id' => '../../id'));
|
||||
|
||||
$inventeds->set_source_array(array((object)array('reason' => 'I love Moodle', 'version' => '1.0'),
|
||||
(object)array('reason' => 'I love Moodle', 'version' => '2.0'))); // 2 object array
|
||||
$invented->set_source_array(array((object)array('one' => 1, 'two' => 2, 'three' => 3),
|
||||
(object)array('one' => 11, 'two' => 22, 'three' => 33))); // 2 object array
|
||||
|
||||
// Set optigroup_element sources
|
||||
$alternative1->set_source_array(array((object)array('name' => 'alternative1', 'value' => 1))); // 1 object array
|
||||
// Skip alternative2 source definition on purpose (will be tested)
|
||||
// $alternative2->set_source_array(array((object)array('name' => 'alternative2', 'value' => 2))); // 1 object array
|
||||
$alternative3->set_source_array(array((object)array('name' => 'alternative3', 'value' => 3))); // 1 object array
|
||||
// Set children of optigroup_element source
|
||||
$dupetest1->set_source_array(array((object)array('field1' => '1', 'field2' => 1))); // 1 object array
|
||||
$dupetest2->set_source_array(array((object)array('field1' => '2', 'field2' => 2))); // 1 object array
|
||||
$dupetest3->set_source_array(array((object)array('field1' => '3', 'field2' => 3))); // 1 object array
|
||||
$dupetest4->set_source_array(array((object)array('field1' => '4', 'field2' => 4))); // 1 object array
|
||||
|
||||
// Define some aliases
|
||||
$rating->set_source_alias('rating', 'post_rating'); // Map the 'rating' value from DB to 'post_rating' final element
|
||||
|
||||
// Mark to detect files of type 'forum_intro' in forum (and not item id)
|
||||
$forum->annotate_files(array('forum_intro'), null);
|
||||
|
||||
// Mark to detect file of type 'forum_post' and 'forum_attachment' in post (with itemid being post->id)
|
||||
$post->annotate_files(array('forum_post', 'forum_attachment'), 'id');
|
||||
|
||||
// Mark various elements to be annotated
|
||||
$discussion->annotate_ids('user1', 'userid');
|
||||
$post->annotate_ids('forum_post', 'id');
|
||||
$rating->annotate_ids('user2', 'userid');
|
||||
$rating->annotate_ids('forum_post', 'post');
|
||||
|
||||
// Create the backup_ids_temp table
|
||||
backup_controller_dbops::create_backup_ids_temp_table($backupid);
|
||||
|
||||
// Instantiate in memory xml output
|
||||
$xo = new memory_xml_output();
|
||||
|
||||
// Instantiate xml_writer and start it
|
||||
$xw = new xml_writer($xo);
|
||||
$xw->start();
|
||||
|
||||
// Instantiate the backup processor
|
||||
$processor = new backup_structure_processor($xw);
|
||||
|
||||
// Set some variables
|
||||
$processor->set_var(backup::VAR_ACTIVITYID, $this->forumid);
|
||||
$processor->set_var(backup::VAR_BACKUPID, $backupid);
|
||||
$processor->set_var(backup::VAR_CONTEXTID,$this->contextid);
|
||||
|
||||
// Process the backup structure with the backup processor
|
||||
$forum->process($processor);
|
||||
|
||||
// Stop the xml_writer
|
||||
$xw->stop();
|
||||
|
||||
// Check various counters
|
||||
$this->assertEqual($forum->get_counter(), $DB->count_records('forum'));
|
||||
$this->assertEqual($discussion->get_counter(), $DB->count_records('forum_discussions'));
|
||||
$this->assertEqual($rating->get_counter(), $DB->count_records('forum_ratings'));
|
||||
$this->assertEqual($read->get_counter(), $DB->count_records('forum_read'));
|
||||
$this->assertEqual($inventeds->get_counter(), 2); // Array
|
||||
|
||||
// Perform some validations with the generated XML
|
||||
$dom = DOMDocument::loadXML($xo->get_allcontents());
|
||||
$xpath = new DOMXPath($dom);
|
||||
// Some more counters
|
||||
$query = '/forum/discussions/discussion/posts/post';
|
||||
$posts = $xpath->query($query);
|
||||
$this->assertEqual($posts->length, $DB->count_records('forum_posts'));
|
||||
$query = '/forum/invented_elements/invented';
|
||||
$inventeds = $xpath->query($query);
|
||||
$this->assertEqual($inventeds->length, 2*2);
|
||||
|
||||
// Check ratings information against DB
|
||||
$ratings = $dom->getElementsByTagName('rating');
|
||||
$this->assertEqual($ratings->length, $DB->count_records('forum_ratings'));
|
||||
foreach ($ratings as $rating) {
|
||||
$ratarr = array();
|
||||
$ratarr['id'] = $rating->getAttribute('id');
|
||||
foreach ($rating->childNodes as $node) {
|
||||
if ($node->nodeType != XML_TEXT_NODE) {
|
||||
$ratarr[$node->nodeName] = $node->nodeValue;
|
||||
}
|
||||
}
|
||||
$this->assertEqual($ratarr['userid'], $DB->get_field('forum_ratings', 'userid', array('id' => $ratarr['id'])));
|
||||
$this->assertEqual($ratarr['post'], $DB->get_field('forum_ratings', 'post', array('id' => $ratarr['id'])));
|
||||
$this->assertEqual($ratarr['post_rating'], $DB->get_field('forum_ratings', 'rating', array('id' => $ratarr['id'])));
|
||||
}
|
||||
|
||||
// Check forum has "blockeperiod" with value 0 (was declared by object instead of name)
|
||||
$query = '/forum[blockperiod="0"]';
|
||||
$result = $xpath->query($query);
|
||||
$this->assertEqual($result->length, 1);
|
||||
|
||||
// Check forum is missing "completiondiscussions" (as we are using mock_skip_final_element)
|
||||
$query = '/forum/completiondiscussions';
|
||||
$result = $xpath->query($query);
|
||||
$this->assertEqual($result->length, 0);
|
||||
|
||||
// Check forum has "completionreplies" with value "original was 0, now changed" (because of mock_modify_final_element)
|
||||
$query = '/forum[completionreplies="original was 0, now changed"]';
|
||||
$result = $xpath->query($query);
|
||||
$this->assertEqual($result->length, 1);
|
||||
|
||||
// Check forum has "completionposts" with value "intercepted!" (because of mock_final_element_interceptor)
|
||||
$query = '/forum[completionposts="intercepted!"]';
|
||||
$result = $xpath->query($query);
|
||||
$this->assertEqual($result->length, 1);
|
||||
|
||||
// Check there isn't any alternative2 tag, as far as it hasn't source defined
|
||||
$query = '//alternative2';
|
||||
$result = $xpath->query($query);
|
||||
$this->assertEqual($result->length, 0);
|
||||
|
||||
// Check there are 4 "field1" elements
|
||||
$query = '/forum/discussions/discussion/posts/post//field1';
|
||||
$result = $xpath->query($query);
|
||||
$this->assertEqual($result->length, 4);
|
||||
|
||||
// Check first post has one name element with value "alternative1"
|
||||
$query = '/forum/discussions/discussion/posts/post[@id="1"][name="alternative1"]';
|
||||
$result = $xpath->query($query);
|
||||
$this->assertEqual($result->length, 1);
|
||||
|
||||
// Check there are two "dupetest1" elements
|
||||
$query = '/forum/discussions/discussion/posts/post//dupetest1';
|
||||
$result = $xpath->query($query);
|
||||
$this->assertEqual($result->length, 2);
|
||||
|
||||
// Check second post has one name element with value "dupetest2"
|
||||
$query = '/forum/discussions/discussion/posts/post[@id="2"]/dupetest2';
|
||||
$result = $xpath->query($query);
|
||||
$this->assertEqual($result->length, 1);
|
||||
|
||||
// Check element "dupetest2" of second post has one field1 element with value "2"
|
||||
$query = '/forum/discussions/discussion/posts/post[@id="2"]/dupetest2[field1="2"]';
|
||||
$result = $xpath->query($query);
|
||||
$this->assertEqual($result->length, 1);
|
||||
|
||||
// Check forth post has no name element
|
||||
$query = '/forum/discussions/discussion/posts/post[@id="4"]/name';
|
||||
$result = $xpath->query($query);
|
||||
$this->assertEqual($result->length, 0);
|
||||
|
||||
|
||||
// Check annotations information against DB
|
||||
// Count records in original tables
|
||||
$c_postsid = $DB->count_records_sql('SELECT COUNT(DISTINCT id) FROM {forum_posts}');
|
||||
$c_dissuserid = $DB->count_records_sql('SELECT COUNT(DISTINCT userid) FROM {forum_discussions}');
|
||||
$c_ratuserid = $DB->count_records_sql('SELECT COUNT(DISTINCT userid) FROM {forum_ratings}');
|
||||
// Count records in backup_ids_table
|
||||
$f_forumpost = $DB->count_records('backup_ids_temp', array('backupid' => $backupid, 'itemname' => 'forum_post'));
|
||||
$f_user1 = $DB->count_records('backup_ids_temp', array('backupid' => $backupid, 'itemname' => 'user1'));
|
||||
$f_user2 = $DB->count_records('backup_ids_temp', array('backupid' => $backupid, 'itemname' => 'user2'));
|
||||
$c_notbackupid = $DB->count_records_select('backup_ids_temp', 'backupid != ?', array($backupid));
|
||||
// Peform tests by comparing counts
|
||||
$this->assertEqual($c_notbackupid, 0); // there isn't any record with incorrect backupid
|
||||
$this->assertEqual($c_postsid, $f_forumpost); // All posts have been registered
|
||||
$this->assertEqual($c_dissuserid, $f_user1); // All users coming from discussions have been registered
|
||||
$this->assertEqual($c_ratuserid, $f_user2); // All users coming from ratings have been registered
|
||||
|
||||
// Check file annotations against DB
|
||||
$fannotations = $DB->get_records('backup_ids_temp', array('backupid' => $backupid, 'itemname' => 'file'));
|
||||
$ffiles = $DB->get_records('files', array('contextid' => $this->contextid));
|
||||
$this->assertEqual(count($fannotations), count($ffiles)); // Same number of recs in both (all files have been annotated)
|
||||
foreach ($fannotations as $annotation) { // Check ids annotated
|
||||
$this->assertTrue($DB->record_exists('files', array('id' => $annotation->itemid)));
|
||||
}
|
||||
|
||||
// Drop the backup_ids_temp table
|
||||
backup_controller_dbops::drop_backup_ids_temp_table('testingid');
|
||||
}
|
||||
|
||||
/**
|
||||
* Backup structures wrong tests (trying to do things the wrong way)
|
||||
*/
|
||||
function test_backup_structure_wrong() {
|
||||
|
||||
// Instantiate the backup processor
|
||||
$processor = new backup_structure_processor(new xml_writer(new memory_xml_output()));
|
||||
$this->assertTrue($processor instanceof base_processor);
|
||||
|
||||
// Set one var twice
|
||||
$processor->set_var('onenewvariable', 999);
|
||||
try {
|
||||
$processor->set_var('onenewvariable', 999);
|
||||
$this->assertTrue(false, 'backup_processor_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof backup_processor_exception);
|
||||
$this->assertEqual($e->errorcode, 'processorvariablealreadyset');
|
||||
$this->assertEqual($e->a, 'onenewvariable');
|
||||
}
|
||||
|
||||
// Get non-existing var
|
||||
try {
|
||||
$var = $processor->get_var('nonexistingvar');
|
||||
$this->assertTrue(false, 'backup_processor_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof backup_processor_exception);
|
||||
$this->assertEqual($e->errorcode, 'processorvariablenotfound');
|
||||
$this->assertEqual($e->a, 'nonexistingvar');
|
||||
}
|
||||
|
||||
// Create nested element and try ro get its parent id (doesn't exisit => exception)
|
||||
$ne = new backup_nested_element('test', 'one', 'two', 'three');
|
||||
try {
|
||||
$ne->set_source_table('forum', array('id' => backup::VAR_PARENTID));
|
||||
$ne->process($processor);
|
||||
$this->assertTrue(false, 'base_element_struct_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof base_element_struct_exception);
|
||||
$this->assertEqual($e->errorcode, 'cannotfindparentidforelement');
|
||||
}
|
||||
|
||||
// Try to process one nested/final/attribute elements without processor
|
||||
$ne = new backup_nested_element('test', 'one', 'two', 'three');
|
||||
try {
|
||||
$ne->process(new stdclass());
|
||||
$this->assertTrue(false, 'base_element_struct_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof base_element_struct_exception);
|
||||
$this->assertEqual($e->errorcode, 'incorrect_processor');
|
||||
}
|
||||
$fe = new backup_final_element('test');
|
||||
try {
|
||||
$fe->process(new stdclass());
|
||||
$this->assertTrue(false, 'base_element_struct_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof base_element_struct_exception);
|
||||
$this->assertEqual($e->errorcode, 'incorrect_processor');
|
||||
}
|
||||
$at = new backup_attribute('test');
|
||||
try {
|
||||
$at->process(new stdclass());
|
||||
$this->assertTrue(false, 'base_element_struct_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof base_element_struct_exception);
|
||||
$this->assertEqual($e->errorcode, 'incorrect_processor');
|
||||
}
|
||||
|
||||
// Try to put an incorrect alias
|
||||
$ne = new backup_nested_element('test', 'one', 'two', 'three');
|
||||
try {
|
||||
$ne->set_source_alias('last', 'nonexisting');
|
||||
$this->assertTrue(false, 'base_element_struct_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof base_element_struct_exception);
|
||||
$this->assertEqual($e->errorcode, 'incorrectaliasfinalnamenotfound');
|
||||
$this->assertEqual($e->a, 'nonexisting');
|
||||
}
|
||||
|
||||
// Try various incorrect paths specifying source
|
||||
$ne = new backup_nested_element('test', 'one', 'two', 'three');
|
||||
try {
|
||||
$ne->set_source_table('forum', array('/test/subtest'));
|
||||
$this->assertTrue(false, 'base_element_struct_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof base_element_struct_exception);
|
||||
$this->assertEqual($e->errorcode, 'baseelementincorrectfinalorattribute');
|
||||
$this->assertEqual($e->a, 'subtest');
|
||||
}
|
||||
try {
|
||||
$ne->set_source_table('forum', array('/wrongtest'));
|
||||
$this->assertTrue(false, 'base_element_struct_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof base_element_struct_exception);
|
||||
$this->assertEqual($e->errorcode, 'baseelementincorrectgrandparent');
|
||||
$this->assertEqual($e->a, 'wrongtest');
|
||||
}
|
||||
try {
|
||||
$ne->set_source_table('forum', array('../nonexisting'));
|
||||
$this->assertTrue(false, 'base_element_struct_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof base_element_struct_exception);
|
||||
$this->assertEqual($e->errorcode, 'baseelementincorrectparent');
|
||||
$this->assertEqual($e->a, '..');
|
||||
}
|
||||
|
||||
// Try various incorrect file annotations
|
||||
$ne = new backup_nested_element('test', 'one', 'two', 'three');
|
||||
try {
|
||||
$ne->annotate_files('notanarray', null); // Incorrect first param
|
||||
$this->assertTrue(false, 'base_element_struct_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof base_element_struct_exception);
|
||||
$this->assertEqual($e->errorcode, 'annotate_files_requires_array_of_areas');
|
||||
$this->assertEqual($e->a, 'notanarray');
|
||||
}
|
||||
|
||||
$ne = new backup_nested_element('test', 'one', 'two', 'three');
|
||||
$ne->annotate_files(array('test_filearea'), null);
|
||||
try {
|
||||
$ne->annotate_files(array('test_filearea'), null); // Try to add annotations twice
|
||||
$this->assertTrue(false, 'base_element_struct_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof base_element_struct_exception);
|
||||
$this->assertEqual($e->errorcode, 'annotate_files_already_defined');
|
||||
$this->assertEqual($e->a, 'test');
|
||||
}
|
||||
|
||||
$ne = new backup_nested_element('test', 'one', 'two', 'three');
|
||||
try {
|
||||
$ne->annotate_files(array('test_filearea'), 'four'); // Incorrect element
|
||||
$this->assertTrue(false, 'base_element_struct_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof base_element_struct_exception);
|
||||
$this->assertEqual($e->errorcode, 'baseelementincorrectfinalorattribute');
|
||||
$this->assertEqual($e->a, 'four');
|
||||
}
|
||||
|
||||
// Try to add incorrect element to backup_optigroup
|
||||
$bog = new backup_optigroup('test');
|
||||
try {
|
||||
$bog->add_child(new backup_nested_element('test2'));
|
||||
$this->assertTrue(false, 'base_optigroup_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof base_optigroup_exception);
|
||||
$this->assertEqual($e->errorcode, 'optigroup_element_incorrect');
|
||||
$this->assertEqual($e->a, 'backup_nested_element');
|
||||
}
|
||||
|
||||
$bog = new backup_optigroup('test');
|
||||
try {
|
||||
$bog->add_child('test2');
|
||||
$this->assertTrue(false, 'base_optigroup_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof base_optigroup_exception);
|
||||
$this->assertEqual($e->errorcode, 'optigroup_element_incorrect');
|
||||
$this->assertEqual($e->a, 'non object');
|
||||
}
|
||||
|
||||
try {
|
||||
$bog = new backup_optigroup('test', new stdclass());
|
||||
$this->assertTrue(false, 'base_optigroup_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof base_optigroup_exception);
|
||||
$this->assertEqual($e->errorcode, 'optigroup_elements_incorrect');
|
||||
}
|
||||
|
||||
// Try a wrong processor with backup_optigroup
|
||||
$bog = new backup_optigroup('test');
|
||||
try {
|
||||
$bog->process(new stdclass());
|
||||
$this->assertTrue(false, 'base_element_struct_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof base_element_struct_exception);
|
||||
$this->assertEqual($e->errorcode, 'incorrect_processor');
|
||||
}
|
||||
|
||||
// Try duplicating used elements with backup_optigroup
|
||||
// Adding top->down
|
||||
$bog = new backup_optigroup('test', null, true);
|
||||
$boge1 = new backup_optigroup_element('boge1');
|
||||
$boge2 = new backup_optigroup_element('boge2');
|
||||
$ne1 = new backup_nested_element('ne1');
|
||||
$ne2 = new backup_nested_element('ne1');
|
||||
$bog->add_child($boge1);
|
||||
$bog->add_child($boge2);
|
||||
$boge1->add_child($ne1);
|
||||
try {
|
||||
$boge2->add_child($ne2);
|
||||
$this->assertTrue(false, 'base_optigroup_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof base_optigroup_exception);
|
||||
$this->assertEqual($e->errorcode, 'multiple_optigroup_duplicate_element');
|
||||
$this->assertEqual($e->a, 'ne1');
|
||||
}
|
||||
// Adding down->top
|
||||
$bog = new backup_optigroup('test', null, true);
|
||||
$boge1 = new backup_optigroup_element('boge1');
|
||||
$boge2 = new backup_optigroup_element('boge2');
|
||||
$ne1 = new backup_nested_element('ne1');
|
||||
$ne2 = new backup_nested_element('ne1');
|
||||
$boge1->add_child($ne1);
|
||||
$boge2->add_child($ne2);
|
||||
$bog->add_child($boge1);
|
||||
try {
|
||||
$bog->add_child($boge2);
|
||||
$this->assertTrue(false, 'base_element_struct_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof base_element_struct_exception);
|
||||
$this->assertEqual($e->errorcode, 'baseelementexisting');
|
||||
$this->assertEqual($e->a, 'ne1');
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,136 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* Unit tests for base_atom.class.php
|
||||
*
|
||||
* @package moodlecore
|
||||
* @subpackage backup-tests
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
// Prevent direct access to this file
|
||||
if (!defined('MOODLE_INTERNAL')) {
|
||||
die('Direct access to this script is forbidden.');
|
||||
}
|
||||
|
||||
require_once($CFG->dirroot . '/backup/util/structure/base_atom.class.php');
|
||||
|
||||
/**
|
||||
* Unit test case the base_atom class. Note: as it's abstract we are testing
|
||||
* mock_base_atom instantiable class instead
|
||||
*/
|
||||
class base_atom_test extends UnitTestCase {
|
||||
|
||||
public static $includecoverage = array('/backup/util/structure/base_atom.class.php');
|
||||
|
||||
/**
|
||||
* Correct base_atom_tests
|
||||
*/
|
||||
function test_base_atom() {
|
||||
$name_with_all_chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_';
|
||||
$value_to_test = 'Some <value> to test';
|
||||
|
||||
// Create instance with correct names
|
||||
$instance = new mock_base_atom($name_with_all_chars);
|
||||
$this->assertIsA($instance, 'base_atom');
|
||||
$this->assertEqual($instance->get_name(), $name_with_all_chars);
|
||||
$this->assertFalse($instance->is_set());
|
||||
$this->assertNull($instance->get_value());
|
||||
|
||||
// Set value
|
||||
$instance->set_value($value_to_test);
|
||||
$this->assertEqual($instance->get_value(), $value_to_test);
|
||||
$this->assertTrue($instance->is_set());
|
||||
|
||||
// Clean value
|
||||
$instance->clean_value();
|
||||
$this->assertFalse($instance->is_set());
|
||||
$this->assertNull($instance->get_value());
|
||||
|
||||
// Get to_string() results (with values)
|
||||
$instance = new mock_base_atom($name_with_all_chars);
|
||||
$instance->set_value($value_to_test);
|
||||
$tostring = $instance->to_string(true);
|
||||
$this->assertTrue(strpos($tostring, $name_with_all_chars) !== false);
|
||||
$this->assertTrue(strpos($tostring, ' => ') !== false);
|
||||
$this->assertTrue(strpos($tostring, $value_to_test) !== false);
|
||||
|
||||
// Get to_string() results (without values)
|
||||
$tostring = $instance->to_string(false);
|
||||
$this->assertTrue(strpos($tostring, $name_with_all_chars) !== false);
|
||||
$this->assertFalse(strpos($tostring, ' => '));
|
||||
$this->assertFalse(strpos($tostring, $value_to_test));
|
||||
}
|
||||
|
||||
/**
|
||||
* Throwing exception base_atom tests
|
||||
*/
|
||||
function test_base_atom_exceptions() {
|
||||
// empty names
|
||||
try {
|
||||
$instance = new mock_base_atom('');
|
||||
$this->fail("Expecting base_atom_struct_exception exception, none occurred");
|
||||
} catch (Exception $e) {
|
||||
$this->assertTrue($e instanceof base_atom_struct_exception);
|
||||
}
|
||||
|
||||
// whitespace names
|
||||
try {
|
||||
$instance = new mock_base_atom('TESTING ATOM');
|
||||
$this->fail("Expecting base_atom_struct_exception exception, none occurred");
|
||||
} catch (Exception $e) {
|
||||
$this->assertTrue($e instanceof base_atom_struct_exception);
|
||||
}
|
||||
|
||||
// ascii names
|
||||
try {
|
||||
$instance = new mock_base_atom('TESTING-ATOM');
|
||||
$this->fail("Expecting base_atom_struct_exception exception, none occurred");
|
||||
} catch (Exception $e) {
|
||||
$this->assertTrue($e instanceof base_atom_struct_exception);
|
||||
}
|
||||
try {
|
||||
$instance = new mock_base_atom('TESTING_ATOM_Á');
|
||||
$this->fail("Expecting base_atom_struct_exception exception, none occurred");
|
||||
} catch (Exception $e) {
|
||||
$this->assertTrue($e instanceof base_atom_struct_exception);
|
||||
}
|
||||
|
||||
// setting already set value
|
||||
$instance = new mock_base_atom('TEST');
|
||||
$instance->set_value('test');
|
||||
try {
|
||||
$instance->set_value('test');
|
||||
$this->fail("Expecting base_atom_content_exception exception, none occurred");
|
||||
} catch (Exception $e) {
|
||||
$this->assertTrue($e instanceof base_atom_content_exception);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Instantiable class extending base_atom in order to be able to perform tests
|
||||
*/
|
||||
class mock_base_atom extends base_atom {
|
||||
// Nothing new in this class, just an instantiable base_atom class
|
||||
// with the is_set() method public for testing purposes
|
||||
public function is_set() {
|
||||
return parent::is_set();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,71 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* Unit tests for base_attribute.class.php
|
||||
*
|
||||
* @package moodlecore
|
||||
* @subpackage backup-tests
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
// Prevent direct access to this file
|
||||
if (!defined('MOODLE_INTERNAL')) {
|
||||
die('Direct access to this script is forbidden.');
|
||||
}
|
||||
|
||||
require_once($CFG->dirroot . '/backup/util/structure/base_atom.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/structure/base_attribute.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/structure/base_final_element.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/structure/base_nested_element.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/structure/simpletest/fixtures/structuremocks.php');
|
||||
|
||||
/**
|
||||
* Unit test case the base_attribute class. Note: No really much to test here as attribute is 100%
|
||||
* atom extension without new functionality (name/value)
|
||||
*/
|
||||
class base_attribute_test extends UnitTestCase {
|
||||
|
||||
public static $includecoverage = array('backup/util/structure/base_attribute.class.php');
|
||||
|
||||
/**
|
||||
* Correct base_attribute tests
|
||||
*/
|
||||
function test_base_attribute() {
|
||||
$name_with_all_chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_';
|
||||
$value_to_test = 'Some <value> to test';
|
||||
|
||||
// Create instance with correct names
|
||||
$instance = new mock_base_attribute($name_with_all_chars);
|
||||
$this->assertIsA($instance, 'base_attribute');
|
||||
$this->assertEqual($instance->get_name(), $name_with_all_chars);
|
||||
$this->assertNull($instance->get_value());
|
||||
|
||||
// Set value
|
||||
$instance->set_value($value_to_test);
|
||||
$this->assertEqual($instance->get_value(), $value_to_test);
|
||||
|
||||
// Get to_string() results (with values)
|
||||
$instance = new mock_base_attribute($name_with_all_chars);
|
||||
$instance->set_value($value_to_test);
|
||||
$tostring = $instance->to_string(true);
|
||||
$this->assertTrue(strpos($tostring, '@' . $name_with_all_chars) !== false);
|
||||
$this->assertTrue(strpos($tostring, ' => ') !== false);
|
||||
$this->assertTrue(strpos($tostring, $value_to_test) !== false);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,176 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* Unit tests for base_final_element.class.php
|
||||
*
|
||||
* @package moodlecore
|
||||
* @subpackage backup-tests
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
// Prevent direct access to this file
|
||||
if (!defined('MOODLE_INTERNAL')) {
|
||||
die('Direct access to this script is forbidden.');
|
||||
}
|
||||
|
||||
require_once($CFG->dirroot . '/backup/util/structure/base_atom.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/structure/base_attribute.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/structure/base_final_element.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/structure/base_nested_element.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/structure/simpletest/fixtures/structuremocks.php');
|
||||
|
||||
/**
|
||||
* Unit test case the base_final_element class. Note: highly imbricated with base_nested_element class
|
||||
*/
|
||||
class base_final_element_test extends UnitTestCase {
|
||||
|
||||
public static $includecoverage = array(
|
||||
'backup/util/structure/base_final_element.class.php',
|
||||
'backup/util/structure/base_nested_element.class.php'
|
||||
);
|
||||
|
||||
/**
|
||||
* Correct base_final_element tests
|
||||
*/
|
||||
function test_base_final_element() {
|
||||
|
||||
// Create instance with name
|
||||
$instance = new mock_base_final_element('TEST');
|
||||
$this->assertIsA($instance, 'base_final_element');
|
||||
$this->assertEqual($instance->get_name(), 'TEST');
|
||||
$this->assertNull($instance->get_value());
|
||||
$this->assertEqual($instance->get_attributes(), array());
|
||||
$this->assertNull($instance->get_parent());
|
||||
$this->assertEqual($instance->get_level(), 1);
|
||||
|
||||
// Set value
|
||||
$instance->set_value('value');
|
||||
$this->assertEqual($instance->get_value(), 'value');
|
||||
|
||||
// Create instance with name and one object attribute
|
||||
$instance = new mock_base_final_element('TEST', new mock_base_attribute('ATTR1'));
|
||||
$attrs = $instance->get_attributes();
|
||||
$this->assertTrue(is_array($attrs));
|
||||
$this->assertEqual(count($attrs), 1);
|
||||
$this->assertTrue($attrs['ATTR1'] instanceof base_attribute);
|
||||
$this->assertEqual($attrs['ATTR1']->get_name(), 'ATTR1');
|
||||
$this->assertNull($attrs['ATTR1']->get_value());
|
||||
|
||||
// Create instance with name and various object attributes
|
||||
$attr1 = new mock_base_attribute('ATTR1');
|
||||
$attr1->set_value('attr1_value');
|
||||
$attr2 = new mock_base_attribute('ATTR2');
|
||||
$instance = new mock_base_final_element('TEST', array($attr1, $attr2));
|
||||
$attrs = $instance->get_attributes();
|
||||
$this->assertTrue(is_array($attrs));
|
||||
$this->assertEqual(count($attrs), 2);
|
||||
$this->assertTrue($attrs['ATTR1'] instanceof base_attribute);
|
||||
$this->assertEqual($attrs['ATTR1']->get_name(), 'ATTR1');
|
||||
$this->assertEqual($attrs['ATTR1']->get_value(), 'attr1_value');
|
||||
$this->assertTrue($attrs['ATTR2'] instanceof base_attribute);
|
||||
$this->assertEqual($attrs['ATTR2']->get_name(), 'ATTR2');
|
||||
$this->assertNull($attrs['ATTR2']->get_value());
|
||||
|
||||
// Create instance with name and one string attribute
|
||||
$instance = new mock_base_final_element('TEST', 'ATTR1');
|
||||
$attrs = $instance->get_attributes();
|
||||
$this->assertTrue(is_array($attrs));
|
||||
$this->assertEqual(count($attrs), 1);
|
||||
$this->assertTrue($attrs['ATTR1'] instanceof base_attribute);
|
||||
$this->assertEqual($attrs['ATTR1']->get_name(), 'ATTR1');
|
||||
$this->assertNull($attrs['ATTR1']->get_value());
|
||||
|
||||
// Create instance with name and various object attributes
|
||||
$instance = new mock_base_final_element('TEST', array('ATTR1', 'ATTR2'));
|
||||
$attrs = $instance->get_attributes();
|
||||
$attrs['ATTR1']->set_value('attr1_value');
|
||||
$this->assertTrue(is_array($attrs));
|
||||
$this->assertEqual(count($attrs), 2);
|
||||
$this->assertTrue($attrs['ATTR1'] instanceof base_attribute);
|
||||
$this->assertEqual($attrs['ATTR1']->get_name(), 'ATTR1');
|
||||
$this->assertEqual($attrs['ATTR1']->get_value(), 'attr1_value');
|
||||
$this->assertTrue($attrs['ATTR2'] instanceof base_attribute);
|
||||
$this->assertEqual($attrs['ATTR2']->get_name(), 'ATTR2');
|
||||
$this->assertNull($attrs['ATTR2']->get_value());
|
||||
|
||||
// Clean values
|
||||
$instance = new mock_base_final_element('TEST', array('ATTR1', 'ATTR2'));
|
||||
$instance->set_value('instance_value');
|
||||
$attrs = $instance->get_attributes();
|
||||
$attrs['ATTR1']->set_value('attr1_value');
|
||||
$this->assertEqual($instance->get_value(), 'instance_value');
|
||||
$this->assertEqual($attrs['ATTR1']->get_value(), 'attr1_value');
|
||||
$instance->clean_values();
|
||||
$this->assertNull($instance->get_value());
|
||||
$this->assertNull($attrs['ATTR1']->get_value());
|
||||
|
||||
// Get to_string() results (with values)
|
||||
$instance = new mock_base_final_element('TEST', array('ATTR1', 'ATTR2'));
|
||||
$instance->set_value('final element value');
|
||||
$attrs = $instance->get_attributes();
|
||||
$attrs['ATTR1']->set_value('attr1 value');
|
||||
$tostring = $instance->to_string(true);
|
||||
$this->assertTrue(strpos($tostring, '#TEST (level: 1)') !== false);
|
||||
$this->assertTrue(strpos($tostring, ' => ') !== false);
|
||||
$this->assertTrue(strpos($tostring, 'final element value') !== false);
|
||||
$this->assertTrue(strpos($tostring, 'attr1 value') !== false);
|
||||
}
|
||||
|
||||
/**
|
||||
* Exception base_final_element tests
|
||||
*/
|
||||
function test_base_final_element_exceptions() {
|
||||
|
||||
// Create instance with invalid name
|
||||
try {
|
||||
$instance = new mock_base_final_element('');
|
||||
$this->fail("Expecting base_atom_struct_exception exception, none occurred");
|
||||
} catch (Exception $e) {
|
||||
$this->assertTrue($e instanceof base_atom_struct_exception);
|
||||
}
|
||||
|
||||
// Create instance with incorrect (object) attribute
|
||||
try {
|
||||
$obj = new stdClass;
|
||||
$obj->name = 'test_attr';
|
||||
$instance = new mock_base_final_element('TEST', $obj);
|
||||
$this->fail("Expecting base_element_attribute_exception exception, none occurred");
|
||||
} catch (Exception $e) {
|
||||
$this->assertTrue($e instanceof base_element_attribute_exception);
|
||||
}
|
||||
|
||||
// Create instance with array containing incorrect (object) attribute
|
||||
try {
|
||||
$obj = new stdClass;
|
||||
$obj->name = 'test_attr';
|
||||
$instance = new mock_base_final_element('TEST', array($obj));
|
||||
$this->fail("Expecting base_element_attribute_exception exception, none occurred");
|
||||
} catch (Exception $e) {
|
||||
$this->assertTrue($e instanceof base_element_attribute_exception);
|
||||
}
|
||||
|
||||
// Create instance with array containing duplicate attributes
|
||||
try {
|
||||
$instance = new mock_base_final_element('TEST', array('ATTR1', 'ATTR2', 'ATTR1'));
|
||||
$this->fail("Expecting base_element_attribute_exception exception, none occurred");
|
||||
} catch (Exception $e) {
|
||||
$this->assertTrue($e instanceof base_element_attribute_exception);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,397 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* Unit tests for backup/backup_nested_element.class.php
|
||||
*
|
||||
* @package moodlecore
|
||||
* @subpackage backup-tests
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
// Prevent direct access to this file
|
||||
if (!defined('MOODLE_INTERNAL')) {
|
||||
die('Direct access to this script is forbidden.');
|
||||
}
|
||||
|
||||
require_once($CFG->dirroot . '/backup/util/structure/base_atom.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/structure/base_attribute.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/structure/base_final_element.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/structure/base_nested_element.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/structure/simpletest/fixtures/structuremocks.php');
|
||||
|
||||
/**
|
||||
* Unit test case the base_nested_element class. Note: highly imbricated with base_final_element class
|
||||
*/
|
||||
class base_nested_element_test extends UnitTestCase {
|
||||
|
||||
public static $includecoverage = array(
|
||||
'backup/util/structure/base_nested_element.class.php',
|
||||
'backup/util/structure/base_final_element.class.php'
|
||||
);
|
||||
|
||||
/**
|
||||
* Correct creation tests (attributes and final elements)
|
||||
*/
|
||||
function test_creation() {
|
||||
// Create instance with name, attributes and values and check all them
|
||||
$instance = new mock_base_nested_element('NAME', array('ATTR1', 'ATTR2'), array('VAL1', 'VAL2', 'VAL3'));
|
||||
$this->assertIsA($instance, 'base_nested_element');
|
||||
$this->assertEqual($instance->get_name(), 'NAME');
|
||||
$attrs = $instance->get_attributes();
|
||||
$this->assertTrue(is_array($attrs));
|
||||
$this->assertEqual(count($attrs), 2);
|
||||
$this->assertIsA($attrs['ATTR1'], 'base_attribute');
|
||||
$this->assertEqual($attrs['ATTR1']->get_name(), 'ATTR1');
|
||||
$this->assertNull($attrs['ATTR1']->get_value());
|
||||
$this->assertEqual($attrs['ATTR2']->get_name(), 'ATTR2');
|
||||
$this->assertNull($attrs['ATTR2']->get_value());
|
||||
$finals = $instance->get_final_elements();
|
||||
$this->assertTrue(is_array($finals));
|
||||
$this->assertEqual(count($finals), 3);
|
||||
$this->assertIsA($finals['VAL1'], 'base_final_element');
|
||||
$this->assertEqual($finals['VAL1']->get_name(), 'VAL1');
|
||||
$this->assertNull($finals['VAL1']->get_value());
|
||||
$this->assertEqual($finals['VAL1']->get_level(), 2);
|
||||
$this->assertIsA($finals['VAL1']->get_parent(), 'base_nested_element');
|
||||
$this->assertEqual($finals['VAL2']->get_name(), 'VAL2');
|
||||
$this->assertNull($finals['VAL2']->get_value());
|
||||
$this->assertEqual($finals['VAL2']->get_level(), 2);
|
||||
$this->assertIsA($finals['VAL1']->get_parent(), 'base_nested_element');
|
||||
$this->assertEqual($finals['VAL3']->get_name(), 'VAL3');
|
||||
$this->assertNull($finals['VAL3']->get_value());
|
||||
$this->assertEqual($finals['VAL3']->get_level(), 2);
|
||||
$this->assertIsA($finals['VAL1']->get_parent(), 'base_nested_element');
|
||||
$this->assertNull($instance->get_parent());
|
||||
$this->assertEqual($instance->get_children(), array());
|
||||
$this->assertEqual($instance->get_level(), 1);
|
||||
|
||||
// Create instance with name only
|
||||
$instance = new mock_base_nested_element('NAME');
|
||||
$this->assertIsA($instance, 'base_nested_element');
|
||||
$this->assertEqual($instance->get_name(), 'NAME');
|
||||
$this->assertEqual($instance->get_attributes(), array());
|
||||
$this->assertEqual($instance->get_final_elements(), array());
|
||||
$this->assertNull($instance->get_parent());
|
||||
$this->assertEqual($instance->get_children(), array());
|
||||
$this->assertEqual($instance->get_level(), 1);
|
||||
|
||||
// Add some attributes
|
||||
$instance->add_attributes(array('ATTR1', 'ATTR2'));
|
||||
$attrs = $instance->get_attributes();
|
||||
$this->assertTrue(is_array($attrs));
|
||||
$this->assertEqual(count($attrs), 2);
|
||||
$this->assertEqual($attrs['ATTR1']->get_name(), 'ATTR1');
|
||||
$this->assertNull($attrs['ATTR1']->get_value());
|
||||
$this->assertEqual($attrs['ATTR2']->get_name(), 'ATTR2');
|
||||
$this->assertNull($attrs['ATTR2']->get_value());
|
||||
|
||||
// And some more atributes
|
||||
$instance->add_attributes(array('ATTR3', 'ATTR4'));
|
||||
$attrs = $instance->get_attributes();
|
||||
$this->assertTrue(is_array($attrs));
|
||||
$this->assertEqual(count($attrs), 4);
|
||||
$this->assertEqual($attrs['ATTR1']->get_name(), 'ATTR1');
|
||||
$this->assertNull($attrs['ATTR1']->get_value());
|
||||
$this->assertEqual($attrs['ATTR2']->get_name(), 'ATTR2');
|
||||
$this->assertNull($attrs['ATTR2']->get_value());
|
||||
$this->assertEqual($attrs['ATTR3']->get_name(), 'ATTR3');
|
||||
$this->assertNull($attrs['ATTR3']->get_value());
|
||||
$this->assertEqual($attrs['ATTR4']->get_name(), 'ATTR4');
|
||||
$this->assertNull($attrs['ATTR4']->get_value());
|
||||
|
||||
// Add some final elements
|
||||
$instance->add_final_elements(array('VAL1', 'VAL2', 'VAL3'));
|
||||
$finals = $instance->get_final_elements();
|
||||
$this->assertTrue(is_array($finals));
|
||||
$this->assertEqual(count($finals), 3);
|
||||
$this->assertEqual($finals['VAL1']->get_name(), 'VAL1');
|
||||
$this->assertNull($finals['VAL1']->get_value());
|
||||
$this->assertEqual($finals['VAL2']->get_name(), 'VAL2');
|
||||
$this->assertNull($finals['VAL2']->get_value());
|
||||
$this->assertEqual($finals['VAL3']->get_name(), 'VAL3');
|
||||
$this->assertNull($finals['VAL3']->get_value());
|
||||
|
||||
// Add some more final elements
|
||||
$instance->add_final_elements('VAL4');
|
||||
$finals = $instance->get_final_elements();
|
||||
$this->assertTrue(is_array($finals));
|
||||
$this->assertEqual(count($finals), 4);
|
||||
$this->assertEqual($finals['VAL1']->get_name(), 'VAL1');
|
||||
$this->assertNull($finals['VAL1']->get_value());
|
||||
$this->assertEqual($finals['VAL2']->get_name(), 'VAL2');
|
||||
$this->assertNull($finals['VAL2']->get_value());
|
||||
$this->assertEqual($finals['VAL3']->get_name(), 'VAL3');
|
||||
$this->assertNull($finals['VAL3']->get_value());
|
||||
$this->assertEqual($finals['VAL4']->get_name(), 'VAL4');
|
||||
$this->assertNull($finals['VAL4']->get_value());
|
||||
|
||||
// Get to_string() results (with values)
|
||||
$instance = new mock_base_nested_element('PARENT', array('ATTR1', 'ATTR2'), array('FINAL1', 'FINAL2', 'FINAL3'));
|
||||
$child1 = new mock_base_nested_element('CHILD1', null, new mock_base_final_element('FINAL4'));
|
||||
$child2 = new mock_base_nested_element('CHILD2', null, new mock_base_final_element('FINAL5'));
|
||||
$instance->add_child($child1);
|
||||
$instance->add_child($child2);
|
||||
$children = $instance->get_children();
|
||||
$final_elements = $children['CHILD1']->get_final_elements();
|
||||
$final_elements['FINAL4']->set_value('final4value');
|
||||
$final_elements['FINAL4']->add_attributes('ATTR4');
|
||||
$grandchild = new mock_base_nested_element('GRANDCHILD', new mock_base_attribute('ATTR5'));
|
||||
$child2->add_child($grandchild);
|
||||
$attrs = $grandchild->get_attributes();
|
||||
$attrs['ATTR5']->set_value('attr5value');
|
||||
$tostring = $instance->to_string(true);
|
||||
$this->assertTrue(strpos($tostring, 'PARENT (level: 1)') !== false);
|
||||
$this->assertTrue(strpos($tostring, ' => ') !== false);
|
||||
$this->assertTrue(strpos($tostring, '#FINAL4 (level: 3) => final4value') !== false);
|
||||
$this->assertTrue(strpos($tostring, '@ATTR5 => attr5value') !== false);
|
||||
$this->assertTrue(strpos($tostring, '#FINAL5 (level: 3) => not set') !== false);
|
||||
|
||||
// Clean values
|
||||
$instance = new mock_base_nested_element('PARENT', array('ATTR1', 'ATTR2'), array('FINAL1', 'FINAL2', 'FINAL3'));
|
||||
$child1 = new mock_base_nested_element('CHILD1', null, new mock_base_final_element('FINAL4'));
|
||||
$child2 = new mock_base_nested_element('CHILD2', null, new mock_base_final_element('FINAL4'));
|
||||
$instance->add_child($child1);
|
||||
$instance->add_child($child2);
|
||||
$children = $instance->get_children();
|
||||
$final_elements = $children['CHILD1']->get_final_elements();
|
||||
$final_elements['FINAL4']->set_value('final4value');
|
||||
$final_elements['FINAL4']->add_attributes('ATTR4');
|
||||
$grandchild = new mock_base_nested_element('GRANDCHILD', new mock_base_attribute('ATTR4'));
|
||||
$child2->add_child($grandchild);
|
||||
$attrs = $grandchild->get_attributes();
|
||||
$attrs['ATTR4']->set_value('attr4value');
|
||||
$this->assertEqual($final_elements['FINAL4']->get_value(), 'final4value');
|
||||
$this->assertEqual($attrs['ATTR4']->get_value(), 'attr4value');
|
||||
$instance->clean_values();
|
||||
$this->assertNull($final_elements['FINAL4']->get_value());
|
||||
$this->assertNull($attrs['ATTR4']->get_value());
|
||||
}
|
||||
|
||||
/**
|
||||
* Incorrect creation tests (attributes and final elements)
|
||||
*/
|
||||
function test_wrong_creation() {
|
||||
|
||||
// Create instance with invalid name
|
||||
try {
|
||||
$instance = new mock_base_nested_element('');
|
||||
$this->fail("Expecting base_atom_struct_exception exception, none occurred");
|
||||
} catch (Exception $e) {
|
||||
$this->assertTrue($e instanceof base_atom_struct_exception);
|
||||
}
|
||||
|
||||
// Create instance with incorrect (object) final element
|
||||
try {
|
||||
$obj = new stdClass;
|
||||
$obj->name = 'test_attr';
|
||||
$instance = new mock_base_nested_element('TEST', null, $obj);
|
||||
$this->fail("Expecting base_element_struct_exception exception, none occurred");
|
||||
} catch (Exception $e) {
|
||||
$this->assertTrue($e instanceof base_element_struct_exception);
|
||||
}
|
||||
|
||||
// Create instance with array containing incorrect (object) final element
|
||||
try {
|
||||
$obj = new stdClass;
|
||||
$obj->name = 'test_attr';
|
||||
$instance = new mock_base_nested_element('TEST', null, array($obj));
|
||||
$this->fail("Expecting base_element_struct_exception exception, none occurred");
|
||||
} catch (Exception $e) {
|
||||
$this->assertTrue($e instanceof base_element_struct_exception);
|
||||
}
|
||||
|
||||
// Create instance with array containing duplicate final elements
|
||||
try {
|
||||
$instance = new mock_base_nested_element('TEST', null, array('VAL1', 'VAL2', 'VAL1'));
|
||||
$this->fail("Expecting base_element_struct_exception exception, none occurred");
|
||||
} catch (Exception $e) {
|
||||
$this->assertTrue($e instanceof base_element_struct_exception);
|
||||
}
|
||||
|
||||
// Try to get value of base_nested_element
|
||||
$instance = new mock_base_nested_element('TEST');
|
||||
try {
|
||||
$instance->get_value();
|
||||
$this->fail("Expecting base_element_struct_exception exception, none occurred");
|
||||
} catch (Exception $e) {
|
||||
$this->assertTrue($e instanceof base_element_struct_exception);
|
||||
}
|
||||
|
||||
// Try to set value of base_nested_element
|
||||
$instance = new mock_base_nested_element('TEST');
|
||||
try {
|
||||
$instance->set_value('some_value');
|
||||
$this->fail("Expecting base_element_struct_exception exception, none occurred");
|
||||
} catch (Exception $e) {
|
||||
$this->assertTrue($e instanceof base_element_struct_exception);
|
||||
}
|
||||
|
||||
// Try to clean one value of base_nested_element
|
||||
$instance = new mock_base_nested_element('TEST');
|
||||
try {
|
||||
$instance->clean_value('some_value');
|
||||
$this->fail("Expecting base_element_struct_exception exception, none occurred");
|
||||
} catch (Exception $e) {
|
||||
$this->assertTrue($e instanceof base_element_struct_exception);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct tree tests (children stuff)
|
||||
*/
|
||||
function test_tree() {
|
||||
|
||||
// Create parent and child instances, tree-ing them
|
||||
$parent = new mock_base_nested_element('PARENT');
|
||||
$child = new mock_base_nested_element('CHILD');
|
||||
$parent->add_child($child);
|
||||
$this->assertEqual($parent->get_children(), array('CHILD' => $child));
|
||||
$this->assertEqual($child->get_parent(), $parent);
|
||||
$check_children = $parent->get_children();
|
||||
$check_child = $check_children['CHILD'];
|
||||
$check_parent = $check_child->get_parent();
|
||||
$this->assertEqual($check_child->get_name(), 'CHILD');
|
||||
$this->assertEqual($check_parent->get_name(), 'PARENT');
|
||||
$this->assertEqual($check_child->get_level(), 2);
|
||||
$this->assertEqual($check_parent->get_level(), 1);
|
||||
$this->assertEqual($check_parent->get_children(), array('CHILD' => $child));
|
||||
$this->assertEqual($check_child->get_parent(), $parent);
|
||||
|
||||
// Add parent to grandparent
|
||||
$grandparent = new mock_base_nested_element('GRANDPARENT');
|
||||
$grandparent->add_child($parent);
|
||||
$this->assertEqual($grandparent->get_children(), array('PARENT' => $parent));
|
||||
$this->assertEqual($parent->get_parent(), $grandparent);
|
||||
$this->assertEqual($parent->get_children(), array('CHILD' => $child));
|
||||
$this->assertEqual($child->get_parent(), $parent);
|
||||
$this->assertEqual($child->get_level(), 3);
|
||||
$this->assertEqual($parent->get_level(), 2);
|
||||
$this->assertEqual($grandparent->get_level(), 1);
|
||||
|
||||
// Add grandchild to child
|
||||
$grandchild = new mock_base_nested_element('GRANDCHILD');
|
||||
$child->add_child($grandchild);
|
||||
$this->assertEqual($child->get_children(), array('GRANDCHILD' => $grandchild));
|
||||
$this->assertEqual($grandchild->get_parent(), $child);
|
||||
$this->assertEqual($grandchild->get_level(), 4);
|
||||
$this->assertEqual($child->get_level(), 3);
|
||||
$this->assertEqual($parent->get_level(), 2);
|
||||
$this->assertEqual($grandparent->get_level(), 1);
|
||||
|
||||
// Add another child to parent
|
||||
$child2 = new mock_base_nested_element('CHILD2');
|
||||
$parent->add_child($child2);
|
||||
$this->assertEqual($parent->get_children(), array('CHILD' => $child, 'CHILD2' => $child2));
|
||||
$this->assertEqual($child2->get_parent(), $parent);
|
||||
$this->assertEqual($grandchild->get_level(), 4);
|
||||
$this->assertEqual($child->get_level(), 3);
|
||||
$this->assertEqual($child2->get_level(), 3);
|
||||
$this->assertEqual($parent->get_level(), 2);
|
||||
$this->assertEqual($grandparent->get_level(), 1);
|
||||
}
|
||||
|
||||
/**
|
||||
* Incorrect tree tests (children stuff)
|
||||
*/
|
||||
function test_wrong_tree() {
|
||||
|
||||
// Add null object child
|
||||
$parent = new mock_base_nested_element('PARENT');
|
||||
$child = null;
|
||||
try {
|
||||
$parent->add_child($child);
|
||||
$this->fail("Expecting base_element_struct_exception exception, none occurred");
|
||||
} catch (Exception $e) {
|
||||
$this->assertTrue($e instanceof base_element_struct_exception);
|
||||
}
|
||||
|
||||
// Add non base_element object child
|
||||
$parent = new mock_base_nested_element('PARENT');
|
||||
$child = new stdClass();
|
||||
try {
|
||||
$parent->add_child($child);
|
||||
$this->fail("Expecting base_element_struct_exception exception, none occurred");
|
||||
} catch (Exception $e) {
|
||||
$this->assertTrue($e instanceof base_element_struct_exception);
|
||||
}
|
||||
|
||||
// Add existing element (being parent)
|
||||
$parent = new mock_base_nested_element('PARENT');
|
||||
$child = new mock_base_nested_element('PARENT');
|
||||
try {
|
||||
$parent->add_child($child);
|
||||
$this->fail("Expecting base_element_struct_exception exception, none occurred");
|
||||
} catch (Exception $e) {
|
||||
$this->assertTrue($e instanceof base_element_struct_exception);
|
||||
}
|
||||
|
||||
// Add existing element (being grandparent)
|
||||
$grandparent = new mock_base_nested_element('GRANDPARENT');
|
||||
$parent = new mock_base_nested_element('PARENT');
|
||||
$child = new mock_base_nested_element('GRANDPARENT');
|
||||
$grandparent->add_child($parent);
|
||||
try {
|
||||
$parent->add_child($child);
|
||||
$this->fail("Expecting base_element_struct_exception exception, none occurred");
|
||||
} catch (Exception $e) {
|
||||
$this->assertTrue($e instanceof base_element_struct_exception);
|
||||
}
|
||||
|
||||
// Add existing element (being grandchild)
|
||||
$grandparent = new mock_base_nested_element('GRANDPARENT');
|
||||
$parent = new mock_base_nested_element('PARENT');
|
||||
$child = new mock_base_nested_element('GRANDPARENT');
|
||||
$parent->add_child($child);
|
||||
try {
|
||||
$grandparent->add_child($parent);
|
||||
$this->fail("Expecting base_element_struct_exception exception, none occurred");
|
||||
} catch (Exception $e) {
|
||||
$this->assertTrue($e instanceof base_element_struct_exception);
|
||||
}
|
||||
|
||||
// Add existing element (being cousin)
|
||||
$grandparent = new mock_base_nested_element('GRANDPARENT');
|
||||
$parent1 = new mock_base_nested_element('PARENT1');
|
||||
$parent2 = new mock_base_nested_element('PARENT2');
|
||||
$child1 = new mock_base_nested_element('CHILD1');
|
||||
$child2 = new mock_base_nested_element('CHILD1');
|
||||
$grandparent->add_child($parent1);
|
||||
$parent1->add_child($child1);
|
||||
$parent2->add_child($child2);
|
||||
try {
|
||||
$grandparent->add_child($parent2);
|
||||
$this->fail("Expecting base_element_struct_exception exception, none occurred");
|
||||
} catch (Exception $e) {
|
||||
$this->assertTrue($e instanceof base_element_struct_exception);
|
||||
}
|
||||
|
||||
// Add element to two parents
|
||||
$parent1 = new mock_base_nested_element('PARENT1');
|
||||
$parent2 = new mock_base_nested_element('PARENT2');
|
||||
$child = new mock_base_nested_element('CHILD');
|
||||
$parent1->add_child($child);
|
||||
try {
|
||||
$parent2->add_child($child);
|
||||
$this->fail("Expecting base_element_struct_exception exception, none occurred");
|
||||
} catch (Exception $e) {
|
||||
$this->assertTrue($e instanceof base_element_parent_exception);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,150 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* Unit tests for backup/backup_nested_element.class.php
|
||||
*
|
||||
* @package moodlecore
|
||||
* @subpackage backup-tests
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
// Prevent direct access to this file
|
||||
if (!defined('MOODLE_INTERNAL')) {
|
||||
die('Direct access to this script is forbidden.');
|
||||
}
|
||||
|
||||
require_once($CFG->dirroot . '/backup/util/structure/base_atom.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/structure/base_attribute.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/structure/base_final_element.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/structure/base_nested_element.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/structure/base_optigroup.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/structure/simpletest/fixtures/structuremocks.php');
|
||||
|
||||
/**
|
||||
* Unit test case the base_optigroup class. Note: highly imbricated with nested/final base elements
|
||||
*/
|
||||
class base_optigroup_test extends UnitTestCase {
|
||||
|
||||
public static $includecoverage = array(
|
||||
'backup/util/structure/base_optigroup.class.php',
|
||||
);
|
||||
|
||||
/**
|
||||
* Correct creation tests (s)
|
||||
*/
|
||||
function test_creation() {
|
||||
$instance = new mock_base_optigroup('optigroup', null, true);
|
||||
$this->assertIsA($instance, 'base_optigroup');
|
||||
$this->assertEqual($instance->get_name(), 'optigroup');
|
||||
$this->assertNull($instance->get_parent());
|
||||
$this->assertEqual($instance->get_children(), array());
|
||||
$this->assertEqual($instance->get_level(), 1);
|
||||
$this->assertTrue($instance->is_multiple());
|
||||
|
||||
// Get to_string() results (with values)
|
||||
$child1 = new mock_base_nested_element('child1', null, new mock_base_final_element('four'));
|
||||
$child2 = new mock_base_nested_element('child2', null, new mock_base_final_element('five'));
|
||||
$instance->add_child($child1);
|
||||
$instance->add_child($child2);
|
||||
$children = $instance->get_children();
|
||||
$final_elements = $children['child1']->get_final_elements();
|
||||
$final_elements['four']->set_value('final4value');
|
||||
$final_elements['four']->add_attributes('attr4');
|
||||
$grandchild = new mock_base_nested_element('grandchild', new mock_base_attribute('attr5'));
|
||||
$child2->add_child($grandchild);
|
||||
$attrs = $grandchild->get_attributes();
|
||||
$attrs['attr5']->set_value('attr5value');
|
||||
$tostring = $instance->to_string(true);
|
||||
$this->assertTrue(strpos($tostring, '!optigroup (level: 1)') !== false);
|
||||
$this->assertTrue(strpos($tostring, '?child2 (level: 2) =>') !== false);
|
||||
$this->assertTrue(strpos($tostring, ' => ') !== false);
|
||||
$this->assertTrue(strpos($tostring, '#four (level: 3) => final4value') !== false);
|
||||
$this->assertTrue(strpos($tostring, '@attr5 => attr5value') !== false);
|
||||
$this->assertTrue(strpos($tostring, '#five (level: 3) => not set') !== false);
|
||||
}
|
||||
|
||||
/**
|
||||
* Incorrect creation tests (attributes and final elements)
|
||||
*/
|
||||
function itest_wrong_creation() {
|
||||
|
||||
// Create instance with invalid name
|
||||
try {
|
||||
$instance = new mock_base_nested_element('');
|
||||
$this->fail("Expecting base_atom_struct_exception exception, none occurred");
|
||||
} catch (Exception $e) {
|
||||
$this->assertTrue($e instanceof base_atom_struct_exception);
|
||||
}
|
||||
|
||||
// Create instance with incorrect (object) final element
|
||||
try {
|
||||
$obj = new stdClass;
|
||||
$obj->name = 'test_attr';
|
||||
$instance = new mock_base_nested_element('TEST', null, $obj);
|
||||
$this->fail("Expecting base_element_struct_exception exception, none occurred");
|
||||
} catch (Exception $e) {
|
||||
$this->assertTrue($e instanceof base_element_struct_exception);
|
||||
}
|
||||
|
||||
// Create instance with array containing incorrect (object) final element
|
||||
try {
|
||||
$obj = new stdClass;
|
||||
$obj->name = 'test_attr';
|
||||
$instance = new mock_base_nested_element('TEST', null, array($obj));
|
||||
$this->fail("Expecting base_element_struct_exception exception, none occurred");
|
||||
} catch (Exception $e) {
|
||||
$this->assertTrue($e instanceof base_element_struct_exception);
|
||||
}
|
||||
|
||||
// Create instance with array containing duplicate final elements
|
||||
try {
|
||||
$instance = new mock_base_nested_element('TEST', null, array('VAL1', 'VAL2', 'VAL1'));
|
||||
$this->fail("Expecting base_element_struct_exception exception, none occurred");
|
||||
} catch (Exception $e) {
|
||||
$this->assertTrue($e instanceof base_element_struct_exception);
|
||||
}
|
||||
|
||||
// Try to get value of base_nested_element
|
||||
$instance = new mock_base_nested_element('TEST');
|
||||
try {
|
||||
$instance->get_value();
|
||||
$this->fail("Expecting base_element_struct_exception exception, none occurred");
|
||||
} catch (Exception $e) {
|
||||
$this->assertTrue($e instanceof base_element_struct_exception);
|
||||
}
|
||||
|
||||
// Try to set value of base_nested_element
|
||||
$instance = new mock_base_nested_element('TEST');
|
||||
try {
|
||||
$instance->set_value('some_value');
|
||||
$this->fail("Expecting base_element_struct_exception exception, none occurred");
|
||||
} catch (Exception $e) {
|
||||
$this->assertTrue($e instanceof base_element_struct_exception);
|
||||
}
|
||||
|
||||
// Try to clean one value of base_nested_element
|
||||
$instance = new mock_base_nested_element('TEST');
|
||||
try {
|
||||
$instance->clean_value('some_value');
|
||||
$this->fail("Expecting base_element_struct_exception exception, none occurred");
|
||||
} catch (Exception $e) {
|
||||
$this->assertTrue($e instanceof base_element_struct_exception);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,46 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-tests
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
// Prevent direct access to this file
|
||||
if (!defined('MOODLE_INTERNAL')) {
|
||||
die('Direct access to this script is forbidden.');
|
||||
}
|
||||
|
||||
// Include all the needed stuff
|
||||
//require_once($CFG->dirroot . '/backup/util/checks/backup_check.class.php');
|
||||
|
||||
/*
|
||||
* ui tests (all)
|
||||
*/
|
||||
class backup_ui_test extends UnitTestCase {
|
||||
|
||||
public static $includecoverage = array('backup/util/ui');
|
||||
public static $excludecoverage = array('backup/util/ui/simpletest');
|
||||
|
||||
/*
|
||||
* test backup_ui class
|
||||
*/
|
||||
function test_backup_ui() {
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-xml
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* Abstract class to extend in order to transform @xml_writer text contents
|
||||
*
|
||||
* Implementations of this class will provide @xml_writer with the ability of
|
||||
* transform xml text contents before being sent to output. Useful for various
|
||||
* things like link transformations in the backup process and others.
|
||||
*
|
||||
* Just define the process() method, program the desired transformations and done!
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
abstract class xml_contenttransformer {
|
||||
|
||||
abstract public function process($content);
|
||||
}
|
||||
@@ -0,0 +1,71 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-xml
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* This class implements one @xml_output able to send contents to one OS file
|
||||
*
|
||||
* Buffering enabled by default (can be disabled)
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
class file_xml_output extends xml_output {
|
||||
|
||||
protected $fullpath; // Full path to OS file where contents will be stored
|
||||
protected $fhandle; // File handle where all write operations happen
|
||||
|
||||
public function __construct($fullpath, $usebuffer = true) {
|
||||
$this->fullpath = $fullpath;
|
||||
parent::__construct($usebuffer);
|
||||
}
|
||||
|
||||
// Private API starts here
|
||||
|
||||
protected function init() {
|
||||
if (!file_exists(dirname($this->fullpath))) {
|
||||
throw new xml_output_exception('directory_not_exists', dirname($this->fullpath));
|
||||
}
|
||||
if (file_exists($this->fullpath)) {
|
||||
throw new xml_output_exception('file_already_exists', $this->fullpath);
|
||||
}
|
||||
if (!is_writable(dirname($this->fullpath))) {
|
||||
throw new xml_output_exception('directory_not_writable', dirname($this->fullpath));
|
||||
}
|
||||
// Open the OS file for writing
|
||||
if (! $this->fhandle = fopen($this->fullpath, 'w')) {
|
||||
throw new xml_output_exception('error_opening_file');
|
||||
}
|
||||
}
|
||||
|
||||
protected function finish() {
|
||||
if (false === fclose($this->fhandle)) {
|
||||
throw new xml_output_exception('error_closing_file');
|
||||
}
|
||||
}
|
||||
|
||||
protected function send($content) {
|
||||
if (false === fwrite($this->fhandle, $content)) {
|
||||
throw new xml_output_exception('error_writing_file');
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,64 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-xml
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* This class implements one @xml_output able to store and return output in memory
|
||||
*
|
||||
* Although possible to use, has been defined as not supporting buffering for
|
||||
* testing purposes. get_allcontents() will return the contents after ending.
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
class memory_xml_output extends xml_output{
|
||||
|
||||
protected $allcontents; // Here we'll store all the written contents
|
||||
|
||||
public function __construct() {
|
||||
$this->allcontents = '';
|
||||
parent::__construct(false); // disable buffering
|
||||
}
|
||||
|
||||
public function get_allcontents() {
|
||||
if ($this->running !== false) {
|
||||
throw new xml_output_exception('xml_output_not_stopped');
|
||||
}
|
||||
return $this->allcontents;
|
||||
}
|
||||
|
||||
// Private API starts here
|
||||
|
||||
protected function init() {
|
||||
// Easy :-)
|
||||
}
|
||||
|
||||
protected function finish() {
|
||||
// Trivial :-)
|
||||
}
|
||||
|
||||
protected function send($content) {
|
||||
// Accumulate contents
|
||||
$this->allcontents .= $content;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,303 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-tests
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
// Prevent direct access to this file
|
||||
if (!defined('MOODLE_INTERNAL')) {
|
||||
die('Direct access to this script is forbidden.');
|
||||
}
|
||||
|
||||
// Include all the needed stuff
|
||||
require_once($CFG->dirroot . '/backup/util/xml/output/xml_output.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/xml/output/memory_xml_output.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/xml/output/file_xml_output.class.php');
|
||||
|
||||
/*
|
||||
* xml_output tests (base, memory and file)
|
||||
*/
|
||||
class xml_output_test extends UnitTestCase {
|
||||
|
||||
public static $includecoverage = array('backup/util/xml/output');
|
||||
public static $excludecoverage = array('backup/util/xml/output/simpletest');
|
||||
|
||||
/*
|
||||
* test memory_xml_output
|
||||
*/
|
||||
function test_memory_xml_output() {
|
||||
// Instantiate xml_output
|
||||
$xo = new memory_xml_output();
|
||||
$this->assertTrue($xo instanceof xml_output);
|
||||
|
||||
// Try to write some contents before starting it
|
||||
$xo = new memory_xml_output();
|
||||
try {
|
||||
$xo->write('test');
|
||||
$this->assertTrue(false, 'xml_output_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof xml_output_exception);
|
||||
$this->assertEqual($e->errorcode, 'xml_output_not_started');
|
||||
}
|
||||
|
||||
// Try to set buffer size if unsupported
|
||||
$xo = new memory_xml_output();
|
||||
try {
|
||||
$xo->set_buffersize(8192);
|
||||
$this->assertTrue(false, 'xml_output_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof xml_output_exception);
|
||||
$this->assertEqual($e->errorcode, 'xml_output_buffer_nosupport');
|
||||
}
|
||||
|
||||
// Try to set buffer after start
|
||||
$xo = new memory_xml_output();
|
||||
$xo->start();
|
||||
try {
|
||||
$xo->set_buffersize(8192);
|
||||
$this->assertTrue(false, 'xml_output_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof xml_output_exception);
|
||||
$this->assertEqual($e->errorcode, 'xml_output_already_started');
|
||||
}
|
||||
|
||||
// Try to stop output before starting it
|
||||
$xo = new memory_xml_output();
|
||||
try {
|
||||
$xo->stop();
|
||||
$this->assertTrue(false, 'xml_output_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof xml_output_exception);
|
||||
$this->assertEqual($e->errorcode, 'xml_output_not_started');
|
||||
}
|
||||
|
||||
// Try to debug_info() before starting
|
||||
$xo = new memory_xml_output();
|
||||
try {
|
||||
$xo->debug_info();
|
||||
$this->assertTrue(false, 'xml_output_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof xml_output_exception);
|
||||
$this->assertEqual($e->errorcode, 'xml_output_not_stopped');
|
||||
}
|
||||
|
||||
// Start output twice
|
||||
$xo = new memory_xml_output();
|
||||
$xo->start();
|
||||
try {
|
||||
$xo->start();
|
||||
$this->assertTrue(false, 'xml_output_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof xml_output_exception);
|
||||
$this->assertEqual($e->errorcode, 'xml_output_already_started');
|
||||
}
|
||||
|
||||
// Try to debug_info() before stoping
|
||||
$xo = new memory_xml_output();
|
||||
$xo->start();
|
||||
try {
|
||||
$xo->debug_info();
|
||||
$this->assertTrue(false, 'xml_output_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof xml_output_exception);
|
||||
$this->assertEqual($e->errorcode, 'xml_output_not_stopped');
|
||||
}
|
||||
|
||||
// Stop output twice
|
||||
$xo = new memory_xml_output();
|
||||
$xo->start();
|
||||
$xo->stop();
|
||||
try {
|
||||
$xo->stop();
|
||||
$this->assertTrue(false, 'xml_output_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof xml_output_exception);
|
||||
$this->assertEqual($e->errorcode, 'xml_output_not_started');
|
||||
}
|
||||
|
||||
// Try to re-start after stop
|
||||
$xo = new memory_xml_output();
|
||||
$xo->start();
|
||||
$xo->stop();
|
||||
try {
|
||||
$xo->start();
|
||||
$this->assertTrue(false, 'xml_output_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof xml_output_exception);
|
||||
$this->assertEqual($e->errorcode, 'xml_output_already_stopped');
|
||||
}
|
||||
|
||||
// Try to get contents before stopping
|
||||
$xo = new memory_xml_output();
|
||||
$xo->start();
|
||||
try {
|
||||
$xo->get_allcontents();
|
||||
$this->assertTrue(false, 'xml_output_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof xml_output_exception);
|
||||
$this->assertEqual($e->errorcode, 'xml_output_not_stopped');
|
||||
}
|
||||
|
||||
// Write some contents and check them
|
||||
$xo = new memory_xml_output();
|
||||
$xo->start();
|
||||
$xo->write('first test');
|
||||
$xo->stop();
|
||||
$this->assertEqual('first test', $xo->get_allcontents());
|
||||
|
||||
// Write 3 times and check them
|
||||
$xo = new memory_xml_output();
|
||||
$xo->start();
|
||||
$xo->write('first test');
|
||||
$xo->write(', sencond test');
|
||||
$xo->write(', third test');
|
||||
$xo->stop();
|
||||
$this->assertEqual('first test, sencond test, third test', $xo->get_allcontents());
|
||||
|
||||
// Write some line feeds, tabs and friends
|
||||
$string = "\n\r\tcrazy test\n\r\t";
|
||||
$xo = new memory_xml_output();
|
||||
$xo->start();
|
||||
$xo->write($string);
|
||||
$xo->stop();
|
||||
$this->assertEqual($string, $xo->get_allcontents());
|
||||
|
||||
// Write some UTF-8 chars
|
||||
$string = 'áéíóú';
|
||||
$xo = new memory_xml_output();
|
||||
$xo->start();
|
||||
$xo->write($string);
|
||||
$xo->stop();
|
||||
$this->assertEqual($string, $xo->get_allcontents());
|
||||
|
||||
// Write some empty content
|
||||
$xo = new memory_xml_output();
|
||||
$xo->start();
|
||||
$xo->write('Hello ');
|
||||
$xo->write(null);
|
||||
$xo->write(false);
|
||||
$xo->write('');
|
||||
$xo->write('World');
|
||||
$xo->write(null);
|
||||
$xo->stop();
|
||||
$this->assertEqual('Hello World', $xo->get_allcontents());
|
||||
|
||||
// Get debug info
|
||||
$xo = new memory_xml_output();
|
||||
$xo->start();
|
||||
$xo->write('01234');
|
||||
$xo->write('56789');
|
||||
$xo->stop();
|
||||
$this->assertEqual('0123456789', $xo->get_allcontents());
|
||||
$debug = $xo->debug_info();
|
||||
$this->assertTrue(is_array($debug));
|
||||
$this->assertTrue(array_key_exists('sent', $debug));
|
||||
$this->assertEqual($debug['sent'], 10);
|
||||
}
|
||||
|
||||
/*
|
||||
* test file_xml_output
|
||||
*/
|
||||
function test_file_xml_output() {
|
||||
global $CFG;
|
||||
|
||||
$file = $CFG->dataroot . '/temp/test/test_file_xml_output.txt';
|
||||
// Remove the test dir and any content
|
||||
@remove_dir(dirname($file));
|
||||
// Recreate test dir
|
||||
if (!check_dir_exists(dirname($file), true, true)) {
|
||||
throw moodle_exception('error_creating_temp_dir', 'error', dirname($file));
|
||||
}
|
||||
|
||||
// Instantiate xml_output
|
||||
$xo = new file_xml_output($file);
|
||||
$this->assertTrue($xo instanceof xml_output);
|
||||
|
||||
// Try to init file in (near) impossible path
|
||||
$file = $CFG->dataroot . '/temp/test_azby/test_file_xml_output.txt';
|
||||
$xo = new file_xml_output($file);
|
||||
try {
|
||||
$xo->start();
|
||||
$this->assertTrue(false, 'xml_output_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof xml_output_exception);
|
||||
$this->assertEqual($e->errorcode, 'directory_not_exists');
|
||||
}
|
||||
|
||||
// Try to init file already existing
|
||||
$file = $CFG->dataroot . '/temp/test/test_file_xml_output.txt';
|
||||
file_put_contents($file, 'createdtobedeleted'); // create file manually
|
||||
$xo = new file_xml_output($file);
|
||||
try {
|
||||
$xo->start();
|
||||
$this->assertTrue(false, 'xml_output_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof xml_output_exception);
|
||||
$this->assertEqual($e->errorcode, 'file_already_exists');
|
||||
}
|
||||
unlink($file); // delete file
|
||||
|
||||
// Send some output and check
|
||||
$file = $CFG->dataroot . '/temp/test/test_file_xml_output.txt';
|
||||
$xo = new file_xml_output($file);
|
||||
$xo->start();
|
||||
$xo->write('first text');
|
||||
$xo->stop();
|
||||
$this->assertEqual('first text', file_get_contents($file));
|
||||
unlink($file); // delete file
|
||||
|
||||
// With buffer of 4 bytes, send 3 contents of 3 bytes each
|
||||
// so we force both buffering and last write on stop
|
||||
$file = $CFG->dataroot . '/temp/test/test_file_xml_output.txt';
|
||||
$xo = new file_xml_output($file);
|
||||
$xo->set_buffersize(5);
|
||||
$xo->start();
|
||||
$xo->write('123');
|
||||
$xo->write('456');
|
||||
$xo->write('789');
|
||||
$xo->stop();
|
||||
$this->assertEqual('123456789', file_get_contents($file));
|
||||
unlink($file); // delete file
|
||||
|
||||
// Write some line feeds, tabs and friends
|
||||
$file = $CFG->dataroot . '/temp/test/test_file_xml_output.txt';
|
||||
$string = "\n\r\tcrazy test\n\r\t";
|
||||
$xo = new file_xml_output($file);
|
||||
$xo->start();
|
||||
$xo->write($string);
|
||||
$xo->stop();
|
||||
$this->assertEqual($string, file_get_contents($file));
|
||||
unlink($file); // delete file
|
||||
|
||||
// Write some UTF-8 chars
|
||||
$file = $CFG->dataroot . '/temp/test/test_file_xml_output.txt';
|
||||
$string = 'áéíóú';
|
||||
$xo = new file_xml_output($file);
|
||||
$xo->start();
|
||||
$xo->write($string);
|
||||
$xo->stop();
|
||||
$this->assertEqual($string, file_get_contents($file));
|
||||
unlink($file); // delete file
|
||||
|
||||
// Remove the test dir and any content
|
||||
@remove_dir(dirname($file));
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,161 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-xml
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* This abstract class outputs XML contents provided by @xml_writer
|
||||
*
|
||||
* Contains the common functionalities for all the xml_output_xxx classes
|
||||
* and the interface for them. Mainly it's in charge of:
|
||||
* - Initialize the corresponding stream/handler (file, DB connection...)
|
||||
* - Finalize the stream/handler
|
||||
* - Provide one common buffer for all output implementations
|
||||
* - Receive XML contents from the @xml_writer and output them
|
||||
* - Some basic throughtput stats
|
||||
*
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
abstract class xml_output {
|
||||
|
||||
const DEFAULT_BUFFER_SIZE = 4096; // Use a default buffer size of 4K
|
||||
|
||||
protected $inittime; // Initial microtime
|
||||
protected $sentbytes; // Bytes sent to output
|
||||
|
||||
protected $usebuffer; // Boolean to specify if output supports buffer (true) or no (false)
|
||||
protected $buffersize;// Size, in bytes, of the buffer.
|
||||
protected $currentbuffer; // Buffer contents
|
||||
protected $currentbuffersize;// Current buffer size
|
||||
|
||||
protected $running; // To know if output is running
|
||||
|
||||
public function __construct($usebuffer = true) {
|
||||
$this->inittime = microtime(true);
|
||||
$this->finishtime = $this->inittime;;
|
||||
$this->sentbytes = 0;
|
||||
|
||||
$this->usebuffer = $usebuffer;
|
||||
$this->buffersize = $this->usebuffer ? self::DEFAULT_BUFFER_SIZE : 0;
|
||||
|
||||
$this->running = null;
|
||||
}
|
||||
|
||||
public function set_buffersize($buffersize) {
|
||||
if ($this->running) {
|
||||
throw new xml_output_exception('xml_output_already_started');
|
||||
}
|
||||
if (!$this->usebuffer) {
|
||||
throw new xml_output_exception('xml_output_buffer_nosupport');
|
||||
}
|
||||
// TODO: check it is integer > 0
|
||||
$this->buffersize = $buffersize;
|
||||
}
|
||||
|
||||
public function start() {
|
||||
if ($this->running === true) {
|
||||
throw new xml_output_exception('xml_output_already_started');
|
||||
}
|
||||
if ($this->running === false) {
|
||||
throw new xml_output_exception('xml_output_already_stopped');
|
||||
}
|
||||
$this->inittime = microtime(true);
|
||||
$this->sentbytes = 0;
|
||||
$this->running = true;
|
||||
$this->currentbuffer = '';
|
||||
$this->currentbuffersize = 0;
|
||||
$this->init();
|
||||
}
|
||||
|
||||
public function stop() {
|
||||
if (!$this->running) {
|
||||
throw new xml_output_exception('xml_output_not_started');
|
||||
}
|
||||
$this->finishtime = microtime(true);
|
||||
if ($this->usebuffer && $this->currentbuffersize > 0) { // Have pending contents in buffer
|
||||
$this->send($this->currentbuffer); // Send them
|
||||
$this->currentbuffer = '';
|
||||
$this->currentbuffersize = 0;
|
||||
}
|
||||
$this->running = false;
|
||||
$this->finish();
|
||||
}
|
||||
|
||||
/**
|
||||
* Get contents from @xml_writer and buffer/output them
|
||||
*/
|
||||
public function write($content) {
|
||||
if (!$this->running) {
|
||||
throw new xml_output_exception('xml_output_not_started');
|
||||
}
|
||||
$lenc = strlen($content); // Get length in bytes
|
||||
if ($lenc == 0) { // 0 length contents, nothing to do
|
||||
return;
|
||||
}
|
||||
// Buffer handling if available
|
||||
$tooutput = true; // By default, perform output
|
||||
if ($this->usebuffer) { // Buffer
|
||||
$this->currentbuffer .= $content;
|
||||
$this->currentbuffersize += $lenc;
|
||||
if ($this->currentbuffersize < $this->buffersize) {
|
||||
$tooutput = false; // Still within the buffer, don't output
|
||||
} else {
|
||||
$content = $this->currentbuffer; // Prepare for output
|
||||
$lenc = $this->currentbuffersize;
|
||||
$this->currentbuffer = '';
|
||||
$this->currentbuffersize = 0;
|
||||
}
|
||||
}
|
||||
// Output
|
||||
if ($tooutput) {
|
||||
$this->send($content); // Efectively send the contents
|
||||
$this->sentbytes += $lenc;
|
||||
}
|
||||
}
|
||||
|
||||
public function debug_info() {
|
||||
if ($this->running !== false) {
|
||||
throw new xml_output_exception('xml_output_not_stopped');
|
||||
}
|
||||
return array('memory' => memory_get_peak_usage(true),
|
||||
'time' => $this->finishtime - $this->inittime,
|
||||
'sent' => $this->sentbytes);
|
||||
}
|
||||
|
||||
// Implementable API starts here
|
||||
|
||||
abstract protected function init();
|
||||
|
||||
abstract protected function finish();
|
||||
|
||||
abstract protected function send($content);
|
||||
}
|
||||
|
||||
/*
|
||||
* Exception class used by all the @xml_output stuff
|
||||
*/
|
||||
class xml_output_exception extends moodle_exception {
|
||||
|
||||
public function __construct($errorcode, $a=NULL, $debuginfo=null) {
|
||||
parent::__construct($errorcode, 'error', '', $a, null, $debuginfo);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<toptag name="toptag" level="1" path="/toptag">
|
||||
<secondtag name="secondtag" level="2" path="/toptag/secondtag" value="secondvalue">secondvalue</secondtag>
|
||||
<thirdtag name="thirdtag" level="2" path="/toptag/thirdtag">
|
||||
<onevalue name="onevalue" level="3" path="/toptag/thirdtag/onevalue">onevalue</onevalue>
|
||||
<onevalue name="onevalue" level="3" value="anothervalue">anothervalue</onevalue>
|
||||
<onevalue name="onevalue" level="3" value="yetanothervalue">yetanothervalue</onevalue>
|
||||
<twovalue name="twovalue" level="3" path="/toptag/thirdtag/twovalue">twovalue</twovalue>
|
||||
<forthtag name="forthtag" level="3" path="/toptag/thirdtag/forthtag">
|
||||
<innervalue>innervalue</innervalue>
|
||||
<innertag>
|
||||
<superinnertag name="superinnertag" level="5">
|
||||
<superinnervalue name="superinnervalue" level="6">superinnervalue</superinnervalue>
|
||||
</superinnertag>
|
||||
</innertag>
|
||||
</forthtag>
|
||||
<fifthtag level="3">
|
||||
<sixthtag level="4">
|
||||
<seventh level="5">seventh</seventh>
|
||||
</sixthtag>
|
||||
</fifthtag>
|
||||
<finalvalue name="finalvalue" level="3" path="/toptag/thirdtag/finalvalue">finalvalue</finalvalue>
|
||||
<finalvalue />
|
||||
</thirdtag>
|
||||
</toptag>
|
||||
@@ -0,0 +1,326 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-tests
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
// Prevent direct access to this file
|
||||
if (!defined('MOODLE_INTERNAL')) {
|
||||
die('Direct access to this script is forbidden.');
|
||||
}
|
||||
|
||||
// Include all the needed stuff
|
||||
require_once($CFG->dirroot . '/backup/util/xml/xml_writer.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/xml/output/xml_output.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/xml/output/memory_xml_output.class.php');
|
||||
require_once($CFG->dirroot . '/backup/util/xml/contenttransformer/xml_contenttransformer.class.php');
|
||||
|
||||
/*
|
||||
* xml_writer tests
|
||||
*/
|
||||
class xml_writer_test extends UnitTestCase {
|
||||
|
||||
public static $includecoverage = array('backup/util/xml/xml_writer.class.php');
|
||||
public static $excludecoverage = array('backup/util/xml/simpletest');
|
||||
|
||||
/*
|
||||
* test xml_writer public methods
|
||||
*/
|
||||
function test_xml_writer_public_api() {
|
||||
global $CFG;
|
||||
// Instantiate xml_output
|
||||
$xo = new memory_xml_output();
|
||||
$this->assertTrue($xo instanceof xml_output);
|
||||
|
||||
// Instantiate xml_writer with null xml_output
|
||||
try {
|
||||
$xw = new mock_xml_writer(null);
|
||||
$this->assertTrue(false, 'xml_writer_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof xml_writer_exception);
|
||||
$this->assertEqual($e->errorcode, 'invalid_xml_output');
|
||||
}
|
||||
|
||||
// Instantiate xml_writer with wrong xml_output object
|
||||
try {
|
||||
$xw = new mock_xml_writer(new stdclass());
|
||||
$this->assertTrue(false, 'xml_writer_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof xml_writer_exception);
|
||||
$this->assertEqual($e->errorcode, 'invalid_xml_output');
|
||||
}
|
||||
|
||||
// Instantiate xml_writer with wrong xml_contenttransformer object
|
||||
try {
|
||||
$xw = new mock_xml_writer($xo, new stdclass());
|
||||
$this->assertTrue(false, 'xml_writer_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof xml_writer_exception);
|
||||
$this->assertEqual($e->errorcode, 'invalid_xml_contenttransformer');
|
||||
}
|
||||
|
||||
// Instantiate xml_writer and start it twice
|
||||
$xw = new mock_xml_writer($xo);
|
||||
$xw->start();
|
||||
try {
|
||||
$xw->start();
|
||||
$this->assertTrue(false, 'xml_writer_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof xml_writer_exception);
|
||||
$this->assertEqual($e->errorcode, 'xml_writer_already_started');
|
||||
}
|
||||
|
||||
// Instantiate xml_writer and stop it twice
|
||||
$xo = new memory_xml_output();
|
||||
$xw = new mock_xml_writer($xo);
|
||||
$xw->start();
|
||||
$xw->stop();
|
||||
try {
|
||||
$xw->stop();
|
||||
$this->assertTrue(false, 'xml_writer_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof xml_writer_exception);
|
||||
$this->assertEqual($e->errorcode, 'xml_writer_already_stopped');
|
||||
}
|
||||
|
||||
// Stop writer without starting it
|
||||
$xo = new memory_xml_output();
|
||||
$xw = new mock_xml_writer($xo);
|
||||
try {
|
||||
$xw->stop();
|
||||
$this->assertTrue(false, 'xml_writer_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof xml_writer_exception);
|
||||
$this->assertEqual($e->errorcode, 'xml_writer_not_started');
|
||||
}
|
||||
|
||||
// Start writer after stopping it
|
||||
$xo = new memory_xml_output();
|
||||
$xw = new mock_xml_writer($xo);
|
||||
$xw->start();
|
||||
$xw->stop();
|
||||
try {
|
||||
$xw->start();
|
||||
$this->assertTrue(false, 'xml_writer_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof xml_writer_exception);
|
||||
$this->assertEqual($e->errorcode, 'xml_writer_already_stopped');
|
||||
}
|
||||
|
||||
// Try to set prologue/schema after start
|
||||
$xo = new memory_xml_output();
|
||||
$xw = new mock_xml_writer($xo);
|
||||
$xw->start();
|
||||
try {
|
||||
$xw->set_nonamespace_schema('http://moodle.org');
|
||||
$this->assertTrue(false, 'xml_writer_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof xml_writer_exception);
|
||||
$this->assertEqual($e->errorcode, 'xml_writer_already_started');
|
||||
}
|
||||
try {
|
||||
$xw->set_prologue('sweet prologue');
|
||||
$this->assertTrue(false, 'xml_writer_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof xml_writer_exception);
|
||||
$this->assertEqual($e->errorcode, 'xml_writer_already_started');
|
||||
}
|
||||
|
||||
// Instantiate properly with memory_xml_output, start and stop.
|
||||
// Must get default UTF-8 prologue
|
||||
$xo = new memory_xml_output();
|
||||
$xw = new mock_xml_writer($xo);
|
||||
$xw->start();
|
||||
$xw->stop();
|
||||
$this->assertEqual($xo->get_allcontents(), $xw->get_default_prologue());
|
||||
|
||||
// Instantiate, set prologue and schema, put 1 full tag and get results
|
||||
$xo = new memory_xml_output();
|
||||
$xw = new mock_xml_writer($xo);
|
||||
$xw->set_prologue('CLEARLY WRONG PROLOGUE');
|
||||
$xw->set_nonamespace_schema('http://moodle.org/littleschema');
|
||||
$xw->start();
|
||||
$xw->full_tag('TEST', 'Hello World!', array('id' => 1));
|
||||
$xw->stop();
|
||||
$result = $xo->get_allcontents();
|
||||
// Perform various checks
|
||||
$this->assertEqual(strpos($result, 'WRONG'), 8);
|
||||
$this->assertEqual(strpos($result, '<TEST id="1"'), 22);
|
||||
$this->assertEqual(strpos($result, 'xmlns:xsi='), 39);
|
||||
$this->assertEqual(strpos($result, 'http://moodle.org/littleschema'), 128);
|
||||
$this->assertEqual(strpos($result, 'Hello World'), 160);
|
||||
$this->assertFalse(strpos($result, $xw->get_default_prologue()));
|
||||
|
||||
// Try to close one tag in wrong order
|
||||
$xo = new memory_xml_output();
|
||||
$xw = new mock_xml_writer($xo);
|
||||
$xw->start();
|
||||
$xw->begin_tag('first');
|
||||
$xw->begin_tag('second');
|
||||
try {
|
||||
$xw->end_tag('first');
|
||||
$this->assertTrue(false, 'xml_writer_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof xml_writer_exception);
|
||||
$this->assertEqual($e->errorcode, 'xml_writer_end_tag_no_match');
|
||||
}
|
||||
|
||||
// Try to close one tag before starting any tag
|
||||
$xo = new memory_xml_output();
|
||||
$xw = new mock_xml_writer($xo);
|
||||
$xw->start();
|
||||
try {
|
||||
$xw->end_tag('first');
|
||||
$this->assertTrue(false, 'xml_writer_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof xml_writer_exception);
|
||||
$this->assertEqual($e->errorcode, 'xml_writer_end_tag_no_match');
|
||||
}
|
||||
|
||||
// Full tag without contents (null and empty string)
|
||||
$xo = new memory_xml_output();
|
||||
$xw = new mock_xml_writer($xo);
|
||||
$xw->set_prologue(''); // empty prologue for easier matching
|
||||
$xw->start();
|
||||
$xw->full_tag('tagname', null, array('attrname' => 'attrvalue'));
|
||||
$xw->full_tag('tagname2', '', array('attrname' => 'attrvalue'));
|
||||
$xw->stop();
|
||||
$result = $xo->get_allcontents();
|
||||
$this->assertEqual($result, '<tagname attrname="attrvalue" /><tagname2 attrname="attrvalue"></tagname2>');
|
||||
|
||||
|
||||
// Test case-folding is working
|
||||
$xo = new memory_xml_output();
|
||||
$xw = new mock_xml_writer($xo, null, true);
|
||||
$xw->set_prologue(''); // empty prologue for easier matching
|
||||
$xw->start();
|
||||
$xw->full_tag('tagname', 'textcontent', array('attrname' => 'attrvalue'));
|
||||
$xw->stop();
|
||||
$result = $xo->get_allcontents();
|
||||
$this->assertEqual($result, '<TAGNAME ATTRNAME="attrvalue">textcontent</TAGNAME>');
|
||||
|
||||
// Test UTF-8 chars in tag and attribute names, attr values and contents
|
||||
$xo = new memory_xml_output();
|
||||
$xw = new mock_xml_writer($xo);
|
||||
$xw->set_prologue(''); // empty prologue for easier matching
|
||||
$xw->start();
|
||||
$xw->full_tag('áéíóú', 'ÁÉÍÓÚ', array('àèìòù' => 'ÀÈÌÒÙ'));
|
||||
$xw->stop();
|
||||
$result = $xo->get_allcontents();
|
||||
$this->assertEqual($result, '<áéíóú àèìòù="ÀÈÌÒÙ">ÁÉÍÓÚ</áéíóú>');
|
||||
|
||||
// Try non-safe content in attributes
|
||||
$xo = new memory_xml_output();
|
||||
$xw = new mock_xml_writer($xo);
|
||||
$xw->set_prologue(''); // empty prologue for easier matching
|
||||
$xw->start();
|
||||
$xw->full_tag('tagname', 'textcontent', array('attrname' => 'attr' . chr(27) . '\'"value'));
|
||||
$xw->stop();
|
||||
$result = $xo->get_allcontents();
|
||||
$this->assertEqual($result, '<tagname attrname="attr\'"value">textcontent</tagname>');
|
||||
|
||||
// Try non-safe content in text
|
||||
$xo = new memory_xml_output();
|
||||
$xw = new mock_xml_writer($xo);
|
||||
$xw->set_prologue(''); // empty prologue for easier matching
|
||||
$xw->start();
|
||||
$xw->full_tag('tagname', "text\r\ncontent\rwith" . chr(27), array('attrname' => 'attrvalue'));
|
||||
$xw->stop();
|
||||
$result = $xo->get_allcontents();
|
||||
$this->assertEqual($result, '<tagname attrname="attrvalue">text' . "\ncontent\n" . 'with</tagname>');
|
||||
|
||||
// Try to stop the writer without clossing all the open tags
|
||||
$xo = new memory_xml_output();
|
||||
$xw = new mock_xml_writer($xo);
|
||||
$xw->start();
|
||||
$xw->begin_tag('first');
|
||||
try {
|
||||
$xw->stop();
|
||||
$this->assertTrue(false, 'xml_writer_exception expected');
|
||||
} catch (exception $e) {
|
||||
$this->assertTrue($e instanceof xml_writer_exception);
|
||||
$this->assertEqual($e->errorcode, 'xml_writer_open_tags_remaining');
|
||||
}
|
||||
|
||||
// Test simple transformer
|
||||
$xo = new memory_xml_output();
|
||||
$xt = new mock_xml_contenttransformer();
|
||||
$xw = new mock_xml_writer($xo, $xt);
|
||||
$xw->set_prologue(''); // empty prologue for easier matching
|
||||
$xw->start();
|
||||
$xw->full_tag('tagname', null, array('attrname' => 'attrvalue'));
|
||||
$xw->full_tag('tagname2', 'somecontent', array('attrname' => 'attrvalue'));
|
||||
$xw->stop();
|
||||
$result = $xo->get_allcontents();
|
||||
$this->assertEqual($result, '<tagname attrname="attrvalue" /><tagname2 attrname="attrvalue">testsomecontent</tagname2>');
|
||||
|
||||
// Build a complex XML file and test results against stored file in fixtures
|
||||
$xo = new memory_xml_output();
|
||||
$xw = new mock_xml_writer($xo);
|
||||
$xw->start();
|
||||
$xw->begin_tag('toptag', array('name' => 'toptag', 'level' => 1, 'path' => '/toptag'));
|
||||
$xw->full_tag('secondtag', 'secondvalue', array('name' => 'secondtag', 'level' => 2, 'path' => '/toptag/secondtag', 'value' => 'secondvalue'));
|
||||
$xw->begin_tag('thirdtag', array('name' => 'thirdtag', 'level' => 2, 'path' => '/toptag/thirdtag'));
|
||||
$xw->full_tag('onevalue', 'onevalue', array('name' => 'onevalue', 'level' => 3, 'path' => '/toptag/thirdtag/onevalue'));
|
||||
$xw->full_tag('onevalue', 'anothervalue', array('name' => 'onevalue', 'level' => 3, 'value' => 'anothervalue'));
|
||||
$xw->full_tag('onevalue', 'yetanothervalue', array('name' => 'onevalue', 'level' => 3, 'value' => 'yetanothervalue'));
|
||||
$xw->full_tag('twovalue', 'twovalue', array('name' => 'twovalue', 'level' => 3, 'path' => '/toptag/thirdtag/twovalue'));
|
||||
$xw->begin_tag('forthtag', array('name' => 'forthtag', 'level' => 3, 'path' => '/toptag/thirdtag/forthtag'));
|
||||
$xw->full_tag('innervalue', 'innervalue');
|
||||
$xw->begin_tag('innertag');
|
||||
$xw->begin_tag('superinnertag', array('name' => 'superinnertag', 'level' => 5));
|
||||
$xw->full_tag('superinnervalue', 'superinnervalue', array('name' => 'superinnervalue', 'level' => 6));
|
||||
$xw->end_tag('superinnertag');
|
||||
$xw->end_tag('innertag');
|
||||
$xw->end_tag('forthtag');
|
||||
$xw->begin_tag('fifthtag', array('level' => 3));
|
||||
$xw->begin_tag('sixthtag', array('level' => 4));
|
||||
$xw->full_tag('seventh', 'seventh', array('level' => 5));
|
||||
$xw->end_tag('sixthtag');
|
||||
$xw->end_tag('fifthtag');
|
||||
$xw->full_tag('finalvalue', 'finalvalue', array('name' => 'finalvalue', 'level' => 3, 'path' => '/toptag/thirdtag/finalvalue'));
|
||||
$xw->full_tag('finalvalue');
|
||||
$xw->end_tag('thirdtag');
|
||||
$xw->end_tag('toptag');
|
||||
$xw->stop();
|
||||
$result = $xo->get_allcontents();
|
||||
$fcontents = file_get_contents($CFG->dirroot . '/backup/util/xml/simpletest/fixtures/test1.xml');
|
||||
$this->assertEqual(trim($result), trim($fcontents));
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* helper extended xml_writer class that makes some methods public for testing
|
||||
*/
|
||||
class mock_xml_writer extends xml_writer {
|
||||
public function get_default_prologue() {
|
||||
return parent::get_default_prologue();
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* helper extended xml_contenttransformer prepending "test" to all the notnull contents
|
||||
*/
|
||||
class mock_xml_contenttransformer extends xml_contenttransformer {
|
||||
public function process($content) {
|
||||
return is_null($content) ? null : 'test' . $content;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,287 @@
|
||||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* @package moodlecore
|
||||
* @subpackage backup-xml
|
||||
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* Class implementing one (more or less complete) UTF-8 XML writer
|
||||
*
|
||||
* General purpose class used to output UTF-8 XML contents easily. Can be customized
|
||||
* using implementations of @xml_output (to define where to send the xml) and
|
||||
* and @xml_contenttransformer (to perform any transformation in contents before
|
||||
* outputting the XML).
|
||||
*
|
||||
* Has support for attributes, basic w3c xml schemas declaration,
|
||||
* and performs some content cleaning to avoid potential incorret UTF-8
|
||||
* mess and has complete exception support.
|
||||
*
|
||||
* TODO: Provide UTF-8 safe strtoupper() function if using casefolding and non-ascii tags/attrs names
|
||||
* TODO: Finish phpdocs
|
||||
*/
|
||||
class xml_writer {
|
||||
|
||||
protected $output; // @xml_output that defines how to output XML
|
||||
protected $contenttransformer; // @xml_contenttransformer to modify contents before output
|
||||
|
||||
protected $prologue; // Complete string prologue we want to use
|
||||
protected $xmlschema; // URI to nonamespaceschema to be added to main tag
|
||||
|
||||
protected $casefolding; // To define if xml tags must be uppercase (true) or not (false)
|
||||
|
||||
protected $level; // current number of open tags, useful for indent text
|
||||
protected $opentags; // open tags accumulator, to check for errors
|
||||
protected $lastwastext;// to know when we are writing after text content
|
||||
protected $nullcontent;// to know if we are going to write one tag with null content
|
||||
|
||||
protected $running; // To know if writer is running
|
||||
|
||||
public function __construct($output, $contenttransformer = null, $casefolding = false) {
|
||||
if (!$output instanceof xml_output) {
|
||||
throw new xml_writer_exception('invalid_xml_output');
|
||||
}
|
||||
if (!is_null($contenttransformer) && !$contenttransformer instanceof xml_contenttransformer) {
|
||||
throw new xml_writer_exception('invalid_xml_contenttransformer');
|
||||
}
|
||||
|
||||
$this->output = $output;
|
||||
$this->contenttransformer = $contenttransformer;
|
||||
|
||||
$this->prologue = null;
|
||||
$this->xmlschema = null;
|
||||
|
||||
$this->casefolding = $casefolding;
|
||||
|
||||
$this->level = 0;
|
||||
$this->opentags = array();
|
||||
$this->lastwastext = false;
|
||||
$this->nullcontent = false;
|
||||
|
||||
$this->running = null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Initializes the XML writer, preparing it to accept instructions, also
|
||||
* invoking the underlying @xml_output init method to be ready for operation
|
||||
*/
|
||||
public function start() {
|
||||
if ($this->running === true) {
|
||||
throw new xml_writer_exception('xml_writer_already_started');
|
||||
}
|
||||
if ($this->running === false) {
|
||||
throw new xml_writer_exception('xml_writer_already_stopped');
|
||||
}
|
||||
$this->output->start(); // Initialize whatever we need in output
|
||||
if (!is_null($this->prologue)) { // Output prologue
|
||||
$this->write($this->prologue);
|
||||
} else {
|
||||
$this->write($this->get_default_prologue());
|
||||
}
|
||||
$this->running = true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Finishes the XML writer, not accepting instructions any more, also
|
||||
* invoking the underlying @xml_output finish method to close/flush everything as needed
|
||||
*/
|
||||
public function stop() {
|
||||
if (is_null($this->running)) {
|
||||
throw new xml_writer_exception('xml_writer_not_started');
|
||||
}
|
||||
if ($this->running === false) {
|
||||
throw new xml_writer_exception('xml_writer_already_stopped');
|
||||
}
|
||||
if ($this->level > 0) { // Cannot stop if not at level 0, remaining open tags
|
||||
throw new xml_writer_exception('xml_writer_open_tags_remaining');
|
||||
}
|
||||
$this->output->stop();
|
||||
$this->running = false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the URI location for the *nonamespace* schema to be used by the (whole) XML document
|
||||
*/
|
||||
public function set_nonamespace_schema($uri) {
|
||||
if ($this->running) {
|
||||
throw new xml_writer_exception('xml_writer_already_started');
|
||||
}
|
||||
$this->xmlschema = $uri;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define the complete prologue to be used, replacing the simple, default one
|
||||
*/
|
||||
public function set_prologue($prologue) {
|
||||
if ($this->running) {
|
||||
throw new xml_writer_exception('xml_writer_already_started');
|
||||
}
|
||||
$this->prologue = $prologue;
|
||||
}
|
||||
|
||||
/**
|
||||
* Outputs one XML start tag with optional attributes (name => value array)
|
||||
*/
|
||||
public function begin_tag($tag, $attributes = null) {
|
||||
// TODO: chek the tag name is valid
|
||||
$pre = $this->level ? "\n" . str_repeat(' ', $this->level * 2) : ''; // Indent
|
||||
$tag = $this->casefolding ? strtoupper($tag) : $tag; // Follow casefolding
|
||||
$end = $this->nullcontent ? ' /' : ''; // Tag without content, close it
|
||||
|
||||
// Build attributes output
|
||||
$attrstring = '';
|
||||
if (!empty($attributes) && is_array($attributes)) {
|
||||
// TODO: check the attr name is valid
|
||||
foreach ($attributes as $name => $value) {
|
||||
$name = $this->casefolding ? strtoupper($name) : $name; // Follow casefolding
|
||||
$attrstring .= ' ' . $name . '="'.
|
||||
$this->xml_safe_attr_content($value) . '"';
|
||||
}
|
||||
}
|
||||
|
||||
// Optional xml schema definition (level 0 only)
|
||||
$schemastring = '';
|
||||
if ($this->level == 0 && !empty($this->xmlschema)) {
|
||||
$schemastring .= "\n " . 'xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"' .
|
||||
"\n " . 'xsi:noNamespaceSchemaLocation="' . $this->xml_safe_attr_content($this->xmlschema) . '"';
|
||||
}
|
||||
|
||||
// Send to xml_output
|
||||
$this->write($pre . '<' . $tag . $attrstring . $schemastring . $end . '>');
|
||||
|
||||
// Acumulate the tag and inc level
|
||||
if (!$this->nullcontent) {
|
||||
array_push($this->opentags, $tag);
|
||||
$this->level++;
|
||||
}
|
||||
$this->lastwastext = false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Outputs one XML end tag
|
||||
*/
|
||||
public function end_tag($tag) {
|
||||
// TODO: check the tag name is valid
|
||||
|
||||
if ($this->level == 0) { // Nothing to end, already at level 0
|
||||
throw new xml_writer_exception('xml_writer_end_tag_no_match');
|
||||
}
|
||||
|
||||
$pre = $this->lastwastext ? '' : "\n" . str_repeat(' ', ($this->level - 1) * 2); // Indent
|
||||
$tag = $this->casefolding ? strtoupper($tag) : $tag; // Follow casefolding
|
||||
|
||||
$lastopentag = array_pop($this->opentags);
|
||||
|
||||
if ($tag != $lastopentag) {
|
||||
$a = new stdclass();
|
||||
$a->lastopen = $lastopentag;
|
||||
$a->tag = $tag;
|
||||
throw new xml_writer_exception('xml_writer_end_tag_no_match', $a);
|
||||
}
|
||||
|
||||
// Send to xml_output
|
||||
$this->write($pre . '</' . $tag . '>');
|
||||
|
||||
$this->level--;
|
||||
$this->lastwastext = false;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Outputs one tag completely (open, contents and close)
|
||||
*/
|
||||
public function full_tag($tag, $content = null, $attributes = null) {
|
||||
$content = $this->text_content($content); // First of all, apply transformations
|
||||
$this->nullcontent = is_null($content) ? true : false; // Is it null content
|
||||
$this->begin_tag($tag, $attributes);
|
||||
if (!$this->nullcontent) {
|
||||
$this->write($content);
|
||||
$this->lastwastext = true;
|
||||
$this->end_tag($tag);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// Protected API starts here
|
||||
|
||||
/**
|
||||
* Send some XML formatted chunk to output.
|
||||
*/
|
||||
protected function write($output) {
|
||||
$this->output->write($output);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get default prologue contents for this writer if there isn't a custom one
|
||||
*/
|
||||
protected function get_default_prologue() {
|
||||
return "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
|
||||
}
|
||||
|
||||
/**
|
||||
* Clean attribute content and encode needed chars
|
||||
* (&, <, >, ") - single quotes not needed in this class
|
||||
* as far as we are enclosing with "
|
||||
*/
|
||||
protected function xml_safe_attr_content($content) {
|
||||
return htmlspecialchars($this->xml_safe_utf8($content), ENT_COMPAT);
|
||||
}
|
||||
|
||||
/**
|
||||
* Clean text content and encode needed chars
|
||||
* (&, <, >)
|
||||
*/
|
||||
protected function xml_safe_text_content($content) {
|
||||
return htmlspecialchars($this->xml_safe_utf8($content), ENT_NOQUOTES);
|
||||
}
|
||||
|
||||
/**
|
||||
* Perform some UTF-8 cleaning, stripping the control chars (\x0-\x1f)
|
||||
* but tabs (\x9), newlines (\xa) and returns (\xd). The delete control
|
||||
* char (\x7f) is also included. All them are forbiden in XML 1.0 specs.
|
||||
* The expression below seems to be UTF-8 safe too because it simply
|
||||
* ignores the rest of characters. Also normalize linefeeds and return chars.
|
||||
*/
|
||||
protected function xml_safe_utf8($content) {
|
||||
$content = preg_replace('/[\x-\x8\xb-\xc\xe-\x1f\x7f]/is','', $content); // clean CTRL chars
|
||||
$content = preg_replace("/\r\n|\r/", "\n", $content); // Normalize line&return=>line
|
||||
return $content;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns text contents processed by the corresponding @xml_contenttransformer
|
||||
*/
|
||||
protected function text_content($content) {
|
||||
if (!is_null($this->contenttransformer)) { // Apply content transformation
|
||||
$content = $this->contenttransformer->process($content);
|
||||
}
|
||||
return is_null($content) ? null : $this->xml_safe_text_content($content); // Safe UTF-8 and encode
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Exception class used by all the @xml_writer stuff
|
||||
*/
|
||||
class xml_writer_exception extends moodle_exception {
|
||||
|
||||
public function __construct($errorcode, $a=NULL, $debuginfo=null) {
|
||||
parent::__construct($errorcode, 'error', '', $a, $debuginfo);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user