5 * @covers LocalisationCache
6 * @author Niklas Laxström
8 class LocalisationCacheTest
extends MediaWikiTestCase
{
9 protected function setUp() {
11 $this->setMwGlobals( [
12 'wgExtensionMessagesFiles' => [],
18 * @return LocalisationCache
20 protected function getMockLocalisationCache() {
22 $lc = $this->getMockBuilder( 'LocalisationCache' )
23 ->setConstructorArgs( [ [ 'store' => 'detect' ] ] )
24 ->setMethods( [ 'getMessagesDirs' ] )
26 $lc->expects( $this->any() )->method( 'getMessagesDirs' )
27 ->will( $this->returnValue(
28 [ "$IP/tests/phpunit/data/localisationcache" ]
34 public function testPuralRulesFallback() {
35 $cache = $this->getMockLocalisationCache();
38 $cache->getItem( 'ar', 'pluralRules' ),
39 $cache->getItem( 'arz', 'pluralRules' ),
40 'arz plural rules (undefined) fallback to ar (defined)'
44 $cache->getItem( 'ar', 'compiledPluralRules' ),
45 $cache->getItem( 'arz', 'compiledPluralRules' ),
46 'arz compiled plural rules (undefined) fallback to ar (defined)'
49 $this->assertNotEquals(
50 $cache->getItem( 'ksh', 'pluralRules' ),
51 $cache->getItem( 'de', 'pluralRules' ),
52 'ksh plural rules (defined) dont fallback to de (defined)'
55 $this->assertNotEquals(
56 $cache->getItem( 'ksh', 'compiledPluralRules' ),
57 $cache->getItem( 'de', 'compiledPluralRules' ),
58 'ksh compiled plural rules (defined) dont fallback to de (defined)'
62 public function testRecacheFallbacks() {
63 $lc = $this->getMockLocalisationCache();
71 $lc->getItem( 'ba', 'messages' ),
72 'Fallbacks are only used to fill missing data'
76 public function testRecacheFallbacksWithHooks() {
77 // Use hook to provide updates for messages. This is what the
78 // LocalisationUpdate extension does. See bug 68781.
79 $this->mergeMwGlobalArrayValue( 'wgHooks', [
80 'LocalisationCacheRecacheFallback' => [
82 LocalisationCache
$lc,
86 if ( $code === 'ru' ) {
87 $cache['messages']['present-ba'] = 'ru-override';
88 $cache['messages']['present-ru'] = 'ru-override';
89 $cache['messages']['present-en'] = 'ru-override';
95 $lc = $this->getMockLocalisationCache();
100 'present-ru' => 'ru-override',
101 'present-en' => 'ru-override',
103 $lc->getItem( 'ba', 'messages' ),
104 'Updates provided by hooks follow the normal fallback order.'