* Stabilise timestamps generated by the parser to avoid diff test false positives * Fixed msgnw bug. Use RECOVER_ORIG. * Fixed editintro bug. Cloning the parser in MessageCache has some side-effects that need to be corrected. * Fixed typo in Parser_DiffTest.php * General improvements to preprocessorFuzzTest.php * Fixed breakage of XML output feature in Special:ExpandTemplates
62 lines
1.5 KiB
PHP
62 lines
1.5 KiB
PHP
<?php
|
|
|
|
class Parser_DiffTest
|
|
{
|
|
var $parsers, $conf;
|
|
|
|
function __construct( $conf ) {
|
|
if ( !isset( $conf['parsers'] ) ) {
|
|
throw new MWException( __METHOD__ . ': no parsers specified' );
|
|
}
|
|
$this->conf = $conf;
|
|
}
|
|
|
|
function init() {
|
|
if ( !is_null( $this->parsers ) ) {
|
|
return;
|
|
}
|
|
foreach ( $this->conf['parsers'] as $i => $parserConf ) {
|
|
if ( !is_array( $parserConf ) ) {
|
|
$class = $parserConf;
|
|
$parserConf = array( 'class' => $parserConf );
|
|
} else {
|
|
$class = $parserConf['class'];
|
|
}
|
|
$this->parsers[$i] = new $class( $parserConf );
|
|
}
|
|
}
|
|
|
|
function __call( $name, $args ) {
|
|
$this->init();
|
|
$results = array();
|
|
$mismatch = false;
|
|
$lastResult = null;
|
|
$first = true;
|
|
foreach ( $this->parsers as $i => $parser ) {
|
|
$currentResult = call_user_func_array( array( &$this->parsers[$i], $name ), $args );
|
|
if ( $first ) {
|
|
$first = false;
|
|
} else {
|
|
if ( $lastResult !== $currentResult ) {
|
|
$mismatch = true;
|
|
}
|
|
}
|
|
$results[$i] = $currentResult;
|
|
$lastResult = $currentResult;
|
|
}
|
|
if ( $mismatch ) {
|
|
throw new MWException( "Parser_DiffTest: results mismatch on call to $name\n" .
|
|
'Arguments: ' . var_export( $args, true ) . "\n" .
|
|
'Results: ' . var_export( $results, true ) . "\n" );
|
|
}
|
|
return $lastResult;
|
|
}
|
|
|
|
function setFunctionHook( $id, $callback, $flags = 0 ) {
|
|
$this->init();
|
|
foreach ( $this->parsers as $i => $parser ) {
|
|
$parser->setFunctionHook( $id, $callback, $flags );
|
|
}
|
|
}
|
|
}
|
|
|