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
19 * @author This, that and the other
22 use MediaWiki\MainConfigNames
;
23 use MediaWiki\Title\ForeignTitle
;
24 use MediaWiki\Title\NaiveImportTitleFactory
;
25 use MediaWiki\Title\Title
;
28 * @covers \MediaWiki\Title\NaiveImportTitleFactory
32 * TODO convert to unit tests
34 class NaiveImportTitleFactoryTest
extends MediaWikiIntegrationTestCase
{
36 protected function setUp(): void
{
39 $this->overrideConfigValues( [
40 MainConfigNames
::LanguageCode
=> 'en',
41 MainConfigNames
::ExtraNamespaces
=> [ 100 => 'Portal' ],
45 public static function basicProvider() {
48 new ForeignTitle( 0, '', 'MainNamespaceArticle' ),
49 'MainNamespaceArticle'
52 new ForeignTitle( null, '', 'MainNamespaceArticle' ),
53 'MainNamespaceArticle'
56 new ForeignTitle( 1, 'Discussion', 'Nice_talk' ),
60 new ForeignTitle( 0, '', 'Bogus:Nice_talk' ),
64 new ForeignTitle( 100, 'Bogus', 'Nice_talk' ),
65 'Bogus:Nice_talk' // not Portal:Nice_talk
68 new ForeignTitle( 1, 'Bogus', 'Nice_talk' ),
69 'Talk:Nice_talk' // not Bogus:Nice_talk
72 new ForeignTitle( 100, 'Portal', 'Nice_talk' ),
76 new ForeignTitle( 724, 'Portal', 'Nice_talk' ),
80 new ForeignTitle( 2, 'Portal', 'Nice_talk' ),
87 * @dataProvider basicProvider
89 public function testBasic( ForeignTitle
$foreignTitle, $titleText ) {
90 $factory = new NaiveImportTitleFactory(
91 $this->getServiceContainer()->getContentLanguage(),
92 $this->getServiceContainer()->getNamespaceInfo(),
93 $this->getServiceContainer()->getTitleFactory()
95 $testTitle = $factory->createTitleFromForeignTitle( $foreignTitle );
96 $title = Title
::newFromText( $titleText );
98 $this->assertTrue( $title->equals( $testTitle ) );