MDL-58454 badges: Fix some minor errors for Open Badges v2
[moodle.git] / lib / tests / event_course_module_instance_list_viewed.php
blob3789ab7625c3a7d15860ee5ad07d030840bb90d1
1 <?php
2 // This file is part of Moodle - http://moodle.org/
3 //
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
17 /**
18 * Tests for base course module instance list viewed event.
20 * @package core
21 * @category phpunit
22 * @copyright 2013 Ankit Agarwal
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
26 defined('MOODLE_INTERNAL') || die();
27 require_once(__DIR__.'/fixtures/event_mod_fixtures.php');
29 /**
30 * Class core_event_course_module_instance_list_viewed_testcase
32 * Tests for event \core\event\course_module_instance_list_viewed_testcase
34 class core_event_course_module_instance_list_viewed_testcase extends advanced_testcase {
36 /**
37 * Test event properties and methods.
39 public function test_event_attributes() {
41 $this->resetAfterTest();
42 $course = $this->getDataGenerator()->create_course();
43 $context = context_course::instance($course->id);
45 // Trigger the page view event.
46 $sink = $this->redirectEvents();
47 $event = \mod_unittests\event\course_module_instance_list_viewed::create(array(
48 'context' => $context,
49 ));
50 $event->trigger();
51 $result = $sink->get_events();
52 $event = reset($result);
53 $sink->close();
55 // Test event data.
56 $legacydata = array($course->id, 'unittests', 'view all', 'index.php?id=' . $course->id, '');
57 $this->assertEventLegacyLogData($legacydata, $event);
58 $url = new moodle_url('/mod/unittests/index.php', array('id' => $course->id));
59 $this->assertEquals($url, $event->get_url());
60 $this->assertEventContextNotUsed($event);
64 /**
65 * Test custom validations of the event.
67 public function test_event_validations() {
68 try {
69 \mod_unittests\event\course_module_instance_list_viewed::create(array('context' => context_system::instance()));
70 $this->fail('Event validation should not allow course_module_instance_list_viewed event to be triggered without outside
71 course context');
72 } catch (Exception $e) {
73 $this->assertInstanceOf('coding_exception', $e);