* Add $wgNoFollowLinks option to add rel="nofollow" on external links (on by default)
[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 'wgNoFollowLinks' => true,
303 );
304 $this->savedGlobals = array();
305 foreach( $settings as $var => $val ) {
306 $this->savedGlobals[$var] = $GLOBALS[$var];
307 $GLOBALS[$var] = $val;
308 }
309 $GLOBALS['wgLoadBalancer']->loadMasterPos();
310 $GLOBALS['wgMessageCache']->initialise( new BagOStuff(), false, 0, $GLOBALS['wgDBname'] );
311 $this->setupDatabase();
312
313 global $wgUser;
314 $wgUser = new User();
315 }
316
317 # List of temporary tables to create, without prefix
318 # Some of these probably aren't necessary
319 function listTables() {
320 return array('user', 'page', 'revision', 'text', 'links',
321 'brokenlinks', 'imagelinks', 'categorylinks',
322 'linkscc', 'site_stats', 'hitcounter',
323 'ipblocks', 'image', 'oldimage',
324 'recentchanges',
325 'watchlist', 'math', 'searchindex',
326 'interwiki', 'querycache',
327 'objectcache', 'group'
328 );
329 }
330
331 /**
332 * Set up a temporary set of wiki tables to work with for the tests.
333 * Currently this will only be done once per run, and any changes to
334 * the db will be visible to later tests in the run.
335 *
336 * @access private
337 */
338 function setupDatabase() {
339 static $setupDB = false;
340 global $wgDBprefix;
341
342 # Make sure we don't mess with the live DB
343 if (!$setupDB && $wgDBprefix === 'parsertest') {
344 $db =& wfGetDB( DB_MASTER );
345
346 $tables = $this->listTables();
347
348 if (!(strcmp($db->getServerVersion(), '4.1') < 0 and stristr($db->getSoftwareLink(), 'MySQL'))) {
349 # Database that supports CREATE TABLE ... LIKE
350 global $wgDBtype;
351 if( $wgDBtype == 'PostgreSQL' ) {
352 $def = 'INCLUDING DEFAULTS';
353 } else {
354 $def = '';
355 }
356 foreach ($tables as $tbl) {
357 $newTableName = $db->tableName( $tbl );
358 $tableName = $this->oldTableNames[$tbl];
359 $db->query("CREATE TEMPORARY TABLE $newTableName (LIKE $tableName $def)");
360 }
361 } else {
362 # Hack for MySQL versions < 4.1, which don't support
363 # "CREATE TABLE ... LIKE". Note that
364 # "CREATE TEMPORARY TABLE ... SELECT * FROM ... LIMIT 0"
365 # would not create the indexes we need....
366 foreach ($tables as $tbl) {
367 $res = $db->query("SHOW CREATE TABLE {$this->oldTableNames[$tbl]}");
368 $row = $db->fetchRow($res);
369 $create = $row[1];
370 $create_tmp = preg_replace('/CREATE TABLE `(.*?)`/', 'CREATE TEMPORARY TABLE `'
371 . $wgDBprefix . $tbl .'`', $create);
372 if ($create === $create_tmp) {
373 # Couldn't do replacement
374 die("could not create temporary table $tbl");
375 }
376 $db->query($create_tmp);
377 }
378
379 }
380
381 # Hack: insert a few Wikipedia in-project interwiki prefixes,
382 # for testing inter-language links
383 $db->insert( 'interwiki', array(
384 array( 'iw_prefix' => 'Wikipedia',
385 'iw_url' => 'http://en.wikipedia.org/wiki/$1',
386 'iw_local' => 0 ),
387 array( 'iw_prefix' => 'MeatBall',
388 'iw_url' => 'http://www.usemod.com/cgi-bin/mb.pl?$1',
389 'iw_local' => 0 ),
390 array( 'iw_prefix' => 'zh',
391 'iw_url' => 'http://zh.wikipedia.org/wiki/$1',
392 'iw_local' => 1 ),
393 array( 'iw_prefix' => 'es',
394 'iw_url' => 'http://es.wikipedia.org/wiki/$1',
395 'iw_local' => 1 ),
396 array( 'iw_prefix' => 'fr',
397 'iw_url' => 'http://fr.wikipedia.org/wiki/$1',
398 'iw_local' => 1 ),
399 array( 'iw_prefix' => 'ru',
400 'iw_url' => 'http://ru.wikipedia.org/wiki/$1',
401 'iw_local' => 1 ),
402 ) );
403
404 # Hack: initialize a group
405 $db->insert( 'group', array(
406 'group_id' => 1,
407 'group_name' => 'Anonymous',
408 'group_description' => 'Anonymous users',
409 'group_rights' => 'read' ) );
410
411 $setupDB = true;
412 }
413 }
414
415 /**
416 * Create a dummy uploads directory which will contain a couple
417 * of files in order to pass existence tests.
418 * @return string The directory
419 * @access private
420 */
421 function setupUploadDir() {
422 $dir = "/tmp/mwParser-" . mt_rand() . "-images";
423 mkdir( $dir );
424 mkdir( $dir . '/3' );
425 mkdir( $dir . '/3/3a' );
426 $f = fopen( $dir . '/3/3a/Foobar.jpg', 'wb' );
427 fwrite( $f, 'Dummy file' );
428 fclose( $f );
429 return $dir;
430 }
431
432 /**
433 * Restore default values and perform any necessary clean-up
434 * after each test runs.
435 *
436 * @access private
437 */
438 function teardownGlobals() {
439 foreach( $this->savedGlobals as $var => $val ) {
440 $GLOBALS[$var] = $val;
441 }
442 if( isset( $this->uploadDir ) ) {
443 $this->teardownUploadDir( $this->uploadDir );
444 unset( $this->uploadDir );
445 }
446 }
447
448 /**
449 * Remove the dummy uploads directory
450 * @access private
451 */
452 function teardownUploadDir( $dir ) {
453 unlink( "$dir/3/3a/Foobar.jpg" );
454 rmdir( "$dir/3/3a" );
455 rmdir( "$dir/3" );
456 @rmdir( "$dir/thumb/3/39" );
457 @rmdir( "$dir/thumb/3" );
458 @rmdir( "$dir/thumb" );
459 rmdir( "$dir" );
460 }
461
462 /**
463 * "Running test $desc..."
464 * @access private
465 */
466 function showTesting( $desc ) {
467 print "Running test $desc... ";
468 }
469
470 /**
471 * Print a happy success message.
472 *
473 * @param string $desc The test name
474 * @return bool
475 * @access private
476 */
477 function showSuccess( $desc ) {
478 if( !$this->quiet ) {
479 print $this->termColor( '1;32' ) . 'PASSED' . $this->termReset() . "\n";
480 }
481 return true;
482 }
483
484 /**
485 * Print a failure message and provide some explanatory output
486 * about what went wrong if so configured.
487 *
488 * @param string $desc The test name
489 * @param string $result Expected HTML output
490 * @param string $html Actual HTML output
491 * @return bool
492 * @access private
493 */
494 function showFailure( $desc, $result, $html ) {
495 if( $this->quiet ) {
496 # In quiet mode we didn't show the 'Testing' message before the
497 # test, in case it succeeded. Show it now:
498 $this->showTesting( $desc );
499 }
500 print $this->termColor( '1;31' ) . 'FAILED!' . $this->termReset() . "\n";
501 if( $this->showDiffs ) {
502 print $this->quickDiff( $result, $html );
503 }
504 return false;
505 }
506
507 /**
508 * Run given strings through a diff and return the (colorized) output.
509 * Requires writable /tmp directory and a 'diff' command in the PATH.
510 *
511 * @param string $input
512 * @param string $output
513 * @return string
514 * @access private
515 */
516 function quickDiff( $input, $output ) {
517 $prefix = "/tmp/mwParser-" . mt_rand();
518
519 $infile = "$prefix-expected";
520 $this->dumpToFile( $input, $infile );
521
522 $outfile = "$prefix-actual";
523 $this->dumpToFile( $output, $outfile );
524
525 $diff = `diff -au $infile $outfile`;
526 unlink( $infile );
527 unlink( $outfile );
528
529 return $this->colorDiff( $diff );
530 }
531
532 /**
533 * Write the given string to a file, adding a final newline.
534 *
535 * @param string $data
536 * @param string $filename
537 * @access private
538 */
539 function dumpToFile( $data, $filename ) {
540 $file = fopen( $filename, "wt" );
541 fwrite( $file, $data . "\n" );
542 fclose( $file );
543 }
544
545 /**
546 * Return ANSI terminal escape code for changing text attribs/color,
547 * or empty string if color output is disabled.
548 *
549 * @param string $color Semicolon-separated list of attribute/color codes
550 * @return string
551 * @access private
552 */
553 function termColor( $color ) {
554 if($this->lightcolor) {
555 return $this->color ? "\x1b[1;{$color}m" : '';
556 } else {
557 return $this->color ? "\x1b[{$color}m" : '';
558 }
559 }
560
561 /**
562 * Return ANSI terminal escape code for restoring default text attributes,
563 * or empty string if color output is disabled.
564 *
565 * @return string
566 * @access private
567 */
568 function termReset() {
569 return $this->color ? "\x1b[0m" : '';
570 }
571
572 /**
573 * Colorize unified diff output if set for ANSI color output.
574 * Subtractions are colored blue, additions red.
575 *
576 * @param string $text
577 * @return string
578 * @access private
579 */
580 function colorDiff( $text ) {
581 return preg_replace(
582 array( '/^(-.*)$/m', '/^(\+.*)$/m' ),
583 array( $this->termColor( 34 ) . '$1' . $this->termReset(),
584 $this->termColor( 31 ) . '$1' . $this->termReset() ),
585 $text );
586 }
587
588 /**
589 * Insert a temporary test article
590 * @param string $name the title, including any prefix
591 * @param string $text the article text
592 * @param int $line the input line number, for reporting errors
593 * @static
594 * @access private
595 */
596 function addArticle($name, $text, $line) {
597 $this->setupGlobals();
598 $title = Title::newFromText( $name );
599 if ( is_null($title) ) {
600 die( "invalid title at line $line\n" );
601 }
602
603 $aid = $title->getArticleID( GAID_FOR_UPDATE );
604 if ($aid != 0) {
605 die( "duplicate article at line $line\n" );
606 }
607
608 $art = new Article($title);
609 $art->insertNewArticle($text, '', false, false );
610 $this->teardownGlobals();
611 }
612
613 /*
614 * Run the "tidy" command on text if the $wgUseTidy
615 * global is true
616 *
617 * @param string $text the text to tidy
618 * @return string
619 * @static
620 * @access private
621 */
622 function tidy( $text ) {
623 global $wgUseTidy;
624 if ($wgUseTidy) {
625 $text = Parser::tidy($text);
626 }
627 return $text;
628 }
629 }
630
631 if( isset( $options['help'] ) ) {
632 echo <<<END
633 MediaWiki $wgVersion parser test suite
634 Usage: php parserTests.php [--quick] [--quiet] [--color[=(yes|no|light)]]
635 [--regex <expression>] [--help]
636 Options:
637 --quick Suppress diff output of failed tests
638 --quiet Suppress notification of passed tests (shows only failed tests)
639 --color Override terminal detection and force color output on or off
640 'light' option is similar to 'yes' but with color for dark backgrounds
641 --regex Only run tests whose descriptions which match given regex
642 --help Show this help message
643
644
645 END;
646 exit( 0 );
647 }
648
649 # There is a convention that the parser should never
650 # refer to $wgTitle directly, but instead use the title
651 # passed to it.
652 $wgTitle = Title::newFromText( 'Parser test script do not use' );
653 $tester =& new ParserTest();
654
655 # Note: the command line setup changes the current working directory
656 # to the parent, which is why we have to put the subdir here:
657 $ok = $tester->runTestsFromFile( 'maintenance/parserTests.txt' );
658
659 exit ($ok ? 0 : -1);
660
661 ?>