Merge "Add wfDeprecated calls to WatchedItem"
[lhc/web/wiklou.git] / tests / phpunit / includes / title / MediaWikiTitleCodecTest.php
1 <?php
2 /**
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
17 *
18 * @file
19 * @author Daniel Kinzler
20 */
21
22 /**
23 * @covers MediaWikiTitleCodec
24 *
25 * @group Title
26 * @group Database
27 * ^--- needed because of global state in
28 */
29 class MediaWikiTitleCodecTest extends MediaWikiTestCase {
30
31 public function setUp() {
32 parent::setUp();
33
34 $this->setMwGlobals( [
35 'wgAllowUserJs' => false,
36 'wgDefaultLanguageVariant' => false,
37 'wgMetaNamespace' => 'Project',
38 'wgLocalInterwikis' => [ 'localtestiw' ],
39 'wgCapitalLinks' => true,
40
41 // NOTE: this is why global state is evil.
42 // TODO: refactor access to the interwiki codes so it can be injected.
43 'wgHooks' => [
44 'InterwikiLoadPrefix' => [
45 function ( $prefix, &$data ) {
46 if ( $prefix === 'localtestiw' ) {
47 $data = [ 'iw_url' => 'localtestiw' ];
48 } elseif ( $prefix === 'remotetestiw' ) {
49 $data = [ 'iw_url' => 'remotetestiw' ];
50 }
51 return false;
52 }
53 ]
54 ]
55 ] );
56 $this->setUserLang( 'en' );
57 $this->setContentLang( 'en' );
58 }
59
60 /**
61 * Returns a mock GenderCache that will consider a user "female" if the
62 * first part of the user name ends with "a".
63 *
64 * @return GenderCache
65 */
66 private function getGenderCache() {
67 $genderCache = $this->getMockBuilder( 'GenderCache' )
68 ->disableOriginalConstructor()
69 ->getMock();
70
71 $genderCache->expects( $this->any() )
72 ->method( 'getGenderOf' )
73 ->will( $this->returnCallback( function ( $userName ) {
74 return preg_match( '/^[^- _]+a( |_|$)/u', $userName ) ? 'female' : 'male';
75 } ) );
76
77 return $genderCache;
78 }
79
80 protected function makeCodec( $lang ) {
81 $gender = $this->getGenderCache();
82 $lang = Language::factory( $lang );
83 // language object can came from cache, which does not respect test settings
84 $lang->resetNamespaces();
85 return new MediaWikiTitleCodec( $lang, $gender );
86 }
87
88 public static function provideFormat() {
89 return [
90 [ NS_MAIN, 'Foo_Bar', '', '', 'en', 'Foo Bar' ],
91 [ NS_USER, 'Hansi_Maier', 'stuff_and_so_on', '', 'en', 'User:Hansi Maier#stuff and so on' ],
92 [ false, 'Hansi_Maier', '', '', 'en', 'Hansi Maier' ],
93 [
94 NS_USER_TALK,
95 'hansi__maier',
96 '',
97 '',
98 'en',
99 'User talk:hansi maier',
100 'User talk:Hansi maier'
101 ],
102
103 // getGenderCache() provides a mock that considers first
104 // names ending in "a" to be female.
105 [ NS_USER, 'Lisa_Müller', '', '', 'de', 'Benutzerin:Lisa Müller' ],
106 [ NS_MAIN, 'FooBar', '', 'remotetestiw', 'en', 'remotetestiw:FooBar' ],
107 ];
108 }
109
110 /**
111 * @dataProvider provideFormat
112 */
113 public function testFormat( $namespace, $text, $fragment, $interwiki, $lang, $expected,
114 $normalized = null
115 ) {
116 if ( $normalized === null ) {
117 $normalized = $expected;
118 }
119
120 $codec = $this->makeCodec( $lang );
121 $actual = $codec->formatTitle( $namespace, $text, $fragment, $interwiki );
122
123 $this->assertEquals( $expected, $actual, 'formatted' );
124
125 // test round trip
126 $parsed = $codec->parseTitle( $actual, NS_MAIN );
127 $actual2 = $codec->formatTitle(
128 $parsed->getNamespace(),
129 $parsed->getText(),
130 $parsed->getFragment(),
131 $parsed->getInterwiki()
132 );
133
134 $this->assertEquals( $normalized, $actual2, 'normalized after round trip' );
135 }
136
137 public static function provideGetText() {
138 return [
139 [ NS_MAIN, 'Foo_Bar', '', 'en', 'Foo Bar' ],
140 [ NS_USER, 'Hansi_Maier', 'stuff_and_so_on', 'en', 'Hansi Maier' ],
141 ];
142 }
143
144 /**
145 * @dataProvider provideGetText
146 */
147 public function testGetText( $namespace, $dbkey, $fragment, $lang, $expected ) {
148 $codec = $this->makeCodec( $lang );
149 $title = new TitleValue( $namespace, $dbkey, $fragment );
150
151 $actual = $codec->getText( $title );
152
153 $this->assertEquals( $expected, $actual );
154 }
155
156 public static function provideGetPrefixedText() {
157 return [
158 [ NS_MAIN, 'Foo_Bar', '', 'en', 'Foo Bar' ],
159 [ NS_USER, 'Hansi_Maier', 'stuff_and_so_on', 'en', 'User:Hansi Maier' ],
160
161 // No capitalization or normalization is applied while formatting!
162 [ NS_USER_TALK, 'hansi__maier', '', 'en', 'User talk:hansi maier' ],
163
164 // getGenderCache() provides a mock that considers first
165 // names ending in "a" to be female.
166 [ NS_USER, 'Lisa_Müller', '', 'de', 'Benutzerin:Lisa Müller' ],
167 ];
168 }
169
170 /**
171 * @dataProvider provideGetPrefixedText
172 */
173 public function testGetPrefixedText( $namespace, $dbkey, $fragment, $lang, $expected ) {
174 $codec = $this->makeCodec( $lang );
175 $title = new TitleValue( $namespace, $dbkey, $fragment );
176
177 $actual = $codec->getPrefixedText( $title );
178
179 $this->assertEquals( $expected, $actual );
180 }
181
182 public static function provideGetPrefixedDBkey() {
183 return [
184 [ NS_MAIN, 'Foo_Bar', '', '', 'en', 'Foo_Bar' ],
185 [ NS_USER, 'Hansi_Maier', 'stuff_and_so_on', '', 'en', 'User:Hansi_Maier' ],
186
187 // No capitalization or normalization is applied while formatting!
188 [ NS_USER_TALK, 'hansi__maier', '', '', 'en', 'User_talk:hansi__maier' ],
189
190 // getGenderCache() provides a mock that considers first
191 // names ending in "a" to be female.
192 [ NS_USER, 'Lisa_Müller', '', '', 'de', 'Benutzerin:Lisa_Müller' ],
193
194 [ NS_MAIN, 'Remote_page', '', 'remotetestiw', 'en', 'remotetestiw:Remote_page' ]
195 ];
196 }
197
198 /**
199 * @dataProvider provideGetPrefixedDBkey
200 */
201 public function testGetPrefixedDBkey( $namespace, $dbkey, $fragment,
202 $interwiki, $lang, $expected
203 ) {
204 $codec = $this->makeCodec( $lang );
205 $title = new TitleValue( $namespace, $dbkey, $fragment, $interwiki );
206
207 $actual = $codec->getPrefixedDBkey( $title );
208
209 $this->assertEquals( $expected, $actual );
210 }
211
212 public static function provideGetFullText() {
213 return [
214 [ NS_MAIN, 'Foo_Bar', '', 'en', 'Foo Bar' ],
215 [ NS_USER, 'Hansi_Maier', 'stuff_and_so_on', 'en', 'User:Hansi Maier#stuff and so on' ],
216
217 // No capitalization or normalization is applied while formatting!
218 [ NS_USER_TALK, 'hansi__maier', '', 'en', 'User talk:hansi maier' ],
219 ];
220 }
221
222 /**
223 * @dataProvider provideGetFullText
224 */
225 public function testGetFullText( $namespace, $dbkey, $fragment, $lang, $expected ) {
226 $codec = $this->makeCodec( $lang );
227 $title = new TitleValue( $namespace, $dbkey, $fragment );
228
229 $actual = $codec->getFullText( $title );
230
231 $this->assertEquals( $expected, $actual );
232 }
233
234 public static function provideParseTitle() {
235 // TODO: test capitalization and trimming
236 // TODO: test unicode normalization
237
238 return [
239 [ ' : Hansi_Maier _ ', NS_MAIN, 'en',
240 new TitleValue( NS_MAIN, 'Hansi_Maier', '' ) ],
241 [ 'User:::1', NS_MAIN, 'de',
242 new TitleValue( NS_USER, '0:0:0:0:0:0:0:1', '' ) ],
243 [ ' lisa Müller', NS_USER, 'de',
244 new TitleValue( NS_USER, 'Lisa_Müller', '' ) ],
245 [ 'benutzerin:lisa Müller#stuff', NS_MAIN, 'de',
246 new TitleValue( NS_USER, 'Lisa_Müller', 'stuff' ) ],
247
248 [ ':Category:Quux', NS_MAIN, 'en',
249 new TitleValue( NS_CATEGORY, 'Quux', '' ) ],
250 [ 'Category:Quux', NS_MAIN, 'en',
251 new TitleValue( NS_CATEGORY, 'Quux', '' ) ],
252 [ 'Category:Quux', NS_CATEGORY, 'en',
253 new TitleValue( NS_CATEGORY, 'Quux', '' ) ],
254 [ 'Quux', NS_CATEGORY, 'en',
255 new TitleValue( NS_CATEGORY, 'Quux', '' ) ],
256 [ ':Quux', NS_CATEGORY, 'en',
257 new TitleValue( NS_MAIN, 'Quux', '' ) ],
258
259 // getGenderCache() provides a mock that considers first
260 // names ending in "a" to be female.
261
262 [ 'a b c', NS_MAIN, 'en',
263 new TitleValue( NS_MAIN, 'A_b_c' ) ],
264 [ ' a b c ', NS_MAIN, 'en',
265 new TitleValue( NS_MAIN, 'A_b_c' ) ],
266 [ ' _ Foo __ Bar_ _', NS_MAIN, 'en',
267 new TitleValue( NS_MAIN, 'Foo_Bar' ) ],
268
269 // NOTE: cases copied from TitleTest::testSecureAndSplit. Keep in sync.
270 [ 'Sandbox', NS_MAIN, 'en', ],
271 [ 'A "B"', NS_MAIN, 'en', ],
272 [ 'A \'B\'', NS_MAIN, 'en', ],
273 [ '.com', NS_MAIN, 'en', ],
274 [ '~', NS_MAIN, 'en', ],
275 [ '"', NS_MAIN, 'en', ],
276 [ '\'', NS_MAIN, 'en', ],
277
278 [ 'Talk:Sandbox', NS_MAIN, 'en',
279 new TitleValue( NS_TALK, 'Sandbox' ) ],
280 [ 'Talk:Foo:Sandbox', NS_MAIN, 'en',
281 new TitleValue( NS_TALK, 'Foo:Sandbox' ) ],
282 [ 'File:Example.svg', NS_MAIN, 'en',
283 new TitleValue( NS_FILE, 'Example.svg' ) ],
284 [ 'File_talk:Example.svg', NS_MAIN, 'en',
285 new TitleValue( NS_FILE_TALK, 'Example.svg' ) ],
286 [ 'Foo/.../Sandbox', NS_MAIN, 'en',
287 'Foo/.../Sandbox' ],
288 [ 'Sandbox/...', NS_MAIN, 'en',
289 'Sandbox/...' ],
290 [ 'A~~', NS_MAIN, 'en',
291 'A~~' ],
292 // Length is 256 total, but only title part matters
293 [ 'Category:' . str_repeat( 'x', 248 ), NS_MAIN, 'en',
294 new TitleValue( NS_CATEGORY,
295 'X' . str_repeat( 'x', 247 ) ) ],
296 [ str_repeat( 'x', 252 ), NS_MAIN, 'en',
297 'X' . str_repeat( 'x', 251 ) ]
298 ];
299 }
300
301 /**
302 * @dataProvider provideParseTitle
303 */
304 public function testParseTitle( $text, $ns, $lang, $title = null ) {
305 if ( $title === null ) {
306 $title = str_replace( ' ', '_', trim( $text ) );
307 }
308
309 if ( is_string( $title ) ) {
310 $title = new TitleValue( NS_MAIN, $title, '' );
311 }
312
313 $codec = $this->makeCodec( $lang );
314 $actual = $codec->parseTitle( $text, $ns );
315
316 $this->assertEquals( $title, $actual );
317 }
318
319 public static function provideParseTitle_invalid() {
320 // TODO: test unicode errors
321
322 return [
323 [ '#' ],
324 [ '::' ],
325 [ '::xx' ],
326 [ '::##' ],
327 [ ' :: x' ],
328
329 [ 'Talk:File:Foo.jpg' ],
330 [ 'Talk:localtestiw:Foo' ],
331 [ '::1' ], // only valid in user namespace
332 [ 'User::x' ], // leading ":" in a user name is only valid of IPv6 addresses
333
334 // NOTE: cases copied from TitleTest::testSecureAndSplit. Keep in sync.
335 [ '' ],
336 [ ':' ],
337 [ '__ __' ],
338 [ ' __ ' ],
339 // Bad characters forbidden regardless of wgLegalTitleChars
340 [ 'A [ B' ],
341 [ 'A ] B' ],
342 [ 'A { B' ],
343 [ 'A } B' ],
344 [ 'A < B' ],
345 [ 'A > B' ],
346 [ 'A | B' ],
347 // URL encoding
348 [ 'A%20B' ],
349 [ 'A%23B' ],
350 [ 'A%2523B' ],
351 // XML/HTML character entity references
352 // Note: Commented out because they are not marked invalid by the PHP test as
353 // Title::newFromText runs Sanitizer::decodeCharReferencesAndNormalize first.
354 // array( 'A &eacute; B' ),
355 // array( 'A &#233; B' ),
356 // array( 'A &#x00E9; B' ),
357 // Subject of NS_TALK does not roundtrip to NS_MAIN
358 [ 'Talk:File:Example.svg' ],
359 // Directory navigation
360 [ '.' ],
361 [ '..' ],
362 [ './Sandbox' ],
363 [ '../Sandbox' ],
364 [ 'Foo/./Sandbox' ],
365 [ 'Foo/../Sandbox' ],
366 [ 'Sandbox/.' ],
367 [ 'Sandbox/..' ],
368 // Tilde
369 [ 'A ~~~ Name' ],
370 [ 'A ~~~~ Signature' ],
371 [ 'A ~~~~~ Timestamp' ],
372 [ str_repeat( 'x', 256 ) ],
373 // Namespace prefix without actual title
374 [ 'Talk:' ],
375 [ 'Category: ' ],
376 [ 'Category: #bar' ]
377 ];
378 }
379
380 /**
381 * @dataProvider provideParseTitle_invalid
382 */
383 public function testParseTitle_invalid( $text ) {
384 $this->setExpectedException( 'MalformedTitleException' );
385
386 $codec = $this->makeCodec( 'en' );
387 $codec->parseTitle( $text, NS_MAIN );
388 }
389
390 public static function provideGetNamespaceName() {
391 return [
392 [ NS_MAIN, 'Foo', 'en', '' ],
393 [ NS_USER, 'Foo', 'en', 'User' ],
394 [ NS_USER, 'Hansi Maier', 'de', 'Benutzer' ],
395
396 // getGenderCache() provides a mock that considers first
397 // names ending in "a" to be female.
398 [ NS_USER, 'Lisa Müller', 'de', 'Benutzerin' ],
399 ];
400 }
401
402 /**
403 * @dataProvider provideGetNamespaceName
404 */
405 public function testGetNamespaceName( $namespace, $text, $lang, $expected ) {
406 $codec = $this->makeCodec( $lang );
407 $name = $codec->getNamespaceName( $namespace, $text );
408
409 $this->assertEquals( $expected, $name );
410 }
411 }