Merge "Update special pages aliases for Persian (fa) from translatewiki"
[lhc/web/wiklou.git] / tests / phpunit / includes / title / NamespaceAwareForeignTitleFactoryTest.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 This, that and the other
20 */
21
22 /**
23 * @covers NamespaceAwareForeignTitleFactory
24 *
25 * @group Title
26 */
27 class NamespaceAwareForeignTitleFactoryTest extends MediaWikiTestCase {
28
29 public function basicProvider() {
30 return array(
31 array(
32 'MainNamespaceArticle', 0,
33 new ForeignTitle( 0, '', 'MainNamespaceArticle' ),
34 ),
35 array(
36 'MainNamespaceArticle', null,
37 new ForeignTitle( 0, '', 'MainNamespaceArticle' ),
38 ),
39 array(
40 'Talk:Nice_talk', 1,
41 new ForeignTitle( 1, 'Talk', 'Nice_talk' ),
42 ),
43 array(
44 'Bogus:Nice_talk', 0,
45 new ForeignTitle( 0, '', 'Bogus:Nice_talk' ),
46 ),
47 array(
48 'Bogus:Nice_talk', null,
49 new ForeignTitle( 9000, 'Bogus', 'Nice_talk' ),
50 ),
51 array(
52 'Bogus:Nice_talk', 4,
53 new ForeignTitle( 4, 'Bogus', 'Nice_talk' ),
54 ),
55 array(
56 'Bogus:Nice_talk', 1,
57 new ForeignTitle( 1, 'Talk', 'Nice_talk' ),
58 ),
59 );
60 }
61
62 /**
63 * @dataProvider basicProvider
64 */
65 public function testBasic( $title, $ns, ForeignTitle $foreignTitle ) {
66
67 $foreignNamespaces = array(
68 0 => '', 1 => 'Talk', 100 => 'Portal', 9000 => 'Bogus'
69 );
70
71 $factory = new NamespaceAwareForeignTitleFactory( $foreignNamespaces );
72 $testTitle = $factory->createForeignTitle( $title, $ns );
73
74 $this->assertEquals( $testTitle->isNamespaceIdKnown(),
75 $foreignTitle->isNamespaceIdKnown() );
76
77 if (
78 $testTitle->isNamespaceIdKnown() &&
79 $foreignTitle->isNamespaceIdKnown()
80 ) {
81 $this->assertEquals( $testTitle->getNamespaceId(),
82 $foreignTitle->getNamespaceId() );
83 }
84
85 $this->assertEquals( $testTitle->getNamespaceName(),
86 $foreignTitle->getNamespaceName() );
87 $this->assertEquals( $testTitle->getText(), $foreignTitle->getText() );
88 }
89 }