weekly back-to-dev release 5.0dev
[moodle.git] / lib / tests / requirejs_test.php
blob98d10fb7bb4886fb36752a449847959dc68aca9a
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.
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/>.
17 namespace core;
19 use core_requirejs;
21 /**
22 * Unit tests for requirejs.
24 * @package core
25 * @author Damyon Wiese <damyon@moodle.com>
26 * @copyright 2016 Damyon Wiese
27 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
29 class requirejs_test extends \advanced_testcase {
31 /**
32 * Test requirejs loader
34 public function test_requirejs(): void {
35 global $CFG;
37 // Find a core module.
38 $result = core_requirejs::find_one_amd_module('core', 'templates');
39 $expected = ['core/templates' => $CFG->dirroot . '/lib/amd/build/templates.min.js'];
40 $this->assertEquals($expected, $result);
42 // Find a subsystem module (none exist yet).
43 $result = core_requirejs::find_one_amd_module('core_group', 'doesnotexist');
44 $expected = [];
45 $this->assertEquals($expected, $result);
47 // Find all modules.
48 $result = core_requirejs::find_all_amd_modules();
49 foreach ($result as $key => $path) {
50 // Lets verify the first part of the key is a valid component name and the second part correctly contains "min" or not.
51 list($component, $template) = explode('/', $key, 2);
52 $dir = \core_component::get_component_directory($component);
53 $this->assertNotEmpty($dir);
54 // Only "core" is allowed to have no _ in component names.
55 if (strpos($component, '_') === false) {
56 $this->assertEquals('core', $component);
59 $this->assertStringContainsString('.min', $path);