Create a new $wgUser to initialize default settings properly. Not sure what's the...
[lhc/web/wiklou.git] / maintenance / parserTests.php
1 <?php
2 # Copyright (C) 2004 Brion Vibber <brion@pobox.com>
3 # http://www.mediawiki.org/
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 # 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 # http://www.gnu.org/copyleft/gpl.html
19
20 /**
21 * @todo Make this more independent of the configuration (and if possible the database)
22 * @todo document
23 * @package MediaWiki
24 * @subpackage Maintenance
25 */
26
27 /** */
28 $options = array( 'quick', 'color', 'quiet', 'help' );
29 $optionsWithArgs = array( 'regex' );
30
31 require_once( 'commandLine.inc' );
32 require_once( "$IP/includes/ObjectCache.php" );
33 require_once( "$IP/languages/LanguageUtf8.php" );
34
35 /** */
36 class ParserTest {
37 /**
38 * boolean $color whereas output should be colorized
39 * @access private
40 */
41 var $color;
42
43 /**
44 * boolean $lightcolor whereas output should use light colors
45 * @access private
46 */
47 var $lightcolor;
48
49 /**
50 * Sets terminal colorization and diff/quick modes depending on OS and
51 * command-line options (--color and --quick).
52 *
53 * @access public
54 */
55 function ParserTest() {
56 global $options;
57
58 # Only colorize output if stdout is a terminal.
59 $this->lightcolor = false;
60 $this->color = !wfIsWindows() && posix_isatty(1);
61
62 if( isset( $options['color'] ) ) {
63 switch( $options['color'] ) {
64 case 'no':
65 $this->color = false;
66 break;
67 case 'light':
68 $this->lightcolor = true;
69 # Fall through
70 case 'yes':
71 default:
72 $this->color = true;
73 break;
74 }
75 }
76
77 $this->showDiffs = !isset( $options['quick'] );
78
79 $this->quiet = isset( $options['quiet'] );
80
81 if (isset($options['regex'])) {
82 $this->regex = $options['regex'];
83 } else {
84 # Matches anything
85 $this->regex = '';
86 }
87 }
88
89 /**
90 * Remove last character if it is a newline
91 * @access private
92 */
93 function chomp($s) {
94 if (substr($s, -1) === "\n") {
95 return substr($s, 0, -1);
96 }
97 else {
98 return $s;
99 }
100 }
101
102 /**
103 * Run a series of tests listed in the given text file.
104 * Each test consists of a brief description, wikitext input,
105 * and the expected HTML output.
106 *
107 * Prints status updates on stdout and counts up the total
108 * number and percentage of passed tests.
109 *
110 * @param string $filename
111 * @return bool True if passed all tests, false if any tests failed.
112 * @access public
113 */
114 function runTestsFromFile( $filename ) {
115 $infile = fopen( $filename, 'rt' );
116 if( !$infile ) {
117 die( "Couldn't open parserTests.txt\n" );
118 }
119
120 $data = array();
121 $section = null;
122 $success = 0;
123 $total = 0;
124 $n = 0;
125 while( false !== ($line = fgets( $infile ) ) ) {
126 $n++;
127 if( preg_match( '/^!!\s*(\w+)/', $line, $matches ) ) {
128 $section = strtolower( $matches[1] );
129 if( $section == 'endarticle') {
130 if( !isset( $data['text'] ) ) {
131 die( "'endarticle' without 'text' at line $n\n" );
132 }
133 if( !isset( $data['article'] ) ) {
134 die( "'endarticle' without 'article' at line $n\n" );
135 }
136 $this->addArticle($this->chomp($data['article']), $this->chomp($data['text']), $n);
137 $data = array();
138 $section = null;
139 continue;
140 }
141 if( $section == 'end' ) {
142 if( !isset( $data['test'] ) ) {
143 die( "'end' without 'test' at line $n\n" );
144 }
145 if( !isset( $data['input'] ) ) {
146 die( "'end' without 'input' at line $n\n" );
147 }
148 if( !isset( $data['result'] ) ) {
149 die( "'end' without 'result' at line $n\n" );
150 }
151 if( !isset( $data['options'] ) ) {
152 $data['options'] = '';
153 }
154 else {
155 $data['options'] = $this->chomp( $data['options'] );
156 }
157 if (preg_match('/\\bdisabled\\b/i', $data['options'])
158 || !preg_match("/{$this->regex}/i", $data['test'])) {
159 # disabled test
160 $data = array();
161 $section = null;
162 continue;
163 }
164 if( $this->runTest(
165 $this->chomp( $data['test'] ),
166 $this->chomp( $data['input'] ),
167 $this->chomp( $data['result'] ),
168 $this->chomp( $data['options'] ) ) ) {
169 $success++;
170 }
171 $total++;
172 $data = array();
173 $section = null;
174 continue;
175 }
176 if ( isset ($data[$section] ) ) {
177 die ( "duplicate section '$section' at line $n\n" );
178 }
179 $data[$section] = '';
180 continue;
181 }
182 if( $section ) {
183 $data[$section] .= $line;
184 }
185 }
186 if( $total > 0 ) {
187 $ratio = IntVal( 100.0 * $success / $total );
188 print $this->termColor( 1 ) . "\nPassed $success of $total tests ($ratio%) ";
189 if( $success == $total ) {
190 print $this->termColor( 32 ) . "PASSED!";
191 } else {
192 print $this->termColor( 31 ) . "FAILED!";
193 }
194 print $this->termReset() . "\n";
195 return ($success == $total);
196 } else {
197 die( "No tests found.\n" );
198 }
199 }
200
201 /**
202 * Run a given wikitext input through a freshly-constructed wiki parser,
203 * and compare the output against the expected results.
204 * Prints status and explanatory messages to stdout.
205 *
206 * @param string $input Wikitext to try rendering
207 * @param string $result Result to output
208 * @return bool
209 */
210 function runTest( $desc, $input, $result, $opts ) {
211 if( !$this->quiet ) {
212 $this->showTesting( $desc );
213 }
214
215 $this->setupGlobals($opts);
216
217 $user =& new User();
218 $options =& ParserOptions::newFromUser( $user );
219
220 if (preg_match('/\\bmath\\b/i', $opts)) {
221 # XXX this should probably be done by the ParserOptions
222 require_once('Math.php');
223
224 $options->setUseTex(true);
225 }
226
227 if (preg_match('/title=\[\[(.*)\]\]/', $opts, $m)) {
228 $titleText = $m[1];
229 }
230 else {
231 $titleText = 'Parser test';
232 }
233
234 $parser =& new Parser();
235 $title =& Title::makeTitle( NS_MAIN, $titleText );
236
237 if (preg_match('/\\bpst\\b/i', $opts)) {
238 $out = $parser->preSaveTransform( $input, $title, $user, $options );
239 } elseif (preg_match('/\\bmsg\\b/i', $opts)) {
240 $out = $parser->transformMsg( $input, $options );
241 } else {
242 $output =& $parser->parse( $input, $title, $options );
243 $out = $output->getText();
244
245 if (preg_match('/\\bill\\b/i', $opts)) {
246 $out = $this->tidy( implode( ' ', $output->getLanguageLinks() ) );
247 } else if (preg_match('/\\bcat\\b/i', $opts)) {
248 $out = $this->tidy ( implode( ' ', $output->getCategoryLinks() ) );
249 }
250
251 $result = $this->tidy($result);
252 }
253
254 $this->teardownGlobals();
255
256 if( $result === $out ) {
257 return $this->showSuccess( $desc );
258 } else {
259 return $this->showFailure( $desc, $result, $out );
260 }
261 }
262
263 /**
264 * Set up the global variables for a consistent environment for each test.
265 * Ideally this should replace the global configuration entirely.
266 *
267 * @access private
268 */
269 function setupGlobals($opts = '') {
270 # Save the prefixed / quoted table names for later use when we make the temporaries.
271 $db =& wfGetDB( DB_READ );
272 $this->oldTableNames = array();
273 foreach( $this->listTables() as $table ) {
274 $this->oldTableNames[$table] = $db->tableName( $table );
275 }
276 if( !isset( $this->uploadDir ) ) {
277 $this->uploadDir = $this->setupUploadDir();
278 }
279
280 $settings = array(
281 'wgServer' => 'http://localhost',
282 'wgScript' => '/index.php',
283 'wgScriptPath' => '/',
284 'wgArticlePath' => '/wiki/$1',
285 'wgUploadPath' => '/images',
286 'wgUploadDirectory' => $this->uploadDir,
287 'wgStyleSheetPath' => '/skins',
288 'wgSitename' => 'MediaWiki',
289 'wgLanguageCode' => 'en',
290 'wgContLanguageCode' => 'en',
291 'wgUseLatin1' => false,
292 'wgDBprefix' => 'parsertest',
293 'wgDefaultUserOptions' => array(),
294
295 'wgLoadBalancer' => LoadBalancer::newFromParams( $GLOBALS['wgDBservers'] ),
296 'wgLang' => new LanguageUtf8(),
297 'wgContLang' => new LanguageUtf8(),
298 'wgNamespacesWithSubpages' => array( 0 => preg_match('/\\bsubpage\\b/i', $opts)),
299 'wgMaxTocLevel' => 999,
300 'wgCapitalLinks' => true,
301 'wgDefaultUserOptions' => array(),
302 );
303 $this->savedGlobals = array();
304 foreach( $settings as $var => $val ) {
305 $this->savedGlobals[$var] = $GLOBALS[$var];
306 $GLOBALS[$var] = $val;
307 }
308 $GLOBALS['wgLoadBalancer']->loadMasterPos();
309 $GLOBALS['wgMessageCache']->initialise( new BagOStuff(), false, 0, $GLOBALS['wgDBname'] );
310 $this->setupDatabase();
311
312 global $wgUser;
313 $wgUser = new User();
314 }
315
316 # List of temporary tables to create, without prefix
317 # Some of these probably aren't necessary
318 function listTables() {
319 return array('user', 'page', 'revision', 'text', 'links',
320 'brokenlinks', 'imagelinks', 'categorylinks',
321 'linkscc', 'site_stats', 'hitcounter',
322 'ipblocks', 'image', 'oldimage',
323 'recentchanges',
324 'watchlist', 'math', 'searchindex',
325 'interwiki', 'querycache',
326 'objectcache', 'group'
327 );
328 }
329
330 /**
331 * Set up a temporary set of wiki tables to work with for the tests.
332 * Currently this will only be done once per run, and any changes to
333 * the db will be visible to later tests in the run.
334 *
335 * @access private
336 */
337 function setupDatabase() {
338 static $setupDB = false;
339 global $wgDBprefix;
340
341 # Make sure we don't mess with the live DB
342 if (!$setupDB && $wgDBprefix === 'parsertest') {
343 $db =& wfGetDB( DB_MASTER );
344
345 $tables = $this->listTables();
346
347 if (!(strcmp($db->getServerVersion(), '4.1') < 0 and stristr($db->getSoftwareLink(), 'MySQL'))) {
348 # Database that supports CREATE TABLE ... LIKE
349 global $wgDBtype;
350 if( $wgDBtype == 'PostgreSQL' ) {
351 $def = 'INCLUDING DEFAULTS';
352 } else {
353 $def = '';
354 }
355 foreach ($tables as $tbl) {
356 $newTableName = $db->tableName( $tbl );
357 $tableName = $this->oldTableNames[$tbl];
358 $db->query("CREATE TEMPORARY TABLE $newTableName (LIKE $tableName $def)");
359 }
360 } else {
361 # Hack for MySQL versions < 4.1, which don't support
362 # "CREATE TABLE ... LIKE". Note that
363 # "CREATE TEMPORARY TABLE ... SELECT * FROM ... LIMIT 0"
364 # would not create the indexes we need....
365 foreach ($tables as $tbl) {
366 $res = $db->query("SHOW CREATE TABLE {$this->oldTableNames[$tbl]}");
367 $row = $db->fetchRow($res);
368 $create = $row[1];
369 $create_tmp = preg_replace('/CREATE TABLE `(.*?)`/', 'CREATE TEMPORARY TABLE `'
370 . $wgDBprefix . $tbl .'`', $create);
371 if ($create === $create_tmp) {
372 # Couldn't do replacement
373 die("could not create temporary table $tbl");
374 }
375 $db->query($create_tmp);
376 }
377
378 }
379
380 # Hack: insert a few Wikipedia in-project interwiki prefixes,
381 # for testing inter-language links
382 $db->insert( 'interwiki', array(
383 array( 'iw_prefix' => 'Wikipedia',
384 'iw_url' => 'http://en.wikipedia.org/wiki/$1',
385 'iw_local' => 0 ),
386 array( 'iw_prefix' => 'MeatBall',
387 'iw_url' => 'http://www.usemod.com/cgi-bin/mb.pl?$1',
388 'iw_local' => 0 ),
389 array( 'iw_prefix' => 'zh',
390 'iw_url' => 'http://zh.wikipedia.org/wiki/$1',
391 'iw_local' => 1 ),
392 array( 'iw_prefix' => 'es',
393 'iw_url' => 'http://es.wikipedia.org/wiki/$1',
394 'iw_local' => 1 ),
395 array( 'iw_prefix' => 'fr',
396 'iw_url' => 'http://fr.wikipedia.org/wiki/$1',
397 'iw_local' => 1 ),
398 array( 'iw_prefix' => 'ru',
399 'iw_url' => 'http://ru.wikipedia.org/wiki/$1',
400 'iw_local' => 1 ),
401 ) );
402
403 # Hack: initialize a group
404 $db->insert( 'group', array(
405 'group_id' => 1,
406 'group_name' => 'Anonymous',
407 'group_description' => 'Anonymous users',
408 'group_rights' => 'read' ) );
409
410 $setupDB = true;
411 }
412 }
413
414 /**
415 * Create a dummy uploads directory which will contain a couple
416 * of files in order to pass existence tests.
417 * @return string The directory
418 * @access private
419 */
420 function setupUploadDir() {
421 $dir = "/tmp/mwParser-" . mt_rand() . "-images";
422 mkdir( $dir );
423 mkdir( $dir . '/3' );
424 mkdir( $dir . '/3/3a' );
425 $f = fopen( $dir . '/3/3a/Foobar.jpg', 'wb' );
426 fwrite( $f, 'Dummy file' );
427 fclose( $f );
428 return $dir;
429 }
430
431 /**
432 * Restore default values and perform any necessary clean-up
433 * after each test runs.
434 *
435 * @access private
436 */
437 function teardownGlobals() {
438 foreach( $this->savedGlobals as $var => $val ) {
439 $GLOBALS[$var] = $val;
440 }
441 if( isset( $this->uploadDir ) ) {
442 $this->teardownUploadDir( $this->uploadDir );
443 unset( $this->uploadDir );
444 }
445 }
446
447 /**
448 * Remove the dummy uploads directory
449 * @access private
450 */
451 function teardownUploadDir( $dir ) {
452 unlink( "$dir/3/3a/Foobar.jpg" );
453 rmdir( "$dir/3/3a" );
454 rmdir( "$dir/3" );
455 @rmdir( "$dir/thumb/3/39" );
456 @rmdir( "$dir/thumb/3" );
457 @rmdir( "$dir/thumb" );
458 rmdir( "$dir" );
459 }
460
461 /**
462 * "Running test $desc..."
463 * @access private
464 */
465 function showTesting( $desc ) {
466 print "Running test $desc... ";
467 }
468
469 /**
470 * Print a happy success message.
471 *
472 * @param string $desc The test name
473 * @return bool
474 * @access private
475 */
476 function showSuccess( $desc ) {
477 if( !$this->quiet ) {
478 print $this->termColor( '1;32' ) . 'PASSED' . $this->termReset() . "\n";
479 }
480 return true;
481 }
482
483 /**
484 * Print a failure message and provide some explanatory output
485 * about what went wrong if so configured.
486 *
487 * @param string $desc The test name
488 * @param string $result Expected HTML output
489 * @param string $html Actual HTML output
490 * @return bool
491 * @access private
492 */
493 function showFailure( $desc, $result, $html ) {
494 if( $this->quiet ) {
495 # In quiet mode we didn't show the 'Testing' message before the
496 # test, in case it succeeded. Show it now:
497 $this->showTesting( $desc );
498 }
499 print $this->termColor( '1;31' ) . 'FAILED!' . $this->termReset() . "\n";
500 if( $this->showDiffs ) {
501 print $this->quickDiff( $result, $html );
502 }
503 return false;
504 }
505
506 /**
507 * Run given strings through a diff and return the (colorized) output.
508 * Requires writable /tmp directory and a 'diff' command in the PATH.
509 *
510 * @param string $input
511 * @param string $output
512 * @return string
513 * @access private
514 */
515 function quickDiff( $input, $output ) {
516 $prefix = "/tmp/mwParser-" . mt_rand();
517
518 $infile = "$prefix-expected";
519 $this->dumpToFile( $input, $infile );
520
521 $outfile = "$prefix-actual";
522 $this->dumpToFile( $output, $outfile );
523
524 $diff = `diff -au $infile $outfile`;
525 unlink( $infile );
526 unlink( $outfile );
527
528 return $this->colorDiff( $diff );
529 }
530
531 /**
532 * Write the given string to a file, adding a final newline.
533 *
534 * @param string $data
535 * @param string $filename
536 * @access private
537 */
538 function dumpToFile( $data, $filename ) {
539 $file = fopen( $filename, "wt" );
540 fwrite( $file, $data . "\n" );
541 fclose( $file );
542 }
543
544 /**
545 * Return ANSI terminal escape code for changing text attribs/color,
546 * or empty string if color output is disabled.
547 *
548 * @param string $color Semicolon-separated list of attribute/color codes
549 * @return string
550 * @access private
551 */
552 function termColor( $color ) {
553 if($this->lightcolor) {
554 return $this->color ? "\x1b[1;{$color}m" : '';
555 } else {
556 return $this->color ? "\x1b[{$color}m" : '';
557 }
558 }
559
560 /**
561 * Return ANSI terminal escape code for restoring default text attributes,
562 * or empty string if color output is disabled.
563 *
564 * @return string
565 * @access private
566 */
567 function termReset() {
568 return $this->color ? "\x1b[0m" : '';
569 }
570
571 /**
572 * Colorize unified diff output if set for ANSI color output.
573 * Subtractions are colored blue, additions red.
574 *
575 * @param string $text
576 * @return string
577 * @access private
578 */
579 function colorDiff( $text ) {
580 return preg_replace(
581 array( '/^(-.*)$/m', '/^(\+.*)$/m' ),
582 array( $this->termColor( 34 ) . '$1' . $this->termReset(),
583 $this->termColor( 31 ) . '$1' . $this->termReset() ),
584 $text );
585 }
586
587 /**
588 * Insert a temporary test article
589 * @param string $name the title, including any prefix
590 * @param string $text the article text
591 * @param int $line the input line number, for reporting errors
592 * @static
593 * @access private
594 */
595 function addArticle($name, $text, $line) {
596 $this->setupGlobals();
597 $title = Title::newFromText( $name );
598 if ( is_null($title) ) {
599 die( "invalid title at line $line\n" );
600 }
601
602 $aid = $title->getArticleID( GAID_FOR_UPDATE );
603 if ($aid != 0) {
604 die( "duplicate article at line $line\n" );
605 }
606
607 $art = new Article($title);
608 $art->insertNewArticle($text, '', false, false );
609 $this->teardownGlobals();
610 }
611
612 /*
613 * Run the "tidy" command on text if the $wgUseTidy
614 * global is true
615 *
616 * @param string $text the text to tidy
617 * @return string
618 * @static
619 * @access private
620 */
621 function tidy( $text ) {
622 global $wgUseTidy;
623 if ($wgUseTidy) {
624 $text = Parser::tidy($text);
625 }
626 return $text;
627 }
628 }
629
630 if( isset( $options['help'] ) ) {
631 echo <<<END
632 MediaWiki $wgVersion parser test suite
633 Usage: php parserTests.php [--quick] [--quiet] [--color[=(yes|no|light)]]
634 [--regex <expression>] [--help]
635 Options:
636 --quick Suppress diff output of failed tests
637 --quiet Suppress notification of passed tests (shows only failed tests)
638 --color Override terminal detection and force color output on or off
639 'light' option is similar to 'yes' but with color for dark backgrounds
640 --regex Only run tests whose descriptions which match given regex
641 --help Show this help message
642
643
644 END;
645 exit( 0 );
646 }
647
648 # There is a convention that the parser should never
649 # refer to $wgTitle directly, but instead use the title
650 # passed to it.
651 $wgTitle = Title::newFromText( 'Parser test script do not use' );
652 $tester =& new ParserTest();
653
654 # Note: the command line setup changes the current working directory
655 # to the parent, which is why we have to put the subdir here:
656 $ok = $tester->runTestsFromFile( 'maintenance/parserTests.txt' );
657
658 exit ($ok ? 0 : -1);
659
660 ?>