Proyectos de Subversion Moodle

Rev

Rev 1 | | Comparar con el anterior | 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
namespace tool_admin_presets\event;
18
 
19
/**
20
 * Tests for the preset_deleted event class.
21
 *
22
 * @package    tool_admin_presets
23
 * @category   test
24
 * @copyright  2021 Sara Arjona (sara@moodle.com)
25
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
26
 * @covers     \tool_admin_presets\event\preset_deleted
27
 */
28
class preset_deleted_test extends \advanced_testcase {
29
 
30
    /**
31
     * Test preset_deleted event.
32
     */
11 efrain 33
    public function test_preset_deleted_event(): void {
1 efrain 34
        $this->resetAfterTest();
35
        $this->setAdminUser();
36
 
37
        // Create a preset.
38
        $generator = $this->getDataGenerator()->get_plugin_generator('core_adminpresets');
39
        $presetid = $generator->create_preset();
40
 
41
        $params = [
42
            'context' => \context_system::instance(),
43
            'objectid' => $presetid,
44
        ];
45
        $event = preset_deleted::create($params);
46
 
47
        // Triggering and capturing the event.
48
        $sink = $this->redirectEvents();
49
        $event->trigger();
50
        $events = $sink->get_events();
51
        $this->assertCount(1, $events);
52
        $event = reset($events);
53
 
54
        // Checking that the event contains the expected values.
55
        $this->assertInstanceOf('\tool_admin_presets\event\preset_deleted', $event);
56
        $this->assertEquals(\context_system::instance(), $event->get_context());
57
        $this->assertEquals($presetid, $event->objectid);
58
    }
59
}