Merge branch 'MDL-62364_master' of git://github.com/markn86/moodle

This commit is contained in:
David Monllao 2018-05-09 12:29:17 +02:00 committed by Jun Pataleta
commit a49a438536
2 changed files with 22 additions and 0 deletions

View File

@ -58,6 +58,11 @@ class notification_sent extends base {
$userfromid = 0;
}
// If the courseid is null, then set it to the site id.
if (is_null($courseid)) {
$courseid = SITEID;
}
$event = self::create(
[
'objectid' => $notificationid,

View File

@ -484,6 +484,23 @@ class core_message_events_testcase extends core_message_messagelib_testcase {
$this->assertEquals($url, $event->get_url());
}
/**
* Test the notification sent event when null passed as course.
*/
public function test_notification_sent_with_null_course() {
$event = \core\event\notification_sent::create_from_ids(1, 1, 1, null);
// Trigger and capture the event.
$sink = $this->redirectEvents();
$event->trigger();
$events = $sink->get_events();
$event = reset($events);
// Check that the event data is valid.
$this->assertInstanceOf('\core\event\notification_sent', $event);
$this->assertEquals(SITEID, $event->other['courseid']);
}
/**
* Test the notification viewed event.
*/