3 * Performs fuzz-style testing of MediaWiki's preprocessor.
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.
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.
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
21 * @ingroup Maintenance
24 $optionsWithoutArgs = [ 'verbose' ];
25 require_once __DIR__
. '/commandLine.inc';
27 $wgHooks['BeforeParserFetchTemplateAndtitle'][] = 'PPFuzzTester::templateHook';
31 '[[', ']]', '{{', '{{', '}}', '}}', '{{{', '}}}',
32 '<', '>', '<nowiki', '<gallery', '</nowiki>', '</gallery>', '<nOwIkI>', '</NoWiKi>',
35 '|', '=', "\n", ' ', "\t", "\x7f",
36 '~~', '~~~', '~~~~', 'subst:',
37 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j',
38 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't',
41 // '<ref>', '</ref>', '<references/>',
43 public $minLength = 0;
44 public $maxLength = 20;
45 public $maxTemplates = 5;
46 // public $outputTypes = [ 'OT_HTML', 'OT_WIKI', 'OT_PREPROCESS' ];
47 public $entryPoints = [ 'testSrvus', 'testPst', 'testPreprocess' ];
48 public $verbose = false;
51 * @var bool|PPFuzzTest
53 private static $currentTest = false;
56 if ( !file_exists( 'results' ) ) {
59 if ( !is_dir( 'results' ) ) {
60 echo "Unable to create 'results' directory\n";
63 $overallStart = microtime( true );
64 $reportInterval = 1000;
65 for ( $i = 1; true; $i++
) {
66 $t = -microtime( true );
68 self
::$currentTest = new PPFuzzTest( $this );
69 self
::$currentTest->execute();
71 } catch ( Exception
$e ) {
72 $testReport = self
::$currentTest->getReport();
73 $exceptionReport = $e->getText();
74 $hash = md5( $testReport );
75 file_put_contents( "results/ppft-$hash.in", serialize( self
::$currentTest ) );
76 file_put_contents( "results/ppft-$hash.fail",
77 "Input:\n$testReport\n\nException report:\n$exceptionReport\n" );
78 print "Test $hash failed\n";
81 $t +
= microtime( true );
83 if ( $this->verbose
) {
84 printf( "Test $passed in %.3f seconds\n", $t );
85 print self
::$currentTest->getReport();
88 $reportMetric = ( microtime( true ) - $overallStart ) / $i * $reportInterval;
89 if ( $reportMetric > 25 ) {
90 if ( substr( $reportInterval, 0, 1 ) === '1' ) {
95 } elseif ( $reportMetric < 4 ) {
96 if ( substr( $reportInterval, 0, 1 ) === '1' ) {
102 if ( $i %
$reportInterval == 0 ) {
103 print "$i tests done\n";
105 $testReport = self::$currentTest->getReport();
106 $filename = 'results/ppft-' . md5( $testReport ) . '.pass';
107 file_put_contents( $filename, "Input:\n$testReport\n" );*/
112 function makeInputText( $max = false ) {
113 if ( $max === false ) {
114 $max = $this->maxLength
;
116 $length = mt_rand( $this->minLength
, $max );
118 for ( $i = 0; $i < $length; $i++
) {
119 $hairIndex = mt_rand( 0, count( $this->hairs
) - 1 );
120 $s .= $this->hairs
[$hairIndex];
122 // Send through the UTF-8 normaliser
123 // This resolves a few differences between the old preprocessor and the
124 // XML-based one, which doesn't like illegals and converts line endings.
125 // It's done by the MW UI, so it's a reasonably legitimate thing to do.
127 $s = $wgContLang->normalize( $s );
132 function makeTitle() {
133 return Title
::newFromText( mt_rand( 0, 1000000 ), mt_rand( 0, 10 ) );
137 function pickOutputType() {
138 $count = count( $this->outputTypes );
139 return $this->outputTypes[ mt_rand( 0, $count - 1 ) ];
142 function pickEntryPoint() {
143 $count = count( $this->entryPoints
);
145 return $this->entryPoints
[mt_rand( 0, $count - 1 )];
150 public $templates, $mainText, $title, $entryPoint, $output;
152 function __construct( $tester ) {
153 global $wgMaxSigChars;
154 $this->parent
= $tester;
155 $this->mainText
= $tester->makeInputText();
156 $this->title
= $tester->makeTitle();
157 // $this->outputType = $tester->pickOutputType();
158 $this->entryPoint
= $tester->pickEntryPoint();
159 $this->nickname
= $tester->makeInputText( $wgMaxSigChars +
10 );
160 $this->fancySig
= (bool)mt_rand( 0, 1 );
161 $this->templates
= [];
165 * @param Title $title
168 function templateHook( $title ) {
169 $titleText = $title->getPrefixedDBkey();
171 if ( !isset( $this->templates
[$titleText] ) ) {
172 $finalTitle = $title;
173 if ( count( $this->templates
) >= $this->parent
->maxTemplates
) {
174 // Too many templates
177 if ( !mt_rand( 0, 1 ) ) {
179 $finalTitle = $this->parent
->makeTitle();
181 if ( !mt_rand( 0, 5 ) ) {
185 $text = $this->parent
->makeInputText();
188 $this->templates
[$titleText] = [
190 'finalTitle' => $finalTitle ];
193 return $this->templates
[$titleText];
197 global $wgParser, $wgUser;
199 $wgUser = new PPFuzzUser
;
200 $wgUser->mName
= 'Fuzz';
201 $wgUser->mFrom
= 'name';
202 $wgUser->ppfz_test
= $this;
204 $options = ParserOptions
::newFromUser( $wgUser );
205 $options->setTemplateCallback( [ $this, 'templateHook' ] );
206 $options->setTimestamp( wfTimestampNow() );
207 $this->output
= call_user_func(
208 [ $wgParser, $this->entryPoint
],
214 return $this->output
;
217 function getReport() {
218 $s = "Title: " . $this->title
->getPrefixedDBkey() . "\n" .
219 // "Output type: {$this->outputType}\n" .
220 "Entry point: {$this->entryPoint}\n" .
221 "User: " . ( $this->fancySig ?
'fancy' : 'no-fancy' ) .
222 ' ' . var_export( $this->nickname
, true ) . "\n" .
223 "Main text: " . var_export( $this->mainText
, true ) . "\n";
224 foreach ( $this->templates
as $titleText => $template ) {
225 $finalTitle = $template['finalTitle'];
226 if ( $finalTitle != $titleText ) {
227 $s .= "[[$titleText]] -> [[$finalTitle]]: " . var_export( $template['text'], true ) . "\n";
229 $s .= "[[$titleText]]: " . var_export( $template['text'], true ) . "\n";
232 $s .= "Output: " . var_export( $this->output
, true ) . "\n";
238 class PPFuzzUser
extends User
{
239 public $ppfz_test, $mDataLoaded;
242 if ( $this->mDataLoaded
) {
245 $this->mDataLoaded
= true;
246 $this->loadDefaults( $this->mName
);
249 function getOption( $oname, $defaultOverride = null, $ignoreHidden = false ) {
250 if ( $oname === 'fancysig' ) {
251 return $this->ppfz_test
->fancySig
;
252 } elseif ( $oname === 'nickname' ) {
253 return $this->ppfz_test
->nickname
;
255 return parent
::getOption( $oname, $defaultOverride, $ignoreHidden );
260 ini_set( 'memory_limit', '50M' );
261 if ( isset( $args[0] ) ) {
262 $testText = file_get_contents( $args[0] );
264 print "File not found\n";
267 $test = unserialize( $testText );
268 $result = $test->execute();
269 print "Test passed.\n";
271 $tester = new PPFuzzTester
;
272 $tester->verbose
= isset( $options['verbose'] );