MediaWiki REL1_33
SpecialJavaScriptTest.php
Go to the documentation of this file.
1<?php
28
29 public function __construct() {
30 parent::__construct( 'JavaScriptTest' );
31 }
32
33 public function execute( $par ) {
34 $out = $this->getOutput();
35
36 $this->setHeaders();
37 $out->disallowUserJs();
38
39 // This special page is disabled by default ($wgEnableJavaScriptTest), and contains
40 // no sensitive data. In order to allow TestSwarm to embed it into a test client window,
41 // we need to allow iframing of this page.
42 $out->allowClickjacking();
43
44 // Sub resource: Internal JavaScript export bundle for QUnit
45 if ( $par === 'qunit/export' ) {
46 $this->exportQUnit();
47 return;
48 }
49
50 // Regular view: QUnit test runner
51 // (Support "/qunit" and "/qunit/plain" for backwards compatibility)
52 if ( $par === null || $par === '' || $par === 'qunit' || $par === 'qunit/plain' ) {
53 $this->plainQUnit();
54 return;
55 }
56
57 // Unknown action
58 $out->setStatusCode( 404 );
59 $out->setPageTitle( $this->msg( 'javascripttest' ) );
60 $out->addHTML(
61 '<div class="error">'
62 . $this->msg( 'javascripttest-pagetext-unknownaction' )
63 ->plaintextParams( $par )->parseAsBlock()
64 . '</div>'
65 );
66 }
67
73 private function getSummaryHtml() {
74 $summary = $this->msg( 'javascripttest-qunit-intro' )
75 ->params( 'https://www.mediawiki.org/wiki/Manual:JavaScript_unit_testing' )
76 ->parseAsBlock();
77 return "<div id=\"mw-javascripttest-summary\">$summary</div>";
78 }
79
90 private function exportQUnit() {
91 $out = $this->getOutput();
92 $out->disable();
93
94 $rl = $out->getResourceLoader();
95
96 $query = [
97 'lang' => $this->getLanguage()->getCode(),
98 'skin' => $this->getSkin()->getSkinName(),
99 'debug' => ResourceLoader::inDebugMode() ? 'true' : 'false',
100 'target' => 'test',
101 ];
102 $embedContext = new ResourceLoaderContext( $rl, new FauxRequest( $query ) );
103 $query['only'] = 'scripts';
104 $startupContext = new ResourceLoaderContext( $rl, new FauxRequest( $query ) );
105
106 $modules = $rl->getTestModuleNames( 'qunit' );
107
108 // Disable autostart because we load modules asynchronously. By default, QUnit would start
109 // at domready when there are no tests loaded and also fire 'QUnit.done' which then instructs
110 // Karma to exit the browser process before the tests even finished loading.
111 $qunitConfig = 'QUnit.config.autostart = false;'
112 . 'if (window.__karma__) {'
113 // karma-qunit's use of autostart=false and QUnit.start conflicts with ours.
114 // Hack around this by replacing 'karma.loaded' with a no-op and perfom its duty of calling
115 // `__karma__.start()` ourselves. See <https://github.com/karma-runner/karma-qunit/issues/27>.
116 . 'window.__karma__.loaded = function () {};'
117 . '}';
118
119 // The below is essentially a pure-javascript version of OutputPage::headElement().
120 $code = $rl->makeModuleResponse( $startupContext, [
121 'startup' => $rl->getModule( 'startup' ),
122 ] );
123 $code .= <<<JAVASCRIPT
124 // Disable module storage.
125 // The unit test for mw.loader.store will enable it
126 // explicitly with a mock timer.
127 mw.loader.store.enabled = false;
129 // The following has to be deferred via RLQ because the startup module is asynchronous.
130 $code .= ResourceLoader::makeLoaderConditionalScript(
131 // Embed page-specific mw.config variables.
132 // The current Special page shouldn't be relevant to tests, but various modules (which
133 // are loaded before the test suites), reference mw.config while initialising.
134 ResourceLoader::makeConfigSetScript( $out->getJSVars() )
135 // Embed private modules as they're not allowed to be loaded dynamically
136 . $rl->makeModuleResponse( $embedContext, [
137 'user.options' => $rl->getModule( 'user.options' ),
138 'user.tokens' => $rl->getModule( 'user.tokens' ),
139 ] )
140 // Load all the test suites
141 . Xml::encodeJsCall( 'mw.loader.load', [ $modules ] )
142 );
143 $encModules = Xml::encodeJsVar( $modules );
144 $code .= ResourceLoader::makeInlineCodeWithModule( 'mediawiki.base', <<<JAVASCRIPT
145 var start = window.__karma__ ? window.__karma__.start : QUnit.start;
146 mw.loader.using( $encModules ).always( start );
147 mw.trackSubscribe( 'resourceloader.exception', function ( topic, err ) {
148 // Things like "dependency missing" or "unknown module".
149 // Re-throw so that they are reported as global exceptions by QUnit and Karma.
150 setTimeout( function () {
151 throw err;
152 } );
153 } );
155 );
156
157 header( 'Content-Type: text/javascript; charset=utf-8' );
158 header( 'Cache-Control: private, no-cache, must-revalidate' );
159 header( 'Pragma: no-cache' );
160 echo $qunitConfig;
161 echo $code;
162 }
163
164 private function plainQUnit() {
165 $out = $this->getOutput();
166 $out->disable();
167
168 $styles = $out->makeResourceLoaderLink( 'jquery.qunit',
170 );
171
172 // Use 'raw' because QUnit loads before ResourceLoader initialises (omit mw.loader.state call)
173 // Use 'test' to ensure OutputPage doesn't use the "async" attribute because QUnit must
174 // load before qunit/export.
175 $scripts = $out->makeResourceLoaderLink( 'jquery.qunit',
177 [ 'raw' => true, 'sync' => true ]
178 );
179
180 $head = implode( "\n", [ $styles, $scripts ] );
181 $summary = $this->getSummaryHtml();
182 $html = <<<HTML
183<!DOCTYPE html>
184<title>QUnit</title>
185$head
186$summary
187<div id="qunit"></div>
188HTML;
189
190 $url = $this->getPageTitle( 'qunit/export' )->getFullURL( [
191 'debug' => ResourceLoader::inDebugMode() ? 'true' : 'false',
192 ] );
193 $html .= "\n" . Html::linkedScript( $url );
194
195 header( 'Content-Type: text/html; charset=utf-8' );
196 echo $html;
197 }
198
199 protected function getGroupName() {
200 return 'other';
201 }
202}
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
WebRequest clone which takes values from a provided array.
Object passed around to modules which contains information about the state of a specific loader reque...
exportQUnit()
Generate self-sufficient JavaScript payload to run the tests elsewhere.
execute( $par)
Default execute method Checks user permissions.
getGroupName()
Under which header this special page is listed in Special:SpecialPages See messages 'specialpages-gro...
getSummaryHtml()
Get summary text wrapped in a container.
Parent class for all special pages.
setHeaders()
Sets headers - this should be called from the execute() method of all derived classes!
getOutput()
Get the OutputPage being used for this instance.
getSkin()
Shortcut to get the skin being used for this instance.
msg( $key)
Wrapper around wfMessage that sets the current context.
getPageTitle( $subpage=false)
Get a self-referential title object.
getLanguage()
Shortcut to get user's language.
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not it can be in the form of< username >< more info > e g for bot passwords intended to be added to log contexts Fields it might only if the login was with a bot password it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out
Definition hooks.txt:855
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not it can be in the form of< username >< more info > e g for bot passwords intended to be added to log contexts Fields it might only if the login was with a bot password it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable & $code
Definition hooks.txt:856
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses & $html
Definition hooks.txt:2011
null for the local wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
Definition hooks.txt:1617
title