MediaWiki REL1_33
preprocessorFuzzTest.php
Go to the documentation of this file.
1<?php
25
26$optionsWithoutArgs = [ 'verbose' ];
27require_once __DIR__ . '/commandLine.inc';
28
29$wgHooks['BeforeParserFetchTemplateAndtitle'][] = 'PPFuzzTester::templateHook';
30
32 public $hairs = [
33 '[[', ']]', '{{', '{{', '}}', '}}', '{{{', '}}}',
34 '<', '>', '<nowiki', '<gallery', '</nowiki>', '</gallery>', '<nOwIkI>', '</NoWiKi>',
35 '<!--', '-->',
36 "\n==", "==\n",
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',
41
42 // extensions
43 // '<ref>', '</ref>', '<references/>',
44 ];
45 public $minLength = 0;
46 public $maxLength = 20;
47 public $maxTemplates = 5;
48 // public $outputTypes = [ 'OT_HTML', 'OT_WIKI', 'OT_PREPROCESS' ];
49 public $entryPoints = [ 'testSrvus', 'testPst', 'testPreprocess' ];
50 public $verbose = false;
51
55 private static $currentTest = false;
56
57 function execute() {
58 if ( !file_exists( 'results' ) ) {
59 mkdir( 'results' );
60 }
61 if ( !is_dir( 'results' ) ) {
62 echo "Unable to create 'results' directory\n";
63 exit( 1 );
64 }
65 $overallStart = microtime( true );
66 $reportInterval = 1000;
67 for ( $i = 1; true; $i++ ) {
68 $t = -microtime( true );
69 try {
70 self::$currentTest = new PPFuzzTest( $this );
71 self::$currentTest->execute();
72 $passed = 'passed';
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";
81 $passed = 'failed';
82 }
83 $t += microtime( true );
84
85 if ( $this->verbose ) {
86 printf( "Test $passed in %.3f seconds\n", $t );
87 print self::$currentTest->getReport();
88 }
89
90 $reportMetric = ( microtime( true ) - $overallStart ) / $i * $reportInterval;
91 if ( $reportMetric > 25 ) {
92 if ( substr( $reportInterval, 0, 1 ) === '1' ) {
93 $reportInterval /= 2;
94 } else {
95 $reportInterval /= 5;
96 }
97 } elseif ( $reportMetric < 4 ) {
98 if ( substr( $reportInterval, 0, 1 ) === '1' ) {
99 $reportInterval *= 5;
100 } else {
101 $reportInterval *= 2;
102 }
103 }
104 if ( $i % $reportInterval == 0 ) {
105 print "$i tests done\n";
106 /*
107 $testReport = self::$currentTest->getReport();
108 $filename = 'results/ppft-' . md5( $testReport ) . '.pass';
109 file_put_contents( $filename, "Input:\n$testReport\n" );*/
110 }
111 }
112 }
113
114 function makeInputText( $max = false ) {
115 if ( $max === false ) {
116 $max = $this->maxLength;
117 }
118 $length = mt_rand( $this->minLength, $max );
119 $s = '';
120 for ( $i = 0; $i < $length; $i++ ) {
121 $hairIndex = mt_rand( 0, count( $this->hairs ) - 1 );
122 $s .= $this->hairs[$hairIndex];
123 }
124 // Send through the UTF-8 normaliser
125 // This resolves a few differences between the old preprocessor and the
126 // XML-based one, which doesn't like illegals and converts line endings.
127 // It's done by the MW UI, so it's a reasonably legitimate thing to do.
128 $s = MediaWikiServices::getInstance()->getContentLanguage()->normalize( $s );
129
130 return $s;
131 }
132
133 function makeTitle() {
134 return Title::newFromText( mt_rand( 0, 1000000 ), mt_rand( 0, 10 ) );
135 }
136
137 /*
138 function pickOutputType() {
139 $count = count( $this->outputTypes );
140 return $this->outputTypes[ mt_rand( 0, $count - 1 ) ];
141 }*/
142
143 function pickEntryPoint() {
144 $count = count( $this->entryPoints );
145
146 return $this->entryPoints[mt_rand( 0, $count - 1 )];
147 }
148}
149
152
153 function __construct( $tester ) {
154 global $wgMaxSigChars;
155 $this->parent = $tester;
156 $this->mainText = $tester->makeInputText();
157 $this->title = $tester->makeTitle();
158 // $this->outputType = $tester->pickOutputType();
159 $this->entryPoint = $tester->pickEntryPoint();
160 $this->nickname = $tester->makeInputText( $wgMaxSigChars + 10 );
161 $this->fancySig = (bool)mt_rand( 0, 1 );
162 $this->templates = [];
163 }
164
169 function templateHook( $title ) {
170 $titleText = $title->getPrefixedDBkey();
171
172 if ( !isset( $this->templates[$titleText] ) ) {
173 $finalTitle = $title;
174 if ( count( $this->templates ) >= $this->parent->maxTemplates ) {
175 // Too many templates
176 $text = false;
177 } else {
178 if ( !mt_rand( 0, 1 ) ) {
179 // Redirect
180 $finalTitle = $this->parent->makeTitle();
181 }
182 if ( !mt_rand( 0, 5 ) ) {
183 // Doesn't exist
184 $text = false;
185 } else {
186 $text = $this->parent->makeInputText();
187 }
188 }
189 $this->templates[$titleText] = [
190 'text' => $text,
191 'finalTitle' => $finalTitle ];
192 }
193
194 return $this->templates[$titleText];
195 }
196
197 function execute() {
198 global $wgParser, $wgUser;
199
200 $wgUser = new PPFuzzUser;
201 $wgUser->mName = 'Fuzz';
202 $wgUser->mFrom = 'name';
203 $wgUser->ppfz_test = $this;
204
205 $options = ParserOptions::newFromUser( $wgUser );
206 $options->setTemplateCallback( [ $this, 'templateHook' ] );
207 $options->setTimestamp( wfTimestampNow() );
208 $this->output = call_user_func(
209 [ $wgParser, $this->entryPoint ],
210 $this->mainText,
211 $this->title,
213 );
214
215 return $this->output;
216 }
217
218 function getReport() {
219 $s = "Title: " . $this->title->getPrefixedDBkey() . "\n" .
220// "Output type: {$this->outputType}\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 ) {
226 $finalTitle = $template['finalTitle'];
227 if ( $finalTitle != $titleText ) {
228 $s .= "[[$titleText]] -> [[$finalTitle]]: " . var_export( $template['text'], true ) . "\n";
229 } else {
230 $s .= "[[$titleText]]: " . var_export( $template['text'], true ) . "\n";
231 }
232 }
233 $s .= "Output: " . var_export( $this->output, true ) . "\n";
234
235 return $s;
236 }
237}
238
239class PPFuzzUser extends User {
241
242 function load( $flags = null ) {
243 if ( $this->mDataLoaded ) {
244 return;
245 }
246 $this->mDataLoaded = true;
247 $this->loadDefaults( $this->mName );
248 }
249
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;
255 } else {
256 return parent::getOption( $oname, $defaultOverride, $ignoreHidden );
257 }
258 }
259}
260
261ini_set( 'memory_limit', '50M' );
262if ( isset( $args[0] ) ) {
263 $testText = file_get_contents( $args[0] );
264 if ( !$testText ) {
265 print "File not found\n";
266 exit( 1 );
267 }
268 $test = unserialize( $testText );
269 $result = $test->execute();
270 print "Test passed.\n";
271} else {
272 $tester = new PPFuzzTester;
273 $tester->verbose = isset( $options['verbose'] );
274 $tester->execute();
275}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
serialize()
unserialize( $serialized)
$wgMaxSigChars
Maximum number of Unicode characters in signature.
wfTimestampNow()
Convenience function; returns MediaWiki timestamp for the present time.
$wgParser
Definition Setup.php:886
if( $line===false) $args
Definition cdb.php:64
MediaWikiServices is the service locator for the application scope of MediaWiki.
static bool PPFuzzTest $currentTest
makeInputText( $max=false)
load( $flags=null)
Load the user table data for this object from the source given by mFrom.
getOption( $oname, $defaultOverride=null, $ignoreHidden=false)
Get the user's current setting for a given option.
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition User.php:48
loadDefaults( $name=false)
Set cached properties to default.
Definition User.php:1310
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
while(( $__line=Maintenance::readconsole()) !==false) print
Definition eval.php:64
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not it can be in the form of< username >< more info > e g for bot passwords intended to be added to log contexts Fields it might only if the login was with a bot password it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping $template
Definition hooks.txt:822
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImgAuthModifyHeaders':Executed just before a file is streamed to a user via img_auth.php, allowing headers to be modified beforehand. $title:LinkTarget object & $headers:HTTP headers(name=> value, names are case insensitive). Two headers get special handling:If-Modified-Since(value must be a valid HTTP date) and Range(must be of the form "bytes=(\d*-\d*)") will be honored when streaming the file. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUnknownUser':When a user doesn 't exist locally, this hook is called to give extensions an opportunity to auto-create it. If the auto-creation is successful, return false. $name:User name 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Array with elements of the form "language:title" in the order that they will be output. & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED since 1.28! Use HtmlPageLinkRendererBegin instead. Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
Definition hooks.txt:1991
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
Definition hooks.txt:1999
returning false will NOT prevent logging $e
Definition hooks.txt:2175
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition injection.txt:37
title
$tester verbose
$wgHooks['BeforeParserFetchTemplateAndtitle'][]