ac09981332725249680ffc67088f251beace2c11
[lhc/web/wiklou.git] / maintenance / tests / parser / parserTest.inc
1 <?php
2 # Copyright (C) 2004, 2010 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 * @file
24 * @ingroup Maintenance
25 */
26
27 /**
28 * @ingroup Maintenance
29 */
30 class ParserTest {
31 /**
32 * boolean $color whereas output should be colorized
33 */
34 private $color;
35
36 /**
37 * boolean $showOutput Show test output
38 */
39 private $showOutput;
40
41 /**
42 * boolean $useTemporaryTables Use temporary tables for the temporary database
43 */
44 private $useTemporaryTables = true;
45
46 /**
47 * boolean $databaseSetupDone True if the database has been set up
48 */
49 private $databaseSetupDone = false;
50
51 /**
52 * string $oldTablePrefix Original table prefix
53 */
54 private $oldTablePrefix;
55
56 private $maxFuzzTestLength = 300;
57 private $fuzzSeed = 0;
58 private $memoryLimit = 50;
59 private $uploadDir = null;
60
61 public $regex = "";
62 private $savedGlobals = array();
63 /**
64 * Sets terminal colorization and diff/quick modes depending on OS and
65 * command-line options (--color and --quick).
66 */
67 public function ParserTest( $options = array() ) {
68 # Only colorize output if stdout is a terminal.
69 $this->color = !wfIsWindows() && posix_isatty( 1 );
70
71 if ( isset( $options['color'] ) ) {
72 switch( $options['color'] ) {
73 case 'no':
74 $this->color = false;
75 break;
76 case 'yes':
77 default:
78 $this->color = true;
79 break;
80 }
81 }
82
83 $this->term = $this->color
84 ? new AnsiTermColorer()
85 : new DummyTermColorer();
86
87 $this->showDiffs = !isset( $options['quick'] );
88 $this->showProgress = !isset( $options['quiet'] );
89 $this->showFailure = !(
90 isset( $options['quiet'] )
91 && ( isset( $options['record'] )
92 || isset( $options['compare'] ) ) ); // redundant output
93
94 $this->showOutput = isset( $options['show-output'] );
95
96
97 if ( isset( $options['regex'] ) ) {
98 if ( isset( $options['record'] ) ) {
99 echo "Warning: --record cannot be used with --regex, disabling --record\n";
100 unset( $options['record'] );
101 }
102 $this->regex = $options['regex'];
103 } else {
104 # Matches anything
105 $this->regex = '';
106 }
107
108 $this->setupRecorder( $options );
109 $this->keepUploads = isset( $options['keep-uploads'] );
110
111 if ( isset( $options['seed'] ) ) {
112 $this->fuzzSeed = intval( $options['seed'] ) - 1;
113 }
114
115 $this->runDisabled = isset( $options['run-disabled'] );
116
117 $this->hooks = array();
118 $this->functionHooks = array();
119 self::setUp();
120 }
121
122 static function setUp() {
123 global $wgParser, $wgParserConf, $IP, $messageMemc, $wgMemc, $wgDeferredUpdateList,
124 $wgUser, $wgLang, $wgOut, $wgRequest, $wgStyleDirectory, $wgEnableParserCache,
125 $wgMessageCache, $wgUseDatabaseMessages, $wgMsgCacheExpiry, $parserMemc,
126 $wgNamespaceAliases, $wgNamespaceProtection, $wgLocalFileRepo,
127 $wgThumbnailScriptPath, $wgScriptPath,
128 $wgArticlePath, $wgStyleSheetPath, $wgScript, $wgStylePath;
129
130 $wgScript = '/index.php';
131 $wgScriptPath = '/';
132 $wgArticlePath = '/wiki/$1';
133 $wgStyleSheetPath = '/skins';
134 $wgStylePath = '/skins';
135 $wgThumbnailScriptPath = false;
136 $wgLocalFileRepo = array(
137 'class' => 'LocalRepo',
138 'name' => 'local',
139 'directory' => wfTempDir() . '/test-repo',
140 'url' => 'http://example.com/images',
141 'deletedDir' => wfTempDir() . '/test-repo/delete',
142 'hashLevels' => 2,
143 'transformVia404' => false,
144 );
145 $wgNamespaceProtection[NS_MEDIAWIKI] = 'editinterface';
146 $wgNamespaceAliases['Image'] = NS_FILE;
147 $wgNamespaceAliases['Image_talk'] = NS_FILE_TALK;
148
149
150 $wgEnableParserCache = false;
151 $wgDeferredUpdateList = array();
152 $wgMemc = &wfGetMainCache();
153 $messageMemc = &wfGetMessageCacheStorage();
154 $parserMemc = &wfGetParserCacheStorage();
155
156 // $wgContLang = new StubContLang;
157 $wgUser = new User;
158 $wgLang = new StubUserLang;
159 $wgOut = new StubObject( 'wgOut', 'OutputPage' );
160 $wgParser = new StubObject( 'wgParser', $wgParserConf['class'], array( $wgParserConf ) );
161 $wgRequest = new WebRequest;
162
163 $wgMessageCache = new StubObject( 'wgMessageCache', 'MessageCache',
164 array( $messageMemc, $wgUseDatabaseMessages,
165 $wgMsgCacheExpiry ) );
166 if ( $wgStyleDirectory === false ) {
167 $wgStyleDirectory = "$IP/skins";
168 }
169
170 }
171
172 public function setupRecorder ( $options ) {
173 if ( isset( $options['record'] ) ) {
174 $this->recorder = new DbTestRecorder( $this );
175 $this->recorder->version = isset( $options['setversion'] ) ?
176 $options['setversion'] : SpecialVersion::getVersion();
177 } elseif ( isset( $options['compare'] ) ) {
178 $this->recorder = new DbTestPreviewer( $this );
179 } elseif ( isset( $options['upload'] ) ) {
180 $this->recorder = new RemoteTestRecorder( $this );
181 } else {
182 $this->recorder = new TestRecorder( $this );
183 }
184 }
185
186 /**
187 * Remove last character if it is a newline
188 * @group utility
189 */
190 static public function chomp( $s ) {
191 if ( substr( $s, -1 ) === "\n" ) {
192 return substr( $s, 0, -1 );
193 }
194 else {
195 return $s;
196 }
197 }
198
199 /**
200 * Run a fuzz test series
201 * Draw input from a set of test files
202 */
203 function fuzzTest( $filenames ) {
204 $GLOBALS['wgContLang'] = Language::factory( 'en' );
205 $dict = $this->getFuzzInput( $filenames );
206 $dictSize = strlen( $dict );
207 $logMaxLength = log( $this->maxFuzzTestLength );
208 $this->setupDatabase();
209 ini_set( 'memory_limit', $this->memoryLimit * 1048576 );
210
211 $numTotal = 0;
212 $numSuccess = 0;
213 $user = new User;
214 $opts = ParserOptions::newFromUser( $user );
215 $title = Title::makeTitle( NS_MAIN, 'Parser_test' );
216
217 while ( true ) {
218 // Generate test input
219 mt_srand( ++$this->fuzzSeed );
220 $totalLength = mt_rand( 1, $this->maxFuzzTestLength );
221 $input = '';
222
223 while ( strlen( $input ) < $totalLength ) {
224 $logHairLength = mt_rand( 0, 1000000 ) / 1000000 * $logMaxLength;
225 $hairLength = min( intval( exp( $logHairLength ) ), $dictSize );
226 $offset = mt_rand( 0, $dictSize - $hairLength );
227 $input .= substr( $dict, $offset, $hairLength );
228 }
229
230 $this->setupGlobals();
231 $parser = $this->getParser();
232
233 // Run the test
234 try {
235 $parser->parse( $input, $title, $opts );
236 $fail = false;
237 } catch ( Exception $exception ) {
238 $fail = true;
239 }
240
241 if ( $fail ) {
242 echo "Test failed with seed {$this->fuzzSeed}\n";
243 echo "Input:\n";
244 var_dump( $input );
245 echo "\n\n";
246 echo "$exception\n";
247 } else {
248 $numSuccess++;
249 }
250
251 $numTotal++;
252 $this->teardownGlobals();
253 $parser->__destruct();
254
255 if ( $numTotal % 100 == 0 ) {
256 $usage = intval( memory_get_usage( true ) / $this->memoryLimit / 1048576 * 100 );
257 echo "{$this->fuzzSeed}: $numSuccess/$numTotal (mem: $usage%)\n";
258 if ( $usage > 90 ) {
259 echo "Out of memory:\n";
260 $memStats = $this->getMemoryBreakdown();
261
262 foreach ( $memStats as $name => $usage ) {
263 echo "$name: $usage\n";
264 }
265 $this->abort();
266 }
267 }
268 }
269 }
270
271 /**
272 * Get an input dictionary from a set of parser test files
273 */
274 function getFuzzInput( $filenames ) {
275 $dict = '';
276
277 foreach ( $filenames as $filename ) {
278 $contents = file_get_contents( $filename );
279 preg_match_all( '/!!\s*input\n(.*?)\n!!\s*result/s', $contents, $matches );
280
281 foreach ( $matches[1] as $match ) {
282 $dict .= $match . "\n";
283 }
284 }
285
286 return $dict;
287 }
288
289 /**
290 * Get a memory usage breakdown
291 */
292 function getMemoryBreakdown() {
293 $memStats = array();
294
295 foreach ( $GLOBALS as $name => $value ) {
296 $memStats['$' . $name] = strlen( serialize( $value ) );
297 }
298
299 $classes = get_declared_classes();
300
301 foreach ( $classes as $class ) {
302 $rc = new ReflectionClass( $class );
303 $props = $rc->getStaticProperties();
304 $memStats[$class] = strlen( serialize( $props ) );
305 $methods = $rc->getMethods();
306
307 foreach ( $methods as $method ) {
308 $memStats[$class] += strlen( serialize( $method->getStaticVariables() ) );
309 }
310 }
311
312 $functions = get_defined_functions();
313
314 foreach ( $functions['user'] as $function ) {
315 $rf = new ReflectionFunction( $function );
316 $memStats["$function()"] = strlen( serialize( $rf->getStaticVariables() ) );
317 }
318
319 asort( $memStats );
320
321 return $memStats;
322 }
323
324 function abort() {
325 $this->abort();
326 }
327
328 /**
329 * Run a series of tests listed in the given text files.
330 * Each test consists of a brief description, wikitext input,
331 * and the expected HTML output.
332 *
333 * Prints status updates on stdout and counts up the total
334 * number and percentage of passed tests.
335 *
336 * @param $filenames Array of strings
337 * @return Boolean: true if passed all tests, false if any tests failed.
338 */
339 public function runTestsFromFiles( $filenames ) {
340 $ok = false;
341 $GLOBALS['wgContLang'] = Language::factory( 'en' );
342 $this->recorder->start();
343 try {
344 $this->setupDatabase();
345 $ok = true;
346
347 foreach ( $filenames as $filename ) {
348 $tests = new TestFileIterator( $filename, $this );
349 $ok = $this->runTests( $tests ) && $ok;
350 }
351
352 $this->teardownDatabase();
353 $this->recorder->report();
354 } catch (DBError $e) {
355 echo $e->getMessage();
356 }
357 $this->recorder->end();
358
359 return $ok;
360 }
361
362 function runTests( $tests ) {
363 $ok = true;
364
365 foreach ( $tests as $t ) {
366 $result =
367 $this->runTest( $t['test'], $t['input'], $t['result'], $t['options'], $t['config'] );
368 $ok = $ok && $result;
369 $this->recorder->record( $t['test'], $result );
370 }
371
372 if ( $this->showProgress ) {
373 print "\n";
374 }
375
376 return $ok;
377 }
378
379 /**
380 * Get a Parser object
381 */
382 function getParser( $preprocessor = null ) {
383 global $wgParserConf;
384
385 $class = $wgParserConf['class'];
386 $parser = new $class( array( 'preprocessorClass' => $preprocessor ) + $wgParserConf );
387
388 foreach ( $this->hooks as $tag => $callback ) {
389 $parser->setHook( $tag, $callback );
390 }
391
392 foreach ( $this->functionHooks as $tag => $bits ) {
393 list( $callback, $flags ) = $bits;
394 $parser->setFunctionHook( $tag, $callback, $flags );
395 }
396
397 wfRunHooks( 'ParserTestParser', array( &$parser ) );
398
399 return $parser;
400 }
401
402 /**
403 * Run a given wikitext input through a freshly-constructed wiki parser,
404 * and compare the output against the expected results.
405 * Prints status and explanatory messages to stdout.
406 *
407 * @param $desc String: test's description
408 * @param $input String: wikitext to try rendering
409 * @param $result String: result to output
410 * @param $opts Array: test's options
411 * @param $config String: overrides for global variables, one per line
412 * @return Boolean
413 */
414 public function runTest( $desc, $input, $result, $opts, $config ) {
415 if ( $this->showProgress ) {
416 $this->showTesting( $desc );
417 }
418
419 $opts = $this->parseOptions( $opts );
420 $this->setupGlobals( $opts, $config );
421
422 $user = new User();
423 $options = ParserOptions::newFromUser( $user );
424
425 if ( isset( $opts['title'] ) ) {
426 $titleText = $opts['title'];
427 }
428 else {
429 $titleText = 'Parser test';
430 }
431
432 $noxml = isset( $opts['noxml'] );
433 $local = isset( $opts['local'] );
434 $preprocessor = isset( $opts['preprocessor'] ) ? $opts['preprocessor'] : null;
435 $parser = $this->getParser( $preprocessor );
436 $title = Title::newFromText( $titleText );
437
438 if ( isset( $opts['pst'] ) ) {
439 $out = $parser->preSaveTransform( $input, $title, $user, $options );
440 } elseif ( isset( $opts['msg'] ) ) {
441 $out = $parser->transformMsg( $input, $options );
442 } elseif ( isset( $opts['section'] ) ) {
443 $section = $opts['section'];
444 $out = $parser->getSection( $input, $section );
445 } elseif ( isset( $opts['replace'] ) ) {
446 $section = $opts['replace'][0];
447 $replace = $opts['replace'][1];
448 $out = $parser->replaceSection( $input, $section, $replace );
449 } elseif ( isset( $opts['comment'] ) ) {
450 $linker = $user->getSkin();
451 $out = $linker->formatComment( $input, $title, $local );
452 } elseif ( isset( $opts['preload'] ) ) {
453 $out = $parser->getpreloadText( $input, $title, $options );
454 } else {
455 $output = $parser->parse( $input, $title, $options, true, true, 1337 );
456 $out = $output->getText();
457
458 if ( isset( $opts['showtitle'] ) ) {
459 if ( $output->getTitleText() ) {
460 $title = $output->getTitleText();
461 }
462
463 $out = "$title\n$out";
464 }
465
466 if ( isset( $opts['ill'] ) ) {
467 $out = $this->tidy( implode( ' ', $output->getLanguageLinks() ) );
468 } elseif ( isset( $opts['cat'] ) ) {
469 global $wgOut;
470
471 $wgOut->addCategoryLinks( $output->getCategories() );
472 $cats = $wgOut->getCategoryLinks();
473
474 if ( isset( $cats['normal'] ) ) {
475 $out = $this->tidy( implode( ' ', $cats['normal'] ) );
476 } else {
477 $out = '';
478 }
479 }
480
481 $result = $this->tidy( $result );
482 }
483
484 $this->teardownGlobals();
485 return $this->showTestResult( $desc, $result, $out );
486 }
487
488 /**
489 *
490 */
491 function showTestResult( $desc, $result, $out ) {
492 if ( $result === $out ) {
493 $this->showSuccess( $desc );
494 return true;
495 } else {
496 $this->showFailure( $desc, $result, $out );
497 return false;
498 }
499 }
500
501 /**
502 * Use a regex to find out the value of an option
503 * @param $key String: name of option val to retrieve
504 * @param $opts Options array to look in
505 * @param $default Mixed: default value returned if not found
506 */
507 private static function getOptionValue( $key, $opts, $default ) {
508 $key = strtolower( $key );
509
510 if ( isset( $opts[$key] ) ) {
511 return $opts[$key];
512 } else {
513 return $default;
514 }
515 }
516
517 private function parseOptions( $instring ) {
518 $opts = array();
519 // foo
520 // foo=bar
521 // foo="bar baz"
522 // foo=[[bar baz]]
523 // foo=bar,"baz quux"
524 $regex = '/\b
525 ([\w-]+) # Key
526 \b
527 (?:\s*
528 = # First sub-value
529 \s*
530 (
531 "
532 [^"]* # Quoted val
533 "
534 |
535 \[\[
536 [^]]* # Link target
537 \]\]
538 |
539 [\w-]+ # Plain word
540 )
541 (?:\s*
542 , # Sub-vals 1..N
543 \s*
544 (
545 "[^"]*" # Quoted val
546 |
547 \[\[[^]]*\]\] # Link target
548 |
549 [\w-]+ # Plain word
550 )
551 )*
552 )?
553 /x';
554
555 if ( preg_match_all( $regex, $instring, $matches, PREG_SET_ORDER ) ) {
556 foreach ( $matches as $bits ) {
557 array_shift( $bits );
558 $key = strtolower( array_shift( $bits ) );
559 if ( count( $bits ) == 0 ) {
560 $opts[$key] = true;
561 } elseif ( count( $bits ) == 1 ) {
562 $opts[$key] = $this->cleanupOption( array_shift( $bits ) );
563 } else {
564 // Array!
565 $opts[$key] = array_map( array( $this, 'cleanupOption' ), $bits );
566 }
567 }
568 }
569 return $opts;
570 }
571
572 private function cleanupOption( $opt ) {
573 if ( substr( $opt, 0, 1 ) == '"' ) {
574 return substr( $opt, 1, -1 );
575 }
576
577 if ( substr( $opt, 0, 2 ) == '[[' ) {
578 return substr( $opt, 2, -2 );
579 }
580 return $opt;
581 }
582
583 /**
584 * Set up the global variables for a consistent environment for each test.
585 * Ideally this should replace the global configuration entirely.
586 */
587 private function setupGlobals( $opts = '', $config = '' ) {
588 global $wgDBtype;
589
590 # Find out values for some special options.
591 $lang =
592 self::getOptionValue( 'language', $opts, 'en' );
593 $variant =
594 self::getOptionValue( 'variant', $opts, false );
595 $maxtoclevel =
596 self::getOptionValue( 'wgMaxTocLevel', $opts, 999 );
597 $linkHolderBatchSize =
598 self::getOptionValue( 'wgLinkHolderBatchSize', $opts, 1000 );
599
600 $settings = array(
601 'wgServer' => 'http://Britney-Spears',
602 'wgScript' => '/index.php',
603 'wgScriptPath' => '/',
604 'wgArticlePath' => '/wiki/$1',
605 'wgActionPaths' => array(),
606 'wgLocalFileRepo' => array(
607 'class' => 'LocalRepo',
608 'name' => 'local',
609 'directory' => $this->uploadDir,
610 'url' => 'http://example.com/images',
611 'hashLevels' => 2,
612 'transformVia404' => false,
613 ),
614 'wgEnableUploads' => self::getOptionValue( 'wgEnableUploads', $opts, true ),
615 'wgStylePath' => '/skins',
616 'wgStyleSheetPath' => '/skins',
617 'wgSitename' => 'MediaWiki',
618 'wgLanguageCode' => $lang,
619 'wgDBprefix' => $wgDBtype != 'oracle' ? 'parsertest_' : 'pt_',
620 'wgRawHtml' => isset( $opts['rawhtml'] ),
621 'wgLang' => null,
622 'wgContLang' => null,
623 'wgNamespacesWithSubpages' => array( 0 => isset( $opts['subpage'] ) ),
624 'wgMaxTocLevel' => $maxtoclevel,
625 'wgCapitalLinks' => true,
626 'wgNoFollowLinks' => true,
627 'wgNoFollowDomainExceptions' => array(),
628 'wgThumbnailScriptPath' => false,
629 'wgUseImageResize' => false,
630 'wgUseTeX' => isset( $opts['math'] ),
631 'wgMathDirectory' => $this->uploadDir . '/math',
632 'wgLocaltimezone' => 'UTC',
633 'wgAllowExternalImages' => true,
634 'wgUseTidy' => false,
635 'wgDefaultLanguageVariant' => $variant,
636 'wgVariantArticlePath' => false,
637 'wgGroupPermissions' => array( '*' => array(
638 'createaccount' => true,
639 'read' => true,
640 'edit' => true,
641 'createpage' => true,
642 'createtalk' => true,
643 ) ),
644 'wgNamespaceProtection' => array( NS_MEDIAWIKI => 'editinterface' ),
645 'wgDefaultExternalStore' => array(),
646 'wgForeignFileRepos' => array(),
647 'wgLinkHolderBatchSize' => $linkHolderBatchSize,
648 'wgExperimentalHtmlIds' => false,
649 'wgExternalLinkTarget' => false,
650 'wgAlwaysUseTidy' => false,
651 'wgHtml5' => true,
652 'wgWellFormedXml' => true,
653 'wgAllowMicrodataAttributes' => true,
654 );
655
656 if ( $config ) {
657 $configLines = explode( "\n", $config );
658
659 foreach ( $configLines as $line ) {
660 list( $var, $value ) = explode( '=', $line, 2 );
661
662 $settings[$var] = eval( "return $value;" );
663 }
664 }
665
666 $this->savedGlobals = array();
667
668 foreach ( $settings as $var => $val ) {
669 if ( array_key_exists( $var, $GLOBALS ) ) {
670 $this->savedGlobals[$var] = $GLOBALS[$var];
671 }
672
673 $GLOBALS[$var] = $val;
674 }
675
676 $langObj = Language::factory( $lang );
677 $GLOBALS['wgLang'] = $langObj;
678 $GLOBALS['wgContLang'] = $langObj;
679 $GLOBALS['wgMemc'] = new FakeMemCachedClient;
680 $GLOBALS['wgOut'] = new OutputPage;
681
682 global $wgHooks;
683
684 $wgHooks['ParserTestParser'][] = 'ParserTestParserHook::setup';
685 $wgHooks['ParserTestParser'][] = 'ParserTestStaticParserHook::setup';
686 $wgHooks['ParserGetVariableValueTs'][] = 'ParserTest::getFakeTimestamp';
687
688 MagicWord::clearCache();
689
690 global $wgUser;
691 $wgUser = new User();
692 }
693
694 /**
695 * List of temporary tables to create, without prefix.
696 * Some of these probably aren't necessary.
697 */
698 private function listTables() {
699 global $wgDBtype;
700
701 $tables = array( 'user', 'user_properties', 'page', 'page_restrictions',
702 'protected_titles', 'revision', 'text', 'pagelinks', 'imagelinks',
703 'categorylinks', 'templatelinks', 'externallinks', 'langlinks', 'iwlinks',
704 'site_stats', 'hitcounter', 'ipblocks', 'image', 'oldimage',
705 'recentchanges', 'watchlist', 'math', 'interwiki', 'logging',
706 'querycache', 'objectcache', 'job', 'l10n_cache', 'redirect', 'querycachetwo',
707 'archive', 'user_groups', 'page_props', 'category', 'msg_resource', 'msg_resource_links'
708 );
709
710 if ( in_array( $wgDBtype, array( 'mysql', 'sqlite', 'oracle' ) ) )
711 array_push( $tables, 'searchindex' );
712
713 // Allow extensions to add to the list of tables to duplicate;
714 // may be necessary if they hook into page save or other code
715 // which will require them while running tests.
716 wfRunHooks( 'ParserTestTables', array( &$tables ) );
717
718 return $tables;
719 }
720
721 /**
722 * Set up a temporary set of wiki tables to work with for the tests.
723 * Currently this will only be done once per run, and any changes to
724 * the db will be visible to later tests in the run.
725 */
726 public function setupDatabase() {
727 global $wgDBprefix, $wgDBtype;
728
729 if ( $this->databaseSetupDone ) {
730 return;
731 }
732
733 if ( $wgDBprefix === 'parsertest_' || ( $wgDBtype == 'oracle' && $wgDBprefix === 'pt_' ) ) {
734 throw new MWException( 'setupDatabase should be called before setupGlobals' );
735 }
736
737 $this->databaseSetupDone = true;
738 $this->oldTablePrefix = $wgDBprefix;
739
740 # SqlBagOStuff broke when using temporary tables on r40209 (bug 15892).
741 # It seems to have been fixed since (r55079?).
742 # If it fails, $wgCaches[CACHE_DB] = new HashBagOStuff(); should work around it.
743
744 # CREATE TEMPORARY TABLE breaks if there is more than one server
745 if ( wfGetLB()->getServerCount() != 1 ) {
746 $this->useTemporaryTables = false;
747 }
748
749 $temporary = $this->useTemporaryTables || $wgDBtype == 'postgres';
750
751 $db = wfGetDB( DB_MASTER );
752 $tables = $this->listTables();
753
754 foreach ( $tables as $tbl ) {
755 # Clean up from previous aborted run. So that table escaping
756 # works correctly across DB engines, we need to change the pre-
757 # fix back and forth so tableName() works right.
758 $this->changePrefix( $this->oldTablePrefix );
759 $oldTableName = $db->tableName( $tbl );
760 $this->changePrefix( $wgDBtype != 'oracle' ? 'parsertest_' : 'pt_' );
761 $newTableName = $db->tableName( $tbl );
762
763 if ( $wgDBtype == 'mysql' ) {
764 $db->query( "DROP TABLE IF EXISTS $newTableName" );
765 } elseif ( in_array( $wgDBtype, array( 'postgres', 'oracle' ) ) ) {
766 /* DROPs wouldn't work due to Foreign Key Constraints (bug 14990, r58669)
767 * Use "DROP TABLE IF EXISTS $newTableName CASCADE" for postgres? That
768 * syntax would also work for mysql.
769 */
770 } elseif ( $db->tableExists( $tbl ) ) {
771 $db->query( "DROP TABLE $newTableName" );
772 }
773
774 # Create new table
775 $db->duplicateTableStructure( $oldTableName, $newTableName, $temporary );
776 }
777
778 if ( $wgDBtype == 'oracle' )
779 $db->query( 'BEGIN FILL_WIKI_INFO; END;' );
780
781 $this->changePrefix( $wgDBtype != 'oracle' ? 'parsertest_' : 'pt_' );
782
783 if ( $wgDBtype == 'oracle' ) {
784 # Insert 0 user to prevent FK violations
785
786 # Anonymous user
787 $db->insert( 'user', array(
788 'user_id' => 0,
789 'user_name' => 'Anonymous' ) );
790 }
791
792 # Hack: insert a few Wikipedia in-project interwiki prefixes,
793 # for testing inter-language links
794 $db->insert( 'interwiki', array(
795 array( 'iw_prefix' => 'wikipedia',
796 'iw_url' => 'http://en.wikipedia.org/wiki/$1',
797 'iw_api' => '',
798 'iw_wikiid' => '',
799 'iw_local' => 0 ),
800 array( 'iw_prefix' => 'meatball',
801 'iw_url' => 'http://www.usemod.com/cgi-bin/mb.pl?$1',
802 'iw_api' => '',
803 'iw_wikiid' => '',
804 'iw_local' => 0 ),
805 array( 'iw_prefix' => 'zh',
806 'iw_url' => 'http://zh.wikipedia.org/wiki/$1',
807 'iw_api' => '',
808 'iw_wikiid' => '',
809 'iw_local' => 1 ),
810 array( 'iw_prefix' => 'es',
811 'iw_url' => 'http://es.wikipedia.org/wiki/$1',
812 'iw_api' => '',
813 'iw_wikiid' => '',
814 'iw_local' => 1 ),
815 array( 'iw_prefix' => 'fr',
816 'iw_url' => 'http://fr.wikipedia.org/wiki/$1',
817 'iw_api' => '',
818 'iw_wikiid' => '',
819 'iw_local' => 1 ),
820 array( 'iw_prefix' => 'ru',
821 'iw_url' => 'http://ru.wikipedia.org/wiki/$1',
822 'iw_api' => '',
823 'iw_wikiid' => '',
824 'iw_local' => 1 ),
825 ) );
826
827
828 # Update certain things in site_stats
829 $db->insert( 'site_stats', array( 'ss_row_id' => 1, 'ss_images' => 2, 'ss_good_articles' => 1 ) );
830
831 # Reinitialise the LocalisationCache to match the database state
832 Language::getLocalisationCache()->unloadAll();
833
834 # Make a new message cache
835 global $wgMessageCache, $wgMemc;
836 $wgMessageCache = new MessageCache( $wgMemc, true, 3600 );
837
838 $this->uploadDir = $this->setupUploadDir();
839 $user = User::createNew( 'WikiSysop' );
840 $image = wfLocalFile( Title::makeTitle( NS_FILE, 'Foobar.jpg' ) );
841 $image->recordUpload2( '', 'Upload of some lame file', 'Some lame file', array(
842 'size' => 12345,
843 'width' => 1941,
844 'height' => 220,
845 'bits' => 24,
846 'media_type' => MEDIATYPE_BITMAP,
847 'mime' => 'image/jpeg',
848 'metadata' => serialize( array() ),
849 'sha1' => wfBaseConvert( '', 16, 36, 31 ),
850 'fileExists' => true
851 ), $db->timestamp( '20010115123500' ), $user );
852
853 # This image will be blacklisted in [[MediaWiki:Bad image list]]
854 $image = wfLocalFile( Title::makeTitle( NS_FILE, 'Bad.jpg' ) );
855 $image->recordUpload2( '', 'zomgnotcensored', 'Borderline image', array(
856 'size' => 12345,
857 'width' => 320,
858 'height' => 240,
859 'bits' => 24,
860 'media_type' => MEDIATYPE_BITMAP,
861 'mime' => 'image/jpeg',
862 'metadata' => serialize( array() ),
863 'sha1' => wfBaseConvert( '', 16, 36, 31 ),
864 'fileExists' => true
865 ), $db->timestamp( '20010115123500' ), $user );
866 }
867
868 /**
869 * Change the table prefix on all open DB connections/
870 */
871 protected function changePrefix( $prefix ) {
872 global $wgDBprefix;
873 wfGetLBFactory()->forEachLB( array( $this, 'changeLBPrefix' ), array( $prefix ) );
874 $wgDBprefix = $prefix;
875 }
876
877 public function changeLBPrefix( $lb, $prefix ) {
878 $lb->forEachOpenConnection( array( $this, 'changeDBPrefix' ), array( $prefix ) );
879 }
880
881 public function changeDBPrefix( $db, $prefix ) {
882 $db->tablePrefix( $prefix );
883 }
884
885 public function teardownDatabase() {
886 global $wgDBtype;
887
888 if ( !$this->databaseSetupDone ) {
889 $this->teardownGlobals();
890 return;
891 }
892 $this->teardownUploadDir( $this->uploadDir );
893
894 $this->changePrefix( $this->oldTablePrefix );
895 $this->databaseSetupDone = false;
896
897 if ( $this->useTemporaryTables ) {
898 # Don't need to do anything
899 $this->teardownGlobals();
900 return;
901 }
902
903 $tables = $this->listTables();
904 $db = wfGetDB( DB_MASTER );
905
906 foreach ( $tables as $table ) {
907 $sql = $wgDBtype == 'oracle' ? "DROP TABLE pt_$table DROP CONSTRAINTS" : "DROP TABLE `parsertest_$table`";
908 $db->query( $sql );
909 }
910
911 if ( $wgDBtype == 'oracle' )
912 $db->query( 'BEGIN FILL_WIKI_INFO; END;' );
913
914 $this->teardownGlobals();
915 }
916
917 /**
918 * Create a dummy uploads directory which will contain a couple
919 * of files in order to pass existence tests.
920 *
921 * @return String: the directory
922 */
923 private function setupUploadDir() {
924 global $IP;
925
926 if ( $this->keepUploads ) {
927 $dir = wfTempDir() . '/mwParser-images';
928
929 if ( is_dir( $dir ) ) {
930 return $dir;
931 }
932 } else {
933 $dir = wfTempDir() . "/mwParser-" . mt_rand() . "-images";
934 }
935
936 // wfDebug( "Creating upload directory $dir\n" );
937 if ( file_exists( $dir ) ) {
938 wfDebug( "Already exists!\n" );
939 return $dir;
940 }
941
942 wfMkdirParents( $dir . '/3/3a' );
943 copy( "$IP/skins/monobook/headbg.jpg", "$dir/3/3a/Foobar.jpg" );
944 wfMkdirParents( $dir . '/0/09' );
945 copy( "$IP/skins/monobook/headbg.jpg", "$dir/0/09/Bad.jpg" );
946
947 return $dir;
948 }
949
950 /**
951 * Restore default values and perform any necessary clean-up
952 * after each test runs.
953 */
954 private function teardownGlobals() {
955 RepoGroup::destroySingleton();
956 LinkCache::singleton()->clear();
957
958 foreach ( $this->savedGlobals as $var => $val ) {
959 $GLOBALS[$var] = $val;
960 }
961 }
962
963 /**
964 * Remove the dummy uploads directory
965 */
966 private function teardownUploadDir( $dir ) {
967 if ( $this->keepUploads ) {
968 return;
969 }
970
971 // delete the files first, then the dirs.
972 self::deleteFiles(
973 array (
974 "$dir/3/3a/Foobar.jpg",
975 "$dir/thumb/3/3a/Foobar.jpg/180px-Foobar.jpg",
976 "$dir/thumb/3/3a/Foobar.jpg/200px-Foobar.jpg",
977 "$dir/thumb/3/3a/Foobar.jpg/640px-Foobar.jpg",
978 "$dir/thumb/3/3a/Foobar.jpg/120px-Foobar.jpg",
979
980 "$dir/0/09/Bad.jpg",
981
982 "$dir/math/f/a/5/fa50b8b616463173474302ca3e63586b.png",
983 )
984 );
985
986 self::deleteDirs(
987 array (
988 "$dir/3/3a",
989 "$dir/3",
990 "$dir/thumb/6/65",
991 "$dir/thumb/6",
992 "$dir/thumb/3/3a/Foobar.jpg",
993 "$dir/thumb/3/3a",
994 "$dir/thumb/3",
995
996 "$dir/0/09/",
997 "$dir/0/",
998 "$dir/thumb",
999 "$dir/math/f/a/5",
1000 "$dir/math/f/a",
1001 "$dir/math/f",
1002 "$dir/math",
1003 "$dir",
1004 )
1005 );
1006 }
1007
1008 /**
1009 * Delete the specified files, if they exist.
1010 * @param $files Array: full paths to files to delete.
1011 */
1012 private static function deleteFiles( $files ) {
1013 foreach ( $files as $file ) {
1014 if ( file_exists( $file ) ) {
1015 unlink( $file );
1016 }
1017 }
1018 }
1019
1020 /**
1021 * Delete the specified directories, if they exist. Must be empty.
1022 * @param $dirs Array: full paths to directories to delete.
1023 */
1024 private static function deleteDirs( $dirs ) {
1025 foreach ( $dirs as $dir ) {
1026 if ( is_dir( $dir ) ) {
1027 rmdir( $dir );
1028 }
1029 }
1030 }
1031
1032 /**
1033 * "Running test $desc..."
1034 */
1035 protected function showTesting( $desc ) {
1036 print "Running test $desc... ";
1037 }
1038
1039 /**
1040 * Print a happy success message.
1041 *
1042 * @param $desc String: the test name
1043 * @return Boolean
1044 */
1045 protected function showSuccess( $desc ) {
1046 if ( $this->showProgress ) {
1047 print $this->term->color( '1;32' ) . 'PASSED' . $this->term->reset() . "\n";
1048 }
1049
1050 return true;
1051 }
1052
1053 /**
1054 * Print a failure message and provide some explanatory output
1055 * about what went wrong if so configured.
1056 *
1057 * @param $desc String: the test name
1058 * @param $result String: expected HTML output
1059 * @param $html String: actual HTML output
1060 * @return Boolean
1061 */
1062 protected function showFailure( $desc, $result, $html ) {
1063 if ( $this->showFailure ) {
1064 if ( !$this->showProgress ) {
1065 # In quiet mode we didn't show the 'Testing' message before the
1066 # test, in case it succeeded. Show it now:
1067 $this->showTesting( $desc );
1068 }
1069
1070 print $this->term->color( '31' ) . 'FAILED!' . $this->term->reset() . "\n";
1071
1072 if ( $this->showOutput ) {
1073 print "--- Expected ---\n$result\n--- Actual ---\n$html\n";
1074 }
1075
1076 if ( $this->showDiffs ) {
1077 print $this->quickDiff( $result, $html );
1078 if ( !$this->wellFormed( $html ) ) {
1079 print "XML error: $this->mXmlError\n";
1080 }
1081 }
1082 }
1083
1084 return false;
1085 }
1086
1087 /**
1088 * Run given strings through a diff and return the (colorized) output.
1089 * Requires writable /tmp directory and a 'diff' command in the PATH.
1090 *
1091 * @param $input String
1092 * @param $output String
1093 * @param $inFileTail String: tailing for the input file name
1094 * @param $outFileTail String: tailing for the output file name
1095 * @return String
1096 */
1097 protected function quickDiff( $input, $output, $inFileTail = 'expected', $outFileTail = 'actual' ) {
1098 $prefix = wfTempDir() . "/mwParser-" . mt_rand();
1099
1100 $infile = "$prefix-$inFileTail";
1101 $this->dumpToFile( $input, $infile );
1102
1103 $outfile = "$prefix-$outFileTail";
1104 $this->dumpToFile( $output, $outfile );
1105
1106 $diff = `diff -au $infile $outfile`;
1107 unlink( $infile );
1108 unlink( $outfile );
1109
1110 return $this->colorDiff( $diff );
1111 }
1112
1113 /**
1114 * Write the given string to a file, adding a final newline.
1115 *
1116 * @param $data String
1117 * @param $filename String
1118 */
1119 private function dumpToFile( $data, $filename ) {
1120 $file = fopen( $filename, "wt" );
1121 fwrite( $file, $data . "\n" );
1122 fclose( $file );
1123 }
1124
1125 /**
1126 * Colorize unified diff output if set for ANSI color output.
1127 * Subtractions are colored blue, additions red.
1128 *
1129 * @param $text String
1130 * @return String
1131 */
1132 protected function colorDiff( $text ) {
1133 return preg_replace(
1134 array( '/^(-.*)$/m', '/^(\+.*)$/m' ),
1135 array( $this->term->color( 34 ) . '$1' . $this->term->reset(),
1136 $this->term->color( 31 ) . '$1' . $this->term->reset() ),
1137 $text );
1138 }
1139
1140 /**
1141 * Show "Reading tests from ..."
1142 *
1143 * @param $path String
1144 */
1145 public function showRunFile( $path ) {
1146 print $this->term->color( 1 ) .
1147 "Reading tests from \"$path\"..." .
1148 $this->term->reset() .
1149 "\n";
1150 }
1151
1152 /**
1153 * Insert a temporary test article
1154 * @param $name String: the title, including any prefix
1155 * @param $text String: the article text
1156 * @param $line Integer: the input line number, for reporting errors
1157 */
1158 static public function addArticle( $name, $text, $line = 'unknown' ) {
1159 global $wgCapitalLinks;
1160
1161 $text = self::chomp($text);
1162
1163 $oldCapitalLinks = $wgCapitalLinks;
1164 $wgCapitalLinks = true; // We only need this from SetupGlobals() See r70917#c8637
1165
1166 $name = self::chomp( $name );
1167 $title = Title::newFromText( $name );
1168
1169 if ( is_null( $title ) ) {
1170 wfDie( "invalid title ('$name' => '$title') at line $line\n" );
1171 }
1172
1173 $aid = $title->getArticleID( Title::GAID_FOR_UPDATE );
1174
1175 if ( $aid != 0 ) {
1176 debug_print_backtrace();
1177 wfDie( "duplicate article '$name' at line $line\n" );
1178 }
1179
1180 $art = new Article( $title );
1181 $art->insertNewArticle( $text, '', false, false );
1182
1183 $wgCapitalLinks = $oldCapitalLinks;
1184 }
1185
1186 /**
1187 * Steal a callback function from the primary parser, save it for
1188 * application to our scary parser. If the hook is not installed,
1189 * abort processing of this file.
1190 *
1191 * @param $name String
1192 * @return Bool true if tag hook is present
1193 */
1194 public function requireHook( $name ) {
1195 global $wgParser;
1196
1197 $wgParser->firstCallInit( ); // make sure hooks are loaded.
1198
1199 if ( isset( $wgParser->mTagHooks[$name] ) ) {
1200 $this->hooks[$name] = $wgParser->mTagHooks[$name];
1201 } else {
1202 echo " This test suite requires the '$name' hook extension, skipping.\n";
1203 return false;
1204 }
1205
1206 return true;
1207 }
1208
1209 /**
1210 * Steal a callback function from the primary parser, save it for
1211 * application to our scary parser. If the hook is not installed,
1212 * abort processing of this file.
1213 *
1214 * @param $name String
1215 * @return Bool true if function hook is present
1216 */
1217 public function requireFunctionHook( $name ) {
1218 global $wgParser;
1219
1220 $wgParser->firstCallInit( ); // make sure hooks are loaded.
1221
1222 if ( isset( $wgParser->mFunctionHooks[$name] ) ) {
1223 $this->functionHooks[$name] = $wgParser->mFunctionHooks[$name];
1224 } else {
1225 echo " This test suite requires the '$name' function hook extension, skipping.\n";
1226 return false;
1227 }
1228
1229 return true;
1230 }
1231
1232 /*
1233 * Run the "tidy" command on text if the $wgUseTidy
1234 * global is true
1235 *
1236 * @param $text String: the text to tidy
1237 * @return String
1238 * @static
1239 */
1240 private function tidy( $text ) {
1241 global $wgUseTidy;
1242
1243 if ( $wgUseTidy ) {
1244 $text = MWTidy::tidy( $text );
1245 }
1246
1247 return $text;
1248 }
1249
1250 private function wellFormed( $text ) {
1251 $html =
1252 Sanitizer::hackDocType() .
1253 '<html>' .
1254 $text .
1255 '</html>';
1256
1257 $parser = xml_parser_create( "UTF-8" );
1258
1259 # case folding violates XML standard, turn it off
1260 xml_parser_set_option( $parser, XML_OPTION_CASE_FOLDING, false );
1261
1262 if ( !xml_parse( $parser, $html, true ) ) {
1263 $err = xml_error_string( xml_get_error_code( $parser ) );
1264 $position = xml_get_current_byte_index( $parser );
1265 $fragment = $this->extractFragment( $html, $position );
1266 $this->mXmlError = "$err at byte $position:\n$fragment";
1267 xml_parser_free( $parser );
1268
1269 return false;
1270 }
1271
1272 xml_parser_free( $parser );
1273
1274 return true;
1275 }
1276
1277 private function extractFragment( $text, $position ) {
1278 $start = max( 0, $position - 10 );
1279 $before = $position - $start;
1280 $fragment = '...' .
1281 $this->term->color( 34 ) .
1282 substr( $text, $start, $before ) .
1283 $this->term->color( 0 ) .
1284 $this->term->color( 31 ) .
1285 $this->term->color( 1 ) .
1286 substr( $text, $position, 1 ) .
1287 $this->term->color( 0 ) .
1288 $this->term->color( 34 ) .
1289 substr( $text, $position + 1, 9 ) .
1290 $this->term->color( 0 ) .
1291 '...';
1292 $display = str_replace( "\n", ' ', $fragment );
1293 $caret = ' ' .
1294 str_repeat( ' ', $before ) .
1295 $this->term->color( 31 ) .
1296 '^' .
1297 $this->term->color( 0 );
1298
1299 return "$display\n$caret";
1300 }
1301
1302 static function getFakeTimestamp( &$parser, &$ts ) {
1303 $ts = 123;
1304 return true;
1305 }
1306 }