1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
|
<?php
namespace MediaWiki\Tests\Site;
use MediaWiki\Http\HttpRequestFactory;
use MediaWiki\Site\MediaWikiPageNameNormalizer;
use MediaWikiUnitTestCase;
/**
* @covers \MediaWiki\Site\MediaWikiPageNameNormalizer
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* http://www.gnu.org/copyleft/gpl.html
*
* @since 1.27
*
* @group Site
* @group medium
*
* @author Marius Hoch
*/
class MediaWikiPageNameNormalizerTest extends MediaWikiUnitTestCase {
/**
* @dataProvider normalizePageTitleProvider
*/
public function testNormalizePageTitle( $expected, $pageName, $getResponse ) {
$httpRequestFactory = $this->createMock( HttpRequestFactory::class );
$httpRequestFactory->method( 'get' )
->willReturn( $getResponse );
$normalizer = new MediaWikiPageNameNormalizer( $httpRequestFactory );
$this->assertSame(
$expected,
$normalizer->normalizePageName( $pageName, 'https://www.wikidata.org/w/api.php' )
);
}
public static function normalizePageTitleProvider() {
// Response are taken from wikidata and kkwiki using the following API request
// api.php?action=query&prop=info&redirects=1&converttitles=1&format=json&titles=…
return [
'universe (Q1)' => [
'Q1',
'Q1',
'{"batchcomplete":"","query":{"pages":{"129":{"pageid":129,"ns":0,'
. '"title":"Q1","contentmodel":"wikibase-item","pagelanguage":"en",'
. '"pagelanguagehtmlcode":"en","pagelanguagedir":"ltr",'
. '"touched":"2016-06-23T05:11:21Z","lastrevid":350004448,"length":58001}}}}'
],
'Q404 redirects to Q395' => [
'Q395',
'Q404',
'{"batchcomplete":"","query":{"redirects":[{"from":"Q404","to":"Q395"}],"pages"'
. ':{"601":{"pageid":601,"ns":0,"title":"Q395","contentmodel":"wikibase-item",'
. '"pagelanguage":"en","pagelanguagehtmlcode":"en","pagelanguagedir":"ltr",'
. '"touched":"2016-06-23T08:00:20Z","lastrevid":350021914,"length":60108}}}}'
],
'D converted to Д (Latin to Cyrillic) (taken from kkwiki)' => [
'Д',
'D',
'{"batchcomplete":"","query":{"converted":[{"from":"D","to":"\u0414"}],'
. '"pages":{"510541":{"pageid":510541,"ns":0,"title":"\u0414",'
. '"contentmodel":"wikitext","pagelanguage":"kk","pagelanguagehtmlcode":"kk",'
. '"pagelanguagedir":"ltr","touched":"2015-11-22T09:16:18Z",'
. '"lastrevid":2373618,"length":3501}}}}'
],
'there is no Q0' => [
false,
'Q0',
'{"batchcomplete":"","query":{"pages":{"-1":{"ns":0,"title":"Q0",'
. '"missing":"","contentmodel":"wikibase-item","pagelanguage":"en",'
. '"pagelanguagehtmlcode":"en","pagelanguagedir":"ltr"}}}}'
],
'invalid title' => [
false,
'{{',
'{"batchcomplete":"","query":{"pages":{"-1":{"title":"{{",'
. '"invalidreason":"The requested page title contains invalid '
. 'characters: \"{\".","invalid":""}}}}'
],
'error on get' => [ false, 'ABC', false ]
];
}
}
|