MediaWiki  1.33.0
ParserDiffTest.php
Go to the documentation of this file.
1 <?php
28  public $parsers;
29  public $conf;
30  public $shortOutput = false;
31 
32  public function __construct( $conf ) {
33  if ( !isset( $conf['parsers'] ) ) {
34  throw new MWException( __METHOD__ . ': no parsers specified' );
35  }
36  $this->conf = $conf;
37  }
38 
39  public function init() {
40  if ( !is_null( $this->parsers ) ) {
41  return;
42  }
43 
44  if ( isset( $this->conf['shortOutput'] ) ) {
45  $this->shortOutput = $this->conf['shortOutput'];
46  }
47 
48  foreach ( $this->conf['parsers'] as $i => $parserConf ) {
49  if ( !is_array( $parserConf ) ) {
50  $class = $parserConf;
51  $parserConf = [ 'class' => $parserConf ];
52  } else {
53  $class = $parserConf['class'];
54  }
55  $this->parsers[$i] = new $class( $parserConf );
56  }
57  }
58 
59  public function __call( $name, $args ) {
60  $this->init();
61  $results = [];
62  $mismatch = false;
63  $lastResult = null;
64  foreach ( $this->parsers as $parser ) {
65  $currentResult = $parser->$name( ...$args );
66  if ( count( $results ) > 0 ) {
67  if ( is_object( $lastResult ) ) {
68  if ( $lastResult != $currentResult ) {
69  $mismatch = true;
70  }
71  } else {
72  if ( $lastResult !== $currentResult ) {
73  $mismatch = true;
74  }
75  }
76  }
77  $results[] = $currentResult;
78  $lastResult = $currentResult;
79  }
80  if ( $mismatch ) {
81  if ( count( $results ) == 2 ) {
82  $resultsList = [];
83  foreach ( $this->parsers as $i => $parser ) {
84  $resultsList[] = var_export( $results[$i], true );
85  }
86  $diff = wfDiff( $resultsList[0], $resultsList[1] );
87  } else {
88  $diff = '[too many parsers]';
89  }
90  $msg = "ParserDiffTest: results mismatch on call to $name\n";
91  if ( !$this->shortOutput ) {
92  $msg .= 'Arguments: ' . $this->formatArray( $args ) . "\n";
93  }
94  $msg .= 'Results: ' . $this->formatArray( $results ) . "\n" .
95  "Diff: $diff\n";
96  throw new MWException( $msg );
97  }
98  return $lastResult;
99  }
100 
101  public function formatArray( $array ) {
102  if ( $this->shortOutput ) {
103  foreach ( $array as $key => $value ) {
104  if ( $value instanceof ParserOutput ) {
105  $array[$key] = "ParserOutput: {$value->getText()}";
106  }
107  }
108  }
109  return var_export( $array, true );
110  }
111 
112  public function setFunctionHook( $id, $callback, $flags = 0 ) {
113  $this->init();
114  foreach ( $this->parsers as $parser ) {
115  $parser->setFunctionHook( $id, $callback, $flags );
116  }
117  }
118 }
ParserDiffTest\setFunctionHook
setFunctionHook( $id, $callback, $flags=0)
Definition: ParserDiffTest.php:112
ParserOutput
Definition: ParserOutput.php:25
wfDiff
wfDiff( $before, $after, $params='-u')
Returns unified plain-text diff of two texts.
Definition: GlobalFunctions.php:2348
ParserDiffTest\formatArray
formatArray( $array)
Definition: ParserDiffTest.php:101
captcha-old.count
count
Definition: captcha-old.py:249
ParserDiffTest\$conf
$conf
Definition: ParserDiffTest.php:29
php
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:35
MWException
MediaWiki exception.
Definition: MWException.php:26
ParserDiffTest\$parsers
$parsers
Definition: ParserDiffTest.php:28
$parser
see documentation in includes Linker php for Linker::makeImageLink or false for current used if you return false $parser
Definition: hooks.txt:1802
$name
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:271
$value
$value
Definition: styleTest.css.php:49
$args
if( $line===false) $args
Definition: cdb.php:64
ParserDiffTest\__call
__call( $name, $args)
Definition: ParserDiffTest.php:59
ParserDiffTest
Definition: ParserDiffTest.php:27
as
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
Definition: distributors.txt:9
ParserDiffTest\$shortOutput
$shortOutput
Definition: ParserDiffTest.php:30
ParserDiffTest\__construct
__construct( $conf)
Definition: ParserDiffTest.php:32
ParserDiffTest\init
init()
Definition: ParserDiffTest.php:39