]> scripts.mit.edu Git - autoinstallsdev/mediawiki.git/blobdiff - tests/phpunit/languages/classes/LanguageArTest.php
MediaWiki 1.30.2
[autoinstallsdev/mediawiki.git] / tests / phpunit / languages / classes / LanguageArTest.php
diff --git a/tests/phpunit/languages/classes/LanguageArTest.php b/tests/phpunit/languages/classes/LanguageArTest.php
new file mode 100644 (file)
index 0000000..5a66759
--- /dev/null
@@ -0,0 +1,87 @@
+<?php
+/**
+ * Based on LanguagMlTest
+ * @file
+ */
+
+/** Tests for MediaWiki languages/LanguageAr.php */
+class LanguageArTest extends LanguageClassesTestCase {
+       /**
+        * @covers Language::formatNum
+        * @todo split into a test and a dataprovider
+        */
+       public function testFormatNum() {
+               $this->assertEquals( '١٬٢٣٤٬٥٦٧', $this->getLang()->formatNum( '1234567' ) );
+               $this->assertEquals( '-١٢٫٨٩', $this->getLang()->formatNum( -12.89 ) );
+       }
+
+       /**
+        * Mostly to test the raw ascii feature.
+        * @dataProvider providerSprintfDate
+        * @covers Language::sprintfDate
+        */
+       public function testSprintfDate( $format, $date, $expected ) {
+               $this->assertEquals( $expected, $this->getLang()->sprintfDate( $format, $date ) );
+       }
+
+       public static function providerSprintfDate() {
+               return [
+                       [
+                               'xg "vs" g',
+                               '20120102030410',
+                               'يناير vs ٣'
+                       ],
+                       [
+                               'xmY',
+                               '20120102030410',
+                               '١٤٣٣'
+                       ],
+                       [
+                               'xnxmY',
+                               '20120102030410',
+                               '1433'
+                       ],
+                       [
+                               'xN xmj xmn xN xmY',
+                               '20120102030410',
+                               ' 7 2  ١٤٣٣'
+                       ],
+               ];
+       }
+
+       /**
+        * @dataProvider providePlural
+        * @covers Language::convertPlural
+        */
+       public function testPlural( $result, $value ) {
+               $forms = [ 'zero', 'one', 'two', 'few', 'many', 'other' ];
+               $this->assertEquals( $result, $this->getLang()->convertPlural( $value, $forms ) );
+       }
+
+       /**
+        * @dataProvider providePlural
+        * @covers Language::getPluralRuleType
+        */
+       public function testGetPluralRuleType( $result, $value ) {
+               $this->assertEquals( $result, $this->getLang()->getPluralRuleType( $value ) );
+       }
+
+       public static function providePlural() {
+               return [
+                       [ 'zero', 0 ],
+                       [ 'one', 1 ],
+                       [ 'two', 2 ],
+                       [ 'few', 3 ],
+                       [ 'few', 9 ],
+                       [ 'few', 110 ],
+                       [ 'many', 11 ],
+                       [ 'many', 15 ],
+                       [ 'many', 99 ],
+                       [ 'many', 9999 ],
+                       [ 'other', 100 ],
+                       [ 'other', 102 ],
+                       [ 'other', 1000 ],
+                       [ 'other', 1.7 ],
+               ];
+       }
+}