2012-01-09 12:46:53 +00:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* @author Santhosh Thottingal
|
|
|
|
|
* @copyright Copyright © 2012, Santhosh Thottingal
|
|
|
|
|
* @file
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/** Tests for MediaWiki languages/LanguageLt.php */
|
2012-10-23 20:53:17 +00:00
|
|
|
class LanguageLtTest extends LanguageClassesTestCase {
|
2013-10-22 10:32:29 +00:00
|
|
|
/**
|
|
|
|
|
* @dataProvider providePlural
|
|
|
|
|
* @covers Language::convertPlural
|
|
|
|
|
*/
|
|
|
|
|
public function testPlural( $result, $value ) {
|
2013-03-25 23:27:14 +00:00
|
|
|
$forms = array( 'one', 'few', 'other' );
|
2012-10-23 20:53:17 +00:00
|
|
|
$this->assertEquals( $result, $this->getLang()->convertPlural( $value, $forms ) );
|
2012-01-09 16:51:34 +00:00
|
|
|
}
|
2013-02-15 10:27:48 +00:00
|
|
|
|
2013-10-22 10:32:29 +00:00
|
|
|
/**
|
|
|
|
|
* @dataProvider providePlural
|
|
|
|
|
* @covers Language::getPluralRuleType
|
|
|
|
|
*/
|
|
|
|
|
public function testGetPluralRuleType( $result, $value ) {
|
2013-01-25 01:10:37 +00:00
|
|
|
$this->assertEquals( $result, $this->getLang()->getPluralRuleType( $value ) );
|
2012-01-09 16:51:34 +00:00
|
|
|
}
|
|
|
|
|
|
2013-03-22 02:12:37 +00:00
|
|
|
public static function providePlural() {
|
2013-03-25 23:27:14 +00:00
|
|
|
return array(
|
2012-01-09 16:51:34 +00:00
|
|
|
array( 'other', 0 ),
|
|
|
|
|
array( 'one', 1 ),
|
|
|
|
|
array( 'few', 2 ),
|
|
|
|
|
array( 'few', 9 ),
|
|
|
|
|
array( 'other', 10 ),
|
|
|
|
|
array( 'other', 11 ),
|
|
|
|
|
array( 'other', 20 ),
|
|
|
|
|
array( 'one', 21 ),
|
|
|
|
|
array( 'few', 32 ),
|
|
|
|
|
array( 'one', 41 ),
|
|
|
|
|
array( 'one', 40001 ),
|
|
|
|
|
);
|
|
|
|
|
}
|
2013-02-15 10:27:48 +00:00
|
|
|
|
2013-10-22 10:32:29 +00:00
|
|
|
/**
|
|
|
|
|
* @dataProvider providePluralTwoForms
|
|
|
|
|
* @covers Language::convertPlural
|
|
|
|
|
*/
|
|
|
|
|
public function testOneFewPlural( $result, $value ) {
|
2013-03-25 23:27:14 +00:00
|
|
|
$forms = array( 'one', 'other' );
|
2013-01-25 01:10:37 +00:00
|
|
|
// This fails for 21, but not sure why.
|
|
|
|
|
$this->assertEquals( $result, $this->getLang()->convertPlural( $value, $forms ) );
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-22 02:12:37 +00:00
|
|
|
public static function providePluralTwoForms() {
|
2013-03-25 23:27:14 +00:00
|
|
|
return array(
|
2012-01-09 16:51:34 +00:00
|
|
|
array( 'one', 1 ),
|
2013-01-25 01:10:37 +00:00
|
|
|
array( 'other', 2 ),
|
|
|
|
|
array( 'other', 15 ),
|
|
|
|
|
array( 'other', 20 ),
|
|
|
|
|
array( 'one', 21 ),
|
|
|
|
|
array( 'other', 22 ),
|
2012-01-09 16:51:34 +00:00
|
|
|
);
|
2012-01-09 12:46:53 +00:00
|
|
|
}
|
|
|
|
|
}
|