2012-12-06 14:33:43 +08:00
|
|
|
<?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 (some of) mod/assign/upgradelib.php.
|
|
|
|
*
|
|
|
|
* @package mod_assign
|
|
|
|
* @category phpunit
|
|
|
|
* @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
|
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
|
|
|
|
global $CFG;
|
|
|
|
require_once($CFG->dirroot . '/mod/assign/locallib.php');
|
|
|
|
require_once($CFG->dirroot . '/mod/assign/upgradelib.php');
|
|
|
|
require_once($CFG->dirroot . '/mod/assignment/lib.php');
|
2013-02-20 12:50:31 +08:00
|
|
|
require_once($CFG->dirroot . '/mod/assign/tests/base_test.php');
|
2012-12-06 14:33:43 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Unit tests for (some of) mod/assign/upgradelib.php.
|
|
|
|
*
|
|
|
|
* @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
|
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
|
*/
|
2013-02-20 12:50:31 +08:00
|
|
|
class mod_assign_upgradelib_testcase extends mod_assign_base_testcase {
|
2012-12-06 14:33:43 +08:00
|
|
|
|
2013-04-10 09:49:19 +02:00
|
|
|
protected function tearDown() {
|
|
|
|
// Reset the timeouts.
|
|
|
|
set_time_limit(0);
|
|
|
|
}
|
|
|
|
|
2012-12-06 14:33:43 +08:00
|
|
|
public function test_upgrade_upload_assignment() {
|
|
|
|
global $DB;
|
|
|
|
|
|
|
|
$this->setUser($this->editingteachers[0]);
|
|
|
|
$generator = $this->getDataGenerator()->get_plugin_generator('mod_assignment');
|
|
|
|
$params = array('course'=>$this->course->id,
|
|
|
|
'assignmenttype'=>'upload');
|
|
|
|
$record = $generator->create_instance($params);
|
|
|
|
|
|
|
|
$assignment = new assignment_base($record->cmid);
|
|
|
|
|
|
|
|
$this->setAdminUser();
|
|
|
|
$log = '';
|
|
|
|
$upgrader = new assign_upgrade_manager();
|
|
|
|
|
|
|
|
$this->assertTrue($upgrader->upgrade_assignment($assignment->assignment->id, $log));
|
|
|
|
$record = $DB->get_record('assign', array('course'=>$this->course->id));
|
|
|
|
|
|
|
|
$cm = get_coursemodule_from_instance('assign', $record->id);
|
|
|
|
$context = context_module::instance($cm->id);
|
|
|
|
|
|
|
|
$assign = new assign($context, $cm, $this->course);
|
|
|
|
|
|
|
|
$plugin = $assign->get_submission_plugin_by_type('onlinetext');
|
|
|
|
$this->assertEmpty($plugin->is_enabled());
|
|
|
|
$plugin = $assign->get_submission_plugin_by_type('comments');
|
2013-01-22 09:04:13 +08:00
|
|
|
$this->assertEmpty($plugin->is_enabled());
|
2012-12-06 14:33:43 +08:00
|
|
|
$plugin = $assign->get_submission_plugin_by_type('file');
|
|
|
|
$this->assertNotEmpty($plugin->is_enabled());
|
|
|
|
$plugin = $assign->get_feedback_plugin_by_type('comments');
|
|
|
|
$this->assertNotEmpty($plugin->is_enabled());
|
|
|
|
$plugin = $assign->get_feedback_plugin_by_type('file');
|
|
|
|
$this->assertNotEmpty($plugin->is_enabled());
|
|
|
|
$plugin = $assign->get_feedback_plugin_by_type('offline');
|
|
|
|
$this->assertEmpty($plugin->is_enabled());
|
|
|
|
|
2013-01-23 14:25:02 +08:00
|
|
|
course_delete_module($cm->id);
|
2012-12-06 14:33:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public function test_upgrade_uploadsingle_assignment() {
|
|
|
|
global $DB;
|
|
|
|
|
|
|
|
$this->setUser($this->editingteachers[0]);
|
|
|
|
$generator = $this->getDataGenerator()->get_plugin_generator('mod_assignment');
|
|
|
|
$params = array('course'=>$this->course->id,
|
|
|
|
'assignmenttype'=>'uploadsingle');
|
|
|
|
$record = $generator->create_instance($params);
|
|
|
|
|
|
|
|
$assignment = new assignment_base($record->cmid);
|
|
|
|
|
|
|
|
$this->setAdminUser();
|
|
|
|
$log = '';
|
|
|
|
$upgrader = new assign_upgrade_manager();
|
|
|
|
|
|
|
|
$this->assertTrue($upgrader->upgrade_assignment($assignment->assignment->id, $log));
|
|
|
|
$record = $DB->get_record('assign', array('course'=>$this->course->id));
|
|
|
|
|
|
|
|
$cm = get_coursemodule_from_instance('assign', $record->id);
|
|
|
|
$context = context_module::instance($cm->id);
|
|
|
|
|
|
|
|
$assign = new assign($context, $cm, $this->course);
|
|
|
|
|
|
|
|
$plugin = $assign->get_submission_plugin_by_type('onlinetext');
|
|
|
|
$this->assertEmpty($plugin->is_enabled());
|
|
|
|
$plugin = $assign->get_submission_plugin_by_type('comments');
|
|
|
|
$this->assertEmpty($plugin->is_enabled());
|
|
|
|
$plugin = $assign->get_submission_plugin_by_type('file');
|
|
|
|
$this->assertNotEmpty($plugin->is_enabled());
|
|
|
|
$plugin = $assign->get_feedback_plugin_by_type('comments');
|
|
|
|
$this->assertNotEmpty($plugin->is_enabled());
|
|
|
|
$plugin = $assign->get_feedback_plugin_by_type('file');
|
|
|
|
$this->assertNotEmpty($plugin->is_enabled());
|
|
|
|
$plugin = $assign->get_feedback_plugin_by_type('offline');
|
|
|
|
$this->assertEmpty($plugin->is_enabled());
|
|
|
|
|
2013-01-23 14:25:02 +08:00
|
|
|
course_delete_module($cm->id);
|
2012-12-06 14:33:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public function test_upgrade_onlinetext_assignment() {
|
|
|
|
global $DB;
|
|
|
|
|
|
|
|
$this->setUser($this->editingteachers[0]);
|
|
|
|
$generator = $this->getDataGenerator()->get_plugin_generator('mod_assignment');
|
|
|
|
$params = array('course'=>$this->course->id,
|
|
|
|
'assignmenttype'=>'online');
|
|
|
|
$record = $generator->create_instance($params);
|
|
|
|
|
|
|
|
$assignment = new assignment_base($record->cmid);
|
|
|
|
|
|
|
|
$this->setAdminUser();
|
|
|
|
$log = '';
|
|
|
|
$upgrader = new assign_upgrade_manager();
|
|
|
|
|
|
|
|
$this->assertTrue($upgrader->upgrade_assignment($assignment->assignment->id, $log));
|
|
|
|
$record = $DB->get_record('assign', array('course'=>$this->course->id));
|
|
|
|
|
|
|
|
$cm = get_coursemodule_from_instance('assign', $record->id);
|
|
|
|
$context = context_module::instance($cm->id);
|
|
|
|
|
|
|
|
$assign = new assign($context, $cm, $this->course);
|
|
|
|
|
|
|
|
$plugin = $assign->get_submission_plugin_by_type('onlinetext');
|
|
|
|
$this->assertNotEmpty($plugin->is_enabled());
|
|
|
|
$plugin = $assign->get_submission_plugin_by_type('comments');
|
|
|
|
$this->assertEmpty($plugin->is_enabled());
|
|
|
|
$plugin = $assign->get_submission_plugin_by_type('file');
|
|
|
|
$this->assertEmpty($plugin->is_enabled());
|
|
|
|
$plugin = $assign->get_feedback_plugin_by_type('comments');
|
|
|
|
$this->assertNotEmpty($plugin->is_enabled());
|
|
|
|
$plugin = $assign->get_feedback_plugin_by_type('file');
|
|
|
|
$this->assertEmpty($plugin->is_enabled());
|
|
|
|
$plugin = $assign->get_feedback_plugin_by_type('offline');
|
|
|
|
$this->assertEmpty($plugin->is_enabled());
|
|
|
|
|
2013-01-23 14:25:02 +08:00
|
|
|
course_delete_module($cm->id);
|
2012-12-06 14:33:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public function test_upgrade_offline_assignment() {
|
|
|
|
global $DB;
|
|
|
|
|
|
|
|
$this->setUser($this->editingteachers[0]);
|
|
|
|
$generator = $this->getDataGenerator()->get_plugin_generator('mod_assignment');
|
|
|
|
$params = array('course'=>$this->course->id,
|
|
|
|
'assignmenttype'=>'offline');
|
|
|
|
$record = $generator->create_instance($params);
|
|
|
|
|
|
|
|
$assignment = new assignment_base($record->cmid);
|
|
|
|
|
|
|
|
$this->setAdminUser();
|
|
|
|
$log = '';
|
|
|
|
$upgrader = new assign_upgrade_manager();
|
|
|
|
|
|
|
|
$this->assertTrue($upgrader->upgrade_assignment($assignment->assignment->id, $log));
|
|
|
|
$record = $DB->get_record('assign', array('course'=>$this->course->id));
|
|
|
|
|
|
|
|
$cm = get_coursemodule_from_instance('assign', $record->id);
|
|
|
|
$context = context_module::instance($cm->id);
|
|
|
|
|
|
|
|
$assign = new assign($context, $cm, $this->course);
|
|
|
|
|
|
|
|
$plugin = $assign->get_submission_plugin_by_type('onlinetext');
|
|
|
|
$this->assertEmpty($plugin->is_enabled());
|
|
|
|
$plugin = $assign->get_submission_plugin_by_type('comments');
|
|
|
|
$this->assertEmpty($plugin->is_enabled());
|
|
|
|
$plugin = $assign->get_submission_plugin_by_type('file');
|
|
|
|
$this->assertEmpty($plugin->is_enabled());
|
|
|
|
$plugin = $assign->get_feedback_plugin_by_type('comments');
|
|
|
|
$this->assertNotEmpty($plugin->is_enabled());
|
|
|
|
$plugin = $assign->get_feedback_plugin_by_type('file');
|
|
|
|
$this->assertEmpty($plugin->is_enabled());
|
|
|
|
$plugin = $assign->get_feedback_plugin_by_type('offline');
|
|
|
|
$this->assertEmpty($plugin->is_enabled());
|
|
|
|
|
2013-01-23 14:25:02 +08:00
|
|
|
course_delete_module($cm->id);
|
2012-12-06 14:33:43 +08:00
|
|
|
}
|
|
|
|
}
|