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
|
<?php
/**
* @group Database
*/
class MessageWebImporterTest extends MediaWikiIntegrationTestCase {
private const PAGE = 'MediaWiki:' . __METHOD__ . '_translated';
protected function setUp() : void {
parent::setUp();
$this->setTemporaryHook( 'TranslatePostInitGroups', [ $this, 'getTestGroups' ] );
$mg = MessageGroups::singleton();
$mg->setCache( new WANObjectCache( [ 'cache' => wfGetCache( 'hash' ) ] ) );
$mg->recache();
MessageIndex::setInstance( new HashMessageIndex() );
MessageIndex::singleton()->rebuild();
$this->overrideUserPermissions( RequestContext::getMain()->getUser(), [
'translate-manage' // needed for MessageWebImporter::doFuzzy for testDoFuzzy
] );
}
public function getTestGroups( &$list ) {
$list['test-group'] = new MockWikiMessageGroup( 'test-group', [
self::PAGE => 'bunny',
] );
return false;
}
/**
* @covers MessageWebImporter::doFuzzy
*/
public function testDoFuzzy() {
$this->assertTrue(
$this->editPage( self::PAGE . '/en', 'English Original' )->isGood(),
'Sanity: Must create English original translation'
);
$this->assertTrue(
$this->editPage( self::PAGE . '/fi', 'Finnish Original' )->isGood(),
'Sanity: Must create Finnish original translation'
);
$result = MessageWebImporter::doFuzzy(
Title::newFromText( self::PAGE ),
'English Changed', '', null
);
$this->assertEquals( 'translate-manage-import-fuzzy', $result[0] );
$this->assertEquals(
'English Changed',
WikiPage::factory( Title::newFromText( self::PAGE . '/en' ) )->getContent()->serialize(),
'Must change the content of the English translation'
);
$this->assertEquals(
TRANSLATE_FUZZY . 'Finnish Original',
WikiPage::factory( Title::newFromText( self::PAGE . '/fi' ) )->getContent()->serialize(),
'Must change the content of the Finnish translation'
);
}
}
|