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)
22 $this->setUserLang( 'de' );
23 $this->setContentLang( 'de' );
26 function addDBDataOnce() {
27 $this->configureLanguages();
29 // Set up messages and fallbacks ab -> ru -> de
30 $this->makePage( 'FallbackLanguageTest-Full', 'ab' );
31 $this->makePage( 'FallbackLanguageTest-Full', 'ru' );
32 $this->makePage( 'FallbackLanguageTest-Full', 'de' );
34 // Fallbacks where ab does not exist
35 $this->makePage( 'FallbackLanguageTest-Partial', 'ru' );
36 $this->makePage( 'FallbackLanguageTest-Partial', 'de' );
38 // Fallback to the content language
39 $this->makePage( 'FallbackLanguageTest-ContLang', 'de' );
41 // Add customizations for an existing message.
42 $this->makePage( 'sunday', 'ru' );
44 // Full key tests -- always want russian
45 $this->makePage( 'MessageCacheTest-FullKeyTest', 'ab' );
46 $this->makePage( 'MessageCacheTest-FullKeyTest', 'ru' );
48 // In content language -- get base if no derivative
49 $this->makePage( 'FallbackLanguageTest-NoDervContLang', 'de', 'de/none' );
53 * Helper function for addDBData -- adds a simple page to the database
55 * @param string $title Title of page to be created
56 * @param string $lang Language and content of the created page
57 * @param string|null $content Content of the created page, or null for a generic string
59 protected function makePage( $title, $lang, $content = null ) {
62 if ( $content === null ) {
65 if ( $lang !== $wgContLang->getCode() ) {
66 $title = "$title/$lang";
69 $title = Title
::newFromText( $title, NS_MEDIAWIKI
);
70 $wikiPage = new WikiPage( $title );
71 $contentHandler = ContentHandler
::makeContent( $content, $title );
72 $wikiPage->doEditContent( $contentHandler, "$lang translation test case" );
76 * Test message fallbacks, bug #1495
78 * @dataProvider provideMessagesForFallback
80 public function testMessageFallbacks( $message, $lang, $expectedContent ) {
81 $result = MessageCache
::singleton()->get( $message, true, $lang );
82 $this->assertEquals( $expectedContent, $result, "Message fallback failed." );
85 function provideMessagesForFallback() {
87 [ 'FallbackLanguageTest-Full', 'ab', 'ab' ],
88 [ 'FallbackLanguageTest-Partial', 'ab', 'ru' ],
89 [ 'FallbackLanguageTest-ContLang', 'ab', 'de' ],
90 [ 'FallbackLanguageTest-None', 'ab', false ],
92 // Existing message with customizations on the fallbacks
93 [ 'sunday', 'ab', 'амҽыш' ],
96 [ 'FallbackLanguageTest-NoDervContLang', 'de', 'de/none' ],
97 // UI language different from content language should only use de/none as last option
98 [ 'FallbackLanguageTest-NoDervContLang', 'fit', 'de/none' ],
103 * There's a fallback case where the message key is given as fully qualified -- this
104 * should ignore the passed $lang and use the language from the key
106 * @dataProvider provideMessagesForFullKeys
108 public function testFullKeyBehaviour( $message, $lang, $expectedContent ) {
109 $result = MessageCache
::singleton()->get( $message, true, $lang, true );
110 $this->assertEquals( $expectedContent, $result, "Full key message fallback failed." );
113 function provideMessagesForFullKeys() {
115 [ 'MessageCacheTest-FullKeyTest/ru', 'ru', 'ru' ],
116 [ 'MessageCacheTest-FullKeyTest/ru', 'ab', 'ru' ],
117 [ 'MessageCacheTest-FullKeyTest/ru/foo', 'ru', false ],
122 * @dataProvider provideNormalizeKey
124 public function testNormalizeKey( $key, $expected ) {
125 $actual = MessageCache
::normalizeKey( $key );
126 $this->assertEquals( $expected, $actual );
129 public function provideNormalizeKey() {
135 [ 'Foo bar', 'foo_bar' ],
137 [ 'Ćab_e 3', 'ćab_e_3' ],