Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found
in /home/monara/public_html/test.athavaneng.com/themes.php on line 99
Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 226
Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 227
Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 228
Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 229
Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 230
Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 231
.
namespace core_h5p\event;
use core_h5p\local\library\autoloader;
/**
* Tests for h5p viewed event.
*
* @package core_h5p
* @category test
* @copyright 2019 Carlos Escobedo
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
* @since Moodle 3.8
*/
class moved_test extends \advanced_testcase {
/**
* Setup test.
*/
protected function setUp(): void {
parent::setUp();
autoloader::register();
}
/**
* test_event_h5p_viewed description
* @runInSeparateProcess
*/
public function test_event_h5p_viewed() {
$this->resetAfterTest(true);
$user = $this->getDataGenerator()->create_user();
$course = $this->getDataGenerator()->create_course();
$page = $this->getDataGenerator()->create_module('page', array('course' => $course->id));
$pagecontext = \context_module::instance($page->cmid);
// Url dummy just for testing proposal.
$url = \moodle_url::make_pluginfile_url(
$pagecontext->id,
\core_h5p\file_storage::COMPONENT,
'unittest',
0,
'/',
'h5pfiletest.h5p'
);
// Dummy H5P id for testing proposal. We don't need a real h5p.
$dummyh5pid = 111;
$now = time();
// Event parameters for testing.
$params = [
'objectid' => $dummyh5pid,
'userid' => $user->id,
'context' => $pagecontext,
'other' => [
'url' => $url->out(),
'time' => $now
]
];
// Prepare redirect Events.
$sink = $this->redirectEvents();
// Test the event H5P viewed.
$event = h5p_viewed::create($params);
$event->trigger();
$result = $sink->get_events();
$event = reset($result);
$sink->close();
// Check the event info.
$this->assertEquals($dummyh5pid, $event->objectid);
$this->assertEquals($user->id, $event->userid);
$this->assertEquals($pagecontext->id, $event->contextid);
$this->assertEquals($url->out(), $event->other['url']);
$this->assertEquals($now, $event->other['time']);
}
}