MediaWiki REL1_31
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 $first = true;
65 foreach ( $this->parsers as $i => $parser ) {
66 $currentResult = call_user_func_array( [ &$this->parsers[$i], $name ], $args );
67 if ( $first ) {
68 $first = false;
69 } else {
70 if ( is_object( $lastResult ) ) {
71 if ( $lastResult != $currentResult ) {
72 $mismatch = true;
73 }
74 } else {
75 if ( $lastResult !== $currentResult ) {
76 $mismatch = true;
77 }
78 }
79 }
80 $results[$i] = $currentResult;
81 $lastResult = $currentResult;
82 }
83 if ( $mismatch ) {
84 if ( count( $results ) == 2 ) {
85 $resultsList = [];
86 foreach ( $this->parsers as $i => $parser ) {
87 $resultsList[] = var_export( $results[$i], true );
88 }
89 $diff = wfDiff( $resultsList[0], $resultsList[1] );
90 } else {
91 $diff = '[too many parsers]';
92 }
93 $msg = "ParserDiffTest: results mismatch on call to $name\n";
94 if ( !$this->shortOutput ) {
95 $msg .= 'Arguments: ' . $this->formatArray( $args ) . "\n";
96 }
97 $msg .= 'Results: ' . $this->formatArray( $results ) . "\n" .
98 "Diff: $diff\n";
99 throw new MWException( $msg );
100 }
101 return $lastResult;
102 }
103
104 public function formatArray( $array ) {
105 if ( $this->shortOutput ) {
106 foreach ( $array as $key => $value ) {
107 if ( $value instanceof ParserOutput ) {
108 $array[$key] = "ParserOutput: {$value->getText()}";
109 }
110 }
111 }
112 return var_export( $array, true );
113 }
114
115 public function setFunctionHook( $id, $callback, $flags = 0 ) {
116 $this->init();
117 foreach ( $this->parsers as $parser ) {
118 $parser->setFunctionHook( $id, $callback, $flags );
119 }
120 }
121}
wfDiff( $before, $after, $params='-u')
Returns unified plain-text diff of two texts.
if( $line===false) $args
Definition cdb.php:64
MediaWiki exception.
setFunctionHook( $id, $callback, $flags=0)
__call( $name, $args)
do that in ParserLimitReportFormat instead $parser
Definition hooks.txt:2603