8 class MessageCacheTest
extends MediaWikiLangTestCase
{
10 protected function setUp() {
12 $this->configureLanguages();
13 MessageCache
::singleton()->enable();
17 * Helper function -- setup site language for testing
19 protected function configureLanguages() {
20 // for the test, we need the content language to be anything but English,
21 // let's choose e.g. German (de)
23 $langObj = Language
::factory( $langCode );
25 $this->setMwGlobals( array(
26 'wgLanguageCode' => $langCode,
28 'wgContLang' => $langObj,
32 function addDBData() {
33 $this->configureLanguages();
35 // Set up messages and fallbacks ab -> ru -> de
36 $this->makePage( 'FallbackLanguageTest-Full', 'ab' );
37 $this->makePage( 'FallbackLanguageTest-Full', 'ru' );
38 $this->makePage( 'FallbackLanguageTest-Full', 'de' );
40 // Fallbacks where ab does not exist
41 $this->makePage( 'FallbackLanguageTest-Partial', 'ru' );
42 $this->makePage( 'FallbackLanguageTest-Partial', 'de' );
44 // Fallback to the content language
45 $this->makePage( 'FallbackLanguageTest-ContLang', 'de' );
47 // Add customizations for an existing message.
48 $this->makePage( 'sunday', 'ru' );
50 // Full key tests -- always want russian
51 $this->makePage( 'MessageCacheTest-FullKeyTest', 'ab' );
52 $this->makePage( 'MessageCacheTest-FullKeyTest', 'ru' );
54 // In content language -- get base if no derivative
55 $this->makePage( 'FallbackLanguageTest-NoDervContLang', 'de', 'de/none' );
59 * Helper function for addDBData -- adds a simple page to the database
61 * @param string $title Title of page to be created
62 * @param string $lang Language and content of the created page
63 * @param string|null $content Content of the created page, or null for a generic string
65 protected function makePage( $title, $lang, $content = null ) {
68 if ( $content === null ) {
71 if ( $lang !== $wgContLang->getCode() ) {
72 $title = "$title/$lang";
75 $title = Title
::newFromText( $title, NS_MEDIAWIKI
);
76 $wikiPage = new WikiPage( $title );
77 $contentHandler = ContentHandler
::makeContent( $content, $title );
78 $wikiPage->doEditContent( $contentHandler, "$lang translation test case" );
82 * Test message fallbacks, bug #1495
84 * @dataProvider provideMessagesForFallback
86 public function testMessageFallbacks( $message, $lang, $expectedContent ) {
87 $result = MessageCache
::singleton()->get( $message, true, $lang );
88 $this->assertEquals( $expectedContent, $result, "Message fallback failed." );
91 function provideMessagesForFallback() {
93 array( 'FallbackLanguageTest-Full', 'ab', 'ab' ),
94 array( 'FallbackLanguageTest-Partial', 'ab', 'ru' ),
95 array( 'FallbackLanguageTest-ContLang', 'ab', 'de' ),
96 array( 'FallbackLanguageTest-None', 'ab', false ),
98 // Existing message with customizations on the fallbacks
99 array( 'sunday', 'ab', 'амҽыш' ),
102 array( 'FallbackLanguageTest-NoDervContLang', 'de', 'de/none' ),
103 // UI language different from content language should only use de/none as last option
104 array( 'FallbackLanguageTest-NoDervContLang', 'fit', 'de/none' ),
109 * There's a fallback case where the message key is given as fully qualified -- this
110 * should ignore the passed $lang and use the language from the key
112 * @dataProvider provideMessagesForFullKeys
114 public function testFullKeyBehaviour( $message, $lang, $expectedContent ) {
115 $result = MessageCache
::singleton()->get( $message, true, $lang, true );
116 $this->assertEquals( $expectedContent, $result, "Full key message fallback failed." );
119 function provideMessagesForFullKeys() {
121 array( 'MessageCacheTest-FullKeyTest/ru', 'ru', 'ru' ),
122 array( 'MessageCacheTest-FullKeyTest/ru', 'ab', 'ru' ),
123 array( 'MessageCacheTest-FullKeyTest/ru/foo', 'ru', false ),
128 * @dataProvider provideNormalizeKey
130 public function testNormalizeKey( $key, $expected ) {
131 $actual = MessageCache
::normalizeKey( $key );
132 $this->assertEquals( $expected, $actual );
135 public function provideNormalizeKey() {
137 array( 'Foo', 'foo' ),
138 array( 'foo', 'foo' ),
139 array( 'fOo', 'fOo' ),
140 array( 'FOO', 'fOO' ),
141 array( 'Foo bar', 'foo_bar' ),
142 array( 'Ćab', 'ćab' ),
143 array( 'Ćab_e 3', 'ćab_e_3' ),
144 array( 'ĆAB', 'ćAB' ),
145 array( 'ćab', 'ćab' ),
146 array( 'ćaB', 'ćaB' ),