You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
704 lines
32 KiB
704 lines
32 KiB
<?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 mod/workshop/lib.php.
|
|
*
|
|
* @package mod_workshop
|
|
* @copyright 2017 Simey Lameze <simey@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/workshop/lib.php');
|
|
|
|
/**
|
|
* Unit tests for mod/workshop/lib.php.
|
|
*
|
|
* @copyright 2017 Simey Lameze <simey@moodle.com>
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
class mod_workshop_lib_testcase extends advanced_testcase {
|
|
|
|
/**
|
|
* Test calendar event provide action open.
|
|
*/
|
|
public function test_workshop_core_calendar_provide_event_action_open() {
|
|
$this->resetAfterTest();
|
|
$this->setAdminUser();
|
|
|
|
$now = time();
|
|
$course = $this->getDataGenerator()->create_course();
|
|
$workshop = $this->getDataGenerator()->create_module('workshop', ['course' => $course->id,
|
|
'submissionstart' => $now - DAYSECS, 'submissionend' => $now + DAYSECS]);
|
|
$event = $this->create_action_event($course->id, $workshop->id, WORKSHOP_EVENT_TYPE_SUBMISSION_OPEN);
|
|
|
|
$factory = new \core_calendar\action_factory();
|
|
$actionevent = mod_workshop_core_calendar_provide_event_action($event, $factory);
|
|
|
|
$this->assertInstanceOf('\core_calendar\local\event\value_objects\action', $actionevent);
|
|
$this->assertEquals(get_string('viewworkshopsummary', 'workshop'), $actionevent->get_name());
|
|
$this->assertInstanceOf('moodle_url', $actionevent->get_url());
|
|
$this->assertEquals(1, $actionevent->get_item_count());
|
|
$this->assertTrue($actionevent->is_actionable());
|
|
}
|
|
|
|
/**
|
|
* Test calendar event provide action open for a non user.
|
|
*/
|
|
public function test_workshop_core_calendar_provide_event_action_open_for_non_user() {
|
|
global $CFG;
|
|
|
|
$this->resetAfterTest();
|
|
$this->setAdminUser();
|
|
|
|
$now = time();
|
|
$course = $this->getDataGenerator()->create_course();
|
|
$workshop = $this->getDataGenerator()->create_module('workshop', ['course' => $course->id,
|
|
'submissionstart' => $now - DAYSECS, 'submissionend' => $now + DAYSECS]);
|
|
$event = $this->create_action_event($course->id, $workshop->id, WORKSHOP_EVENT_TYPE_SUBMISSION_OPEN);
|
|
|
|
// Now, log out.
|
|
$CFG->forcelogin = true; // We don't want to be logged in as guest, as guest users might still have some capabilities.
|
|
$this->setUser();
|
|
|
|
$factory = new \core_calendar\action_factory();
|
|
$actionevent = mod_workshop_core_calendar_provide_event_action($event, $factory);
|
|
|
|
// Confirm the event is not shown at all.
|
|
$this->assertNull($actionevent);
|
|
}
|
|
|
|
/**
|
|
* Test calendar event provide action open when user id is provided.
|
|
*/
|
|
public function test_workshop_core_calendar_provide_event_action_open_for_user() {
|
|
global $CFG;
|
|
|
|
$this->resetAfterTest();
|
|
$this->setAdminUser();
|
|
|
|
$now = time();
|
|
$course = $this->getDataGenerator()->create_course();
|
|
$workshop = $this->getDataGenerator()->create_module('workshop', ['course' => $course->id,
|
|
'submissionstart' => $now - DAYSECS, 'submissionend' => $now + DAYSECS]);
|
|
$event = $this->create_action_event($course->id, $workshop->id, WORKSHOP_EVENT_TYPE_SUBMISSION_OPEN);
|
|
$student = $this->getDataGenerator()->create_and_enrol($course, 'student');
|
|
|
|
// Now log out.
|
|
$CFG->forcelogin = true; // We don't want to be logged in as guest, as guest users might still have some capabilities.
|
|
$this->setUser();
|
|
|
|
$factory = new \core_calendar\action_factory();
|
|
$actionevent = mod_workshop_core_calendar_provide_event_action($event, $factory, $student->id);
|
|
|
|
$this->assertInstanceOf('\core_calendar\local\event\value_objects\action', $actionevent);
|
|
$this->assertEquals(get_string('viewworkshopsummary', 'workshop'), $actionevent->get_name());
|
|
$this->assertInstanceOf('moodle_url', $actionevent->get_url());
|
|
$this->assertEquals(1, $actionevent->get_item_count());
|
|
$this->assertTrue($actionevent->is_actionable());
|
|
}
|
|
|
|
/**
|
|
* Test calendar event provide action closed.
|
|
*/
|
|
public function test_workshop_core_calendar_provide_event_action_closed() {
|
|
$this->resetAfterTest();
|
|
$this->setAdminUser();
|
|
|
|
$course = $this->getDataGenerator()->create_course();
|
|
$workshop = $this->getDataGenerator()->create_module('workshop', array('course' => $course->id,
|
|
'submissionend' => time() - DAYSECS));
|
|
$event = $this->create_action_event($course->id, $workshop->id, WORKSHOP_EVENT_TYPE_SUBMISSION_OPEN);
|
|
|
|
$factory = new \core_calendar\action_factory();
|
|
$actionevent = mod_workshop_core_calendar_provide_event_action($event, $factory);
|
|
|
|
$this->assertInstanceOf('\core_calendar\local\event\value_objects\action', $actionevent);
|
|
$this->assertEquals(get_string('viewworkshopsummary', 'workshop'), $actionevent->get_name());
|
|
$this->assertInstanceOf('moodle_url', $actionevent->get_url());
|
|
$this->assertEquals(1, $actionevent->get_item_count());
|
|
$this->assertTrue($actionevent->is_actionable());
|
|
}
|
|
|
|
/**
|
|
* Test calendar event provide action closed for a non user.
|
|
*/
|
|
public function test_workshop_core_calendar_provide_event_action_closed_for_non_user() {
|
|
global $CFG;
|
|
|
|
$this->resetAfterTest();
|
|
$this->setAdminUser();
|
|
|
|
$course = $this->getDataGenerator()->create_course();
|
|
$workshop = $this->getDataGenerator()->create_module('workshop', array('course' => $course->id,
|
|
'submissionend' => time() - DAYSECS));
|
|
$event = $this->create_action_event($course->id, $workshop->id, WORKSHOP_EVENT_TYPE_SUBMISSION_OPEN);
|
|
|
|
// Now, log out.
|
|
$CFG->forcelogin = true; // We don't want to be logged in as guest, as guest users might still have some capabilities.
|
|
$this->setUser();
|
|
|
|
$factory = new \core_calendar\action_factory();
|
|
$actionevent = mod_workshop_core_calendar_provide_event_action($event, $factory);
|
|
|
|
// Confirm the event is not shown at all.
|
|
$this->assertNull($actionevent);
|
|
}
|
|
|
|
/**
|
|
* Test calendar event provide action closed when user id is provided.
|
|
*/
|
|
public function test_workshop_core_calendar_provide_event_action_closed_for_user() {
|
|
global $CFG;
|
|
|
|
$this->resetAfterTest();
|
|
$this->setAdminUser();
|
|
|
|
$course = $this->getDataGenerator()->create_course();
|
|
$workshop = $this->getDataGenerator()->create_module('workshop', array('course' => $course->id,
|
|
'submissionend' => time() - DAYSECS));
|
|
$event = $this->create_action_event($course->id, $workshop->id, WORKSHOP_EVENT_TYPE_SUBMISSION_OPEN);
|
|
$student = $this->getDataGenerator()->create_and_enrol($course, 'student');
|
|
|
|
// Now log out.
|
|
$CFG->forcelogin = true; // We don't want to be logged in as guest, as guest users might still have some capabilities.
|
|
$this->setUser();
|
|
|
|
$factory = new \core_calendar\action_factory();
|
|
$actionevent = mod_workshop_core_calendar_provide_event_action($event, $factory, $student->id);
|
|
|
|
$this->assertInstanceOf('\core_calendar\local\event\value_objects\action', $actionevent);
|
|
$this->assertEquals(get_string('viewworkshopsummary', 'workshop'), $actionevent->get_name());
|
|
$this->assertInstanceOf('moodle_url', $actionevent->get_url());
|
|
$this->assertEquals(1, $actionevent->get_item_count());
|
|
$this->assertTrue($actionevent->is_actionable());
|
|
}
|
|
|
|
/**
|
|
* Test calendar event action open in future.
|
|
*/
|
|
public function test_workshop_core_calendar_provide_event_action_open_in_future() {
|
|
$this->resetAfterTest();
|
|
$this->setAdminUser();
|
|
|
|
$course = $this->getDataGenerator()->create_course();
|
|
$workshop = $this->getDataGenerator()->create_module('workshop', ['course' => $course->id,
|
|
'submissionstart' => time() + DAYSECS]);
|
|
$event = $this->create_action_event($course->id, $workshop->id, WORKSHOP_EVENT_TYPE_SUBMISSION_OPEN);
|
|
|
|
$factory = new \core_calendar\action_factory();
|
|
$actionevent = mod_workshop_core_calendar_provide_event_action($event, $factory);
|
|
|
|
$this->assertInstanceOf('\core_calendar\local\event\value_objects\action', $actionevent);
|
|
$this->assertEquals(get_string('viewworkshopsummary', 'workshop'), $actionevent->get_name());
|
|
$this->assertInstanceOf('moodle_url', $actionevent->get_url());
|
|
$this->assertEquals(1, $actionevent->get_item_count());
|
|
$this->assertTrue($actionevent->is_actionable());
|
|
}
|
|
|
|
/**
|
|
* Test calendar event action open in future for a non user.
|
|
*/
|
|
public function test_workshop_core_calendar_provide_event_action_open_in_future_for_non_user() {
|
|
global $CFG;
|
|
|
|
$this->resetAfterTest();
|
|
$this->setAdminUser();
|
|
|
|
$course = $this->getDataGenerator()->create_course();
|
|
$workshop = $this->getDataGenerator()->create_module('workshop', ['course' => $course->id,
|
|
'submissionstart' => time() + DAYSECS]);
|
|
$event = $this->create_action_event($course->id, $workshop->id, WORKSHOP_EVENT_TYPE_SUBMISSION_OPEN);
|
|
|
|
// Now, log out.
|
|
$CFG->forcelogin = true; // We don't want to be logged in as guest, as guest users might still have some capabilities.
|
|
$this->setUser();
|
|
|
|
$factory = new \core_calendar\action_factory();
|
|
$actionevent = mod_workshop_core_calendar_provide_event_action($event, $factory);
|
|
|
|
// Confirm the event is not shown at all.
|
|
$this->assertNull($actionevent);
|
|
}
|
|
|
|
/**
|
|
* Test calendar event action open in future when user id is provided.
|
|
*/
|
|
public function test_workshop_core_calendar_provide_event_action_open_in_future_for_user() {
|
|
global $CFG;
|
|
|
|
$this->resetAfterTest();
|
|
$this->setAdminUser();
|
|
|
|
$course = $this->getDataGenerator()->create_course();
|
|
$workshop = $this->getDataGenerator()->create_module('workshop', ['course' => $course->id,
|
|
'submissionstart' => time() + DAYSECS]);
|
|
$event = $this->create_action_event($course->id, $workshop->id, WORKSHOP_EVENT_TYPE_SUBMISSION_OPEN);
|
|
$student = $this->getDataGenerator()->create_and_enrol($course, 'student');
|
|
|
|
// Now log out.
|
|
$CFG->forcelogin = true; // We don't want to be logged in as guest, as guest users might still have some capabilities.
|
|
$this->setUser();
|
|
|
|
$factory = new \core_calendar\action_factory();
|
|
$actionevent = mod_workshop_core_calendar_provide_event_action($event, $factory, $student->id);
|
|
|
|
$this->assertInstanceOf('\core_calendar\local\event\value_objects\action', $actionevent);
|
|
$this->assertEquals(get_string('viewworkshopsummary', 'workshop'), $actionevent->get_name());
|
|
$this->assertInstanceOf('moodle_url', $actionevent->get_url());
|
|
$this->assertEquals(1, $actionevent->get_item_count());
|
|
$this->assertTrue($actionevent->is_actionable());
|
|
}
|
|
|
|
/**
|
|
* Test calendar event with no time specified.
|
|
*/
|
|
public function test_workshop_core_calendar_provide_event_action_no_time_specified() {
|
|
$this->resetAfterTest();
|
|
$this->setAdminUser();
|
|
|
|
$course = $this->getDataGenerator()->create_course();
|
|
$workshop = $this->getDataGenerator()->create_module('workshop', ['course' => $course->id]);
|
|
$event = $this->create_action_event($course->id, $workshop->id, WORKSHOP_EVENT_TYPE_SUBMISSION_OPEN);
|
|
|
|
$factory = new \core_calendar\action_factory();
|
|
$actionevent = mod_workshop_core_calendar_provide_event_action($event, $factory);
|
|
|
|
$this->assertInstanceOf('\core_calendar\local\event\value_objects\action', $actionevent);
|
|
$this->assertEquals(get_string('viewworkshopsummary', 'workshop'), $actionevent->get_name());
|
|
$this->assertInstanceOf('moodle_url', $actionevent->get_url());
|
|
$this->assertEquals(1, $actionevent->get_item_count());
|
|
$this->assertTrue($actionevent->is_actionable());
|
|
}
|
|
|
|
/**
|
|
* Test calendar event with no time specified for a non user.
|
|
*/
|
|
public function test_workshop_core_calendar_provide_event_action_no_time_specified_for_non_user() {
|
|
global $CFG;
|
|
|
|
$this->resetAfterTest();
|
|
$this->setAdminUser();
|
|
|
|
$course = $this->getDataGenerator()->create_course();
|
|
$workshop = $this->getDataGenerator()->create_module('workshop', ['course' => $course->id]);
|
|
$event = $this->create_action_event($course->id, $workshop->id, WORKSHOP_EVENT_TYPE_SUBMISSION_OPEN);
|
|
|
|
// Now, log out.
|
|
$CFG->forcelogin = true; // We don't want to be logged in as guest, as guest users might still have some capabilities.
|
|
$this->setUser();
|
|
|
|
$factory = new \core_calendar\action_factory();
|
|
$actionevent = mod_workshop_core_calendar_provide_event_action($event, $factory);
|
|
|
|
// Confirm the event is not shown at all.
|
|
$this->assertNull($actionevent);
|
|
}
|
|
|
|
/**
|
|
* Creates an action event.
|
|
*
|
|
* @param int $courseid The course id.
|
|
* @param int $instanceid The workshop id.
|
|
* @param string $eventtype The event type. eg. WORKSHOP_EVENT_TYPE_OPEN.
|
|
* @return bool|calendar_event
|
|
*/
|
|
private function create_action_event($courseid, $instanceid, $eventtype) {
|
|
$event = new stdClass();
|
|
$event->name = 'Calendar event';
|
|
$event->modulename = 'workshop';
|
|
$event->courseid = $courseid;
|
|
$event->instance = $instanceid;
|
|
$event->type = CALENDAR_EVENT_TYPE_ACTION;
|
|
$event->eventtype = $eventtype;
|
|
$event->timestart = time();
|
|
|
|
return calendar_event::create($event);
|
|
}
|
|
|
|
/**
|
|
* Test check_updates_since callback.
|
|
*/
|
|
public function test_check_updates_since() {
|
|
global $DB;
|
|
|
|
$this->resetAfterTest();
|
|
$this->setAdminUser();
|
|
$course = $this->getDataGenerator()->create_course();
|
|
|
|
// Create user.
|
|
$student = self::getDataGenerator()->create_user();
|
|
$teacher = self::getDataGenerator()->create_user();
|
|
|
|
// User enrolment.
|
|
$studentrole = $DB->get_record('role', array('shortname' => 'student'));
|
|
$this->getDataGenerator()->enrol_user($student->id, $course->id, $studentrole->id, 'manual');
|
|
$teacherrole = $DB->get_record('role', array('shortname' => 'editingteacher'));
|
|
$this->getDataGenerator()->enrol_user($teacher->id, $course->id, $teacherrole->id, 'manual');
|
|
|
|
$this->setCurrentTimeStart();
|
|
$record = array(
|
|
'course' => $course->id,
|
|
'custom' => 0,
|
|
'feedback' => 1,
|
|
);
|
|
$workshop = $this->getDataGenerator()->create_module('workshop', $record);
|
|
$cm = get_coursemodule_from_instance('workshop', $workshop->id, $course->id);
|
|
$context = context_module::instance($cm->id);
|
|
$cm = cm_info::create($cm);
|
|
|
|
$this->setUser($student);
|
|
// Check that upon creation, the updates are only about the new configuration created.
|
|
$onehourago = time() - HOURSECS;
|
|
$updates = workshop_check_updates_since($cm, $onehourago);
|
|
foreach ($updates as $el => $val) {
|
|
if ($el == 'configuration') {
|
|
$this->assertTrue($val->updated);
|
|
$this->assertTimeCurrent($val->timeupdated);
|
|
} else {
|
|
$this->assertFalse($val->updated);
|
|
}
|
|
}
|
|
|
|
// Set up a generator to create content.
|
|
$generator = $this->getDataGenerator()->get_plugin_generator('mod_workshop');
|
|
// Submission.
|
|
$submissionid = $generator->create_submission($workshop->id, $student->id, array(
|
|
'title' => 'My custom title',
|
|
));
|
|
// Now assessment.
|
|
$assessmentid = $generator->create_assessment($submissionid, $student->id, array(
|
|
'weight' => 3,
|
|
'grade' => 95.00000,
|
|
));
|
|
// Add files to one editor file area.
|
|
$fs = get_file_storage();
|
|
$filerecordinline = array(
|
|
'contextid' => $context->id,
|
|
'component' => 'mod_workshop',
|
|
'filearea' => 'instructauthors',
|
|
'itemid' => 0,
|
|
'filepath' => '/',
|
|
'filename' => 'image.png',
|
|
);
|
|
$instructauthorsfile = $fs->create_file_from_string($filerecordinline, 'image contents (not really)');
|
|
|
|
$updates = workshop_check_updates_since($cm, $onehourago);
|
|
$this->assertTrue($updates->submissions->updated);
|
|
$this->assertCount(1, $updates->submissions->itemids);
|
|
$this->assertEquals($submissionid, $updates->submissions->itemids[0]);
|
|
$this->assertTrue($updates->assessments->updated);
|
|
$this->assertCount(1, $updates->assessments->itemids);
|
|
$this->assertEquals($assessmentid, $updates->assessments->itemids[0]);
|
|
$this->assertTrue($updates->instructauthorsfiles->updated);
|
|
$this->assertCount(1, $updates->instructauthorsfiles->itemids);
|
|
$this->assertEquals($instructauthorsfile->get_id(), $updates->instructauthorsfiles->itemids[0]);
|
|
|
|
// Check I see the user updates as teacher.
|
|
$this->setUser($teacher);
|
|
$updates = workshop_check_updates_since($cm, $onehourago);
|
|
$this->assertTrue($updates->usersubmissions->updated);
|
|
$this->assertCount(1, $updates->usersubmissions->itemids);
|
|
$this->assertEquals($submissionid, $updates->usersubmissions->itemids[0]);
|
|
$this->assertTrue($updates->userassessments->updated);
|
|
$this->assertCount(1, $updates->userassessments->itemids);
|
|
$this->assertEquals($assessmentid, $updates->userassessments->itemids[0]);
|
|
$this->assertTrue($updates->instructauthorsfiles->updated);
|
|
$this->assertCount(1, $updates->instructauthorsfiles->itemids);
|
|
$this->assertEquals($instructauthorsfile->get_id(), $updates->instructauthorsfiles->itemids[0]);
|
|
|
|
// The teacher didn't do anything.
|
|
$this->assertFalse($updates->submissions->updated);
|
|
$this->assertFalse($updates->assessments->updated);
|
|
}
|
|
|
|
/**
|
|
* An unknown event type should not have any limits
|
|
*/
|
|
public function test_mod_workshop_core_calendar_get_valid_event_timestart_range_unknown_event() {
|
|
global $CFG;
|
|
require_once($CFG->dirroot . "/calendar/lib.php");
|
|
|
|
$this->resetAfterTest(true);
|
|
$this->setAdminUser();
|
|
|
|
$course = $this->getDataGenerator()->create_course();
|
|
$timestart = time();
|
|
$timeend = $timestart + DAYSECS;
|
|
$workshop = new \stdClass();
|
|
$workshop->submissionstart = $timestart;
|
|
$workshop->submissionend = $timeend;
|
|
$workshop->assessmentstart = 0;
|
|
$workshop->assessmentend = 0;
|
|
|
|
// Create a valid event.
|
|
$event = new \calendar_event([
|
|
'name' => 'Test event',
|
|
'description' => '',
|
|
'format' => 1,
|
|
'courseid' => $course->id,
|
|
'groupid' => 0,
|
|
'userid' => 2,
|
|
'modulename' => 'workshop',
|
|
'instance' => 1,
|
|
'eventtype' => WORKSHOP_EVENT_TYPE_SUBMISSION_CLOSE . "SOMETHING ELSE",
|
|
'timestart' => 1,
|
|
'timeduration' => 86400,
|
|
'visible' => 1
|
|
]);
|
|
list ($min, $max) = mod_workshop_core_calendar_get_valid_event_timestart_range($event, $workshop);
|
|
$this->assertNull($min);
|
|
$this->assertNull($max);
|
|
}
|
|
|
|
/**
|
|
* Provider for test_mod_workshop_core_calendar_get_valid_event_timestart_range.
|
|
*
|
|
* @return array of (submissionstart, submissionend, assessmentstart, assessmentend, eventtype, expectedmin, expectedmax)
|
|
*/
|
|
public function mod_workshop_core_calendar_get_valid_event_timestart_range_due_no_limit_provider() {
|
|
$submissionstart = time() + DAYSECS;
|
|
$submissionend = $submissionstart + DAYSECS;
|
|
$assessmentstart = $submissionend + DAYSECS;
|
|
$assessmentend = $assessmentstart + DAYSECS;
|
|
|
|
return [
|
|
'Only with submissionstart' => [$submissionstart, 0, 0, 0, WORKSHOP_EVENT_TYPE_SUBMISSION_OPEN, null, null],
|
|
'Only with submissionend' => [0, $submissionend, 0, 0, WORKSHOP_EVENT_TYPE_SUBMISSION_CLOSE, null, null],
|
|
'Only with assessmentstart' => [0, 0, $assessmentstart, 0, WORKSHOP_EVENT_TYPE_ASSESSMENT_OPEN, null, null],
|
|
'Only with assessmentend' => [0, 0, 0, $assessmentend, WORKSHOP_EVENT_TYPE_ASSESSMENT_CLOSE, null, null],
|
|
|
|
'Move submissionstart when with submissionend' => [$submissionstart, $submissionend, 0, 0,
|
|
WORKSHOP_EVENT_TYPE_SUBMISSION_OPEN, null, $submissionend - 1],
|
|
'Move submissionend when with submissionstart' => [$submissionstart, $submissionend, 0, 0,
|
|
WORKSHOP_EVENT_TYPE_SUBMISSION_CLOSE, $submissionstart + 1, null],
|
|
'Move assessmentstart when with assessmentend' => [0, 0, $assessmentstart, $assessmentend,
|
|
WORKSHOP_EVENT_TYPE_ASSESSMENT_OPEN, null, $assessmentend - 1],
|
|
'Move assessmentend when with assessmentstart' => [0, 0, $assessmentstart, $assessmentend,
|
|
WORKSHOP_EVENT_TYPE_ASSESSMENT_CLOSE, $assessmentstart + 1, null],
|
|
|
|
'Move submissionstart when with assessmentstart' => [$submissionstart, 0, $assessmentstart, 0,
|
|
WORKSHOP_EVENT_TYPE_SUBMISSION_OPEN, null, $assessmentstart],
|
|
'Move submissionstart when with assessmentend' => [$submissionstart, 0, 0, $assessmentend,
|
|
WORKSHOP_EVENT_TYPE_SUBMISSION_OPEN, null, $assessmentend],
|
|
'Move submissionend when with assessmentstart' => [0, $submissionend, $assessmentstart, 0,
|
|
WORKSHOP_EVENT_TYPE_SUBMISSION_CLOSE, null, $assessmentstart],
|
|
'Move submissionend when with assessmentend' => [0, $submissionend, 0, $assessmentend,
|
|
WORKSHOP_EVENT_TYPE_SUBMISSION_CLOSE, null, $assessmentend],
|
|
|
|
'Move assessmentstart when with submissionstart' => [$submissionstart, 0, $assessmentstart, 0,
|
|
WORKSHOP_EVENT_TYPE_ASSESSMENT_OPEN, $submissionstart, null],
|
|
'Move assessmentstart when with submissionend' => [0, $submissionend, $assessmentstart, 0,
|
|
WORKSHOP_EVENT_TYPE_ASSESSMENT_OPEN, $submissionend, null],
|
|
'Move assessmentend when with submissionstart' => [$submissionstart, 0, 0, $assessmentend,
|
|
WORKSHOP_EVENT_TYPE_ASSESSMENT_CLOSE, $submissionstart, null],
|
|
'Move assessmentend when with submissionend' => [0, $submissionend, 0, $assessmentend,
|
|
WORKSHOP_EVENT_TYPE_ASSESSMENT_CLOSE, $submissionend, null],
|
|
|
|
'Move submissionstart when with others' => [$submissionstart, $submissionend, $assessmentstart, $assessmentend,
|
|
WORKSHOP_EVENT_TYPE_SUBMISSION_OPEN, null, $submissionend - 1],
|
|
'Move submissionend when with others' => [$submissionstart, $submissionend, $assessmentstart, $assessmentend,
|
|
WORKSHOP_EVENT_TYPE_SUBMISSION_CLOSE, $submissionstart + 1, $assessmentstart],
|
|
'Move assessmentstart when with others' => [$submissionstart, $submissionend, $assessmentstart, $assessmentend,
|
|
WORKSHOP_EVENT_TYPE_ASSESSMENT_OPEN, $submissionend, $assessmentend - 1],
|
|
'Move assessmentend when with others' => [$submissionstart, $submissionend, $assessmentstart, $assessmentend,
|
|
WORKSHOP_EVENT_TYPE_ASSESSMENT_CLOSE, $assessmentstart + 1, null],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Tests mod_workshop_core_calendar_get_valid_event_timestart_range in various settings.
|
|
*
|
|
* @dataProvider mod_workshop_core_calendar_get_valid_event_timestart_range_due_no_limit_provider
|
|
*
|
|
* @param int $submissionstart The start of the submission phase
|
|
* @param int $submissionend The end of the submission phase
|
|
* @param int $assessmentstart The start of the assessment phase
|
|
* @param int $assessmentend The end of the assessment phase
|
|
* @param string $eventtype The type if the event
|
|
* @param int|null $expectedmin The expected value for min of the valid event range
|
|
* @param int|null $expectedmax The expected value for max of the valid event range
|
|
*/
|
|
public function test_mod_workshop_core_calendar_get_valid_event_timestart_range($submissionstart, $submissionend,
|
|
$assessmentstart, $assessmentend, $eventtype, $expectedmin, $expectedmax) {
|
|
|
|
global $CFG;
|
|
require_once($CFG->dirroot . '/calendar/lib.php');
|
|
|
|
$this->resetAfterTest(true);
|
|
$this->setAdminUser();
|
|
|
|
$course = $this->getDataGenerator()->create_course();
|
|
$workshop = new \stdClass();
|
|
$workshop->submissionstart = $submissionstart;
|
|
$workshop->submissionend = $submissionend;
|
|
$workshop->assessmentstart = $assessmentstart;
|
|
$workshop->assessmentend = $assessmentend;
|
|
|
|
// Create a valid event.
|
|
$event = new \calendar_event([
|
|
'name' => 'Test event',
|
|
'description' => '',
|
|
'format' => 1,
|
|
'courseid' => $course->id,
|
|
'groupid' => 0,
|
|
'userid' => 2,
|
|
'modulename' => 'workshop',
|
|
'instance' => 1,
|
|
'eventtype' => $eventtype,
|
|
'timestart' => 1,
|
|
'timeduration' => 86400,
|
|
'visible' => 1
|
|
]);
|
|
list($min, $max) = mod_workshop_core_calendar_get_valid_event_timestart_range($event, $workshop);
|
|
|
|
$this->assertSame($expectedmin, is_array($min) ? $min[0] : $min);
|
|
$this->assertSame($expectedmax, is_array($max) ? $max[0] : $max);
|
|
}
|
|
|
|
/**
|
|
* An unknown event type should not change the workshop instance.
|
|
*/
|
|
public function test_mod_workshop_core_calendar_event_timestart_updated_unknown_event() {
|
|
global $CFG, $DB;
|
|
require_once($CFG->dirroot . "/calendar/lib.php");
|
|
|
|
$this->resetAfterTest(true);
|
|
$this->setAdminUser();
|
|
|
|
$generator = $this->getDataGenerator();
|
|
$course = $generator->create_course();
|
|
|
|
$workshopgenerator = $generator->get_plugin_generator('mod_workshop');
|
|
$submissionstart = time() + DAYSECS;
|
|
$submissionend = $submissionstart + DAYSECS;
|
|
$assessmentstart = $submissionend + DAYSECS;
|
|
$assessmentend = $assessmentstart + DAYSECS;
|
|
$workshop = $workshopgenerator->create_instance(['course' => $course->id]);
|
|
$workshop->submissionstart = $submissionstart;
|
|
$workshop->submissionend = $submissionend;
|
|
$workshop->assessmentstart = $assessmentstart;
|
|
$workshop->assessmentend = $assessmentend;
|
|
$DB->update_record('workshop', $workshop);
|
|
|
|
// Create a valid event.
|
|
$event = new \calendar_event([
|
|
'name' => 'Test event',
|
|
'description' => '',
|
|
'format' => 1,
|
|
'courseid' => $course->id,
|
|
'groupid' => 0,
|
|
'userid' => 2,
|
|
'modulename' => 'workshop',
|
|
'instance' => $workshop->id,
|
|
'eventtype' => WORKSHOP_EVENT_TYPE_SUBMISSION_CLOSE . "SOMETHING ELSE",
|
|
'timestart' => 1,
|
|
'timeduration' => 86400,
|
|
'visible' => 1
|
|
]);
|
|
|
|
mod_workshop_core_calendar_event_timestart_updated($event, $workshop);
|
|
|
|
$workshop = $DB->get_record('workshop', ['id' => $workshop->id]);
|
|
$this->assertEquals($submissionstart, $workshop->submissionstart);
|
|
$this->assertEquals($submissionend, $workshop->submissionend);
|
|
$this->assertEquals($assessmentstart, $workshop->assessmentstart);
|
|
$this->assertEquals($assessmentend, $workshop->assessmentend);
|
|
}
|
|
|
|
/**
|
|
* Provider for test_mod_workshop_core_calendar_event_timestart_updated.
|
|
*
|
|
* @return array of (submissionstart, submissionend, assessmentstart, assessmentend, eventtype, fieldtoupdate, newtime)
|
|
*/
|
|
public function mod_workshop_core_calendar_event_timestart_updated_provider() {
|
|
$submissionstart = time() + DAYSECS;
|
|
$submissionend = $submissionstart + DAYSECS;
|
|
$assessmentstart = $submissionend + DAYSECS;
|
|
$assessmentend = $assessmentstart + DAYSECS;
|
|
|
|
return [
|
|
'Move submissionstart' => [$submissionstart, $submissionend, $assessmentstart, $assessmentend,
|
|
WORKSHOP_EVENT_TYPE_SUBMISSION_OPEN, 'submissionstart', $submissionstart + 50],
|
|
'Move submissionend' => [$submissionstart, $submissionend, $assessmentstart, $assessmentend,
|
|
WORKSHOP_EVENT_TYPE_SUBMISSION_CLOSE, 'submissionend', $submissionend + 50],
|
|
'Move assessmentstart' => [$submissionstart, $submissionend, $assessmentstart, $assessmentend,
|
|
WORKSHOP_EVENT_TYPE_ASSESSMENT_OPEN, 'assessmentstart', $assessmentstart + 50],
|
|
'Move assessmentend' => [$submissionstart, $submissionend, $assessmentstart, $assessmentend,
|
|
WORKSHOP_EVENT_TYPE_ASSESSMENT_CLOSE, 'assessmentend', $assessmentend + 50],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Due date events should update the workshop due date.
|
|
*
|
|
* @dataProvider mod_workshop_core_calendar_event_timestart_updated_provider
|
|
*
|
|
* @param int $submissionstart The start of the submission phase
|
|
* @param int $submissionend The end of the submission phase
|
|
* @param int $assessmentstart The start of the assessment phase
|
|
* @param int $assessmentend The end of the assessment phase
|
|
* @param string $eventtype The type if the event
|
|
* @param string $fieldtoupdate The field that is supposed to be updated.
|
|
* Either of 'submissionstart', 'submissionend', 'assessmentstart' or 'assessmentend'.
|
|
* @param int $newtime The new value for the $fieldtoupdate
|
|
*/
|
|
public function test_mod_workshop_core_calendar_event_timestart_updated($submissionstart, $submissionend, $assessmentstart,
|
|
$assessmentend, $eventtype, $fieldtoupdate, $newtime) {
|
|
global $CFG, $DB;
|
|
require_once($CFG->dirroot . "/calendar/lib.php");
|
|
|
|
$this->resetAfterTest(true);
|
|
$this->setAdminUser();
|
|
|
|
$generator = $this->getDataGenerator();
|
|
$course = $generator->create_course();
|
|
|
|
$workshopgenerator = $generator->get_plugin_generator('mod_workshop');
|
|
$workshop = $workshopgenerator->create_instance(['course' => $course->id]);
|
|
$workshop->submissionstart = $submissionstart;
|
|
$workshop->submissionend = $submissionend;
|
|
$workshop->assessmentstart = $assessmentstart;
|
|
$workshop->assessmentend = $assessmentend;
|
|
$DB->update_record('workshop', $workshop);
|
|
|
|
// Create a valid event.
|
|
$event = new \calendar_event([
|
|
'name' => 'Test event',
|
|
'description' => '',
|
|
'format' => 1,
|
|
'courseid' => $course->id,
|
|
'groupid' => 0,
|
|
'userid' => 2,
|
|
'modulename' => 'workshop',
|
|
'instance' => $workshop->id,
|
|
'eventtype' => $eventtype,
|
|
'timestart' => $newtime,
|
|
'timeduration' => 86400,
|
|
'visible' => 1
|
|
]);
|
|
mod_workshop_core_calendar_event_timestart_updated($event, $workshop);
|
|
|
|
$$fieldtoupdate = $newtime;
|
|
|
|
$workshop = $DB->get_record('workshop', ['id' => $workshop->id]);
|
|
$this->assertEquals($submissionstart, $workshop->submissionstart);
|
|
$this->assertEquals($submissionend, $workshop->submissionend);
|
|
$this->assertEquals($assessmentstart, $workshop->assessmentstart);
|
|
$this->assertEquals($assessmentend, $workshop->assessmentend);
|
|
}
|
|
}
|
|
|