2 use Wikimedia\ScopedCallback
;
5 * Factory for handling the special page list and generating SpecialPage objects.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 * http://www.gnu.org/copyleft/gpl.html
22 * @covers SpecialPageFactory
25 class SpecialPageFactoryTest
extends MediaWikiTestCase
{
27 protected function tearDown() {
30 SpecialPageFactory
::resetList();
33 public function testResetList() {
34 SpecialPageFactory
::resetList();
35 $this->assertContains( 'Specialpages', SpecialPageFactory
::getNames() );
38 public function testHookNotCalledTwice() {
40 $this->mergeMwGlobalArrayValue( 'wgHooks', [
41 'SpecialPage_initList' => [
42 function () use ( &$count ) {
46 SpecialPageFactory
::resetList();
47 SpecialPageFactory
::getNames();
48 SpecialPageFactory
::getNames();
49 $this->assertEquals( 1, $count );
52 public function newSpecialAllPages() {
53 return new SpecialAllPages();
56 public function specialPageProvider() {
57 $specialPageTestHelper = new SpecialPageTestHelper();
60 'class name' => [ 'SpecialAllPages', false ],
61 'closure' => [ function () {
62 return new SpecialAllPages();
64 'function' => [ [ $this, 'newSpecialAllPages' ], false ],
65 'callback string' => [ 'SpecialPageTestHelper::newSpecialAllPages', false ],
66 'callback with object' => [
67 [ $specialPageTestHelper, 'newSpecialAllPages' ],
71 [ 'SpecialPageTestHelper', 'newSpecialAllPages' ],
78 * @covers SpecialPageFactory::getPage
79 * @dataProvider specialPageProvider
81 public function testGetPage( $spec, $shouldReuseInstance ) {
82 $this->mergeMwGlobalArrayValue( 'wgSpecialPages', [ 'testdummy' => $spec ] );
83 SpecialPageFactory
::resetList();
85 $page = SpecialPageFactory
::getPage( 'testdummy' );
86 $this->assertInstanceOf( 'SpecialPage', $page );
88 $page2 = SpecialPageFactory
::getPage( 'testdummy' );
89 $this->assertEquals( $shouldReuseInstance, $page2 === $page, "Should re-use instance:" );
93 * @covers SpecialPageFactory::getNames
95 public function testGetNames() {
96 $this->mergeMwGlobalArrayValue( 'wgSpecialPages', [ 'testdummy' => 'SpecialAllPages' ] );
97 SpecialPageFactory
::resetList();
99 $names = SpecialPageFactory
::getNames();
100 $this->assertInternalType( 'array', $names );
101 $this->assertContains( 'testdummy', $names );
105 * @covers SpecialPageFactory::resolveAlias
107 public function testResolveAlias() {
108 $this->setMwGlobals( 'wgContLang', Language
::factory( 'de' ) );
109 SpecialPageFactory
::resetList();
111 list( $name, $param ) = SpecialPageFactory
::resolveAlias( 'Spezialseiten/Foo' );
112 $this->assertEquals( 'Specialpages', $name );
113 $this->assertEquals( 'Foo', $param );
117 * @covers SpecialPageFactory::getLocalNameFor
119 public function testGetLocalNameFor() {
120 $this->setMwGlobals( 'wgContLang', Language
::factory( 'de' ) );
121 SpecialPageFactory
::resetList();
123 $name = SpecialPageFactory
::getLocalNameFor( 'Specialpages', 'Foo' );
124 $this->assertEquals( 'Spezialseiten/Foo', $name );
128 * @covers SpecialPageFactory::getTitleForAlias
130 public function testGetTitleForAlias() {
131 $this->setMwGlobals( 'wgContLang', Language
::factory( 'de' ) );
132 SpecialPageFactory
::resetList();
134 $title = SpecialPageFactory
::getTitleForAlias( 'Specialpages/Foo' );
135 $this->assertEquals( 'Spezialseiten/Foo', $title->getText() );
136 $this->assertEquals( NS_SPECIAL
, $title->getNamespace() );
140 * @dataProvider provideTestConflictResolution
142 public function testConflictResolution(
143 $test, $aliasesList, $alias, $expectedName, $expectedAlias, $expectWarnings
146 $lang = clone $wgContLang;
147 $lang->mExtendedSpecialPageAliases
= $aliasesList;
148 $this->setMwGlobals( 'wgContLang', $lang );
149 $this->setMwGlobals( 'wgSpecialPages',
150 array_combine( array_keys( $aliasesList ), array_keys( $aliasesList ) )
152 SpecialPageFactory
::resetList();
154 // Catch the warnings we expect to be raised
156 $this->setMwGlobals( 'wgDevelopmentWarnings', true );
157 set_error_handler( function ( $errno, $errstr ) use ( &$warnings ) {
158 if ( preg_match( '/First alias \'[^\']*\' for .*/', $errstr ) ||
159 preg_match( '/Did not find a usable alias for special page .*/', $errstr )
161 $warnings[] = $errstr;
166 $reset = new ScopedCallback( 'restore_error_handler' );
168 list( $name, /*...*/ ) = SpecialPageFactory
::resolveAlias( $alias );
169 $this->assertEquals( $expectedName, $name, "$test: Alias to name" );
170 $result = SpecialPageFactory
::getLocalNameFor( $name );
171 $this->assertEquals( $expectedAlias, $result, "$test: Alias to name to alias" );
173 $gotWarnings = count( $warnings );
174 if ( $gotWarnings !== $expectWarnings ) {
175 $this->fail( "Expected $expectWarnings warning(s), but got $gotWarnings:\n" .
176 implode( "\n", $warnings )
182 * @dataProvider provideTestConflictResolution
184 public function testConflictResolutionReversed(
185 $test, $aliasesList, $alias, $expectedName, $expectedAlias, $expectWarnings
187 // Make sure order doesn't matter by reversing the list
188 $aliasesList = array_reverse( $aliasesList );
189 return $this->testConflictResolution(
190 $test, $aliasesList, $alias, $expectedName, $expectedAlias, $expectWarnings
194 public function provideTestConflictResolution() {
197 'Canonical name wins',
198 [ 'Foo' => [ 'Foo', 'Bar' ], 'Baz' => [ 'Foo', 'BazPage', 'Baz2' ] ],
206 'Doesn\'t redirect to a different special page\'s canonical name',
207 [ 'Foo' => [ 'Foo', 'Bar' ], 'Baz' => [ 'Foo', 'BazPage', 'Baz2' ] ],
215 'Canonical name wins even if not aliased',
216 [ 'Foo' => [ 'FooPage' ], 'Baz' => [ 'Foo', 'BazPage', 'Baz2' ] ],
224 'Doesn\'t redirect to a different special page\'s canonical name even if not aliased',
225 [ 'Foo' => [ 'FooPage' ], 'Baz' => [ 'Foo', 'BazPage', 'Baz2' ] ],
233 'First local name beats non-first',
234 [ 'First' => [ 'Foo' ], 'NonFirst' => [ 'Bar', 'Foo' ] ],
242 'Doesn\'t redirect to a different special page\'s first alias',
245 'First' => [ 'Bar' ],
246 'Baz' => [ 'Foo', 'Bar', 'BazPage', 'Baz2' ]
255 'Doesn\'t redirect wrong even if all aliases conflict',
258 'First' => [ 'Bar' ],
259 'Baz' => [ 'Foo', 'Bar' ]
270 public function testGetAliasListRecursion() {
272 $this->mergeMwGlobalArrayValue( 'wgHooks', [
273 'SpecialPage_initList' => [
274 function () use ( &$called ) {
275 SpecialPageFactory
::getLocalNameFor( 'Specialpages' );
280 SpecialPageFactory
::resetList();
281 SpecialPageFactory
::getLocalNameFor( 'Specialpages' );
282 $this->assertTrue( $called, 'Recursive call succeeded' );