Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 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.
13
//
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/>.
16
 
17
/**
18
 * Tests for base course module viewed event.
19
 *
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
24
 */
25
 
26
defined('MOODLE_INTERNAL') || die();
27
require_once(__DIR__.'/fixtures/event_fixtures.php');
28
 
29
/**
30
 * Class core_event_course_module_viewed_testcase
31
 *
32
 * Tests for event \core\event\course_module_viewed
33
 */
34
class core_event_course_module_viewed_testcase extends advanced_testcase {
35
 
36
    /**
37
     * Test event properties and methods.
38
     */
39
    public function test_event_attributes() {
40
 
41
        $this->resetAfterTest();
42
        $course = $this->getDataGenerator()->create_course();
43
        $record = new stdClass();
44
        $record->course = $course->id;
45
        $feed = $this->getDataGenerator()->create_module('feedback', $record);
46
        $cm = get_coursemodule_from_instance('feedback', $feed->id);
47
        $context = context_module::instance($cm->id);
48
 
49
        // Trigger the page view event.
50
        $sink = $this->redirectEvents();
51
        $pageevent = \core_tests\event\course_module_viewed::create(array(
52
            'context' => $context,
53
            'courseid' => $course->id,
54
            'objectid' => $feed->id
55
        ));
56
        $pageevent->trigger();
57
        $result = $sink->get_events();
58
        $event = reset($result);
59
        $sink->close();
60
 
61
        $this->assertSame('feedback', $event->objecttable);
62
        $url = new moodle_url('/mod/feedback/view.php', array('id' => $cm->id));
63
        $this->assertEquals($url, $event->get_url());
64
        $this->assertEventContextNotUsed($event);
65
 
66
    }
67
 
68
    /**
69
     * Test custom validations of the event.
70
     */
71
    public function test_event_validations() {
72
 
73
        // Make sure objecttable and object id is always set.
74
        try {
75
            \core_tests\event\course_module_viewed_noinit::create(array(
76
                'contextid' => 1,
77
                'courseid' => 2,
78
                'objectid' => 3 ));
79
        } catch (coding_exception $e) {
80
            $this->assertStringContainsString("course_module_viewed event must define objectid and object table.", $e->getMessage());
81
        }
82
 
83
        try {
84
            \core_tests\event\course_module_viewed::create(array(
85
                'contextid' => 1,
86
                'courseid' => 2,
87
            ));
88
        } catch (coding_exception $e) {
89
            $this->assertStringContainsString("course_module_viewed event must define objectid and object table.", $e->getMessage());
90
        }
91
    }
92
}