Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.10.x will end 8 November 2021 (12 months).
  • Bug fixes for security issues in 3.10.x will end 9 May 2022 (18 months).
  • PHP version: minimum PHP 7.2.0 Note: minimum PHP version has increased since Moodle 3.8. PHP 7.3.x and 7.4.x are supported too.
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle.  If not, see <http://www.gnu.org/licenses/>.

/**
 * Unit tests for the task that fetch the latest version of H5P content types.
 *
 * @package   core
 * @copyright  2019 Victor Deniz <victor@moodle.com>
 * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
 */

use core_h5p\local\library\autoloader;
use core_h5p\h5p_test_factory;

defined('MOODLE_INTERNAL') || die();

/**
 * Class containing unit tests for the task that fetch the latest version of H5P content types.
 *
 * @package   core
 * @copyright  2019 Victor Deniz <victor@moodle.com>
 * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
 *
 * @runTestsInSeparateProcesses
 */
class h5p_get_content_types_task_testcase extends advanced_testcase {

< protected function setup() {
> protected function setup(): void {
global $CFG; parent::setUp(); autoloader::register(); require_once($CFG->libdir . '/tests/fixtures/testable_core_h5p.php'); } /** * Test task execution * * return void */ public function test_task_execution(): void { if (!PHPUNIT_LONGTEST) { $this->markTestSkipped('PHPUNIT_LONGTEST is not defined'); } $this->resetAfterTest(); // Fetch generator. $generator = \testing_util::get_data_generator(); $h5pgenerator = $generator->get_plugin_generator('core_h5p'); $factory = new h5p_test_factory(); $core = $factory->get_core(); $core->set_endpoint($this->getExternalTestFileUrl('')); $contenttypespending = ['H5P.Accordion']; $h5pgenerator->create_content_types( $contenttypespending, $core); // Mock implementation of \core\task\h5p_get_content_types_task::get_core to avoid external systems. $mocktask = $this->getMockBuilder(\core\task\h5p_get_content_types_task::class) ->setMethods(['get_core']) ->getMock(); $mocktask->expects($this->any()) ->method('get_core') ->willReturn($core); $mocktask->execute(); $this->expectOutputRegex('/1 new content types/'); } }