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 |
* Content bank uploaded event tests.
|
|
|
19 |
*
|
|
|
20 |
* @package core
|
|
|
21 |
* @category test
|
|
|
22 |
* @copyright 2020 Amaia Anabitarte <amaia@moodle.com>
|
|
|
23 |
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
24 |
*/
|
|
|
25 |
|
|
|
26 |
namespace core\event;
|
|
|
27 |
|
|
|
28 |
use core_contentbank\contentbank;
|
|
|
29 |
|
|
|
30 |
/**
|
|
|
31 |
* Test for content bank uploaded event.
|
|
|
32 |
*
|
|
|
33 |
* @package core
|
|
|
34 |
* @category test
|
|
|
35 |
* @copyright 2020 Amaia Anabitarte <amaia@moodle.com>
|
|
|
36 |
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
37 |
* @coversDefaultClass \core\event\contentbank_content_uploaded
|
|
|
38 |
*/
|
|
|
39 |
class contentbank_content_uploaded_test extends \advanced_testcase {
|
|
|
40 |
|
|
|
41 |
/**
|
|
|
42 |
* Setup to ensure that fixtures are loaded.
|
|
|
43 |
*/
|
|
|
44 |
public static function setUpBeforeClass(): void {
|
|
|
45 |
global $CFG;
|
|
|
46 |
|
|
|
47 |
require_once($CFG->dirroot . '/contentbank/tests/fixtures/testable_contenttype.php');
|
|
|
48 |
require_once($CFG->dirroot . '/contentbank/tests/fixtures/testable_content.php');
|
|
|
49 |
}
|
|
|
50 |
|
|
|
51 |
/**
|
|
|
52 |
* Test the content created event.
|
|
|
53 |
*
|
|
|
54 |
* @covers ::create_from_record
|
|
|
55 |
*/
|
|
|
56 |
public function test_content_created() {
|
|
|
57 |
global $USER, $CFG;
|
|
|
58 |
|
|
|
59 |
$this->resetAfterTest();
|
|
|
60 |
$this->setAdminUser();
|
|
|
61 |
$systemcontext = \context_system::instance();
|
|
|
62 |
|
|
|
63 |
// Create a dummy H5P file.
|
|
|
64 |
$dummyh5p = array(
|
|
|
65 |
'contextid' => $systemcontext->id,
|
|
|
66 |
'component' => 'contentbank',
|
|
|
67 |
'filearea' => 'public',
|
|
|
68 |
'itemid' => 1,
|
|
|
69 |
'filepath' => '/',
|
|
|
70 |
'filename' => 'dummy_h5p.h5p'
|
|
|
71 |
);
|
|
|
72 |
$path = $CFG->dirroot . '/h5p/tests/fixtures/greeting-card.h5p';
|
|
|
73 |
$dummyh5pfile = \core_h5p\helper::create_fake_stored_file_from_path($path);
|
|
|
74 |
|
|
|
75 |
// Trigger and capture the event when creating content from a file.
|
|
|
76 |
$sink = $this->redirectEvents();
|
|
|
77 |
$cb = new contentbank();
|
|
|
78 |
$cb->create_content_from_file($systemcontext, $USER->id, $dummyh5pfile);
|
|
|
79 |
|
|
|
80 |
// Both uploaded and created events are raised.
|
|
|
81 |
$events = $sink->get_events();
|
|
|
82 |
$this->assertCount(2, $events);
|
|
|
83 |
|
|
|
84 |
// First the created content event has been raised.
|
|
|
85 |
$event = array_shift($events);
|
|
|
86 |
$this->assertInstanceOf('\core\event\contentbank_content_created', $event);
|
|
|
87 |
$this->assertEquals($systemcontext, $event->get_context());
|
|
|
88 |
|
|
|
89 |
// Second the uploaded content event has been raised.
|
|
|
90 |
$event = array_pop($events);
|
|
|
91 |
$this->assertInstanceOf('\core\event\contentbank_content_uploaded', $event);
|
|
|
92 |
$this->assertEquals($systemcontext, $event->get_context());
|
|
|
93 |
}
|
|
|
94 |
}
|