Search moodle.org's
Developer Documentation

See Release Notes
Long Term Support Release

  • Bug fixes for general core bugs in 4.1.x will end 13 November 2023 (12 months).
  • Bug fixes for security issues in 4.1.x will end 10 November 2025 (36 months).
  • PHP version: minimum PHP 7.4.0 Note: minimum PHP version has increased since Moodle 4.0. PHP 8.0.x is supported too.

Differences Between: [Versions 310 and 401] [Versions 311 and 401] [Versions 39 and 401] [Versions 400 and 401]

   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       */
  34      public function test_requirejs() {
  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  }