From ca32f08966f1b51fcb19460f0996bb0c4048e6fe Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Sat, 3 Dec 2011 13:29:22 +0100 Subject: Update to MediaWiki 1.18.0 * also update ArchLinux skin to chagnes in MonoBook * Use only css to hide our menu bar when printing --- tests/phpunit/languages/LanguageTest.php | 246 +++++++++++++++++++++++++++++++ 1 file changed, 246 insertions(+) create mode 100644 tests/phpunit/languages/LanguageTest.php (limited to 'tests/phpunit/languages/LanguageTest.php') diff --git a/tests/phpunit/languages/LanguageTest.php b/tests/phpunit/languages/LanguageTest.php new file mode 100644 index 00000000..aaad9c31 --- /dev/null +++ b/tests/phpunit/languages/LanguageTest.php @@ -0,0 +1,246 @@ +lang = Language::factory( 'en' ); + } + function tearDown() { + unset( $this->lang ); + } + + function testLanguageConvertDoubleWidthToSingleWidth() { + $this->assertEquals( + "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz", + $this->lang->normalizeForSearch( + "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz" + ), + 'convertDoubleWidth() with the full alphabet and digits' + ); + } + + function testFormatTimePeriod() { + $this->assertEquals( + "9.5s", + $this->lang->formatTimePeriod( 9.45 ), + 'formatTimePeriod() rounding (<10s)' + ); + + $this->assertEquals( + "10s", + $this->lang->formatTimePeriod( 9.95 ), + 'formatTimePeriod() rounding (<10s)' + ); + + $this->assertEquals( + "1m 0s", + $this->lang->formatTimePeriod( 59.55 ), + 'formatTimePeriod() rounding (<60s)' + ); + + $this->assertEquals( + "2m 0s", + $this->lang->formatTimePeriod( 119.55 ), + 'formatTimePeriod() rounding (<1h)' + ); + + $this->assertEquals( + "1h 0m 0s", + $this->lang->formatTimePeriod( 3599.55 ), + 'formatTimePeriod() rounding (<1h)' + ); + + $this->assertEquals( + "2h 0m 0s", + $this->lang->formatTimePeriod( 7199.55 ), + 'formatTimePeriod() rounding (>=1h)' + ); + + $this->assertEquals( + "2h 0m", + $this->lang->formatTimePeriod( 7199.55, 'avoidseconds' ), + 'formatTimePeriod() rounding (>=1h), avoidseconds' + ); + + $this->assertEquals( + "2h 0m", + $this->lang->formatTimePeriod( 7199.55, 'avoidminutes' ), + 'formatTimePeriod() rounding (>=1h), avoidminutes' + ); + + $this->assertEquals( + "48h 0m", + $this->lang->formatTimePeriod( 172799.55, 'avoidseconds' ), + 'formatTimePeriod() rounding (=48h), avoidseconds' + ); + + $this->assertEquals( + "3d 0h", + $this->lang->formatTimePeriod( 259199.55, 'avoidminutes' ), + 'formatTimePeriod() rounding (>48h), avoidminutes' + ); + + $this->assertEquals( + "2d 1h 0m", + $this->lang->formatTimePeriod( 176399.55, 'avoidseconds' ), + 'formatTimePeriod() rounding (>48h), avoidseconds' + ); + + $this->assertEquals( + "2d 1h", + $this->lang->formatTimePeriod( 176399.55, 'avoidminutes' ), + 'formatTimePeriod() rounding (>48h), avoidminutes' + ); + + $this->assertEquals( + "3d 0h 0m", + $this->lang->formatTimePeriod( 259199.55, 'avoidseconds' ), + 'formatTimePeriod() rounding (>48h), avoidminutes' + ); + + $this->assertEquals( + "2d 0h 0m", + $this->lang->formatTimePeriod( 172801.55, 'avoidseconds' ), + 'formatTimePeriod() rounding, (>48h), avoidseconds' + ); + + $this->assertEquals( + "2d 1h 1m 1s", + $this->lang->formatTimePeriod( 176460.55 ), + 'formatTimePeriod() rounding, recursion, (>48h)' + ); + } + + function testTruncate() { + $this->assertEquals( + "XXX", + $this->lang->truncate( "1234567890", 0, 'XXX' ), + 'truncate prefix, len 0, small ellipsis' + ); + + $this->assertEquals( + "12345XXX", + $this->lang->truncate( "1234567890", 8, 'XXX' ), + 'truncate prefix, small ellipsis' + ); + + $this->assertEquals( + "123456789", + $this->lang->truncate( "123456789", 5, 'XXXXXXXXXXXXXXX' ), + 'truncate prefix, large ellipsis' + ); + + $this->assertEquals( + "XXX67890", + $this->lang->truncate( "1234567890", -8, 'XXX' ), + 'truncate suffix, small ellipsis' + ); + + $this->assertEquals( + "123456789", + $this->lang->truncate( "123456789", -5, 'XXXXXXXXXXXXXXX' ), + 'truncate suffix, large ellipsis' + ); + } + + /** + * @dataProvider provideHTMLTruncateData() + */ + function testTruncateHtml( $len, $ellipsis, $input, $expected ) { + // Actual HTML... + $this->assertEquals( + $expected, + $this->lang->truncateHTML( $input, $len, $ellipsis ) + ); + } + + /** + * Array format is ($len, $ellipsis, $input, $expected) + */ + function provideHTMLTruncateData() { + return array( + array( 0, 'XXX', "1234567890", "XXX" ), + array( 8, 'XXX', "1234567890", "12345XXX" ), + array( 5, 'XXXXXXXXXXXXXXX', '1234567890', "1234567890" ), + array( 2, '***', + '

', + '

', + ), + array( 2, '***', + '

123456789

', + '

***

', + ), + array( 2, '***', + '

 23456789

', + '

***

', + ), + array( 3, '***', + '

123456789

', + '

***

', + ), + array( 4, '***', + '

123456789

', + '

1***

', + ), + array( 5, '***', + '123456789', + '12***', + ), + array( 6, '***', + '

123456789

', + '

123***

', + ), + array( 6, '***', + '

12 456789

', + '

12 ***

', + ), + array( 7, '***', + '123

456

789
', + '123

4***

', + ), + array( 8, '***', + '
123456789
', + '
12345***
', + ), + array( 9, '***', + '

123456789

', + '

123456789

', + ), + array( 10, '***', + '

123456789

', + '

123456789

', + ), + ); + } + + /** + * Test Language::isValidBuiltInCode() + * @dataProvider provideLanguageCodes + */ + function testBuiltInCodeValidation( $code, $message = '' ) { + $this->assertTrue( + (bool) Language::isValidBuiltInCode( $code ), + "validating code $code $message" + ); + } + + function testBuiltInCodeValidationRejectUnderscore() { + $this->assertFalse( + (bool) Language::isValidBuiltInCode( 'be_tarask' ), + "reject underscore in language code" + ); + } + + function provideLanguageCodes() { + return array( + array( 'fr' , 'Two letters, minor case' ), + array( 'EN' , 'Two letters, upper case' ), + array( 'tyv' , 'Three letters' ), + array( 'tokipona' , 'long language code' ), + array( 'be-tarask', 'With dash' ), + array( 'Zh-classical', 'Begin with upper case, dash' ), + array( 'Be-x-old', 'With extension (two dashes)' ), + ); + } +} -- cgit v1.2.3-54-g00ecf