| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- <?php
- /**
- * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
- * @link http://cakephp.org CakePHP(tm) Project
- * @since 3.0.0
- * @license http://www.opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\I18n;
- use Cake\I18n\Formatter\IcuFormatter;
- use Cake\TestSuite\TestCase;
- /**
- * IcuFormatter tests
- *
- */
- class IcuFormatterTest extends TestCase {
- /**
- * Tests that variables are interpolated correctly
- *
- * @return void
- */
- public function testFormatSimple() {
- $formatter = new IcuFormatter();
- $this->assertEquals('Hello José', $formatter->format('en_US', 'Hello {0}', ['José']));
- $result = $formatter->format(
- '1 Orange',
- '{0, number} {1}',
- [1.0, 'Orange']
- );
- $this->assertEquals('1 Orange', $result);
- }
- /**
- * Tests that plural forms can be selected using the PO file format plural forms
- *
- * @return void
- */
- public function testFormatPlural() {
- $formatter = new IcuFormatter();
- $messages = [
- '{0} is 0',
- '{0} is 1',
- '{0} is 2',
- '{0} is 3',
- '{0} > 11'
- ];
- $this->assertEquals('1 is 1', $formatter->format('ar', $messages, ['_count' => 1, 1]));
- $this->assertEquals('2 is 2', $formatter->format('ar', $messages, ['_count' => 2, 2]));
- $this->assertEquals('20 > 11', $formatter->format('ar', $messages, ['_count' => 20, 20]));
- }
- /**
- * Tests that plurals can instead be selected using ICU's native selector
- *
- * @return void
- */
- public function testNativePluralSelection() {
- $formatter = new IcuFormatter();
- $locale = 'en_US';
- $string = '{0,plural,'
- . '=0{No fruits.}'
- . '=1{We have one fruit}'
- . 'other{We have {1} fruits}'
- . '}';
- $params = [0];
- $expect = 'No fruits.';
- $actual = $formatter->format($locale, $string, $params);
- $this->assertSame($expect, $actual);
- $params = [1];
- $expect = 'We have one fruit';
- $actual = $formatter->format($locale, $string, $params);
- $this->assertSame($expect, $actual);
- $params = [10, 10];
- $expect = 'We have 10 fruits';
- $actual = $formatter->format($locale, $string, $params);
- $this->assertSame($expect, $actual);
- }
- /**
- * Tests that passing a message in the wrong format will throw an exception
- *
- * @expectedException Aura\Intl\Exception\CannotInstantiateFormatter
- * @return void
- */
- public function testBadMessageFormat() {
- $formatter = new IcuFormatter();
- $formatter->format('en_US', '{crazy format', ['some', 'vars']);
- }
- /**
- * Tests that strings stored inside context namespaces can also be formatted
- *
- * @return void
- */
- public function testFormatWithContext() {
- $messages = [
- 'simple' => [
- '_context' => [
- 'context a' => 'Text "a" {0}',
- 'context b' => 'Text "b" {0}'
- ]
- ],
- 'complex' => [
- '_context' => [
- 'context b' => [
- 0 => 'Only one',
- 1 => 'there are {0}'
- ]
- ]
- ]
- ];
- $formatter = new IcuFormatter();
- $this->assertEquals(
- 'Text "a" is good',
- $formatter->format('en', $messages['simple'], ['_context' => 'context a', 'is good'])
- );
- $this->assertEquals(
- 'Text "b" is good',
- $formatter->format('en', $messages['simple'], ['_context' => 'context b', 'is good'])
- );
- $this->assertEquals(
- 'Text "a" is good',
- $formatter->format('en', $messages['simple'], ['is good'])
- );
- $this->assertEquals(
- 'Only one',
- $formatter->format('en', $messages['complex'], ['_context' => 'context b', '_count' => 1])
- );
- $this->assertEquals(
- 'there are 2',
- $formatter->format('en', $messages['complex'], ['_context' => 'context b', '_count' => 2, 2])
- );
- }
- /**
- * Tests that it is possible to provide a singular fallback when passing a string message.
- * This is useful for getting quick feedback on the code during development instead of
- * having to provide all plural forms even for the default language
- *
- * @return void
- */
- public function testSingularFallback() {
- $formatter = new IcuFormatter();
- $singular = 'one thing';
- $plural = 'many things';
- $this->assertEquals($singular, $formatter->format('en_US', $plural, ['_count' => 1, '_singular' => $singular]));
- $this->assertEquals($plural, $formatter->format('en_US', $plural, ['_count' => 2, '_singular' => $singular]));
- }
- }
|