Merge "Change 'editfont' default preference to 'monospace'"
[lhc/web/wiklou.git] / tests / qunit / data / load.mock.php
1 <?php
2 /**
3 * Mock load.php with pre-defined test modules.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 * @package MediaWiki
22 * @author Lupo
23 * @since 1.20
24 */
25 header( 'Content-Type: text/javascript; charset=utf-8' );
26
27 require_once __DIR__ . '/../../../includes/json/FormatJson.php';
28 require_once __DIR__ . '/../../../includes/Xml.php';
29
30 $moduleImplementations = [
31 'testUsesMissing' => "
32 mw.loader.implement( 'testUsesMissing', function () {
33 QUnit.ok( false, 'Module usesMissing script should not run.' );
34 QUnit.start();
35 }, {}, {});
36 ",
37
38 'testUsesNestedMissing' => "
39 mw.loader.implement( 'testUsesNestedMissing', function () {
40 QUnit.ok( false, 'Module testUsesNestedMissing script should not run.' );
41 QUnit.start();
42 }, {}, {});
43 ",
44
45 'testSkipped' => "
46 mw.loader.implement( 'testSkipped', function () {
47 QUnit.ok( false, 'Module testSkipped was supposed to be skipped.' );
48 }, {}, {});
49 ",
50
51 'testNotSkipped' => "
52 mw.loader.implement( 'testNotSkipped', function () {}, {}, {});
53 ",
54
55 'testUsesSkippable' => "
56 mw.loader.implement( 'testUsesSkippable', function () {}, {}, {});
57 ",
58 ];
59
60 $response = '';
61
62 // Only support for non-encoded module names, full module names expected
63 if ( isset( $_GET['modules'] ) ) {
64 $modules = explode( ',', $_GET['modules'] );
65 foreach ( $modules as $module ) {
66 if ( isset( $moduleImplementations[$module] ) ) {
67 $response .= $moduleImplementations[$module];
68 } else {
69 $response .= Xml::encodeJsCall( 'mw.loader.state', [ $module, 'missing' ], true );
70 }
71 }
72 }
73
74 echo $response;