3 use Wikimedia\TestingAccessWrapper
;
4 use Wikimedia\ScopedCallback
;
6 class ParserOptionsTest
extends MediaWikiTestCase
{
8 private static function clearCache() {
9 $wrap = TestingAccessWrapper
::newFromClass( ParserOptions
::class );
10 $wrap->defaults
= null;
11 $wrap->lazyOptions
= [
12 'dateformat' => [ ParserOptions
::class, 'initDateFormat' ],
16 'numberheadings' => true,
18 'stubthreshold' => true,
25 protected function setUp() {
31 $this->setMwGlobals( [
32 'wgRenderHashAppend' => '',
34 'PageRenderingHash' => [],
39 protected function tearDown() {
45 * @dataProvider provideIsSafeToCache
46 * @param bool $expect Expected value
47 * @param array $options Options to set
49 public function testIsSafeToCache( $expect, $options ) {
50 $popt = ParserOptions
::newCanonical();
51 foreach ( $options as $name => $value ) {
52 $popt->setOption( $name, $value );
54 $this->assertSame( $expect, $popt->isSafeToCache() );
57 public static function provideIsSafeToCache() {
59 'No overrides' => [ true, [] ],
60 'In-key options are ok' => [ true, [
64 'Non-in-key options are not ok' => [ false, [
65 'removeComments' => false,
67 'Canonical override, not default (1)' => [ true, [
70 'Canonical override, not default (2)' => [ false, [
77 * @dataProvider provideOptionsHash
78 * @param array $usedOptions Used options
79 * @param string $expect Expected value
80 * @param array $options Options to set
81 * @param array $globals Globals to set
83 public function testOptionsHash( $usedOptions, $expect, $options, $globals = [] ) {
89 $globals['wgHooks'] +
= [
90 'PageRenderingHash' => [],
92 $this->setMwGlobals( $globals );
94 $popt = ParserOptions
::newCanonical();
95 foreach ( $options as $name => $value ) {
96 $popt->setOption( $name, $value );
98 $this->assertSame( $expect, $popt->optionsHash( $usedOptions ) );
101 public static function provideOptionsHash() {
102 $used = [ 'wrapclass', 'printable' ];
104 $classWrapper = TestingAccessWrapper
::newFromClass( ParserOptions
::class );
105 $classWrapper->getDefaults();
106 $allUsableOptions = array_diff(
107 array_keys( $classWrapper->inCacheKey
),
108 array_keys( $classWrapper->lazyOptions
)
112 'Canonical options, nothing used' => [ [], 'canonical', [] ],
113 'Canonical options, used some options' => [ $used, 'canonical', [] ],
114 'Used some options, non-default values' => [
116 'printable=1!wrapclass=foobar',
118 'wrapclass' => 'foobar',
122 'Canonical options, used all non-lazy options' => [ $allUsableOptions, 'canonical', [] ],
123 'Canonical options, nothing used, but with hooks and $wgRenderHashAppend' => [
125 'canonical!wgRenderHashAppend!onPageRenderingHash',
128 'wgRenderHashAppend' => '!wgRenderHashAppend',
129 'wgHooks' => [ 'PageRenderingHash' => [ [ __CLASS__
. '::onPageRenderingHash' ] ] ],
135 public static function onPageRenderingHash( &$confstr ) {
136 $confstr .= '!onPageRenderingHash';
139 // Test weird historical behavior is still weird
140 public function testOptionsHashEditSection() {
141 $popt = ParserOptions
::newCanonical();
142 $popt->registerWatcher( function ( $name ) {
143 $this->assertNotEquals( 'editsection', $name );
146 $this->assertTrue( $popt->getEditSection() );
147 $this->assertSame( 'canonical', $popt->optionsHash( [] ) );
148 $this->assertSame( 'canonical', $popt->optionsHash( [ 'editsection' ] ) );
150 $popt->setEditSection( false );
151 $this->assertFalse( $popt->getEditSection() );
152 $this->assertSame( 'canonical', $popt->optionsHash( [] ) );
153 $this->assertSame( 'editsection=0', $popt->optionsHash( [ 'editsection' ] ) );
157 * @expectedException InvalidArgumentException
158 * @expectedExceptionMessage Unknown parser option bogus
160 public function testGetInvalidOption() {
161 $popt = ParserOptions
::newCanonical();
162 $popt->getOption( 'bogus' );
166 * @expectedException InvalidArgumentException
167 * @expectedExceptionMessage Unknown parser option bogus
169 public function testSetInvalidOption() {
170 $popt = ParserOptions
::newCanonical();
171 $popt->setOption( 'bogus', true );
174 public function testMatches() {
175 $classWrapper = TestingAccessWrapper
::newFromClass( ParserOptions
::class );
176 $oldDefaults = $classWrapper->defaults
;
177 $oldLazy = $classWrapper->lazyOptions
;
178 $reset = new ScopedCallback( function () use ( $classWrapper, $oldDefaults, $oldLazy ) {
179 $classWrapper->defaults
= $oldDefaults;
180 $classWrapper->lazyOptions
= $oldLazy;
183 $popt1 = ParserOptions
::newCanonical();
184 $popt2 = ParserOptions
::newCanonical();
185 $this->assertTrue( $popt1->matches( $popt2 ) );
187 $popt1->enableLimitReport( true );
188 $popt2->enableLimitReport( false );
189 $this->assertTrue( $popt1->matches( $popt2 ) );
191 $popt2->setTidy( !$popt2->getTidy() );
192 $this->assertFalse( $popt1->matches( $popt2 ) );
195 $classWrapper->defaults +
= [ __METHOD__
=> null ];
196 $classWrapper->lazyOptions +
= [ __METHOD__
=> function () use ( &$ctr ) {
199 $popt1 = ParserOptions
::newCanonical();
200 $popt2 = ParserOptions
::newCanonical();
201 $this->assertFalse( $popt1->matches( $popt2 ) );
203 ScopedCallback
::consume( $reset );
206 public function testAllCacheVaryingOptions() {
209 // $wgHooks is already saved in self::setUp(), so we can modify it freely here
210 $wgHooks['ParserOptionsRegister'] = [];
212 'dateformat', 'numberheadings', 'printable', 'stubthreshold',
213 'thumbsize', 'userlang', 'wrapclass',
214 ], ParserOptions
::allCacheVaryingOptions() );
218 $wgHooks['ParserOptionsRegister'][] = function ( &$defaults, &$inCacheKey ) {
230 'dateformat', 'foo', 'numberheadings', 'printable', 'stubthreshold',
231 'thumbsize', 'userlang', 'wrapclass',
232 ], ParserOptions
::allCacheVaryingOptions() );