2017-02-15 03:15:06 +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/>.
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Event container tests.
|
|
|
|
*
|
|
|
|
* @package core_calendar
|
|
|
|
* @copyright 2017 Cameron Ball <cameron@cameron1729.xyz>
|
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
|
*/
|
|
|
|
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
|
2017-04-03 14:29:04 +08:00
|
|
|
global $CFG;
|
|
|
|
|
|
|
|
require_once($CFG->dirroot . '/calendar/lib.php');
|
|
|
|
|
2017-02-15 03:15:06 +08:00
|
|
|
use core_calendar\local\event\entities\action_event;
|
|
|
|
use core_calendar\local\event\entities\event;
|
2017-03-30 15:33:13 +08:00
|
|
|
use core_calendar\local\event\entities\event_interface;
|
2017-02-15 03:15:06 +08:00
|
|
|
use core_calendar\local\event\factories\event_factory;
|
2017-03-30 15:33:13 +08:00
|
|
|
use core_calendar\local\event\factories\event_factory_interface;
|
2017-02-15 03:15:06 +08:00
|
|
|
use core_calendar\local\event\mappers\event_mapper;
|
2017-03-30 15:33:13 +08:00
|
|
|
use core_calendar\local\event\mappers\event_mapper_interface;
|
2017-02-15 03:15:06 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Core container testcase.
|
|
|
|
*
|
|
|
|
* @copyright 2017 Cameron Ball <cameron@cameron1729.xyz>
|
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
|
*/
|
|
|
|
class core_calendar_container_testcase extends advanced_testcase {
|
2017-03-20 16:58:38 +08:00
|
|
|
|
2017-02-15 03:15:06 +08:00
|
|
|
/**
|
2017-03-20 16:58:38 +08:00
|
|
|
* Test setup.
|
2017-02-15 03:15:06 +08:00
|
|
|
*/
|
2017-03-20 16:58:38 +08:00
|
|
|
public function setUp() {
|
|
|
|
$this->resetAfterTest();
|
2017-02-15 03:15:06 +08:00
|
|
|
$this->setAdminUser();
|
2017-03-20 16:58:38 +08:00
|
|
|
}
|
2017-02-15 03:15:06 +08:00
|
|
|
|
2017-03-20 16:58:38 +08:00
|
|
|
/**
|
|
|
|
* Test getting the event factory.
|
|
|
|
*/
|
|
|
|
public function test_get_event_factory() {
|
2017-04-03 12:53:38 +08:00
|
|
|
$factory = \core_calendar\local\event\container::get_event_factory();
|
2017-02-15 03:15:06 +08:00
|
|
|
|
2017-03-08 18:19:55 +08:00
|
|
|
// Test that the container is returning the right type.
|
2017-02-15 03:15:06 +08:00
|
|
|
$this->assertInstanceOf(event_factory_interface::class, $factory);
|
2017-03-08 18:19:55 +08:00
|
|
|
// Test that the container is returning the right implementation.
|
2017-02-15 03:15:06 +08:00
|
|
|
$this->assertInstanceOf(event_factory::class, $factory);
|
|
|
|
|
2017-03-08 18:19:55 +08:00
|
|
|
// Test that getting the factory a second time returns the same instance.
|
2017-04-03 12:53:38 +08:00
|
|
|
$factory2 = \core_calendar\local\event\container::get_event_factory();
|
2017-02-15 03:15:06 +08:00
|
|
|
$this->assertTrue($factory === $factory2);
|
2017-03-08 18:19:55 +08:00
|
|
|
}
|
2017-02-15 03:15:06 +08:00
|
|
|
|
2017-03-08 18:19:55 +08:00
|
|
|
/**
|
|
|
|
* Test that the event factory correctly creates instances of events.
|
|
|
|
*
|
|
|
|
* @dataProvider get_event_factory_testcases()
|
|
|
|
* @param \stdClass $dbrow Row from the "database".
|
|
|
|
*/
|
|
|
|
public function test_event_factory_create_instance($dbrow) {
|
|
|
|
$legacyevent = $this->create_event($dbrow);
|
2017-04-03 12:53:38 +08:00
|
|
|
$factory = \core_calendar\local\event\container::get_event_factory();
|
2017-03-08 18:19:55 +08:00
|
|
|
$course = $this->getDataGenerator()->create_course();
|
|
|
|
$generator = $this->getDataGenerator()->get_plugin_generator('mod_assign');
|
|
|
|
$moduleinstance = $generator->create_instance(['course' => $course->id]);
|
|
|
|
|
|
|
|
// Set some of the fake dbrow properties to match real data in the DB
|
|
|
|
// this is necessary as the factory hides things that modinfo doesn't
|
|
|
|
// know about.
|
2017-02-15 03:15:06 +08:00
|
|
|
$dbrow->id = $legacyevent->id;
|
2017-03-08 18:19:55 +08:00
|
|
|
$dbrow->courseid = $course->id;
|
|
|
|
$dbrow->instance = $moduleinstance->id;
|
|
|
|
$dbrow->modulename = 'assign';
|
2017-02-15 03:15:06 +08:00
|
|
|
$event = $factory->create_instance($dbrow);
|
|
|
|
|
2017-03-08 18:19:55 +08:00
|
|
|
// Test that the factory is returning the right type.
|
2017-02-15 03:15:06 +08:00
|
|
|
$this->assertInstanceOf(event_interface::class, $event);
|
2017-03-08 18:19:55 +08:00
|
|
|
// Test that the factory is returning the right implementation.
|
2017-02-15 03:15:06 +08:00
|
|
|
$this->assertTrue($event instanceof event || $event instanceof action_event);
|
|
|
|
|
2017-03-08 18:19:55 +08:00
|
|
|
// Test that the event created has the correct properties.
|
2017-02-15 03:15:06 +08:00
|
|
|
$this->assertEquals($legacyevent->id, $event->get_id());
|
|
|
|
$this->assertEquals($dbrow->description, $event->get_description()->get_value());
|
|
|
|
$this->assertEquals($dbrow->format, $event->get_description()->get_format());
|
2017-04-24 14:09:09 +08:00
|
|
|
$this->assertEquals($dbrow->courseid, $event->get_course()->get('id'));
|
2017-02-15 03:15:06 +08:00
|
|
|
|
|
|
|
if ($dbrow->groupid == 0) {
|
|
|
|
$this->assertNull($event->get_group());
|
|
|
|
} else {
|
2017-04-24 14:09:09 +08:00
|
|
|
$this->assertEquals($dbrow->groupid, $event->get_group()->get('id'));
|
2017-02-15 03:15:06 +08:00
|
|
|
}
|
|
|
|
|
2017-04-24 14:09:09 +08:00
|
|
|
$this->assertEquals($dbrow->userid, $event->get_user()->get('id'));
|
2017-02-15 03:15:06 +08:00
|
|
|
$this->assertEquals($legacyevent->id, $event->get_repeats()->get_id());
|
|
|
|
$this->assertEquals($dbrow->modulename, $event->get_course_module()->get('modname'));
|
|
|
|
$this->assertEquals($dbrow->instance, $event->get_course_module()->get('instance'));
|
|
|
|
$this->assertEquals($dbrow->timestart, $event->get_times()->get_start_time()->getTimestamp());
|
|
|
|
$this->assertEquals($dbrow->timemodified, $event->get_times()->get_modified_time()->getTimestamp());
|
|
|
|
$this->assertEquals($dbrow->timesort, $event->get_times()->get_sort_time()->getTimestamp());
|
|
|
|
|
|
|
|
if ($dbrow->visible == 1) {
|
|
|
|
$this->assertTrue($event->is_visible());
|
|
|
|
} else {
|
|
|
|
$this->assertFalse($event->is_visible());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$dbrow->subscriptionid) {
|
|
|
|
$this->assertNull($event->get_subscription());
|
|
|
|
} else {
|
2017-04-24 14:09:09 +08:00
|
|
|
$this->assertEquals($event->get_subscription()->get('id'));
|
2017-02-15 03:15:06 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-08 18:19:55 +08:00
|
|
|
/**
|
2017-03-21 16:02:56 +08:00
|
|
|
* Test that the event factory deals with invisible modules properly as admin.
|
2017-03-08 18:19:55 +08:00
|
|
|
*
|
|
|
|
* @dataProvider get_event_factory_testcases()
|
|
|
|
* @param \stdClass $dbrow Row from the "database".
|
|
|
|
*/
|
2017-03-24 16:58:54 +08:00
|
|
|
public function test_event_factory_when_module_visibility_is_toggled_as_admin($dbrow) {
|
2017-03-08 18:19:55 +08:00
|
|
|
$legacyevent = $this->create_event($dbrow);
|
2017-04-03 12:53:38 +08:00
|
|
|
$factory = \core_calendar\local\event\container::get_event_factory();
|
2017-03-08 18:19:55 +08:00
|
|
|
$course = $this->getDataGenerator()->create_course();
|
|
|
|
$generator = $this->getDataGenerator()->get_plugin_generator('mod_assign');
|
|
|
|
$moduleinstance = $generator->create_instance(['course' => $course->id]);
|
|
|
|
|
2017-03-21 16:02:56 +08:00
|
|
|
$dbrow->id = $legacyevent->id;
|
|
|
|
$dbrow->courseid = $course->id;
|
|
|
|
$dbrow->instance = $moduleinstance->id;
|
|
|
|
$dbrow->modulename = 'assign';
|
|
|
|
|
|
|
|
set_coursemodule_visible($moduleinstance->cmid, 0);
|
|
|
|
|
|
|
|
$event = $factory->create_instance($dbrow);
|
|
|
|
|
|
|
|
// Test that the factory is returning an event as the admin can see hidden course modules.
|
|
|
|
$this->assertInstanceOf(event_interface::class, $event);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test that the event factory deals with invisible modules properly as a guest.
|
|
|
|
*
|
|
|
|
* @dataProvider get_event_factory_testcases()
|
|
|
|
* @param \stdClass $dbrow Row from the "database".
|
|
|
|
*/
|
2017-03-24 16:58:54 +08:00
|
|
|
public function test_event_factory_when_module_visibility_is_toggled_as_guest($dbrow) {
|
2017-03-21 16:02:56 +08:00
|
|
|
$legacyevent = $this->create_event($dbrow);
|
2017-04-03 12:53:38 +08:00
|
|
|
$factory = \core_calendar\local\event\container::get_event_factory();
|
2017-03-21 16:02:56 +08:00
|
|
|
$course = $this->getDataGenerator()->create_course();
|
|
|
|
$generator = $this->getDataGenerator()->get_plugin_generator('mod_assign');
|
|
|
|
$moduleinstance = $generator->create_instance(['course' => $course->id]);
|
|
|
|
|
|
|
|
$dbrow->id = $legacyevent->id;
|
2017-03-08 18:19:55 +08:00
|
|
|
$dbrow->courseid = $course->id;
|
|
|
|
$dbrow->instance = $moduleinstance->id;
|
|
|
|
$dbrow->modulename = 'assign';
|
|
|
|
|
|
|
|
set_coursemodule_visible($moduleinstance->cmid, 0);
|
2017-03-21 16:02:56 +08:00
|
|
|
|
|
|
|
// Set to a user who can not view hidden course modules.
|
|
|
|
$this->setGuestUser();
|
|
|
|
|
2017-03-08 18:19:55 +08:00
|
|
|
$event = $factory->create_instance($dbrow);
|
2017-03-21 16:02:56 +08:00
|
|
|
|
|
|
|
// Module is invisible to guest users so this should return null.
|
2017-03-08 18:19:55 +08:00
|
|
|
$this->assertNull($event);
|
|
|
|
}
|
|
|
|
|
2017-03-20 16:58:38 +08:00
|
|
|
/**
|
|
|
|
* Test that the event factory deals with completion related events properly.
|
|
|
|
*/
|
2017-03-24 16:58:54 +08:00
|
|
|
public function test_event_factory_with_completion_related_event() {
|
2017-03-20 16:58:38 +08:00
|
|
|
global $CFG;
|
|
|
|
|
|
|
|
$CFG->enablecompletion = true;
|
|
|
|
|
|
|
|
// Create the course we will be using.
|
|
|
|
$course = $this->getDataGenerator()->create_course(array('enablecompletion' => 1));
|
|
|
|
|
|
|
|
// Add the assignment.
|
|
|
|
$generator = $this->getDataGenerator()->get_plugin_generator('mod_assign');
|
|
|
|
$assign = $generator->create_instance(array('course' => $course->id), array('completion' => 1));
|
|
|
|
|
|
|
|
// Create a completion event.
|
|
|
|
$event = new \stdClass();
|
|
|
|
$event->name = 'An event';
|
|
|
|
$event->description = 'Event description';
|
|
|
|
$event->format = FORMAT_HTML;
|
|
|
|
$event->eventtype = \core_completion\api::COMPLETION_EVENT_TYPE_DATE_COMPLETION_EXPECTED;
|
|
|
|
$event->userid = 1;
|
|
|
|
$event->modulename = 'assign';
|
|
|
|
$event->instance = $assign->id;
|
|
|
|
$event->courseid = $course->id;
|
|
|
|
$event->groupid = 0;
|
|
|
|
$event->timestart = time();
|
|
|
|
$event->timesort = time();
|
|
|
|
$event->timemodified = time();
|
|
|
|
$event->timeduration = 0;
|
|
|
|
$event->subscriptionid = null;
|
2017-03-22 23:42:28 +08:00
|
|
|
$event->repeatid = 0;
|
2017-03-20 16:58:38 +08:00
|
|
|
$legacyevent = $this->create_event($event);
|
|
|
|
|
|
|
|
// Update the id of the event that was created.
|
|
|
|
$event->id = $legacyevent->id;
|
|
|
|
|
|
|
|
// Create the factory we are going to be testing the behaviour of.
|
2017-04-03 12:53:38 +08:00
|
|
|
$factory = \core_calendar\local\event\container::get_event_factory();
|
2017-03-20 16:58:38 +08:00
|
|
|
|
|
|
|
// Check that we get the correct instance.
|
|
|
|
$this->assertInstanceOf(event_interface::class, $factory->create_instance($event));
|
|
|
|
|
|
|
|
// Now, disable completion.
|
|
|
|
$CFG->enablecompletion = false;
|
|
|
|
|
|
|
|
// The result should now be null since we have disabled completion.
|
|
|
|
$this->assertNull($factory->create_instance($event));
|
|
|
|
}
|
|
|
|
|
2017-05-01 07:56:34 +00:00
|
|
|
/**
|
|
|
|
* Test that the event factory only returns an event if the logged in user
|
|
|
|
* is enrolled in the course.
|
|
|
|
*/
|
|
|
|
public function test_event_factory_unenrolled_user() {
|
|
|
|
$user = $this->getDataGenerator()->create_user();
|
|
|
|
// Create the course we will be using.
|
|
|
|
$course = $this->getDataGenerator()->create_course();
|
|
|
|
|
|
|
|
// Add the assignment.
|
|
|
|
$generator = $this->getDataGenerator()->get_plugin_generator('mod_lesson');
|
|
|
|
$lesson = $generator->create_instance(array('course' => $course->id));
|
|
|
|
|
|
|
|
// Create a user override event for the lesson.
|
|
|
|
$event = new \stdClass();
|
|
|
|
$event->name = 'An event';
|
|
|
|
$event->description = 'Event description';
|
|
|
|
$event->format = FORMAT_HTML;
|
|
|
|
$event->eventtype = 'close';
|
|
|
|
$event->userid = $user->id;
|
|
|
|
$event->modulename = 'lesson';
|
|
|
|
$event->instance = $lesson->id;
|
|
|
|
$event->courseid = $course->id;
|
|
|
|
$event->groupid = 0;
|
|
|
|
$event->timestart = time();
|
|
|
|
$event->timesort = time();
|
|
|
|
$event->timemodified = time();
|
|
|
|
$event->timeduration = 0;
|
|
|
|
$event->subscriptionid = null;
|
|
|
|
$event->repeatid = 0;
|
|
|
|
$legacyevent = $this->create_event($event);
|
|
|
|
|
|
|
|
// Update the id of the event that was created.
|
|
|
|
$event->id = $legacyevent->id;
|
|
|
|
|
|
|
|
// Set the logged in user to the one we created.
|
|
|
|
$this->setUser($user);
|
|
|
|
|
|
|
|
// Create the factory we are going to be testing the behaviour of.
|
|
|
|
$factory = \core_calendar\local\event\container::get_event_factory();
|
|
|
|
|
|
|
|
// The result should be null since the user is not enrolled in the
|
|
|
|
// course the event is for.
|
|
|
|
$this->assertNull($factory->create_instance($event));
|
|
|
|
|
|
|
|
// Now enrol the user in the course.
|
|
|
|
$this->getDataGenerator()->enrol_user($user->id, $course->id);
|
|
|
|
|
|
|
|
// Check that we get the correct instance.
|
|
|
|
$this->assertInstanceOf(event_interface::class, $factory->create_instance($event));
|
|
|
|
}
|
|
|
|
|
2017-02-15 03:15:06 +08:00
|
|
|
/**
|
|
|
|
* Test getting the event mapper.
|
|
|
|
*/
|
|
|
|
public function test_get_event_mapper() {
|
2017-04-03 12:53:38 +08:00
|
|
|
$mapper = \core_calendar\local\event\container::get_event_mapper();
|
2017-02-15 03:15:06 +08:00
|
|
|
|
|
|
|
$this->assertInstanceOf(event_mapper_interface::class, $mapper);
|
|
|
|
$this->assertInstanceOf(event_mapper::class, $mapper);
|
|
|
|
|
2017-04-03 12:53:38 +08:00
|
|
|
$mapper2 = \core_calendar\local\event\container::get_event_mapper();
|
2017-02-15 03:15:06 +08:00
|
|
|
|
|
|
|
$this->assertTrue($mapper === $mapper2);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test cases for the get event factory test.
|
|
|
|
*/
|
|
|
|
public function get_event_factory_testcases() {
|
|
|
|
return [
|
|
|
|
'Data set 1' => [
|
|
|
|
'dbrow' => (object)[
|
|
|
|
'name' => 'Test event',
|
|
|
|
'description' => 'Hello',
|
|
|
|
'format' => 1,
|
|
|
|
'courseid' => 1,
|
|
|
|
'groupid' => 0,
|
|
|
|
'userid' => 1,
|
|
|
|
'repeatid' => 0,
|
|
|
|
'modulename' => 'assign',
|
|
|
|
'instance' => 2,
|
|
|
|
'eventtype' => 'due',
|
|
|
|
'timestart' => 1486396800,
|
|
|
|
'timeduration' => 0,
|
|
|
|
'timesort' => 1486396800,
|
|
|
|
'visible' => 1,
|
|
|
|
'timemodified' => 1485793098,
|
|
|
|
'subscriptionid' => null
|
|
|
|
]
|
|
|
|
],
|
|
|
|
|
|
|
|
'Data set 2' => [
|
|
|
|
'dbrow' => (object)[
|
|
|
|
'name' => 'Test event',
|
|
|
|
'description' => 'Hello',
|
|
|
|
'format' => 1,
|
|
|
|
'courseid' => 1,
|
|
|
|
'groupid' => 1,
|
|
|
|
'userid' => 1,
|
2017-03-22 23:42:28 +08:00
|
|
|
'repeatid' => 0,
|
2017-02-15 03:15:06 +08:00
|
|
|
'modulename' => 'assign',
|
|
|
|
'instance' => 2,
|
|
|
|
'eventtype' => 'due',
|
|
|
|
'timestart' => 1486396800,
|
|
|
|
'timeduration' => 0,
|
|
|
|
'timesort' => 1486396800,
|
|
|
|
'visible' => 1,
|
|
|
|
'timemodified' => 1485793098,
|
|
|
|
'subscriptionid' => null
|
|
|
|
]
|
|
|
|
]
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper function to create calendar events using the old code.
|
|
|
|
*
|
|
|
|
* @param array $properties A list of calendar event properties to set
|
2017-03-29 13:33:11 +08:00
|
|
|
* @return calendar_event|bool
|
2017-02-15 03:15:06 +08:00
|
|
|
*/
|
|
|
|
protected function create_event($properties = []) {
|
|
|
|
$record = new \stdClass();
|
|
|
|
$record->name = 'event name';
|
|
|
|
$record->eventtype = 'global';
|
|
|
|
$record->timestart = time();
|
|
|
|
$record->timeduration = 0;
|
|
|
|
$record->timesort = 0;
|
|
|
|
$record->type = 1;
|
|
|
|
$record->courseid = 0;
|
|
|
|
|
|
|
|
foreach ($properties as $name => $value) {
|
|
|
|
$record->$name = $value;
|
|
|
|
}
|
|
|
|
|
2017-03-29 13:33:11 +08:00
|
|
|
$event = new calendar_event($record);
|
2017-02-15 03:15:06 +08:00
|
|
|
return $event->create($record, false);
|
|
|
|
}
|
|
|
|
}
|