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
88
89
90
|
<?php
/**
* Test for various code using hooks.
*
* @file
* @author Niklas Laxström
* @license GPL-2.0-or-later
*/
/**
* @group Database
* @group medium
*/
class TranslateHooksTest extends MediaWikiLangTestCase {
protected function setUp(): void {
parent::setUp();
$this->setMwGlobals( [
'wgTranslateDocumentationLanguageCode' => 'qqq',
'wgTranslateTranslationServices' => [],
'wgTranslateMessageNamespaces' => [ NS_MEDIAWIKI ],
] );
$this->setTemporaryHook( 'TranslatePostInitGroups', [ $this, 'getTestGroups' ] );
$mg = MessageGroups::singleton();
$mg->setCache( new WANObjectCache( [ 'cache' => new HashBagOStuff() ] ) );
$mg->recache();
MessageIndex::setInstance( new HashMessageIndex() );
MessageIndex::singleton()->rebuild();
}
public function getTestGroups( &$list ) {
$messages = [
'ugakey1' => 'value1',
'ugakey2' => 'value2',
];
$list['testgroup'] = new MockWikiMessageGroup( 'testgroup', $messages );
return false;
}
public function testPreventCategorization() {
$user = $this->getTestSysop()->getUser();
$title = Title::makeTitle( NS_MEDIAWIKI, 'Ugakey1/fi' );
$wikipage = WikiPage::factory( $title );
$content = ContentHandler::makeContent( '[[Category:Shouldnotbe]]', $title );
TranslateUtils::doPageEdit( $wikipage, $content, $user, __METHOD__ );
$this->assertEquals(
[],
$title->getParentCategories(),
'translation of known message'
);
$title = Title::makeTitle( NS_MEDIAWIKI, 'Ugakey2/qqq' );
$wikipage = WikiPage::factory( $title );
$content = ContentHandler::makeContent( '[[Category:Shouldbe]]', $title );
TranslateUtils::doPageEdit( $wikipage, $content, $user, __METHOD__ );
$this->assertEquals(
[ 'Category:Shouldbe' => 'MediaWiki:Ugakey2/qqq' ],
$title->getParentCategories(),
'message docs'
);
$title = Title::makeTitle( NS_MEDIAWIKI, 'Ugakey3/no' );
$wikipage = WikiPage::factory( $title );
$content = ContentHandler::makeContent( '[[Category:Shouldbealso]]', $title );
TranslateUtils::doPageEdit( $wikipage, $content, $user, __METHOD__ );
$this->assertEquals( [], $title->getParentCategories(), 'unknown message' );
}
public function testSearchProfile() {
$profiles = [
'files' => [],
'all' => [],
'advanced' => []
];
$expected = [ 'files', 'translation', 'all', 'advanced' ];
TranslateHooks::searchProfile( $profiles );
$this->assertEquals( $expected, array_keys( $profiles ) );
}
}
|