wiki.techinc.nl/tests/phpunit/includes/specials/SpecialMyLanguageTest.php
Func 4d1da6f7f8 phpunit: Update @covers annotations for namespaced classes
We renamed many classes to be namespaced, but the `@covers` and
`@coversDefaultClass` annotations weren't updated properly.

PHPUnit didn't support short cover annotations with `use` statements,
these didn't trigger any errors yet, because they are class alias.

This patch is populated by a modified version of PhpunitAnnotationsSniff.

Change-Id: I6c602290a30099239b17d2dc0d67b1488b4eaeeb
2023-05-27 17:43:12 +08:00

144 lines
4.9 KiB
PHP

<?php
use MediaWiki\Specials\SpecialMyLanguage;
use MediaWiki\Title\Title;
/**
* @group Database
* @covers MediaWiki\Specials\SpecialMyLanguage
*/
class SpecialMyLanguageTest extends MediaWikiIntegrationTestCase {
public function addDBDataOnce() {
$titles = [
'Page/Another',
'Page/Another/ar',
'Page/Another/en',
'Page/Another/ru',
'Page/Another/zh',
'Page/Foreign',
'Page/Foreign/en',
'Page/Foreign/zh',
'Page/Redirect',
];
// In the real-world, they are in respective languages,
// but we don't need to set all of them for tests.
$pageLang = [
'Page/Foreign' => 'zh',
];
$pageContent = [
'Page/Redirect' => '#REDIRECT [[Page/Another#Section]]',
];
$user = $this->getTestSysop()->getAuthority();
foreach ( $titles as $title ) {
$this->editPage(
$title,
new WikitextContent( $pageContent[$title] ?? 'UTContent' ),
'UTPageSummary',
NS_MAIN,
$user
);
if ( isset( $pageLang[$title] ) ) {
SpecialPageLanguage::changePageLanguage(
RequestContext::getMain(), Title::newFromText( $title ), $pageLang[$title], 'Test' );
}
}
}
/**
* @covers MediaWiki\Specials\SpecialMyLanguage::findTitle
* @dataProvider provideFindTitle
* @param string $expected
* @param string $subpage
* @param string $contLang
* @param string $userLang
*/
public function testFindTitle( $expected, $subpage, $contLang, $userLang ) {
$this->setContentLang( $contLang );
$services = $this->getServiceContainer();
$special = new SpecialMyLanguage(
$services->getLanguageNameUtils(),
$services->getRedirectLookup()
);
$special->getContext()->setLanguage( $userLang );
$this->setMwGlobals( 'wgPageLanguageUseDB', true );
// Test with subpages both enabled and disabled
$this->mergeMwGlobalArrayValue( 'wgNamespacesWithSubpages', [ NS_MAIN => true ] );
$this->assertTitle( $expected, $special->findTitle( $subpage ) );
$this->mergeMwGlobalArrayValue( 'wgNamespacesWithSubpages', [ NS_MAIN => false ] );
$this->assertTitle( $expected, $special->findTitle( $subpage ) );
}
/**
* @param string $expected
* @param Title|null $title
*/
private function assertTitle( $expected, $title ) {
if ( $expected === null ) {
$this->assertNull( $title );
} else {
$expected = Title::newFromText( $expected );
$this->assertTrue( $expected->isSameLinkAs( $title ) );
}
}
public static function provideFindTitle() {
// See addDBDataOnce() for page declarations
return [
// [ $expected, $subpage, $contLang, $userLang ]
[ null, '::Fail', 'en', 'en' ],
[ 'Page/Another', 'Page/Another/en', 'en', 'en' ],
[ 'Page/Another', 'Page/Another', 'en', 'en' ],
[ 'Page/Another/ru', 'Page/Another', 'en', 'ru' ],
[ 'Page/Another', 'Page/Another', 'en', 'es' ],
[ 'Page/Another/zh', 'Page/Another', 'en', 'zh' ],
[ 'Page/Another/zh', 'Page/Another', 'en', 'zh-hans' ],
[ 'Page/Another/zh', 'Page/Another', 'en', 'zh-mo' ],
[ 'Page/Another/zh', 'Page/Another', 'en', 'gan' ],
[ 'Page/Another/zh', 'Page/Another', 'en', 'gan-hant' ],
[ 'Page/Another/en', 'Page/Another', 'de', 'es' ],
[ 'Page/Another/ar', 'Page/Another', 'en', 'ar' ],
[ 'Page/Another/ar', 'Page/Another', 'en', 'arz' ],
[ 'Page/Another/ar', 'Page/Another/de', 'en', 'arz' ],
[ 'Page/Another/ru', 'Page/Another/ru', 'en', 'arz' ],
[ 'Page/Another/ar', 'Page/Another/ru', 'en', 'ar' ],
[ null, 'Special:Blankpage', 'en', 'ar' ],
[ null, 'Media:Fail', 'en', 'ar' ],
[ 'Page/Foreign/en', 'Page/Foreign', 'en', 'en' ],
[ 'Page/Foreign', 'Page/Foreign', 'en', 'zh-hk' ],
[ 'Page/Another/ar#Section', 'Page/Redirect', 'en', 'ar' ],
];
}
/**
* @covers MediaWiki\Specials\SpecialMyLanguage::findTitleForTransclusion
* @dataProvider provideFindTitleForTransclusion
* @param string $expected
* @param string $subpage
* @param string $langCode
* @param string $userLang
*/
public function testFindTitleForTransclusion( $expected, $subpage, $langCode, $userLang ) {
$this->setContentLang( $langCode );
$services = $this->getServiceContainer();
$special = new SpecialMyLanguage(
$services->getLanguageNameUtils(),
$services->getRedirectLookup()
);
$special->getContext()->setLanguage( $userLang );
// Test with subpages both enabled and disabled
$this->mergeMwGlobalArrayValue( 'wgNamespacesWithSubpages', [ NS_MAIN => true ] );
$this->assertTitle( $expected, $special->findTitleForTransclusion( $subpage ) );
$this->mergeMwGlobalArrayValue( 'wgNamespacesWithSubpages', [ NS_MAIN => false ] );
$this->assertTitle( $expected, $special->findTitleForTransclusion( $subpage ) );
}
public static function provideFindTitleForTransclusion() {
// See addDBDataOnce() for page declarations
return [
// [ $expected, $subpage, $langCode, $userLang ]
[ 'Page/Another/en', 'Page/Another/en', 'en', 'en' ],
[ 'Page/Another/en', 'Page/Another', 'en', 'en' ],
[ 'Page/Another/en', 'Page/Another', 'en', 'frc' ],
];
}
}