. /** * Choice module library functions tests * * @package mod_choice * @category test * @copyright 2015 Juan Leyva * @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 * @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(); // Create a choice. $choice = $this->getDataGenerator()->create_module('choice', array('course' => $course->id, '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. $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(); // Create a choice. $choice = $this->getDataGenerator()->create_module('choice', array('course' => $course->id, 'timeopen' => 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->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. * @return bool|calendar_event */ private function create_action_event($courseid, $instanceid, $eventtype) { $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; $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()), []); } }