27 require_once __DIR__ .
'/commandLine.inc';
29 $wgHooks[
'BeforeParserFetchTemplateAndtitle'][] =
'PPFuzzTester::templateHook';
33 '[[',
']]',
'{{',
'{{',
'}}',
'}}',
'{{{',
'}}}',
34 '<',
'>',
'<nowiki',
'<gallery',
'</nowiki>',
'</gallery>',
'<nOwIkI>',
'</NoWiKi>',
37 '|',
'=',
"\n",
' ',
"\t",
"\x7f",
38 '~~',
'~~~',
'~~~~',
'subst:',
39 'a',
'b',
'c',
'd',
'e',
'f',
'g',
'h',
'i',
'j',
40 'k',
'l',
'm',
'n',
'o',
'p',
'q',
'r',
's',
't',
49 public $entryPoints = [
'testSrvus',
'testPst',
'testPreprocess' ];
58 if ( !file_exists(
'results' ) ) {
61 if ( !is_dir(
'results' ) ) {
62 echo
"Unable to create 'results' directory\n";
65 $overallStart = microtime(
true );
66 $reportInterval = 1000;
67 for ( $i = 1;
true; $i++ ) {
68 $t = -microtime(
true );
71 self::$currentTest->execute();
73 }
catch ( Exception
$e ) {
74 $testReport = self::$currentTest->getReport();
75 $exceptionReport =
$e->getText();
76 $hash = md5( $testReport );
77 file_put_contents(
"results/ppft-$hash.in",
serialize( self::$currentTest ) );
78 file_put_contents(
"results/ppft-$hash.fail",
79 "Input:\n$testReport\n\nException report:\n$exceptionReport\n" );
80 print
"Test $hash failed\n";
83 $t += microtime(
true );
86 printf(
"Test $passed in %.3f seconds\n",
$t );
87 print self::$currentTest->getReport();
90 $reportMetric = ( microtime(
true ) - $overallStart ) / $i * $reportInterval;
91 if ( $reportMetric > 25 ) {
92 if ( substr( $reportInterval, 0, 1 ) ===
'1' ) {
97 } elseif ( $reportMetric < 4 ) {
98 if ( substr( $reportInterval, 0, 1 ) ===
'1' ) {
101 $reportInterval *= 2;
104 if ( $i % $reportInterval == 0 ) {
105 print
"$i tests done\n";
115 if ( $max ===
false ) {
118 $length = mt_rand( $this->minLength, $max );
120 for ( $i = 0; $i < $length; $i++ ) {
121 $hairIndex = mt_rand( 0,
count( $this->hairs ) - 1 );
122 $s .= $this->hairs[$hairIndex];
128 $s = MediaWikiServices::getInstance()->getContentLanguage()->normalize(
$s );
144 $count =
count( $this->entryPoints );
146 return $this->entryPoints[mt_rand( 0, $count - 1 )];
155 $this->parent = $tester;
156 $this->mainText = $tester->makeInputText();
157 $this->
title = $tester->makeTitle();
159 $this->entryPoint = $tester->pickEntryPoint();
161 $this->fancySig = (bool)mt_rand( 0, 1 );
162 $this->templates = [];
170 $titleText =
$title->getPrefixedDBkey();
172 if ( !isset( $this->templates[$titleText] ) ) {
174 if (
count( $this->templates ) >= $this->parent->maxTemplates ) {
178 if ( !mt_rand( 0, 1 ) ) {
180 $finalTitle = $this->parent->makeTitle();
182 if ( !mt_rand( 0, 5 ) ) {
186 $text = $this->parent->makeInputText();
189 $this->templates[$titleText] = [
191 'finalTitle' => $finalTitle ];
194 return $this->templates[$titleText];
201 $wgUser->mName =
'Fuzz';
202 $wgUser->mFrom =
'name';
203 $wgUser->ppfz_test = $this;
206 $options->setTemplateCallback( [ $this,
'templateHook' ] );
208 $this->
output = call_user_func(
219 $s =
"Title: " . $this->
title->getPrefixedDBkey() .
"\n" .
221 "Entry point: {$this->entryPoint}\n" .
222 "User: " . ( $this->fancySig ?
'fancy' :
'no-fancy' ) .
223 ' ' . var_export( $this->nickname,
true ) .
"\n" .
224 "Main text: " . var_export( $this->mainText,
true ) .
"\n";
225 foreach ( $this->templates
as $titleText =>
$template ) {
227 if ( $finalTitle != $titleText ) {
228 $s .=
"[[$titleText]] -> [[$finalTitle]]: " . var_export(
$template[
'text'],
true ) .
"\n";
230 $s .=
"[[$titleText]]: " . var_export(
$template[
'text'],
true ) .
"\n";
233 $s .=
"Output: " . var_export( $this->
output,
true ) .
"\n";
243 if ( $this->mDataLoaded ) {
246 $this->mDataLoaded =
true;
250 function getOption( $oname, $defaultOverride =
null, $ignoreHidden =
false ) {
251 if ( $oname ===
'fancysig' ) {
252 return $this->ppfz_test->fancySig;
253 } elseif ( $oname ===
'nickname' ) {
254 return $this->ppfz_test->nickname;
256 return parent::getOption( $oname, $defaultOverride, $ignoreHidden );
261 ini_set(
'memory_limit',
'50M' );
262 if ( isset(
$args[0] ) ) {
263 $testText = file_get_contents(
$args[0] );
265 print
"File not found\n";
270 print
"Test passed.\n";