Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F4105916
ApiQueryLanguageinfoTest.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
4 KB
Referenced Files
None
Subscribers
None
ApiQueryLanguageinfoTest.php
View Options
<?php
namespace
MediaWiki\Tests\Api\Query
;
use
MediaWiki\Tests\Api\ApiTestCase
;
use
Wikimedia\Timestamp\ConvertibleTimestamp
;
/**
* @group API
* @group medium
*
* @covers MediaWiki\Api\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
static
function
provideTestAllPropsForSingleLanguage
()
{
yield
[
'sr'
,
[
'code'
=>
'sr'
,
'bcp47'
=>
'sr'
,
'autonym'
=>
'српски / srpski'
,
'name'
=>
'српски / srpski'
,
'fallbacks'
=>
[
'sr-ec'
,
'sr-cyrl'
,
'sr-el'
,
'sr-latn'
],
'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
);
}
/**
* Test ensures continuation is applied if the test runs for longer than allowed
*
* ApiQueryLanguageinfo::MAX_EXECUTE_SECONDS controls the speed the API has to have before
* applying continuation.
*
* @see T329609#8613954
*/
public
function
testContinuationNecessary
()
{
$time
=
0
;
ConvertibleTimestamp
::
setFakeTime
(
static
function
()
use
(
&
$time
)
{
return
$time
+=
1
;
}
);
[
$response
,
$continue
]
=
$this
->
doQuery
(
[]
);
$this
->
assertCount
(
2
,
$response
);
$this
->
assertArrayHasKey
(
'licontinue'
,
$continue
);
}
/**
* Test ensures continuation is applied if the test runs for longer than allowed
*
* ApiQueryLanguageinfo::MAX_EXECUTE_SECONDS controls the speed the API has to have before
* applying continuation.
*
* @see T329609#8613954
*/
public
function
testContinuationNotNecessary
()
{
$time
=
0
;
ConvertibleTimestamp
::
setFakeTime
(
static
function
()
use
(
&
$time
)
{
return
$time
+=
2
;
}
);
[
$response
,
$continue
]
=
$this
->
doQuery
(
[
'licode'
=>
'de'
,
]
);
$this
->
assertNull
(
$continue
);
}
public
function
testContinuationInAlphabeticalOrderNotParameterOrder
()
{
$time
=
0
;
ConvertibleTimestamp
::
setFakeTime
(
static
function
()
use
(
&
$time
)
{
return
$time
+=
1
;
}
);
$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
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Aug 18, 19:12 (2 w, 4 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
33/26/3148274a714969032f43fe074e93
Default Alt Text
ApiQueryLanguageinfoTest.php (4 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment