mirror of
https://github.com/moodle/moodle.git
synced 2025-02-08 09:02:07 +01:00
788 lines
30 KiB
PHP
788 lines
30 KiB
PHP
<?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/>.
|
|
|
|
/**
|
|
* Choice module library functions tests
|
|
*
|
|
* @package mod_choice
|
|
* @category test
|
|
* @copyright 2015 Juan Leyva <juan@moodle.com>
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
* @since Moodle 3.0
|
|
*/
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
global $CFG;
|
|
|
|
require_once($CFG->dirroot . '/webservice/tests/helpers.php');
|
|
require_once($CFG->dirroot . '/mod/choice/lib.php');
|
|
|
|
/**
|
|
* Choice module library functions tests
|
|
*
|
|
* @package mod_choice
|
|
* @category test
|
|
* @copyright 2015 Juan Leyva <juan@moodle.com>
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
* @since Moodle 3.0
|
|
*/
|
|
class mod_choice_lib_testcase extends externallib_advanced_testcase {
|
|
|
|
/**
|
|
* Test choice_view
|
|
* @return void
|
|
*/
|
|
public function test_choice_view() {
|
|
global $CFG;
|
|
|
|
$this->resetAfterTest();
|
|
|
|
$this->setAdminUser();
|
|
// Setup test data.
|
|
$course = $this->getDataGenerator()->create_course();
|
|
$choice = $this->getDataGenerator()->create_module('choice', array('course' => $course->id));
|
|
$context = context_module::instance($choice->cmid);
|
|
$cm = get_coursemodule_from_instance('choice', $choice->id);
|
|
|
|
// Trigger and capture the event.
|
|
$sink = $this->redirectEvents();
|
|
|
|
choice_view($choice, $course, $cm, $context);
|
|
|
|
$events = $sink->get_events();
|
|
$this->assertCount(1, $events);
|
|
$event = array_shift($events);
|
|
|
|
// Checking that the event contains the expected values.
|
|
$this->assertInstanceOf('\mod_choice\event\course_module_viewed', $event);
|
|
$this->assertEquals($context, $event->get_context());
|
|
$url = new \moodle_url('/mod/choice/view.php', array('id' => $cm->id));
|
|
$this->assertEquals($url, $event->get_url());
|
|
$this->assertEventContextNotUsed($event);
|
|
$this->assertNotEmpty($event->get_name());
|
|
}
|
|
|
|
/**
|
|
* Test choice_can_view_results
|
|
* @return void
|
|
*/
|
|
public function test_choice_can_view_results() {
|
|
global $DB, $USER;
|
|
|
|
$this->resetAfterTest();
|
|
|
|
$this->setAdminUser();
|
|
// Setup test data.
|
|
$course = $this->getDataGenerator()->create_course();
|
|
$choice = $this->getDataGenerator()->create_module('choice', array('course' => $course->id));
|
|
$context = context_module::instance($choice->cmid);
|
|
$cm = get_coursemodule_from_instance('choice', $choice->id);
|
|
|
|
// Default values are false, user cannot view results.
|
|
$canview = choice_can_view_results($choice);
|
|
$this->assertFalse($canview);
|
|
|
|
// Show results forced.
|
|
$choice->showresults = CHOICE_SHOWRESULTS_ALWAYS;
|
|
$DB->update_record('choice', $choice);
|
|
$canview = choice_can_view_results($choice);
|
|
$this->assertTrue($canview);
|
|
|
|
// Add a time restriction (choice not open yet).
|
|
$choice->timeopen = time() + YEARSECS;
|
|
$DB->update_record('choice', $choice);
|
|
$canview = choice_can_view_results($choice);
|
|
$this->assertFalse($canview);
|
|
|
|
// Show results after closing.
|
|
$choice->timeopen = 0;
|
|
$choice->showresults = CHOICE_SHOWRESULTS_AFTER_CLOSE;
|
|
$DB->update_record('choice', $choice);
|
|
$canview = choice_can_view_results($choice);
|
|
$this->assertFalse($canview);
|
|
|
|
$choice->timeclose = time() - HOURSECS;
|
|
$DB->update_record('choice', $choice);
|
|
$canview = choice_can_view_results($choice);
|
|
$this->assertTrue($canview);
|
|
|
|
// Show results after answering.
|
|
$choice->timeclose = 0;
|
|
$choice->showresults = CHOICE_SHOWRESULTS_AFTER_ANSWER;
|
|
$DB->update_record('choice', $choice);
|
|
$canview = choice_can_view_results($choice);
|
|
$this->assertFalse($canview);
|
|
|
|
// Get the first option.
|
|
$choicewithoptions = choice_get_choice($choice->id);
|
|
$optionids = array_keys($choicewithoptions->option);
|
|
|
|
choice_user_submit_response($optionids[0], $choice, $USER->id, $course, $cm);
|
|
|
|
$canview = choice_can_view_results($choice);
|
|
$this->assertTrue($canview);
|
|
|
|
}
|
|
|
|
/**
|
|
* @expectedException moodle_exception
|
|
*/
|
|
public function test_choice_user_submit_response_validation() {
|
|
global $USER;
|
|
|
|
$this->resetAfterTest();
|
|
|
|
$this->setAdminUser();
|
|
// Setup test data.
|
|
$course = $this->getDataGenerator()->create_course();
|
|
$choice1 = $this->getDataGenerator()->create_module('choice', array('course' => $course->id));
|
|
$choice2 = $this->getDataGenerator()->create_module('choice', array('course' => $course->id));
|
|
$cm = get_coursemodule_from_instance('choice', $choice1->id);
|
|
|
|
$choicewithoptions1 = choice_get_choice($choice1->id);
|
|
$choicewithoptions2 = choice_get_choice($choice2->id);
|
|
$optionids1 = array_keys($choicewithoptions1->option);
|
|
$optionids2 = array_keys($choicewithoptions2->option);
|
|
|
|
// Make sure we cannot submit options from a different choice instance.
|
|
choice_user_submit_response($optionids2[0], $choice1, $USER->id, $course, $cm);
|
|
}
|
|
|
|
/**
|
|
* Test choice_get_my_response
|
|
* @return void
|
|
*/
|
|
public function test_choice_get_my_response() {
|
|
global $USER;
|
|
|
|
$this->resetAfterTest();
|
|
|
|
$this->setAdminUser();
|
|
// Setup test data.
|
|
$course = $this->getDataGenerator()->create_course();
|
|
$choice = $this->getDataGenerator()->create_module('choice', array('course' => $course->id));
|
|
$context = context_module::instance($choice->cmid);
|
|
$cm = get_coursemodule_from_instance('choice', $choice->id);
|
|
|
|
$choicewithoptions = choice_get_choice($choice->id);
|
|
$optionids = array_keys($choicewithoptions->option);
|
|
|
|
choice_user_submit_response($optionids[0], $choice, $USER->id, $course, $cm);
|
|
$responses = choice_get_my_response($choice, $course, $cm, $context);
|
|
$this->assertCount(1, $responses);
|
|
$response = array_shift($responses);
|
|
$this->assertEquals($optionids[0], $response->optionid);
|
|
|
|
// Multiple responses.
|
|
$choice = $this->getDataGenerator()->create_module('choice', array('course' => $course->id, 'allowmultiple' => 1));
|
|
$context = context_module::instance($choice->cmid);
|
|
$cm = get_coursemodule_from_instance('choice', $choice->id);
|
|
|
|
$choicewithoptions = choice_get_choice($choice->id);
|
|
$optionids = array_keys($choicewithoptions->option);
|
|
|
|
choice_user_submit_response($optionids, $choice, $USER->id, $course, $cm);
|
|
$responses = choice_get_my_response($choice, $course, $cm, $context);
|
|
$this->assertCount(count($optionids), $responses);
|
|
foreach ($responses as $resp) {
|
|
$this->assertContains($resp->optionid, $optionids);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Test choice_get_availability_status
|
|
* @return void
|
|
*/
|
|
public function test_choice_get_availability_status() {
|
|
global $USER;
|
|
|
|
$this->resetAfterTest();
|
|
|
|
$this->setAdminUser();
|
|
// Setup test data.
|
|
$course = $this->getDataGenerator()->create_course();
|
|
$choice = $this->getDataGenerator()->create_module('choice', array('course' => $course->id));
|
|
|
|
// No time restrictions and updates allowed.
|
|
list($status, $warnings) = choice_get_availability_status($choice, false);
|
|
$this->assertEquals(true, $status);
|
|
$this->assertCount(0, $warnings);
|
|
|
|
// No updates allowed, but haven't answered yet.
|
|
$choice->allowupdate = false;
|
|
list($status, $warnings) = choice_get_availability_status($choice, false);
|
|
$this->assertEquals(true, $status);
|
|
$this->assertCount(0, $warnings);
|
|
|
|
// No updates allowed and have answered.
|
|
$cm = get_coursemodule_from_instance('choice', $choice->id);
|
|
$choicewithoptions = choice_get_choice($choice->id);
|
|
$optionids = array_keys($choicewithoptions->option);
|
|
choice_user_submit_response($optionids[0], $choice, $USER->id, $course, $cm);
|
|
list($status, $warnings) = choice_get_availability_status($choice, false);
|
|
$this->assertEquals(false, $status);
|
|
$this->assertCount(1, $warnings);
|
|
$this->assertEquals('choicesaved', array_keys($warnings)[0]);
|
|
|
|
$choice->allowupdate = true;
|
|
|
|
// With time restrictions, still open.
|
|
$choice->timeopen = time() - DAYSECS;
|
|
$choice->timeclose = time() + DAYSECS;
|
|
list($status, $warnings) = choice_get_availability_status($choice, false);
|
|
$this->assertEquals(true, $status);
|
|
$this->assertCount(0, $warnings);
|
|
|
|
// Choice not open yet.
|
|
$choice->timeopen = time() + DAYSECS;
|
|
$choice->timeclose = $choice->timeopen + DAYSECS;
|
|
list($status, $warnings) = choice_get_availability_status($choice, false);
|
|
$this->assertEquals(false, $status);
|
|
$this->assertCount(1, $warnings);
|
|
$this->assertEquals('notopenyet', array_keys($warnings)[0]);
|
|
|
|
// Choice closed.
|
|
$choice->timeopen = time() - DAYSECS;
|
|
$choice->timeclose = time() - 1;
|
|
list($status, $warnings) = choice_get_availability_status($choice, false);
|
|
$this->assertEquals(false, $status);
|
|
$this->assertCount(1, $warnings);
|
|
$this->assertEquals('expired', array_keys($warnings)[0]);
|
|
}
|
|
|
|
public function test_choice_core_calendar_provide_event_action_open() {
|
|
$this->resetAfterTest();
|
|
|
|
$this->setAdminUser();
|
|
|
|
// Create a course.
|
|
$course = $this->getDataGenerator()->create_course();
|
|
|
|
// Create a choice.
|
|
$choice = $this->getDataGenerator()->create_module('choice', array('course' => $course->id,
|
|
'timeopen' => time() - DAYSECS, 'timeclose' => time() + DAYSECS));
|
|
|
|
// Create a calendar event.
|
|
$event = $this->create_action_event($course->id, $choice->id, CHOICE_EVENT_TYPE_OPEN);
|
|
|
|
// Create an action factory.
|
|
$factory = new \core_calendar\action_factory();
|
|
|
|
// Decorate action event.
|
|
$actionevent = mod_choice_core_calendar_provide_event_action($event, $factory);
|
|
|
|
// Confirm the event was decorated.
|
|
$this->assertInstanceOf('\core_calendar\local\event\value_objects\action', $actionevent);
|
|
$this->assertEquals(get_string('viewchoices', 'choice'), $actionevent->get_name());
|
|
$this->assertInstanceOf('moodle_url', $actionevent->get_url());
|
|
$this->assertEquals(1, $actionevent->get_item_count());
|
|
$this->assertTrue($actionevent->is_actionable());
|
|
}
|
|
|
|
/**
|
|
* An event should not have an action if the user has already submitted a response
|
|
* to the choice activity.
|
|
*/
|
|
public function test_choice_core_calendar_provide_event_action_already_submitted() {
|
|
global $DB;
|
|
|
|
$this->resetAfterTest();
|
|
|
|
$this->setAdminUser();
|
|
|
|
// Create a course.
|
|
$course = $this->getDataGenerator()->create_course();
|
|
// Create user.
|
|
$student = $this->getDataGenerator()->create_user();
|
|
$studentrole = $DB->get_record('role', array('shortname' => 'student'));
|
|
$this->getDataGenerator()->enrol_user($student->id, $course->id, $studentrole->id, 'manual');
|
|
|
|
// Create a choice.
|
|
$choice = $this->getDataGenerator()->create_module('choice', array('course' => $course->id,
|
|
'timeopen' => time() - DAYSECS, 'timeclose' => time() + DAYSECS));
|
|
$context = context_module::instance($choice->cmid);
|
|
$cm = get_coursemodule_from_instance('choice', $choice->id);
|
|
|
|
$choicewithoptions = choice_get_choice($choice->id);
|
|
$optionids = array_keys($choicewithoptions->option);
|
|
|
|
choice_user_submit_response($optionids[0], $choice, $student->id, $course, $cm);
|
|
|
|
// Create a calendar event.
|
|
$event = $this->create_action_event($course->id, $choice->id, CHOICE_EVENT_TYPE_OPEN);
|
|
|
|
// Create an action factory.
|
|
$factory = new \core_calendar\action_factory();
|
|
|
|
$this->setUser($student);
|
|
|
|
// Decorate action event.
|
|
$action = mod_choice_core_calendar_provide_event_action($event, $factory);
|
|
|
|
// Confirm no action was returned if the user has already submitted the
|
|
// choice activity.
|
|
$this->assertNull($action);
|
|
}
|
|
|
|
public function test_choice_core_calendar_provide_event_action_closed() {
|
|
$this->resetAfterTest();
|
|
|
|
$this->setAdminUser();
|
|
|
|
// Create a course.
|
|
$course = $this->getDataGenerator()->create_course();
|
|
|
|
$timeclose = time() - DAYSECS;
|
|
// Create a choice.
|
|
$choice = $this->getDataGenerator()->create_module('choice', array('course' => $course->id,
|
|
'timeclose' => $timeclose));
|
|
|
|
// Create a calendar event.
|
|
$event = $this->create_action_event($course->id, $choice->id, CHOICE_EVENT_TYPE_OPEN, $timeclose - 1);
|
|
|
|
// Create an action factory.
|
|
$factory = new \core_calendar\action_factory();
|
|
|
|
// Decorate action event.
|
|
$action = mod_choice_core_calendar_provide_event_action($event, $factory);
|
|
|
|
// Confirm not action was provided for a closed activity.
|
|
$this->assertNull($action);
|
|
}
|
|
|
|
public function test_choice_core_calendar_provide_event_action_open_in_future() {
|
|
$this->resetAfterTest();
|
|
|
|
$this->setAdminUser();
|
|
|
|
// Create a course.
|
|
$course = $this->getDataGenerator()->create_course();
|
|
|
|
$timeopen = time() + DAYSECS;
|
|
$timeclose = $timeopen + DAYSECS;
|
|
|
|
// Create a choice.
|
|
$choice = $this->getDataGenerator()->create_module('choice', array('course' => $course->id,
|
|
'timeopen' => $timeopen, 'timeclose' => $timeclose));
|
|
|
|
// Create a calendar event.
|
|
$event = $this->create_action_event($course->id, $choice->id, CHOICE_EVENT_TYPE_OPEN, $timeopen);
|
|
|
|
// Create an action factory.
|
|
$factory = new \core_calendar\action_factory();
|
|
|
|
// Decorate action event.
|
|
$actionevent = mod_choice_core_calendar_provide_event_action($event, $factory);
|
|
|
|
// Confirm the event was decorated.
|
|
$this->assertInstanceOf('\core_calendar\local\event\value_objects\action', $actionevent);
|
|
$this->assertEquals(get_string('viewchoices', 'choice'), $actionevent->get_name());
|
|
$this->assertInstanceOf('moodle_url', $actionevent->get_url());
|
|
$this->assertEquals(1, $actionevent->get_item_count());
|
|
$this->assertFalse($actionevent->is_actionable());
|
|
}
|
|
|
|
public function test_choice_core_calendar_provide_event_action_no_time_specified() {
|
|
$this->resetAfterTest();
|
|
|
|
$this->setAdminUser();
|
|
|
|
// Create a course.
|
|
$course = $this->getDataGenerator()->create_course();
|
|
|
|
// Create a choice.
|
|
$choice = $this->getDataGenerator()->create_module('choice', array('course' => $course->id));
|
|
|
|
// Create a calendar event.
|
|
$event = $this->create_action_event($course->id, $choice->id, CHOICE_EVENT_TYPE_OPEN);
|
|
|
|
// Create an action factory.
|
|
$factory = new \core_calendar\action_factory();
|
|
|
|
// Decorate action event.
|
|
$actionevent = mod_choice_core_calendar_provide_event_action($event, $factory);
|
|
|
|
// Confirm the event was decorated.
|
|
$this->assertInstanceOf('\core_calendar\local\event\value_objects\action', $actionevent);
|
|
$this->assertEquals(get_string('viewchoices', 'choice'), $actionevent->get_name());
|
|
$this->assertInstanceOf('moodle_url', $actionevent->get_url());
|
|
$this->assertEquals(1, $actionevent->get_item_count());
|
|
$this->assertTrue($actionevent->is_actionable());
|
|
}
|
|
|
|
/**
|
|
* Creates an action event.
|
|
*
|
|
* @param int $courseid
|
|
* @param int $instanceid The choice id.
|
|
* @param string $eventtype The event type. eg. CHOICE_EVENT_TYPE_OPEN.
|
|
* @param int|null $timestart The start timestamp for the event
|
|
* @return bool|calendar_event
|
|
*/
|
|
private function create_action_event($courseid, $instanceid, $eventtype, $timestart = null) {
|
|
$event = new stdClass();
|
|
$event->name = 'Calendar event';
|
|
$event->modulename = 'choice';
|
|
$event->courseid = $courseid;
|
|
$event->instance = $instanceid;
|
|
$event->type = CALENDAR_EVENT_TYPE_ACTION;
|
|
$event->eventtype = $eventtype;
|
|
|
|
if ($timestart) {
|
|
$event->timestart = $timestart;
|
|
} else {
|
|
$event->timestart = time();
|
|
}
|
|
|
|
return calendar_event::create($event);
|
|
}
|
|
|
|
/**
|
|
* Test the callback responsible for returning the completion rule descriptions.
|
|
* This function should work given either an instance of the module (cm_info), such as when checking the active rules,
|
|
* or if passed a stdClass of similar structure, such as when checking the the default completion settings for a mod type.
|
|
*/
|
|
public function test_mod_choice_completion_get_active_rule_descriptions() {
|
|
$this->resetAfterTest();
|
|
$this->setAdminUser();
|
|
|
|
// Two activities, both with automatic completion. One has the 'completionsubmit' rule, one doesn't.
|
|
$course = $this->getDataGenerator()->create_course(['enablecompletion' => 1]);
|
|
$choice1 = $this->getDataGenerator()->create_module('choice', [
|
|
'course' => $course->id,
|
|
'completion' => 2,
|
|
'completionsubmit' => 1
|
|
]);
|
|
$choice2 = $this->getDataGenerator()->create_module('choice', [
|
|
'course' => $course->id,
|
|
'completion' => 2,
|
|
'completionsubmit' => 0
|
|
]);
|
|
$cm1 = cm_info::create(get_coursemodule_from_instance('choice', $choice1->id));
|
|
$cm2 = cm_info::create(get_coursemodule_from_instance('choice', $choice2->id));
|
|
|
|
// Data for the stdClass input type.
|
|
// This type of input would occur when checking the default completion rules for an activity type, where we don't have
|
|
// any access to cm_info, rather the input is a stdClass containing completion and customdata attributes, just like cm_info.
|
|
$moddefaults = new stdClass();
|
|
$moddefaults->customdata = ['customcompletionrules' => ['completionsubmit' => 1]];
|
|
$moddefaults->completion = 2;
|
|
|
|
$activeruledescriptions = [get_string('completionsubmit', 'choice')];
|
|
$this->assertEquals(mod_choice_get_completion_active_rule_descriptions($cm1), $activeruledescriptions);
|
|
$this->assertEquals(mod_choice_get_completion_active_rule_descriptions($cm2), []);
|
|
$this->assertEquals(mod_choice_get_completion_active_rule_descriptions($moddefaults), $activeruledescriptions);
|
|
$this->assertEquals(mod_choice_get_completion_active_rule_descriptions(new stdClass()), []);
|
|
}
|
|
|
|
/**
|
|
* An unkown event type should not change the choice instance.
|
|
*/
|
|
public function test_mod_choice_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();
|
|
$choicegenerator = $generator->get_plugin_generator('mod_choice');
|
|
$timeopen = time();
|
|
$timeclose = $timeopen + DAYSECS;
|
|
$choice = $choicegenerator->create_instance(['course' => $course->id]);
|
|
$choice->timeopen = $timeopen;
|
|
$choice->timeclose = $timeclose;
|
|
$DB->update_record('choice', $choice);
|
|
|
|
// Create a valid event.
|
|
$event = new \calendar_event([
|
|
'name' => 'Test event',
|
|
'description' => '',
|
|
'format' => 1,
|
|
'courseid' => $course->id,
|
|
'groupid' => 0,
|
|
'userid' => 2,
|
|
'modulename' => 'choice',
|
|
'instance' => $choice->id,
|
|
'eventtype' => CHOICE_EVENT_TYPE_OPEN . "SOMETHING ELSE",
|
|
'timestart' => 1,
|
|
'timeduration' => 86400,
|
|
'visible' => 1
|
|
]);
|
|
|
|
mod_choice_core_calendar_event_timestart_updated($event, $choice);
|
|
|
|
$choice = $DB->get_record('choice', ['id' => $choice->id]);
|
|
$this->assertEquals($timeopen, $choice->timeopen);
|
|
$this->assertEquals($timeclose, $choice->timeclose);
|
|
}
|
|
|
|
/**
|
|
* A CHOICE_EVENT_TYPE_OPEN event should update the timeopen property of
|
|
* the choice activity.
|
|
*/
|
|
public function test_mod_choice_core_calendar_event_timestart_updated_open_event() {
|
|
global $CFG, $DB;
|
|
require_once($CFG->dirroot . "/calendar/lib.php");
|
|
|
|
$this->resetAfterTest(true);
|
|
$this->setAdminUser();
|
|
$generator = $this->getDataGenerator();
|
|
$course = $generator->create_course();
|
|
$choicegenerator = $generator->get_plugin_generator('mod_choice');
|
|
$timeopen = time();
|
|
$timeclose = $timeopen + DAYSECS;
|
|
$timemodified = 1;
|
|
$newtimeopen = $timeopen - DAYSECS;
|
|
$choice = $choicegenerator->create_instance(['course' => $course->id]);
|
|
$choice->timeopen = $timeopen;
|
|
$choice->timeclose = $timeclose;
|
|
$choice->timemodified = $timemodified;
|
|
$DB->update_record('choice', $choice);
|
|
|
|
// Create a valid event.
|
|
$event = new \calendar_event([
|
|
'name' => 'Test event',
|
|
'description' => '',
|
|
'format' => 1,
|
|
'courseid' => $course->id,
|
|
'groupid' => 0,
|
|
'userid' => 2,
|
|
'modulename' => 'choice',
|
|
'instance' => $choice->id,
|
|
'eventtype' => CHOICE_EVENT_TYPE_OPEN,
|
|
'timestart' => $newtimeopen,
|
|
'timeduration' => 86400,
|
|
'visible' => 1
|
|
]);
|
|
|
|
// Trigger and capture the event when adding a contact.
|
|
$sink = $this->redirectEvents();
|
|
|
|
mod_choice_core_calendar_event_timestart_updated($event, $choice);
|
|
|
|
$triggeredevents = $sink->get_events();
|
|
$moduleupdatedevents = array_filter($triggeredevents, function($e) {
|
|
return is_a($e, 'core\event\course_module_updated');
|
|
});
|
|
|
|
$choice = $DB->get_record('choice', ['id' => $choice->id]);
|
|
// Ensure the timeopen property matches the event timestart.
|
|
$this->assertEquals($newtimeopen, $choice->timeopen);
|
|
// Ensure the timeclose isn't changed.
|
|
$this->assertEquals($timeclose, $choice->timeclose);
|
|
// Ensure the timemodified property has been changed.
|
|
$this->assertNotEquals($timemodified, $choice->timemodified);
|
|
// Confirm that a module updated event is fired when the module
|
|
// is changed.
|
|
$this->assertNotEmpty($moduleupdatedevents);
|
|
}
|
|
|
|
/**
|
|
* A CHOICE_EVENT_TYPE_CLOSE event should update the timeclose property of
|
|
* the choice activity.
|
|
*/
|
|
public function test_mod_choice_core_calendar_event_timestart_updated_close_event() {
|
|
global $CFG, $DB;
|
|
require_once($CFG->dirroot . "/calendar/lib.php");
|
|
|
|
$this->resetAfterTest(true);
|
|
$this->setAdminUser();
|
|
$generator = $this->getDataGenerator();
|
|
$course = $generator->create_course();
|
|
$choicegenerator = $generator->get_plugin_generator('mod_choice');
|
|
$timeopen = time();
|
|
$timeclose = $timeopen + DAYSECS;
|
|
$timemodified = 1;
|
|
$newtimeclose = $timeclose + DAYSECS;
|
|
$choice = $choicegenerator->create_instance(['course' => $course->id]);
|
|
$choice->timeopen = $timeopen;
|
|
$choice->timeclose = $timeclose;
|
|
$choice->timemodified = $timemodified;
|
|
$DB->update_record('choice', $choice);
|
|
|
|
// Create a valid event.
|
|
$event = new \calendar_event([
|
|
'name' => 'Test event',
|
|
'description' => '',
|
|
'format' => 1,
|
|
'courseid' => $course->id,
|
|
'groupid' => 0,
|
|
'userid' => 2,
|
|
'modulename' => 'choice',
|
|
'instance' => $choice->id,
|
|
'eventtype' => CHOICE_EVENT_TYPE_CLOSE,
|
|
'timestart' => $newtimeclose,
|
|
'timeduration' => 86400,
|
|
'visible' => 1
|
|
]);
|
|
|
|
// Trigger and capture the event when adding a contact.
|
|
$sink = $this->redirectEvents();
|
|
|
|
mod_choice_core_calendar_event_timestart_updated($event, $choice);
|
|
|
|
$triggeredevents = $sink->get_events();
|
|
$moduleupdatedevents = array_filter($triggeredevents, function($e) {
|
|
return is_a($e, 'core\event\course_module_updated');
|
|
});
|
|
|
|
$choice = $DB->get_record('choice', ['id' => $choice->id]);
|
|
// Ensure the timeclose property matches the event timestart.
|
|
$this->assertEquals($newtimeclose, $choice->timeclose);
|
|
// Ensure the timeopen isn't changed.
|
|
$this->assertEquals($timeopen, $choice->timeopen);
|
|
// Ensure the timemodified property has been changed.
|
|
$this->assertNotEquals($timemodified, $choice->timemodified);
|
|
// Confirm that a module updated event is fired when the module
|
|
// is changed.
|
|
$this->assertNotEmpty($moduleupdatedevents);
|
|
}
|
|
|
|
/**
|
|
* An unkown event type should not have any limits
|
|
*/
|
|
public function test_mod_choice_core_calendar_get_valid_event_timestart_range_unknown_event() {
|
|
global $CFG, $DB;
|
|
require_once($CFG->dirroot . "/calendar/lib.php");
|
|
|
|
$this->resetAfterTest(true);
|
|
$this->setAdminUser();
|
|
$generator = $this->getDataGenerator();
|
|
$course = $generator->create_course();
|
|
$timeopen = time();
|
|
$timeclose = $timeopen + DAYSECS;
|
|
$choice = new \stdClass();
|
|
$choice->timeopen = $timeopen;
|
|
$choice->timeclose = $timeclose;
|
|
|
|
// Create a valid event.
|
|
$event = new \calendar_event([
|
|
'name' => 'Test event',
|
|
'description' => '',
|
|
'format' => 1,
|
|
'courseid' => $course->id,
|
|
'groupid' => 0,
|
|
'userid' => 2,
|
|
'modulename' => 'choice',
|
|
'instance' => 1,
|
|
'eventtype' => CHOICE_EVENT_TYPE_OPEN . "SOMETHING ELSE",
|
|
'timestart' => 1,
|
|
'timeduration' => 86400,
|
|
'visible' => 1
|
|
]);
|
|
|
|
list ($min, $max) = mod_choice_core_calendar_get_valid_event_timestart_range($event, $choice);
|
|
$this->assertNull($min);
|
|
$this->assertNull($max);
|
|
}
|
|
|
|
/**
|
|
* The open event should be limited by the choice's timeclose property, if it's set.
|
|
*/
|
|
public function test_mod_choice_core_calendar_get_valid_event_timestart_range_open_event() {
|
|
global $CFG, $DB;
|
|
require_once($CFG->dirroot . "/calendar/lib.php");
|
|
|
|
$this->resetAfterTest(true);
|
|
$this->setAdminUser();
|
|
$generator = $this->getDataGenerator();
|
|
$course = $generator->create_course();
|
|
$timeopen = time();
|
|
$timeclose = $timeopen + DAYSECS;
|
|
$choice = new \stdClass();
|
|
$choice->timeopen = $timeopen;
|
|
$choice->timeclose = $timeclose;
|
|
|
|
// Create a valid event.
|
|
$event = new \calendar_event([
|
|
'name' => 'Test event',
|
|
'description' => '',
|
|
'format' => 1,
|
|
'courseid' => $course->id,
|
|
'groupid' => 0,
|
|
'userid' => 2,
|
|
'modulename' => 'choice',
|
|
'instance' => 1,
|
|
'eventtype' => CHOICE_EVENT_TYPE_OPEN,
|
|
'timestart' => 1,
|
|
'timeduration' => 86400,
|
|
'visible' => 1
|
|
]);
|
|
|
|
// The max limit should be bounded by the timeclose value.
|
|
list ($min, $max) = mod_choice_core_calendar_get_valid_event_timestart_range($event, $choice);
|
|
|
|
$this->assertNull($min);
|
|
$this->assertEquals($timeclose, $max[0]);
|
|
|
|
// No timeclose value should result in no upper limit.
|
|
$choice->timeclose = 0;
|
|
list ($min, $max) = mod_choice_core_calendar_get_valid_event_timestart_range($event, $choice);
|
|
|
|
$this->assertNull($min);
|
|
$this->assertNull($max);
|
|
}
|
|
|
|
/**
|
|
* The close event should be limited by the choice's timeopen property, if it's set.
|
|
*/
|
|
public function test_mod_choice_core_calendar_get_valid_event_timestart_range_close_event() {
|
|
global $CFG, $DB;
|
|
require_once($CFG->dirroot . "/calendar/lib.php");
|
|
|
|
$this->resetAfterTest(true);
|
|
$this->setAdminUser();
|
|
$generator = $this->getDataGenerator();
|
|
$course = $generator->create_course();
|
|
$timeopen = time();
|
|
$timeclose = $timeopen + DAYSECS;
|
|
$choice = new \stdClass();
|
|
$choice->timeopen = $timeopen;
|
|
$choice->timeclose = $timeclose;
|
|
|
|
// Create a valid event.
|
|
$event = new \calendar_event([
|
|
'name' => 'Test event',
|
|
'description' => '',
|
|
'format' => 1,
|
|
'courseid' => $course->id,
|
|
'groupid' => 0,
|
|
'userid' => 2,
|
|
'modulename' => 'choice',
|
|
'instance' => 1,
|
|
'eventtype' => CHOICE_EVENT_TYPE_CLOSE,
|
|
'timestart' => 1,
|
|
'timeduration' => 86400,
|
|
'visible' => 1
|
|
]);
|
|
|
|
// The max limit should be bounded by the timeclose value.
|
|
list ($min, $max) = mod_choice_core_calendar_get_valid_event_timestart_range($event, $choice);
|
|
|
|
$this->assertEquals($timeopen, $min[0]);
|
|
$this->assertNull($max);
|
|
|
|
// No timeclose value should result in no upper limit.
|
|
$choice->timeopen = 0;
|
|
list ($min, $max) = mod_choice_core_calendar_get_valid_event_timestart_range($event, $choice);
|
|
|
|
$this->assertNull($min);
|
|
$this->assertNull($max);
|
|
}
|
|
}
|