1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
<?php
/**
* Tests for MessageCollection.
* @author Niklas Laxström
* @file
* @license GPL-2.0-or-later
*/
/**
* Tests for MessageCollection.
* @group Database
* @group medium
*/
class MessageCollectionTest extends MediaWikiTestCase {
protected function setUp() {
parent::setUp();
global $wgHooks;
$this->setMwGlobals( [
'wgHooks' => $wgHooks,
'wgTranslateTranslationServices' => [],
] );
$wgHooks['TranslatePostInitGroups'] = [ [ $this, 'getTestGroups' ] ];
$mg = MessageGroups::singleton();
$mg->setCache( new WANObjectCache( [ 'cache' => wfGetCache( 'hash' ) ] ) );
$mg->recache();
MessageIndex::setInstance( new HashMessageIndex() );
MessageIndex::singleton()->rebuild();
}
public function getTestGroups( &$list ) {
$messages = [
'translated' => 'bunny',
'untranslated' => 'fanny',
];
$list['test-group'] = new MockWikiMessageGroup( 'test-group', $messages );
return false;
}
public function testMessage() {
$user = $this->getTestSysop()->getUser();
$title = Title::newFromText( 'MediaWiki:translated/fi' );
$page = WikiPage::factory( $title );
$content = ContentHandler::makeContent( 'pupuliini', $title );
$status = $page->doEditContent( $content, __METHOD__, 0, false, $user );
$value = $status->getValue();
$rev = $value['revision'];
$revision = $rev->getId();
$group = MessageGroups::getGroup( 'test-group' );
$collection = $group->initCollection( 'fi' );
$collection->loadTranslations();
/** @var TMessage $translated */
$translated = $collection['translated'];
$this->assertInstanceOf( 'TMessage', $translated );
$this->assertEquals( 'translated', $translated->key() );
$this->assertEquals( 'bunny', $translated->definition() );
$this->assertEquals( 'pupuliini', $translated->translation() );
$this->assertEquals( $user->getName(), $translated->getProperty( 'last-translator-text' ) );
$this->assertEquals( $user->getId(), $translated->getProperty( 'last-translator-id' ) );
$this->assertEquals(
'translated',
$translated->getProperty( 'status' ),
'message status is translated'
);
$this->assertEquals( $revision, $translated->getProperty( 'revision' ) );
/** @var TMessage $untranslated */
$untranslated = $collection['untranslated'];
$this->assertInstanceOf( 'TMessage', $untranslated );
$this->assertEquals( null, $untranslated->translation(), 'no translation is null' );
$this->assertEquals( false, $untranslated->getProperty( 'last-translator-text' ) );
$this->assertEquals( false, $untranslated->getProperty( 'last-translator-id' ) );
$this->assertEquals(
'untranslated',
$untranslated->getProperty( 'status' ),
'message status is untranslated'
);
$this->assertEquals( false, $untranslated->getProperty( 'revision' ) );
}
}
|