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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
|
<?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 provideTestAllPropsForSingleLanguage() {
yield [
'sr',
[
'code' => 'sr',
'bcp47' => 'sr',
'autonym' => 'српски / srpski',
'name' => 'српски / srpski',
'fallbacks' => [ 'sr-ec', 'sr-cyrl' ],
'dir' => 'ltr',
'variants' => [ 'sr', 'sr-ec', 'sr-el' ],
'variantnames' => [
'sr' => 'Ћир./lat.',
'sr-ec' => 'Ћирилица',
'sr-el' => 'Latinica',
],
]
];
yield [
'qtp', // reserved for local use by ISO 639; registered in setUp()
[
'code' => 'qtp',
'bcp47' => 'qtp',
'autonym' => '',
'name' => 'a custom language code MediaWiki knows nothing about',
'fallbacks' => [],
'dir' => 'ltr',
'variants' => [ 'qtp' ],
'variantnames' => [ 'qtp' => 'qtp' ],
]
];
}
/**
* @dataProvider provideTestAllPropsForSingleLanguage
*/
public function testAllPropsForSingleLanguage( string $langCode, array $expected ) {
[ $response, $continue ] = $this->doQuery( [
'liprop' => 'code|bcp47|dir|autonym|name|fallbacks|variants|variantnames',
'licode' => $langCode,
] );
$this->assertArrayEquals( [ $langCode => $expected ], $response );
}
public function testNameInOtherLanguageForSingleLanguage() {
[ $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;
} );
[ $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;
} );
[ $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' ];
[ $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;
[ $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;
[ $response, $continue ] = $this->doQuery( $params );
$this->assertCount( 1, $response );
$this->assertNull( $continue );
$this->assertSame( [ 'zh' ], array_keys( $response ) );
}
public function testResponseHasModulePathEvenIfEmpty() {
[ $response, $continue ] = $this->doQuery( [ 'licode' => '' ] );
$this->assertSame( [], $response );
// the real test is that $res[0]['query']['languageinfo'] in doQuery() didn’t fail
}
}
|