summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/Translate/tests/phpunit/BlackListTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/Translate/tests/phpunit/BlackListTest.php')
-rw-r--r--www/wiki/extensions/Translate/tests/phpunit/BlackListTest.php90
1 files changed, 90 insertions, 0 deletions
diff --git a/www/wiki/extensions/Translate/tests/phpunit/BlackListTest.php b/www/wiki/extensions/Translate/tests/phpunit/BlackListTest.php
new file mode 100644
index 00000000..0e91f765
--- /dev/null
+++ b/www/wiki/extensions/Translate/tests/phpunit/BlackListTest.php
@@ -0,0 +1,90 @@
+<?php
+/**
+ * @file
+ * @author Santhosh Thottingal
+ * @copyright Copyright © 2012-2013, Santhosh Thottingal
+ * @license GPL-2.0-or-later
+ */
+
+/**
+ * Unit tests for blacklisting/whitelisting languages for a message group
+ */
+class BlackListTest extends MediaWikiTestCase {
+
+ /**
+ * @var MessageGroup
+ */
+ protected $group;
+ protected $codes;
+ protected $groupConfiguration = [
+ 'BASIC' => [
+ 'class' => 'FileBasedMessageGroup',
+ 'id' => 'test-id',
+ 'label' => 'Test Label',
+ 'namespace' => 'NS_MEDIAWIKI',
+ 'description' => 'Test description',
+ ],
+ 'FILES' => [
+ 'class' => 'TestFFS',
+ ],
+ ];
+
+ protected function setUp() {
+ parent::setUp();
+ $this->group = MessageGroupBase::factory( $this->groupConfiguration );
+ $this->codes = array_flip( array_keys( TranslateUtils::getLanguageNames( 'en' ) ) );
+ }
+
+ protected function tearDown() {
+ unset( $this->group );
+ parent::tearDown();
+ }
+
+ public function testNoLanguageConf() {
+ $translatableLanguages = $this->group->getTranslatableLanguages();
+ $this->assertNull( $translatableLanguages );
+ }
+
+ public function testAllBlackList() {
+ $conf = $this->groupConfiguration;
+ $conf['LANGUAGES'] = [
+ 'blacklist' => '*',
+ ];
+ $group = MessageGroupBase::factory( $conf );
+ $translatableLanguages = $group->getTranslatableLanguages();
+ $this->assertEquals( count( $translatableLanguages ), 0 );
+ }
+
+ public function testAllWhiteList() {
+ $conf = $this->groupConfiguration;
+ $conf['LANGUAGES'] = [
+ 'whitelist' => '*',
+ ];
+ $group = MessageGroupBase::factory( $conf );
+ $translatableLanguages = $group->getTranslatableLanguages();
+ $this->assertNull( $translatableLanguages );
+ }
+
+ public function testWhiteListOverrideBlackList() {
+ $conf = $this->groupConfiguration;
+ $conf['LANGUAGES'] = [
+ 'whitelist' => [ 'en', 'hi', 'ta' ],
+ 'blacklist' => [ 'ta' ],
+ ];
+ $group = MessageGroupBase::factory( $conf );
+ $translatableLanguages = $group->getTranslatableLanguages();
+ $this->assertTrue( isset( $translatableLanguages['ta'] ) );
+ $this->assertTrue( isset( $translatableLanguages['hi'] ) );
+ }
+
+ public function testSomeBlackList() {
+ $conf = $this->groupConfiguration;
+ $conf['LANGUAGES'] = [
+ 'blacklist' => [ 'or', 'hi' ],
+ ];
+ $group = MessageGroupBase::factory( $conf );
+ $translatableLanguages = $group->getTranslatableLanguages();
+ $this->assertTrue( !isset( $translatableLanguages['hi'] ) );
+ $this->assertTrue( isset( $translatableLanguages['he'] ) );
+ }
+}