2013-01-16 07:28:54 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @group Database
|
|
|
|
|
* @group Cache
|
2013-10-18 11:06:08 +00:00
|
|
|
* @covers MessageCache
|
2013-01-16 07:28:54 +00:00
|
|
|
*/
|
|
|
|
|
class MessageCacheTest extends MediaWikiLangTestCase {
|
|
|
|
|
|
|
|
|
|
protected function setUp() {
|
|
|
|
|
parent::setUp();
|
|
|
|
|
$this->configureLanguages();
|
|
|
|
|
MessageCache::singleton()->enable();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Helper function -- setup site language for testing
|
|
|
|
|
*/
|
|
|
|
|
protected function configureLanguages() {
|
|
|
|
|
// for the test, we need the content language to be anything but English,
|
|
|
|
|
// let's choose e.g. German (de)
|
2016-03-09 16:47:58 +00:00
|
|
|
$this->setUserLang( 'de' );
|
|
|
|
|
$this->setContentLang( 'de' );
|
2013-01-16 07:28:54 +00:00
|
|
|
}
|
|
|
|
|
|
2016-03-07 17:26:25 +00:00
|
|
|
function addDBDataOnce() {
|
2013-01-16 07:28:54 +00:00
|
|
|
$this->configureLanguages();
|
|
|
|
|
|
|
|
|
|
// Set up messages and fallbacks ab -> ru -> de
|
|
|
|
|
$this->makePage( 'FallbackLanguageTest-Full', 'ab' );
|
|
|
|
|
$this->makePage( 'FallbackLanguageTest-Full', 'ru' );
|
|
|
|
|
$this->makePage( 'FallbackLanguageTest-Full', 'de' );
|
|
|
|
|
|
|
|
|
|
// Fallbacks where ab does not exist
|
|
|
|
|
$this->makePage( 'FallbackLanguageTest-Partial', 'ru' );
|
|
|
|
|
$this->makePage( 'FallbackLanguageTest-Partial', 'de' );
|
|
|
|
|
|
|
|
|
|
// Fallback to the content language
|
|
|
|
|
$this->makePage( 'FallbackLanguageTest-ContLang', 'de' );
|
|
|
|
|
|
|
|
|
|
// Add customizations for an existing message.
|
|
|
|
|
$this->makePage( 'sunday', 'ru' );
|
|
|
|
|
|
|
|
|
|
// Full key tests -- always want russian
|
|
|
|
|
$this->makePage( 'MessageCacheTest-FullKeyTest', 'ab' );
|
|
|
|
|
$this->makePage( 'MessageCacheTest-FullKeyTest', 'ru' );
|
|
|
|
|
|
|
|
|
|
// In content language -- get base if no derivative
|
2015-05-20 02:34:20 +00:00
|
|
|
$this->makePage( 'FallbackLanguageTest-NoDervContLang', 'de', 'de/none' );
|
2013-01-16 07:28:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Helper function for addDBData -- adds a simple page to the database
|
|
|
|
|
*
|
|
|
|
|
* @param string $title Title of page to be created
|
2014-07-24 12:55:43 +00:00
|
|
|
* @param string $lang Language and content of the created page
|
2013-01-16 07:28:54 +00:00
|
|
|
* @param string|null $content Content of the created page, or null for a generic string
|
|
|
|
|
*/
|
2015-05-20 02:34:20 +00:00
|
|
|
protected function makePage( $title, $lang, $content = null ) {
|
2013-01-16 07:28:54 +00:00
|
|
|
global $wgContLang;
|
|
|
|
|
|
|
|
|
|
if ( $content === null ) {
|
|
|
|
|
$content = $lang;
|
|
|
|
|
}
|
2015-05-20 02:34:20 +00:00
|
|
|
if ( $lang !== $wgContLang->getCode() ) {
|
2013-01-16 07:28:54 +00:00
|
|
|
$title = "$title/$lang";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$title = Title::newFromText( $title, NS_MEDIAWIKI );
|
|
|
|
|
$wikiPage = new WikiPage( $title );
|
|
|
|
|
$contentHandler = ContentHandler::makeContent( $content, $title );
|
|
|
|
|
$wikiPage->doEditContent( $contentHandler, "$lang translation test case" );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Test message fallbacks, bug #1495
|
|
|
|
|
*
|
|
|
|
|
* @dataProvider provideMessagesForFallback
|
|
|
|
|
*/
|
2013-10-23 22:51:31 +00:00
|
|
|
public function testMessageFallbacks( $message, $lang, $expectedContent ) {
|
2013-01-16 07:28:54 +00:00
|
|
|
$result = MessageCache::singleton()->get( $message, true, $lang );
|
|
|
|
|
$this->assertEquals( $expectedContent, $result, "Message fallback failed." );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function provideMessagesForFallback() {
|
2016-02-17 09:09:32 +00:00
|
|
|
return [
|
|
|
|
|
[ 'FallbackLanguageTest-Full', 'ab', 'ab' ],
|
|
|
|
|
[ 'FallbackLanguageTest-Partial', 'ab', 'ru' ],
|
|
|
|
|
[ 'FallbackLanguageTest-ContLang', 'ab', 'de' ],
|
|
|
|
|
[ 'FallbackLanguageTest-None', 'ab', false ],
|
2013-01-16 07:28:54 +00:00
|
|
|
|
|
|
|
|
// Existing message with customizations on the fallbacks
|
2016-02-17 09:09:32 +00:00
|
|
|
[ 'sunday', 'ab', 'амҽыш' ],
|
2013-01-16 07:28:54 +00:00
|
|
|
|
2017-02-20 23:45:58 +00:00
|
|
|
// T48579
|
2016-02-17 09:09:32 +00:00
|
|
|
[ 'FallbackLanguageTest-NoDervContLang', 'de', 'de/none' ],
|
2013-01-16 07:28:54 +00:00
|
|
|
// UI language different from content language should only use de/none as last option
|
2016-02-17 09:09:32 +00:00
|
|
|
[ 'FallbackLanguageTest-NoDervContLang', 'fit', 'de/none' ],
|
|
|
|
|
];
|
2013-01-16 07:28:54 +00:00
|
|
|
}
|
|
|
|
|
|
2016-10-28 05:53:51 +00:00
|
|
|
public function testReplaceMsg() {
|
|
|
|
|
global $wgContLang;
|
|
|
|
|
|
|
|
|
|
$messageCache = MessageCache::singleton();
|
|
|
|
|
$message = 'go';
|
|
|
|
|
$uckey = $wgContLang->ucfirst( $message );
|
|
|
|
|
$oldText = $messageCache->get( $message ); // "Ausführen"
|
|
|
|
|
|
|
|
|
|
$dbw = wfGetDB( DB_MASTER );
|
|
|
|
|
$dbw->startAtomic( __METHOD__ ); // simulate request and block deferred updates
|
|
|
|
|
$messageCache->replace( $uckey, 'Allez!' );
|
|
|
|
|
$this->assertEquals( 'Allez!',
|
|
|
|
|
$messageCache->getMsgFromNamespace( $uckey, 'de' ),
|
|
|
|
|
'Updates are reflected in-process immediately' );
|
|
|
|
|
$this->assertEquals( 'Allez!',
|
|
|
|
|
$messageCache->get( $message ),
|
|
|
|
|
'Updates are reflected in-process immediately' );
|
|
|
|
|
$this->makePage( 'Go', 'de', 'Race!' );
|
|
|
|
|
$dbw->endAtomic( __METHOD__ );
|
|
|
|
|
|
|
|
|
|
$this->assertEquals( 0,
|
|
|
|
|
DeferredUpdates::pendingUpdatesCount(),
|
|
|
|
|
'Post-commit deferred update triggers a run of all updates' );
|
|
|
|
|
|
|
|
|
|
$this->assertEquals( 'Race!', $messageCache->get( $message ), 'Correct final contents' );
|
|
|
|
|
|
|
|
|
|
$this->makePage( 'Go', 'de', $oldText );
|
|
|
|
|
$messageCache->replace( $uckey, $oldText ); // deferred update runs immediately
|
|
|
|
|
$this->assertEquals( $oldText, $messageCache->get( $message ), 'Content restored' );
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-16 07:28:54 +00:00
|
|
|
/**
|
|
|
|
|
* There's a fallback case where the message key is given as fully qualified -- this
|
|
|
|
|
* should ignore the passed $lang and use the language from the key
|
|
|
|
|
*
|
|
|
|
|
* @dataProvider provideMessagesForFullKeys
|
|
|
|
|
*/
|
2013-10-23 22:51:31 +00:00
|
|
|
public function testFullKeyBehaviour( $message, $lang, $expectedContent ) {
|
2013-01-16 07:28:54 +00:00
|
|
|
$result = MessageCache::singleton()->get( $message, true, $lang, true );
|
|
|
|
|
$this->assertEquals( $expectedContent, $result, "Full key message fallback failed." );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function provideMessagesForFullKeys() {
|
2016-02-17 09:09:32 +00:00
|
|
|
return [
|
|
|
|
|
[ 'MessageCacheTest-FullKeyTest/ru', 'ru', 'ru' ],
|
|
|
|
|
[ 'MessageCacheTest-FullKeyTest/ru', 'ab', 'ru' ],
|
|
|
|
|
[ 'MessageCacheTest-FullKeyTest/ru/foo', 'ru', false ],
|
|
|
|
|
];
|
2013-01-16 07:28:54 +00:00
|
|
|
}
|
|
|
|
|
|
2015-07-19 09:02:57 +00:00
|
|
|
/**
|
|
|
|
|
* @dataProvider provideNormalizeKey
|
|
|
|
|
*/
|
|
|
|
|
public function testNormalizeKey( $key, $expected ) {
|
|
|
|
|
$actual = MessageCache::normalizeKey( $key );
|
|
|
|
|
$this->assertEquals( $expected, $actual );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function provideNormalizeKey() {
|
2016-02-17 09:09:32 +00:00
|
|
|
return [
|
|
|
|
|
[ 'Foo', 'foo' ],
|
|
|
|
|
[ 'foo', 'foo' ],
|
|
|
|
|
[ 'fOo', 'fOo' ],
|
|
|
|
|
[ 'FOO', 'fOO' ],
|
|
|
|
|
[ 'Foo bar', 'foo_bar' ],
|
|
|
|
|
[ 'Ćab', 'ćab' ],
|
|
|
|
|
[ 'Ćab_e 3', 'ćab_e_3' ],
|
|
|
|
|
[ 'ĆAB', 'ćAB' ],
|
|
|
|
|
[ 'ćab', 'ćab' ],
|
|
|
|
|
[ 'ćaB', 'ćaB' ],
|
|
|
|
|
];
|
2015-07-19 09:02:57 +00:00
|
|
|
}
|
2013-01-16 07:28:54 +00:00
|
|
|
}
|