Proyectos de Subversion Moodle

Rev

Rev 1 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
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
namespace core;
18
 
19
use core_requirejs;
20
 
21
/**
22
 * Unit tests for requirejs.
23
 *
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
28
 */
29
class requirejs_test extends \advanced_testcase {
30
 
31
    /**
32
     * Test requirejs loader
33
     */
11 efrain 34
    public function test_requirejs(): void {
1 efrain 35
        global $CFG;
36
 
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);
41
 
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);
46
 
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);
57
            }
58
 
59
            $this->assertStringContainsString('.min', $path);
60
        }
61
 
62
    }
63
}