Merge "Print chained exceptions when maintenance script fails."
[lhc/web/wiklou.git] / maintenance / preprocessorFuzzTest.php
1 <?php
2 /**
3 * Performs fuzz-style testing of MediaWiki's preprocessor.
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 * @ingroup Maintenance
22 */
23
24 use MediaWiki\MediaWikiServices;
25
26 $optionsWithoutArgs = [ 'verbose' ];
27 require_once __DIR__ . '/commandLine.inc';
28
29 $wgHooks['BeforeParserFetchTemplateAndtitle'][] = 'PPFuzzTester::templateHook';
30
31 class PPFuzzTester {
32 public $hairs = [
33 '[[', ']]', '{{', '{{', '}}', '}}', '{{{', '}}}',
34 '<', '>', '<nowiki', '<gallery', '</nowiki>', '</gallery>', '<nOwIkI>', '</NoWiKi>',
35 '<!--', '-->',
36 "\n==", "==\n",
37 '|', '=', "\n", ' ', "\t", "\x7f",
38 '~~', '~~~', '~~~~', 'subst:',
39 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j',
40 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't',
41
42 // extensions
43 // '<ref>', '</ref>', '<references/>',
44 ];
45 public $minLength = 0;
46 public $maxLength = 20;
47 public $maxTemplates = 5;
48 // public $outputTypes = [ 'OT_HTML', 'OT_WIKI', 'OT_PREPROCESS' ];
49 public $entryPoints = [ 'testSrvus', 'testPst', 'testPreprocess' ];
50 public $verbose = false;
51
52 /**
53 * @var bool|PPFuzzTest
54 */
55 private static $currentTest = false;
56
57 function execute() {
58 if ( !file_exists( 'results' ) ) {
59 mkdir( 'results' );
60 }
61 if ( !is_dir( 'results' ) ) {
62 echo "Unable to create 'results' directory\n";
63 exit( 1 );
64 }
65 $overallStart = microtime( true );
66 $reportInterval = 1000;
67 for ( $i = 1; true; $i++ ) {
68 $t = -microtime( true );
69 try {
70 self::$currentTest = new PPFuzzTest( $this );
71 self::$currentTest->execute();
72 $passed = 'passed';
73 } catch ( Exception $e ) {
74 $testReport = self::$currentTest->getReport();
75 $exceptionReport = $e->getText();
76 $hash = md5( $testReport );
77 file_put_contents( "results/ppft-$hash.in", serialize( self::$currentTest ) );
78 file_put_contents( "results/ppft-$hash.fail",
79 "Input:\n$testReport\n\nException report:\n$exceptionReport\n" );
80 print "Test $hash failed\n";
81 $passed = 'failed';
82 }
83 $t += microtime( true );
84
85 if ( $this->verbose ) {
86 printf( "Test $passed in %.3f seconds\n", $t );
87 print self::$currentTest->getReport();
88 }
89
90 $reportMetric = ( microtime( true ) - $overallStart ) / $i * $reportInterval;
91 if ( $reportMetric > 25 ) {
92 if ( substr( $reportInterval, 0, 1 ) === '1' ) {
93 $reportInterval /= 2;
94 } else {
95 $reportInterval /= 5;
96 }
97 } elseif ( $reportMetric < 4 ) {
98 if ( substr( $reportInterval, 0, 1 ) === '1' ) {
99 $reportInterval *= 5;
100 } else {
101 $reportInterval *= 2;
102 }
103 }
104 if ( $i % $reportInterval == 0 ) {
105 print "$i tests done\n";
106 /*
107 $testReport = self::$currentTest->getReport();
108 $filename = 'results/ppft-' . md5( $testReport ) . '.pass';
109 file_put_contents( $filename, "Input:\n$testReport\n" );*/
110 }
111 }
112 }
113
114 function makeInputText( $max = false ) {
115 if ( $max === false ) {
116 $max = $this->maxLength;
117 }
118 $length = mt_rand( $this->minLength, $max );
119 $s = '';
120 for ( $i = 0; $i < $length; $i++ ) {
121 $hairIndex = mt_rand( 0, count( $this->hairs ) - 1 );
122 $s .= $this->hairs[$hairIndex];
123 }
124 // Send through the UTF-8 normaliser
125 // This resolves a few differences between the old preprocessor and the
126 // XML-based one, which doesn't like illegals and converts line endings.
127 // It's done by the MW UI, so it's a reasonably legitimate thing to do.
128 $s = MediaWikiServices::getInstance()->getContentLanguage()->normalize( $s );
129
130 return $s;
131 }
132
133 function makeTitle() {
134 return Title::newFromText( mt_rand( 0, 1000000 ), mt_rand( 0, 10 ) );
135 }
136
137 /*
138 function pickOutputType() {
139 $count = count( $this->outputTypes );
140 return $this->outputTypes[ mt_rand( 0, $count - 1 ) ];
141 }*/
142
143 function pickEntryPoint() {
144 $count = count( $this->entryPoints );
145
146 return $this->entryPoints[mt_rand( 0, $count - 1 )];
147 }
148 }
149
150 class PPFuzzTest {
151 public $templates, $mainText, $title, $entryPoint, $output;
152
153 function __construct( $tester ) {
154 global $wgMaxSigChars;
155 $this->parent = $tester;
156 $this->mainText = $tester->makeInputText();
157 $this->title = $tester->makeTitle();
158 // $this->outputType = $tester->pickOutputType();
159 $this->entryPoint = $tester->pickEntryPoint();
160 $this->nickname = $tester->makeInputText( $wgMaxSigChars + 10 );
161 $this->fancySig = (bool)mt_rand( 0, 1 );
162 $this->templates = [];
163 }
164
165 /**
166 * @param Title $title
167 * @return array
168 */
169 function templateHook( $title ) {
170 $titleText = $title->getPrefixedDBkey();
171
172 if ( !isset( $this->templates[$titleText] ) ) {
173 $finalTitle = $title;
174 if ( count( $this->templates ) >= $this->parent->maxTemplates ) {
175 // Too many templates
176 $text = false;
177 } else {
178 if ( !mt_rand( 0, 1 ) ) {
179 // Redirect
180 $finalTitle = $this->parent->makeTitle();
181 }
182 if ( !mt_rand( 0, 5 ) ) {
183 // Doesn't exist
184 $text = false;
185 } else {
186 $text = $this->parent->makeInputText();
187 }
188 }
189 $this->templates[$titleText] = [
190 'text' => $text,
191 'finalTitle' => $finalTitle ];
192 }
193
194 return $this->templates[$titleText];
195 }
196
197 function execute() {
198 global $wgUser;
199
200 $wgUser = new PPFuzzUser;
201 $wgUser->mName = 'Fuzz';
202 $wgUser->mFrom = 'name';
203 $wgUser->ppfz_test = $this;
204
205 $options = ParserOptions::newFromUser( $wgUser );
206 $options->setTemplateCallback( [ $this, 'templateHook' ] );
207 $options->setTimestamp( wfTimestampNow() );
208 $this->output = call_user_func(
209 [ MediaWikiServices::getInstance()->getParser(), $this->entryPoint ],
210 $this->mainText,
211 $this->title,
212 $options
213 );
214
215 return $this->output;
216 }
217
218 function getReport() {
219 $s = "Title: " . $this->title->getPrefixedDBkey() . "\n" .
220 // "Output type: {$this->outputType}\n" .
221 "Entry point: {$this->entryPoint}\n" .
222 "User: " . ( $this->fancySig ? 'fancy' : 'no-fancy' ) .
223 ' ' . var_export( $this->nickname, true ) . "\n" .
224 "Main text: " . var_export( $this->mainText, true ) . "\n";
225 foreach ( $this->templates as $titleText => $template ) {
226 $finalTitle = $template['finalTitle'];
227 if ( $finalTitle != $titleText ) {
228 $s .= "[[$titleText]] -> [[$finalTitle]]: " . var_export( $template['text'], true ) . "\n";
229 } else {
230 $s .= "[[$titleText]]: " . var_export( $template['text'], true ) . "\n";
231 }
232 }
233 $s .= "Output: " . var_export( $this->output, true ) . "\n";
234
235 return $s;
236 }
237 }
238
239 class PPFuzzUser extends User {
240 public $ppfz_test, $mDataLoaded;
241
242 function load( $flags = null ) {
243 if ( $this->mDataLoaded ) {
244 return;
245 }
246 $this->mDataLoaded = true;
247 $this->loadDefaults( $this->mName );
248 }
249
250 function getOption( $oname, $defaultOverride = null, $ignoreHidden = false ) {
251 if ( $oname === 'fancysig' ) {
252 return $this->ppfz_test->fancySig;
253 } elseif ( $oname === 'nickname' ) {
254 return $this->ppfz_test->nickname;
255 } else {
256 return parent::getOption( $oname, $defaultOverride, $ignoreHidden );
257 }
258 }
259 }
260
261 ini_set( 'memory_limit', '50M' );
262 if ( isset( $args[0] ) ) {
263 $testText = file_get_contents( $args[0] );
264 if ( !$testText ) {
265 print "File not found\n";
266 exit( 1 );
267 }
268 $test = unserialize( $testText );
269 $result = $test->execute();
270 print "Test passed.\n";
271 } else {
272 $tester = new PPFuzzTester;
273 $tester->verbose = isset( $options['verbose'] );
274 $tester->execute();
275 }