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.
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.
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
20 * @author This, that and the other
24 * @covers NaiveForeignTitleFactory
28 class NaiveForeignTitleFactoryTest
extends MediaWikiTestCase
{
30 public function basicProvider() {
33 'MainNamespaceArticle', 0,
34 new ForeignTitle( 0, '', 'MainNamespaceArticle' ),
37 'MainNamespaceArticle', null,
38 new ForeignTitle( null, '', 'MainNamespaceArticle' ),
42 new ForeignTitle( 1, 'Talk', 'Nice_talk' ),
46 new ForeignTitle( 0, '', 'Bogus:Nice_talk' ),
49 'Bogus:Nice_talk', 9000, // non-existent local namespace ID
50 new ForeignTitle( 9000, 'Bogus', 'Nice_talk' ),
53 'Bogus:Nice_talk', 4, // existing local namespace ID
54 new ForeignTitle( 4, 'Bogus', 'Nice_talk' ),
57 'Talk:Extra:Nice_talk', 1,
58 new ForeignTitle( 1, 'Talk', 'Extra:Nice_talk' ),
61 'Talk:Extra:Nice_talk', null,
62 new ForeignTitle( null, 'Talk', 'Extra:Nice_talk' ),
68 * @dataProvider basicProvider
70 public function testBasic( $title, $ns, ForeignTitle
$foreignTitle ) {
71 $factory = new NaiveForeignTitleFactory();
72 $testTitle = $factory->createForeignTitle( $title, $ns );
74 $this->assertEquals( $testTitle->isNamespaceIdKnown(),
75 $foreignTitle->isNamespaceIdKnown() );
78 $testTitle->isNamespaceIdKnown() &&
79 $foreignTitle->isNamespaceIdKnown()
81 $this->assertEquals( $testTitle->getNamespaceId(),
82 $foreignTitle->getNamespaceId() );
85 $this->assertEquals( $testTitle->getNamespaceName(),
86 $foreignTitle->getNamespaceName() );
87 $this->assertEquals( $testTitle->getText(), $foreignTitle->getText() );
89 $this->assertEquals( str_replace( ' ', '_', $title ),
90 $foreignTitle->getFullText() );