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 deleted 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 deleted_test extends \advanced_testcase {
/**
* Setup test.
*/
protected function setUp(): void {
parent::setUp();
autoloader::register();
}
/**
* test_event_h5p_deleted description
* @runInSeparateProcess
*/
public function test_event_h5p_deleted() {
$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);
// 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' => [
'time' => $now
]
];
// Prepare redirect Events.
$sink = $this->redirectEvents();
// Test the event H5P deleted.
$event = h5p_deleted::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($now, $event->other['time']);
}
}