wiki.techinc.nl/tests/phpunit/includes/api/query/ApiQueryLanguageinfoTest.php
Fomafix 6839b85994 Step 1 of renaming sr-ec and sr-el to sr-cyrl and sr-latn
The language codes sr-ec and sr-el are not conform to BCP 47.
BCP 47 explicit mentions sr-Latn and sr-Cyrl as examples.

This change adds support for the language codes sr-cyrl and sr-latn
as fallback languages of the language codes sr-ec and sr-el. This
allows to rename the message files and the system messages without
changing the language codes yet.

The next step is to rename the language codes in Translatewiki as
described in https://translatewiki.net/wiki/Renaming_language_codes
Also local system messages in MediaWiki:*/sr-ec and MediaWiki:*/sr-el
can moved to MediaWiki:*/sr-cyrl and MediaWiki:*/sr-latn.

The final step is the change I75da0af35a2066e7963e50c56c99daf1e07c55e6
to complete the rename of the language codes.

Bug: T117845
Change-Id: I666fbdea89ccf21aab6ca1849adf22813dec052e
2022-07-10 21:19:34 +00:00

155 lines
4.1 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
use Wikimedia\Timestamp\ConvertibleTimestamp;
/**
* @group API
* @group medium
*
* @covers ApiQueryLanguageinfo
*/
class ApiQueryLanguageinfoTest extends ApiTestCase {
protected function setUp(): void {
parent::setUp();
// register custom language names so this test is independent of CLDR
$this->setTemporaryHook(
'LanguageGetTranslatedLanguageNames',
static function ( array &$names, $code ) {
switch ( $code ) {
case 'en':
$names['sh'] = 'Serbo-Croatian';
$names['qtp'] = 'a custom language code MediaWiki knows nothing about';
break;
case 'pt':
$names['de'] = 'alemão';
break;
}
}
);
}
private function doQuery( array $params ): array {
$params += [
'action' => 'query',
'meta' => 'languageinfo',
'uselang' => 'en',
];
$res = $this->doApiRequest( $params );
$this->assertArrayNotHasKey( 'warnings', $res[0] );
return [ $res[0]['query']['languageinfo'], $res[0]['continue'] ?? null ];
}
public function testAllPropsForSingleLanguage() {
list( $response, $continue ) = $this->doQuery( [
'liprop' => 'code|bcp47|dir|autonym|name|fallbacks|variants',
'licode' => 'sh',
] );
$this->assertArrayEquals( [
'sh' => [
'code' => 'sh',
'bcp47' => 'sh',
'autonym' => 'srpskohrvatski / српскохрватски',
'name' => 'Serbo-Croatian',
'fallbacks' => [ 'bs', 'sr-el', 'sr-latn', 'hr' ],
'dir' => 'ltr',
'variants' => [ 'sh' ],
],
], $response );
}
public function testAllPropsForSingleCustomLanguage() {
list( $response, $continue ) = $this->doQuery( [
'liprop' => 'code|bcp47|dir|autonym|name|fallbacks|variants',
'licode' => 'qtp', // reserved for local use by ISO 639; registered in setUp()
] );
$this->assertArrayEquals( [
'qtp' => [
'code' => 'qtp',
'bcp47' => 'qtp',
'autonym' => '',
'name' => 'a custom language code MediaWiki knows nothing about',
'fallbacks' => [],
'dir' => 'ltr',
'variants' => [ 'qtp' ],
],
], $response );
}
public function testNameInOtherLanguageForSingleLanguage() {
list( $response, $continue ) = $this->doQuery( [
'liprop' => 'name',
'licode' => 'de',
'uselang' => 'pt',
] );
$this->assertArrayEquals( [ 'de' => [ 'name' => 'alemão' ] ], $response );
}
public function testContinuationNecessary() {
$time = 0;
ConvertibleTimestamp::setFakeTime( static function () use ( &$time ) {
return $time += 0.75;
} );
list( $response, $continue ) = $this->doQuery( [] );
$this->assertCount( 2, $response );
$this->assertArrayHasKey( 'licontinue', $continue );
}
public function testContinuationNotNecessary() {
$time = 0;
ConvertibleTimestamp::setFakeTime( static function () use ( &$time ) {
return $time += 1.5;
} );
list( $response, $continue ) = $this->doQuery( [
'licode' => 'de',
] );
$this->assertNull( $continue );
}
public function testContinuationInAlphabeticalOrderNotParameterOrder() {
$time = 0;
ConvertibleTimestamp::setFakeTime( static function () use ( &$time ) {
return $time += 0.75;
} );
$params = [ 'licode' => 'en|ru|zh|de|yue' ];
list( $response, $continue ) = $this->doQuery( $params );
$this->assertCount( 2, $response );
$this->assertArrayHasKey( 'licontinue', $continue );
$this->assertSame( [ 'de', 'en' ], array_keys( $response ) );
$time = 0;
$params = $continue + $params;
list( $response, $continue ) = $this->doQuery( $params );
$this->assertCount( 2, $response );
$this->assertArrayHasKey( 'licontinue', $continue );
$this->assertSame( [ 'ru', 'yue' ], array_keys( $response ) );
$time = 0;
$params = $continue + $params;
list( $response, $continue ) = $this->doQuery( $params );
$this->assertCount( 1, $response );
$this->assertNull( $continue );
$this->assertSame( [ 'zh' ], array_keys( $response ) );
}
public function testResponseHasModulePathEvenIfEmpty() {
list( $response, $continue ) = $this->doQuery( [ 'licode' => '' ] );
$this->assertSame( [], $response );
// the real test is that $res[0]['query']['languageinfo'] in doQuery() didnt fail
}
}