b03eeba295e7c6ab167a7c0278cb3527b5774f42
[lhc/web/wiklou.git] / tests / phpunit / includes / cache / MessageCacheTest.php
1 <?php
2
3 /**
4 * @group Database
5 * @group Cache
6 * @covers MessageCache
7 */
8 class MessageCacheTest extends MediaWikiLangTestCase {
9
10 protected function setUp() {
11 parent::setUp();
12 $this->configureLanguages();
13 MessageCache::singleton()->enable();
14 }
15
16 /**
17 * Helper function -- setup site language for testing
18 */
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' );
24 }
25
26 function addDBDataOnce() {
27 $this->configureLanguages();
28
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' );
33
34 // Fallbacks where ab does not exist
35 $this->makePage( 'FallbackLanguageTest-Partial', 'ru' );
36 $this->makePage( 'FallbackLanguageTest-Partial', 'de' );
37
38 // Fallback to the content language
39 $this->makePage( 'FallbackLanguageTest-ContLang', 'de' );
40
41 // Add customizations for an existing message.
42 $this->makePage( 'sunday', 'ru' );
43
44 // Full key tests -- always want russian
45 $this->makePage( 'MessageCacheTest-FullKeyTest', 'ab' );
46 $this->makePage( 'MessageCacheTest-FullKeyTest', 'ru' );
47
48 // In content language -- get base if no derivative
49 $this->makePage( 'FallbackLanguageTest-NoDervContLang', 'de', 'de/none' );
50 }
51
52 /**
53 * Helper function for addDBData -- adds a simple page to the database
54 *
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
58 */
59 protected function makePage( $title, $lang, $content = null ) {
60 global $wgContLang;
61
62 if ( $content === null ) {
63 $content = $lang;
64 }
65 if ( $lang !== $wgContLang->getCode() ) {
66 $title = "$title/$lang";
67 }
68
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" );
73 }
74
75 /**
76 * Test message fallbacks, bug #1495
77 *
78 * @dataProvider provideMessagesForFallback
79 */
80 public function testMessageFallbacks( $message, $lang, $expectedContent ) {
81 $result = MessageCache::singleton()->get( $message, true, $lang );
82 $this->assertEquals( $expectedContent, $result, "Message fallback failed." );
83 }
84
85 function provideMessagesForFallback() {
86 return [
87 [ 'FallbackLanguageTest-Full', 'ab', 'ab' ],
88 [ 'FallbackLanguageTest-Partial', 'ab', 'ru' ],
89 [ 'FallbackLanguageTest-ContLang', 'ab', 'de' ],
90 [ 'FallbackLanguageTest-None', 'ab', false ],
91
92 // Existing message with customizations on the fallbacks
93 [ 'sunday', 'ab', 'амҽыш' ],
94
95 // T48579
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' ],
99 ];
100 }
101
102 public function testReplaceMsg() {
103 global $wgContLang;
104
105 $messageCache = MessageCache::singleton();
106 $message = 'go';
107 $uckey = $wgContLang->ucfirst( $message );
108 $oldText = $messageCache->get( $message ); // "Ausführen"
109
110 $dbw = wfGetDB( DB_MASTER );
111 $dbw->startAtomic( __METHOD__ ); // simulate request and block deferred updates
112 $messageCache->replace( $uckey, 'Allez!' );
113 $this->assertEquals( 'Allez!',
114 $messageCache->getMsgFromNamespace( $uckey, 'de' ),
115 'Updates are reflected in-process immediately' );
116 $this->assertEquals( 'Allez!',
117 $messageCache->get( $message ),
118 'Updates are reflected in-process immediately' );
119 $this->makePage( 'Go', 'de', 'Race!' );
120 $dbw->endAtomic( __METHOD__ );
121
122 $this->assertEquals( 0,
123 DeferredUpdates::pendingUpdatesCount(),
124 'Post-commit deferred update triggers a run of all updates' );
125
126 $this->assertEquals( 'Race!', $messageCache->get( $message ), 'Correct final contents' );
127
128 $this->makePage( 'Go', 'de', $oldText );
129 $messageCache->replace( $uckey, $oldText ); // deferred update runs immediately
130 $this->assertEquals( $oldText, $messageCache->get( $message ), 'Content restored' );
131 }
132
133 /**
134 * There's a fallback case where the message key is given as fully qualified -- this
135 * should ignore the passed $lang and use the language from the key
136 *
137 * @dataProvider provideMessagesForFullKeys
138 */
139 public function testFullKeyBehaviour( $message, $lang, $expectedContent ) {
140 $result = MessageCache::singleton()->get( $message, true, $lang, true );
141 $this->assertEquals( $expectedContent, $result, "Full key message fallback failed." );
142 }
143
144 function provideMessagesForFullKeys() {
145 return [
146 [ 'MessageCacheTest-FullKeyTest/ru', 'ru', 'ru' ],
147 [ 'MessageCacheTest-FullKeyTest/ru', 'ab', 'ru' ],
148 [ 'MessageCacheTest-FullKeyTest/ru/foo', 'ru', false ],
149 ];
150 }
151
152 /**
153 * @dataProvider provideNormalizeKey
154 */
155 public function testNormalizeKey( $key, $expected ) {
156 $actual = MessageCache::normalizeKey( $key );
157 $this->assertEquals( $expected, $actual );
158 }
159
160 public function provideNormalizeKey() {
161 return [
162 [ 'Foo', 'foo' ],
163 [ 'foo', 'foo' ],
164 [ 'fOo', 'fOo' ],
165 [ 'FOO', 'fOO' ],
166 [ 'Foo bar', 'foo_bar' ],
167 [ 'Ćab', 'ćab' ],
168 [ 'Ćab_e 3', 'ćab_e_3' ],
169 [ 'ĆAB', 'ćAB' ],
170 [ 'ćab', 'ćab' ],
171 [ 'ćaB', 'ćaB' ],
172 ];
173 }
174 }