* Housekeeping:
[lhc/web/wiklou.git] / maintenance / parserTests.inc
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 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 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 * @addtogroup Maintenance
24 */
25
26 /** */
27 $options = array( 'quick', 'color', 'quiet', 'help', 'show-output', 'record' );
28 $optionsWithArgs = array( 'regex' );
29
30 require_once( 'commandLine.inc' );
31 require_once( "$IP/maintenance/parserTestsParserHook.php" );
32 require_once( "$IP/maintenance/parserTestsStaticParserHook.php" );
33 require_once( "$IP/maintenance/parserTestsParserTime.php" );
34
35 /**
36 * @addtogroup Maintenance
37 */
38 class ParserTest {
39 /**
40 * boolean $color whereas output should be colorized
41 */
42 private $color;
43
44 /**
45 * boolean $showOutput Show test output
46 */
47 private $showOutput;
48
49 /**
50 * Sets terminal colorization and diff/quick modes depending on OS and
51 * command-line options (--color and --quick).
52 */
53 public function ParserTest() {
54 global $options;
55
56 # Only colorize output if stdout is a terminal.
57 $this->color = !wfIsWindows() && posix_isatty(1);
58
59 if( isset( $options['color'] ) ) {
60 switch( $options['color'] ) {
61 case 'no':
62 $this->color = false;
63 break;
64 case 'yes':
65 default:
66 $this->color = true;
67 break;
68 }
69 }
70 $this->term = $this->color
71 ? new AnsiTermColorer()
72 : new DummyTermColorer();
73
74 $this->showDiffs = !isset( $options['quick'] );
75 $this->showProgress = !isset( $options['quiet'] );
76 $this->showFailure = !(
77 isset( $options['quiet'] )
78 && ( isset( $options['record'] )
79 || isset( $options['compare'] ) ) ); // redundant output
80
81 $this->showOutput = isset( $options['show-output'] );
82
83
84 if (isset($options['regex'])) {
85 $this->regex = $options['regex'];
86 } else {
87 # Matches anything
88 $this->regex = '';
89 }
90
91 if( isset( $options['record'] ) ) {
92 $this->recorder = new DbTestRecorder( $this->term );
93 } elseif( isset( $options['compare'] ) ) {
94 $this->recorder = new DbTestPreviewer( $this->term );
95 } else {
96 $this->recorder = new TestRecorder( $this->term );
97 }
98
99 $this->hooks = array();
100 $this->functionHooks = array();
101 }
102
103 /**
104 * Remove last character if it is a newline
105 */
106 private function chomp($s) {
107 if (substr($s, -1) === "\n") {
108 return substr($s, 0, -1);
109 }
110 else {
111 return $s;
112 }
113 }
114
115 /**
116 * Run a series of tests listed in the given text files.
117 * Each test consists of a brief description, wikitext input,
118 * and the expected HTML output.
119 *
120 * Prints status updates on stdout and counts up the total
121 * number and percentage of passed tests.
122 *
123 * @param array of strings $filenames
124 * @return bool True if passed all tests, false if any tests failed.
125 */
126 public function runTestsFromFiles( $filenames ) {
127 $this->recorder->start();
128 $ok = true;
129 foreach( $filenames as $filename ) {
130 $ok = $this->runFile( $filename ) && $ok;
131 }
132 $this->recorder->report();
133 $this->recorder->end();
134 return $ok;
135 }
136
137 private function runFile( $filename ) {
138 $infile = fopen( $filename, 'rt' );
139 if( !$infile ) {
140 wfDie( "Couldn't open $filename\n" );
141 } else {
142 global $IP;
143 $relative = wfRelativePath( $filename, $IP );
144 print $this->term->color( 1 ) .
145 "Reading tests from \"$relative\"..." .
146 $this->term->reset() .
147 "\n";
148 }
149
150 $data = array();
151 $section = null;
152 $n = 0;
153 $ok = true;
154 while( false !== ($line = fgets( $infile ) ) ) {
155 $n++;
156 $matches = array();
157 if( preg_match( '/^!!\s*(\w+)/', $line, $matches ) ) {
158 $section = strtolower( $matches[1] );
159 if( $section == 'endarticle') {
160 if( !isset( $data['text'] ) ) {
161 wfDie( "'endarticle' without 'text' at line $n of $filename\n" );
162 }
163 if( !isset( $data['article'] ) ) {
164 wfDie( "'endarticle' without 'article' at line $n of $filename\n" );
165 }
166 $this->addArticle($this->chomp($data['article']), $this->chomp($data['text']), $n);
167 $data = array();
168 $section = null;
169 continue;
170 }
171 if( $section == 'endhooks' ) {
172 if( !isset( $data['hooks'] ) ) {
173 wfDie( "'endhooks' without 'hooks' at line $n of $filename\n" );
174 }
175 foreach( explode( "\n", $data['hooks'] ) as $line ) {
176 $line = trim( $line );
177 if( $line ) {
178 $this->requireHook( $line );
179 }
180 }
181 $data = array();
182 $section = null;
183 continue;
184 }
185 if( $section == 'endfunctionhooks' ) {
186 if( !isset( $data['functionhooks'] ) ) {
187 wfDie( "'endfunctionhooks' without 'functionhooks' at line $n of $filename\n" );
188 }
189 foreach( explode( "\n", $data['functionhooks'] ) as $line ) {
190 $line = trim( $line );
191 if( $line ) {
192 $this->requireFunctionHook( $line );
193 }
194 }
195 $data = array();
196 $section = null;
197 continue;
198 }
199 if( $section == 'end' ) {
200 if( !isset( $data['test'] ) ) {
201 wfDie( "'end' without 'test' at line $n of $filename\n" );
202 }
203 if( !isset( $data['input'] ) ) {
204 wfDie( "'end' without 'input' at line $n of $filename\n" );
205 }
206 if( !isset( $data['result'] ) ) {
207 wfDie( "'end' without 'result' at line $n of $filename\n" );
208 }
209 if( !isset( $data['options'] ) ) {
210 $data['options'] = '';
211 }
212 else {
213 $data['options'] = $this->chomp( $data['options'] );
214 }
215 if (preg_match('/\\bdisabled\\b/i', $data['options'])
216 || !preg_match("/{$this->regex}/i", $data['test'])) {
217 # disabled test
218 $data = array();
219 $section = null;
220 continue;
221 }
222 $result = $this->runTest(
223 $this->chomp( $data['test'] ),
224 $this->chomp( $data['input'] ),
225 $this->chomp( $data['result'] ),
226 $this->chomp( $data['options'] ) );
227 $ok = $ok && $result;
228 $this->recorder->record( $this->chomp( $data['test'] ), $result );
229 $data = array();
230 $section = null;
231 continue;
232 }
233 if ( isset ($data[$section] ) ) {
234 wfDie( "duplicate section '$section' at line $n of $filename\n" );
235 }
236 $data[$section] = '';
237 continue;
238 }
239 if( $section ) {
240 $data[$section] .= $line;
241 }
242 }
243 if ( $this->showProgress ) {
244 print "\n";
245 }
246 return $ok;
247 }
248
249 /**
250 * Run a given wikitext input through a freshly-constructed wiki parser,
251 * and compare the output against the expected results.
252 * Prints status and explanatory messages to stdout.
253 *
254 * @param string $input Wikitext to try rendering
255 * @param string $result Result to output
256 * @return bool
257 */
258 private function runTest( $desc, $input, $result, $opts ) {
259 if( $this->showProgress ) {
260 $this->showTesting( $desc );
261 }
262
263 $this->setupGlobals($opts);
264
265 $user = new User();
266 $options = ParserOptions::newFromUser( $user );
267
268 if (preg_match('/\\bmath\\b/i', $opts)) {
269 # XXX this should probably be done by the ParserOptions
270 $options->setUseTex(true);
271 }
272
273 $m = array();
274 if (preg_match('/title=\[\[(.*)\]\]/', $opts, $m)) {
275 $titleText = $m[1];
276 }
277 else {
278 $titleText = 'Parser test';
279 }
280
281 $noxml = (bool)preg_match( '~\\b noxml \\b~x', $opts );
282
283 $parser = new Parser();
284 foreach( $this->hooks as $tag => $callback ) {
285 $parser->setHook( $tag, $callback );
286 }
287 foreach( $this->functionHooks as $tag => $callback ) {
288 $parser->setFunctionHook( $tag, $callback );
289 }
290 wfRunHooks( 'ParserTestParser', array( &$parser ) );
291
292 $title =& Title::makeTitle( NS_MAIN, $titleText );
293
294 $matches = array();
295 if (preg_match('/\\bpst\\b/i', $opts)) {
296 $out = $parser->preSaveTransform( $input, $title, $user, $options );
297 } elseif (preg_match('/\\bmsg\\b/i', $opts)) {
298 $out = $parser->transformMsg( $input, $options );
299 } elseif( preg_match( '/\\bsection=(\d+)\b/i', $opts, $matches ) ) {
300 $section = intval( $matches[1] );
301 $out = $parser->getSection( $input, $section );
302 } elseif( preg_match( '/\\breplace=(\d+),"(.*?)"/i', $opts, $matches ) ) {
303 $section = intval( $matches[1] );
304 $replace = $matches[2];
305 $out = $parser->replaceSection( $input, $section, $replace );
306 } else {
307 $output = $parser->parse( $input, $title, $options, true, true, 1337 );
308 $out = $output->getText();
309
310 if (preg_match('/\\bill\\b/i', $opts)) {
311 $out = $this->tidy( implode( ' ', $output->getLanguageLinks() ) );
312 } else if (preg_match('/\\bcat\\b/i', $opts)) {
313 global $wgOut;
314 $wgOut->addCategoryLinks($output->getCategories());
315 $out = $this->tidy ( implode( ' ', $wgOut->getCategoryLinks() ) );
316 }
317
318 $result = $this->tidy($result);
319 }
320
321 $this->teardownGlobals();
322
323 if( $result === $out && ( $noxml === true || $this->wellFormed( $out ) ) ) {
324 return $this->showSuccess( $desc );
325 } else {
326 return $this->showFailure( $desc, $result, $out );
327 }
328 }
329
330
331 /**
332 * Use a regex to find out the value of an option
333 * @param $regex A regex, the first group will be the value returned
334 * @param $opts Options line to look in
335 * @param $defaults Default value returned if the regex does not match
336 */
337 private static function getOptionValue( $regex, $opts, $default ) {
338 $m = array();
339 if( preg_match( $regex, $opts, $m ) ) {
340 return $m[1];
341 } else {
342 return $default;
343 }
344 }
345
346 /**
347 * Set up the global variables for a consistent environment for each test.
348 * Ideally this should replace the global configuration entirely.
349 */
350 private function setupGlobals($opts = '') {
351 # Save the prefixed / quoted table names for later use when we make the temporaries.
352 $db = wfGetDB( DB_READ );
353 $this->oldTableNames = array();
354 foreach( $this->listTables() as $table ) {
355 $this->oldTableNames[$table] = $db->tableName( $table );
356 }
357 if( !isset( $this->uploadDir ) ) {
358 $this->uploadDir = $this->setupUploadDir();
359 }
360
361 # Find out values for some special options.
362 $lang =
363 self::getOptionValue( '/language=([a-z]+(?:_[a-z]+)?)/', $opts, 'en' );
364 $variant =
365 self::getOptionValue( '/variant=([a-z]+(?:-[a-z]+)?)/', $opts, false );
366 $maxtoclevel =
367 self::getOptionValue( '/wgMaxTocLevel=(\d+)/', $opts, 999 );
368
369 $settings = array(
370 'wgServer' => 'http://localhost',
371 'wgScript' => '/index.php',
372 'wgScriptPath' => '/',
373 'wgArticlePath' => '/wiki/$1',
374 'wgActionPaths' => array(),
375 'wgLocalFileRepo' => array(
376 'class' => 'LocalRepo',
377 'name' => 'local',
378 'directory' => $this->uploadDir,
379 'url' => 'http://example.com/images',
380 'hashLevels' => 2,
381 'transformVia404' => false,
382 ),
383 'wgStyleSheetPath' => '/skins',
384 'wgSitename' => 'MediaWiki',
385 'wgServerName' => 'Britney Spears',
386 'wgLanguageCode' => $lang,
387 'wgContLanguageCode' => $lang,
388 'wgDBprefix' => 'parsertest_',
389 'wgRawHtml' => preg_match('/\\brawhtml\\b/i', $opts),
390 'wgLang' => null,
391 'wgContLang' => null,
392 'wgNamespacesWithSubpages' => array( 0 => preg_match('/\\bsubpage\\b/i', $opts)),
393 'wgMaxTocLevel' => $maxtoclevel,
394 'wgCapitalLinks' => true,
395 'wgNoFollowLinks' => true,
396 'wgThumbnailScriptPath' => false,
397 'wgUseTeX' => false,
398 'wgLocaltimezone' => 'UTC',
399 'wgAllowExternalImages' => true,
400 'wgUseTidy' => false,
401 'wgDefaultLanguageVariant' => $variant,
402 'wgVariantArticlePath' => false,
403 );
404 $this->savedGlobals = array();
405 foreach( $settings as $var => $val ) {
406 $this->savedGlobals[$var] = $GLOBALS[$var];
407 $GLOBALS[$var] = $val;
408 }
409 $langObj = Language::factory( $lang );
410 $GLOBALS['wgLang'] = $langObj;
411 $GLOBALS['wgContLang'] = $langObj;
412
413 $GLOBALS['wgLoadBalancer']->loadMasterPos();
414 //$GLOBALS['wgMessageCache'] = new MessageCache( new BagOStuff(), false, 0, $GLOBALS['wgDBname'] );
415 $this->setupDatabase();
416
417 global $wgUser;
418 $wgUser = new User();
419 }
420
421 /**
422 * List of temporary tables to create, without prefix.
423 * Some of these probably aren't necessary.
424 */
425 private function listTables() {
426 $tables = array('user', 'page', 'page_restrictions', 'revision', 'text',
427 'pagelinks', 'imagelinks', 'categorylinks',
428 'templatelinks', 'externallinks', 'langlinks',
429 'site_stats', 'hitcounter',
430 'ipblocks', 'image', 'oldimage',
431 'recentchanges',
432 'watchlist', 'math', 'searchindex',
433 'interwiki', 'querycache',
434 'objectcache', 'job', 'redirect',
435 'querycachetwo'
436 );
437
438 // Allow extensions to add to the list of tables to duplicate;
439 // may be necessary if they hook into page save or other code
440 // which will require them while running tests.
441 wfRunHooks( 'ParserTestTables', array( &$tables ) );
442
443 return $tables;
444 }
445
446 /**
447 * Set up a temporary set of wiki tables to work with for the tests.
448 * Currently this will only be done once per run, and any changes to
449 * the db will be visible to later tests in the run.
450 */
451 private function setupDatabase() {
452 static $setupDB = false;
453 global $wgDBprefix;
454
455 # Make sure we don't mess with the live DB
456 if (!$setupDB && $wgDBprefix === 'parsertest_') {
457 # oh teh horror
458 $GLOBALS['wgLoadBalancer'] = LoadBalancer::newFromParams( $GLOBALS['wgDBservers'] );
459 $db = wfGetDB( DB_MASTER );
460
461 $tables = $this->listTables();
462
463 if (!(strcmp($db->getServerVersion(), '4.1') < 0 and stristr($db->getSoftwareLink(), 'MySQL'))) {
464 # Database that supports CREATE TABLE ... LIKE
465 global $wgDBtype;
466 if( $wgDBtype == 'postgres' ) {
467 $def = 'INCLUDING DEFAULTS';
468 } else {
469 $def = '';
470 }
471 foreach ($tables as $tbl) {
472 $newTableName = $db->tableName( $tbl );
473 $tableName = $this->oldTableNames[$tbl];
474 $db->query("CREATE TEMPORARY TABLE $newTableName (LIKE $tableName $def)");
475 }
476 } else {
477 # Hack for MySQL versions < 4.1, which don't support
478 # "CREATE TABLE ... LIKE". Note that
479 # "CREATE TEMPORARY TABLE ... SELECT * FROM ... LIMIT 0"
480 # would not create the indexes we need....
481 foreach ($tables as $tbl) {
482 $res = $db->query("SHOW CREATE TABLE {$this->oldTableNames[$tbl]}");
483 $row = $db->fetchRow($res);
484 $create = $row[1];
485 $create_tmp = preg_replace('/CREATE TABLE `(.*?)`/', 'CREATE TEMPORARY TABLE `'
486 . $wgDBprefix . $tbl .'`', $create);
487 if ($create === $create_tmp) {
488 # Couldn't do replacement
489 wfDie("could not create temporary table $tbl");
490 }
491 $db->query($create_tmp);
492 }
493
494 }
495
496 # Hack: insert a few Wikipedia in-project interwiki prefixes,
497 # for testing inter-language links
498 $db->insert( 'interwiki', array(
499 array( 'iw_prefix' => 'Wikipedia',
500 'iw_url' => 'http://en.wikipedia.org/wiki/$1',
501 'iw_local' => 0 ),
502 array( 'iw_prefix' => 'MeatBall',
503 'iw_url' => 'http://www.usemod.com/cgi-bin/mb.pl?$1',
504 'iw_local' => 0 ),
505 array( 'iw_prefix' => 'zh',
506 'iw_url' => 'http://zh.wikipedia.org/wiki/$1',
507 'iw_local' => 1 ),
508 array( 'iw_prefix' => 'es',
509 'iw_url' => 'http://es.wikipedia.org/wiki/$1',
510 'iw_local' => 1 ),
511 array( 'iw_prefix' => 'fr',
512 'iw_url' => 'http://fr.wikipedia.org/wiki/$1',
513 'iw_local' => 1 ),
514 array( 'iw_prefix' => 'ru',
515 'iw_url' => 'http://ru.wikipedia.org/wiki/$1',
516 'iw_local' => 1 ),
517 ) );
518
519 # Hack: Insert an image to work with
520 $db->insert( 'image', array(
521 'img_name' => 'Foobar.jpg',
522 'img_size' => 12345,
523 'img_description' => 'Some lame file',
524 'img_user' => 1,
525 'img_user_text' => 'WikiSysop',
526 'img_timestamp' => $db->timestamp( '20010115123500' ),
527 'img_width' => 1941,
528 'img_height' => 220,
529 'img_bits' => 24,
530 'img_media_type' => MEDIATYPE_BITMAP,
531 'img_major_mime' => "image",
532 'img_minor_mime' => "jpeg",
533 'img_metadata' => serialize( array() ),
534 ) );
535
536 # Update certain things in site_stats
537 $db->insert( 'site_stats', array( 'ss_row_id' => 1, 'ss_images' => 1, 'ss_good_articles' => 1 ) );
538
539 $setupDB = true;
540 }
541 }
542
543 /**
544 * Create a dummy uploads directory which will contain a couple
545 * of files in order to pass existence tests.
546 * @return string The directory
547 */
548 private function setupUploadDir() {
549 global $IP;
550 $dir = wfTempDir() . "/mwParser-" . mt_rand() . "-images";
551 wfDebug( "Creating upload directory $dir\n" );
552 mkdir( $dir );
553 mkdir( $dir . '/3' );
554 mkdir( $dir . '/3/3a' );
555 copy( "$IP/skins/monobook/headbg.jpg", "$dir/3/3a/Foobar.jpg" );
556 return $dir;
557 }
558
559 /**
560 * Restore default values and perform any necessary clean-up
561 * after each test runs.
562 */
563 private function teardownGlobals() {
564 RepoGroup::destroySingleton();
565 foreach( $this->savedGlobals as $var => $val ) {
566 $GLOBALS[$var] = $val;
567 }
568 if( isset( $this->uploadDir ) ) {
569 $this->teardownUploadDir( $this->uploadDir );
570 unset( $this->uploadDir );
571 }
572 }
573
574 /**
575 * Remove the dummy uploads directory
576 */
577 private function teardownUploadDir( $dir ) {
578 // delete the files first, then the dirs.
579 self::deleteFiles(
580 array (
581 "$dir/3/3a/Foobar.jpg",
582 "$dir/thumb/3/3a/Foobar.jpg/180px-Foobar.jpg",
583 "$dir/thumb/3/3a/Foobar.jpg/200px-Foobar.jpg",
584 "$dir/thumb/3/3a/Foobar.jpg/640px-Foobar.jpg",
585 "$dir/thumb/3/3a/Foobar.jpg/120px-Foobar.jpg",
586 )
587 );
588
589 self::deleteDirs(
590 array (
591 "$dir/3/3a",
592 "$dir/3",
593 "$dir/thumb/6/65",
594 "$dir/thumb/6",
595 "$dir/thumb/3/3a/Foobar.jpg",
596 "$dir/thumb/3/3a",
597 "$dir/thumb/3",
598 "$dir/thumb",
599 "$dir",
600 )
601 );
602 }
603
604 /**
605 * @desc delete the specified files, if they exist.
606 * @param array $files full paths to files to delete.
607 */
608 private static function deleteFiles( $files ) {
609 foreach( $files as $file ) {
610 if( file_exists( $file ) ) {
611 unlink( $file );
612 }
613 }
614 }
615
616 /**
617 * @desc delete the specified directories, if they exist. Must be empty.
618 * @param array $dirs full paths to directories to delete.
619 */
620 private static function deleteDirs( $dirs ) {
621 foreach( $dirs as $dir ) {
622 if( is_dir( $dir ) ) {
623 rmdir( $dir );
624 }
625 }
626 }
627
628 /**
629 * "Running test $desc..."
630 */
631 private function showTesting( $desc ) {
632 print "Running test $desc... ";
633 }
634
635 /**
636 * Print a happy success message.
637 *
638 * @param string $desc The test name
639 * @return bool
640 */
641 private function showSuccess( $desc ) {
642 if( $this->showProgress ) {
643 print $this->term->color( '1;32' ) . 'PASSED' . $this->term->reset() . "\n";
644 }
645 return true;
646 }
647
648 /**
649 * Print a failure message and provide some explanatory output
650 * about what went wrong if so configured.
651 *
652 * @param string $desc The test name
653 * @param string $result Expected HTML output
654 * @param string $html Actual HTML output
655 * @return bool
656 */
657 private function showFailure( $desc, $result, $html ) {
658 if( $this->showFailure ) {
659 if( !$this->showProgress ) {
660 # In quiet mode we didn't show the 'Testing' message before the
661 # test, in case it succeeded. Show it now:
662 $this->showTesting( $desc );
663 }
664 print $this->term->color( '31' ) . 'FAILED!' . $this->term->reset() . "\n";
665 if ( $this->showOutput ) {
666 print "--- Expected ---\n$result\n--- Actual ---\n$html\n";
667 }
668 if( $this->showDiffs ) {
669 print $this->quickDiff( $result, $html );
670 if( !$this->wellFormed( $html ) ) {
671 print "XML error: $this->mXmlError\n";
672 }
673 }
674 }
675 return false;
676 }
677
678 /**
679 * Run given strings through a diff and return the (colorized) output.
680 * Requires writable /tmp directory and a 'diff' command in the PATH.
681 *
682 * @param string $input
683 * @param string $output
684 * @param string $inFileTail Tailing for the input file name
685 * @param string $outFileTail Tailing for the output file name
686 * @return string
687 */
688 private function quickDiff( $input, $output, $inFileTail='expected', $outFileTail='actual' ) {
689 $prefix = wfTempDir() . "/mwParser-" . mt_rand();
690
691 $infile = "$prefix-$inFileTail";
692 $this->dumpToFile( $input, $infile );
693
694 $outfile = "$prefix-$outFileTail";
695 $this->dumpToFile( $output, $outfile );
696
697 $diff = `diff -au $infile $outfile`;
698 unlink( $infile );
699 unlink( $outfile );
700
701 return $this->colorDiff( $diff );
702 }
703
704 /**
705 * Write the given string to a file, adding a final newline.
706 *
707 * @param string $data
708 * @param string $filename
709 */
710 private function dumpToFile( $data, $filename ) {
711 $file = fopen( $filename, "wt" );
712 fwrite( $file, $data . "\n" );
713 fclose( $file );
714 }
715
716 /**
717 * Colorize unified diff output if set for ANSI color output.
718 * Subtractions are colored blue, additions red.
719 *
720 * @param string $text
721 * @return string
722 */
723 private function colorDiff( $text ) {
724 return preg_replace(
725 array( '/^(-.*)$/m', '/^(\+.*)$/m' ),
726 array( $this->term->color( 34 ) . '$1' . $this->term->reset(),
727 $this->term->color( 31 ) . '$1' . $this->term->reset() ),
728 $text );
729 }
730
731 /**
732 * Insert a temporary test article
733 * @param string $name the title, including any prefix
734 * @param string $text the article text
735 * @param int $line the input line number, for reporting errors
736 */
737 private function addArticle($name, $text, $line) {
738 $this->setupGlobals();
739 $title = Title::newFromText( $name );
740 if ( is_null($title) ) {
741 wfDie( "invalid title at line $line\n" );
742 }
743
744 $aid = $title->getArticleID( GAID_FOR_UPDATE );
745 if ($aid != 0) {
746 wfDie( "duplicate article at line $line\n" );
747 }
748
749 $art = new Article($title);
750 $art->insertNewArticle($text, '', false, false );
751 $this->teardownGlobals();
752 }
753
754 /**
755 * Steal a callback function from the primary parser, save it for
756 * application to our scary parser. If the hook is not installed,
757 * die a painful dead to warn the others.
758 * @param string $name
759 */
760 private function requireHook( $name ) {
761 global $wgParser;
762 if( isset( $wgParser->mTagHooks[$name] ) ) {
763 $this->hooks[$name] = $wgParser->mTagHooks[$name];
764 } else {
765 wfDie( "This test suite requires the '$name' hook extension.\n" );
766 }
767 }
768
769 /**
770 * Steal a callback function from the primary parser, save it for
771 * application to our scary parser. If the hook is not installed,
772 * die a painful dead to warn the others.
773 * @param string $name
774 */
775 private function requireFunctionHook( $name ) {
776 global $wgParser;
777 if( isset( $wgParser->mFunctionHooks[$name] ) ) {
778 $this->functionHooks[$name] = $wgParser->mFunctionHooks[$name];
779 } else {
780 wfDie( "This test suite requires the '$name' function hook extension.\n" );
781 }
782 }
783
784 /*
785 * Run the "tidy" command on text if the $wgUseTidy
786 * global is true
787 *
788 * @param string $text the text to tidy
789 * @return string
790 * @static
791 */
792 private function tidy( $text ) {
793 global $wgUseTidy;
794 if ($wgUseTidy) {
795 $text = Parser::tidy($text);
796 }
797 return $text;
798 }
799
800 private function wellFormed( $text ) {
801 $html =
802 Sanitizer::hackDocType() .
803 '<html>' .
804 $text .
805 '</html>';
806
807 $parser = xml_parser_create( "UTF-8" );
808
809 # case folding violates XML standard, turn it off
810 xml_parser_set_option( $parser, XML_OPTION_CASE_FOLDING, false );
811
812 if( !xml_parse( $parser, $html, true ) ) {
813 $err = xml_error_string( xml_get_error_code( $parser ) );
814 $position = xml_get_current_byte_index( $parser );
815 $fragment = $this->extractFragment( $html, $position );
816 $this->mXmlError = "$err at byte $position:\n$fragment";
817 xml_parser_free( $parser );
818 return false;
819 }
820 xml_parser_free( $parser );
821 return true;
822 }
823
824 private function extractFragment( $text, $position ) {
825 $start = max( 0, $position - 10 );
826 $before = $position - $start;
827 $fragment = '...' .
828 $this->term->color( 34 ) .
829 substr( $text, $start, $before ) .
830 $this->term->color( 0 ) .
831 $this->term->color( 31 ) .
832 $this->term->color( 1 ) .
833 substr( $text, $position, 1 ) .
834 $this->term->color( 0 ) .
835 $this->term->color( 34 ) .
836 substr( $text, $position + 1, 9 ) .
837 $this->term->color( 0 ) .
838 '...';
839 $display = str_replace( "\n", ' ', $fragment );
840 $caret = ' ' .
841 str_repeat( ' ', $before ) .
842 $this->term->color( 31 ) .
843 '^' .
844 $this->term->color( 0 );
845 return "$display\n$caret";
846 }
847 }
848
849 class AnsiTermColorer {
850 function __construct() {
851 }
852
853 /**
854 * Return ANSI terminal escape code for changing text attribs/color
855 *
856 * @param string $color Semicolon-separated list of attribute/color codes
857 * @return string
858 */
859 public function color( $color ) {
860 global $wgCommandLineDarkBg;
861 $light = $wgCommandLineDarkBg ? "1;" : "0;";
862 return "\x1b[{$light}{$color}m";
863 }
864
865 /**
866 * Return ANSI terminal escape code for restoring default text attributes
867 *
868 * @return string
869 */
870 public function reset() {
871 return $this->color( 0 );
872 }
873 }
874
875 /* A colour-less terminal */
876 class DummyTermColorer {
877 public function color( $color ) {
878 return '';
879 }
880
881 public function reset() {
882 return '';
883 }
884 }
885
886 class TestRecorder {
887 function __construct( $term ) {
888 $this->term = $term;
889 }
890
891 function start() {
892 $this->total = 0;
893 $this->success = 0;
894 }
895
896 function record( $test, $result ) {
897 $this->total++;
898 $this->success += ($result ? 1 : 0);
899 }
900
901 function end() {
902 // dummy
903 }
904
905 function report() {
906 if( $this->total > 0 ) {
907 $this->reportPercentage( $this->success, $this->total );
908 } else {
909 wfDie( "No tests found.\n" );
910 }
911 }
912
913 function reportPercentage( $success, $total ) {
914 $ratio = wfPercent( 100 * $success / $total );
915 print $this->term->color( 1 ) . "Passed $success of $total tests ($ratio)... ";
916 if( $success == $total ) {
917 print $this->term->color( 32 ) . "ALL TESTS PASSED!";
918 } else {
919 $failed = $total - $success ;
920 print $this->term->color( 31 ) . "$failed tests failed!";
921 }
922 print $this->term->reset() . "\n";
923 return ($success == $total);
924 }
925 }
926
927 class DbTestRecorder extends TestRecorder {
928 protected $db; ///< Database connection to the main DB
929 protected $curRun; ///< run ID number for the current run
930 protected $prevRun; ///< run ID number for the previous run, if any
931
932 function __construct( $term ) {
933 parent::__construct( $term );
934 $this->db = wfGetDB( DB_MASTER );
935 }
936
937 /**
938 * Set up result recording; insert a record for the run with the date
939 * and all that fun stuff
940 */
941 function start() {
942 parent::start();
943
944 $this->db->begin();
945
946 if( ! $this->db->tableExists( 'testrun' ) or ! $this->db->tableExists( 'testitem') ) {
947 print "WARNING> `testrun` table not found in database. Trying to create table.\n";
948 dbsource( 'testRunner.sql', $this->db );
949 echo "OK, resuming.\n";
950 }
951
952 // We'll make comparisons against the previous run later...
953 $this->prevRun = $this->db->selectField( 'testrun', 'MAX(tr_id)' );
954
955 $this->db->insert( 'testrun',
956 array(
957 'tr_date' => $this->db->timestamp(),
958 'tr_mw_version' => SpecialVersion::getVersion(),
959 'tr_php_version' => phpversion(),
960 'tr_db_version' => $this->db->getServerVersion(),
961 'tr_uname' => php_uname()
962 ),
963 __METHOD__ );
964 $this->curRun = $this->db->insertId();
965 }
966
967 /**
968 * Record an individual test item's success or failure to the db
969 * @param string $test
970 * @param bool $result
971 */
972 function record( $test, $result ) {
973 parent::record( $test, $result );
974 $this->db->insert( 'testitem',
975 array(
976 'ti_run' => $this->curRun,
977 'ti_name' => $test,
978 'ti_success' => $result ? 1 : 0,
979 ),
980 __METHOD__ );
981 }
982
983 /**
984 * Commit transaction and clean up for result recording
985 */
986 function end() {
987 $this->db->commit();
988 parent::end();
989 }
990
991 function report() {
992 if( $this->prevRun ) {
993 $table = array(
994 array( 'previously failing test(s) now PASSING! :)', 0, 1 ),
995 array( 'previously PASSING test(s) removed o_O', 1, null ),
996 array( 'new PASSING test(s) :)', null, 1 ),
997
998 array( 'previously passing test(s) now FAILING! :(', 1, 0 ),
999 array( 'previously FAILING test(s) removed O_o', 0, null ),
1000 array( 'new FAILING test(s) :(', null, 0 ),
1001 array( 'still FAILING test(s) :(', 0, 0 ),
1002 );
1003 foreach( $table as $criteria ) {
1004 list( $label, $before, $after ) = $criteria;
1005 $differences = $this->compareResult( $before, $after );
1006 if( $differences ) {
1007 $count = count($differences);
1008 printf( "\n%4d %s\n", $count, $label );
1009 foreach ($differences as $differing_test_name => $statusInfo) {
1010 print " * $differing_test_name [$statusInfo]\n";
1011 }
1012 }
1013 }
1014 } else {
1015 print "No previous test runs to compare against.\n";
1016 }
1017 print "\n";
1018 parent::report();
1019 }
1020
1021 /**
1022 ** Returns an array of the test names with changed results, based on the specified
1023 ** before/after criteria.
1024 */
1025 private function compareResult( $before, $after ) {
1026 $testitem = $this->db->tableName( 'testitem' );
1027 $prevRun = intval( $this->prevRun );
1028 $curRun = intval( $this->curRun );
1029 $prevStatus = $this->condition( $before );
1030 $curStatus = $this->condition( $after );
1031
1032 // note: requires mysql >= ver 4.1 for subselects
1033 if( is_null( $after ) ) {
1034 $sql = "
1035 select prev.ti_name as t from $testitem as prev
1036 where prev.ti_run=$prevRun and
1037 prev.ti_success $prevStatus and
1038 (select current.ti_success from $testitem as current
1039 where current.ti_run=$curRun
1040 and prev.ti_name=current.ti_name) $curStatus";
1041 } else {
1042 $sql = "
1043 select current.ti_name as t from $testitem as current
1044 where current.ti_run=$curRun and
1045 current.ti_success $curStatus and
1046 (select prev.ti_success from $testitem as prev
1047 where prev.ti_run=$prevRun
1048 and prev.ti_name=current.ti_name) $prevStatus";
1049 }
1050 $result = $this->db->query( $sql, __METHOD__ );
1051 $retval = array();
1052 while ($row = $this->db->fetchObject( $result )) {
1053 $testname = $row->t;
1054 $retval[$testname] = $this->getTestStatusInfo( $testname, $after, $curRun );
1055 }
1056 $this->db->freeResult( $result );
1057 return $retval;
1058 }
1059
1060 /**
1061 ** Returns a string giving information about when a test last had a status change.
1062 ** Could help to track down when regressions were introduced, as distinct from tests
1063 ** which have never passed (which are more change requests than regressions).
1064 */
1065 private function getTestStatusInfo($testname, $after, $curRun) {
1066
1067 // If we're looking at a test that has just been removed, then say when it first appeared.
1068 if ( is_null( $after ) ) {
1069 $changedRun = $this->db->selectField ( 'testitem',
1070 'MIN(ti_run)',
1071 array( 'ti_name' => $testname ),
1072 __METHOD__ );
1073 $appear = $this->db->selectRow ( 'testrun',
1074 array( 'tr_date', 'tr_mw_version' ),
1075 array( 'tr_id' => $changedRun ),
1076 __METHOD__ );
1077 return "First recorded appearance: "
1078 . date( "d-M-Y H:i:s", strtotime ( $appear->tr_date ) )
1079 . ", " . $appear->tr_mw_version;
1080 }
1081
1082 // Otherwise, this test has previous recorded results.
1083 // See when this test last had a different result to what we're seeing now.
1084 $changedRun = $this->db->selectField ( 'testitem',
1085 'MAX(ti_run)',
1086 array(
1087 'ti_name' => $testname,
1088 'ti_success' => ($after ? "0" : "1"),
1089 "ti_run != " . $this->db->addQuotes ( $curRun )
1090 ),
1091 __METHOD__ );
1092
1093 // If no record of ever having had a different result.
1094 if ( is_null ( $changedRun ) ) {
1095 if ($after == "0") {
1096 return "Has never passed";
1097 } else {
1098 return "Has never failed";
1099 }
1100 }
1101
1102 // Otherwise, we're looking at a test whose status has changed.
1103 // (i.e. it used to work, but now doesn't; or used to fail, but is now fixed.)
1104 // In this situation, give as much info as we can as to when it changed status.
1105 $pre = $this->db->selectRow ( 'testrun',
1106 array( 'tr_date', 'tr_mw_version' ),
1107 array( 'tr_id' => $changedRun ),
1108 __METHOD__ );
1109 $post = $this->db->selectRow ( 'testrun',
1110 array( 'tr_date', 'tr_mw_version' ),
1111 array( "tr_id > " . $this->db->addQuotes ( $changedRun) ),
1112 __METHOD__,
1113 array( "LIMIT" => 1, "ORDER BY" => 'tr_id' )
1114 );
1115
1116 return ( $after == "0" ? "Introduced" : "Fixed" ) . " between "
1117 . date( "d-M-Y H:i:s", strtotime ( $pre->tr_date ) ) . ", " . $pre->tr_mw_version
1118 . " and "
1119 . date( "d-M-Y H:i:s", strtotime ( $post->tr_date ) ) . ", " . $post->tr_mw_version ;
1120 }
1121
1122 /**
1123 ** Helper function for compareResult() database querying.
1124 */
1125 private function condition( $value ) {
1126 if( is_null( $value ) ) {
1127 return 'IS NULL';
1128 } else {
1129 return '=' . intval( $value );
1130 }
1131 }
1132
1133 }
1134
1135 class DbTestPreviewer extends DbTestRecorder {
1136 /**
1137 * Commit transaction and clean up for result recording
1138 */
1139 function end() {
1140 $this->db->rollback();
1141 TestRecorder::end();
1142 }
1143 }
1144
1145 ?>