| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- <?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\Parser;
- use Aura\Intl\Package;
- use Cake\I18n\I18n;
- use Cake\I18n\Parser\PoFileParser;
- use Cake\TestSuite\TestCase;
- /**
- * Tests the PoFileLoader
- *
- */
- class PoFileParserTest extends TestCase
- {
- /**
- * Tests parsing a file with plurals and message context
- *
- * @return void
- */
- public function testParse()
- {
- $parser = new PoFileParser;
- $file = APP . 'Locale' . DS . 'rule_1_po' . DS . 'default.po';
- $messages = $parser->parse($file);
- $this->assertCount(5, $messages);
- $expected = [
- 'Plural Rule 1' => 'Plural Rule 1 (translated)',
- '%d = 1' => [
- '_context' => [
- 'This is the context' => 'First Context trasnlation',
- 'Another Context' => '%d = 1 (translated)'
- ]
- ],
- '%d = 0 or > 1' => [
- '_context' => [
- 'Another Context' => [
- 0 => '%d = 1 (translated)',
- 1 => '%d = 0 or > 1 (translated)'
- ]
- ]
- ],
- '%-5d = 1' => '%-5d = 1 (translated)',
- '%-5d = 0 or > 1' => [
- 0 => '%-5d = 1 (translated)',
- 1 => '',
- 2 => '',
- 3 => '',
- 4 => '%-5d = 0 or > 1 (translated)'
- ]
- ];
- $this->assertEquals($expected, $messages);
- }
- /**
- * Tests parsing a file with multiline keys and values
- *
- * @return void
- */
- public function testParseMultiLine()
- {
- $parser = new PoFileParser;
- $file = APP . 'Locale' . DS . 'en' . DS . 'default.po';
- $messages = $parser->parse($file);
- $this->assertCount(12, $messages);
- $this->assertTextEquals("v\nsecond line", $messages["valid\nsecond line"]);
- }
- /**
- * Test parsing a file with quoted strings
- *
- * @return void
- */
- public function testQuotedString()
- {
- $parser = new PoFileParser;
- $file = APP . 'Locale' . DS . 'en' . DS . 'default.po';
- $messages = $parser->parse($file);
- $this->assertTextEquals('this is a "quoted string" (translated)', $messages['this is a "quoted string"']);
- }
- /**
- * Test parsing a file with message context on some msgid values.
- *
- * This behavior is not ideal, but more thorough solutions
- * would break compatibility. Perhaps this is something we can
- * reconsider in 4.x
- *
- * @return void
- */
- public function testParseContextOnSomeMessages()
- {
- $parser = new PoFileParser();
- $file = APP . 'Locale' . DS . 'en' . DS . 'context.po';
- $messages = $parser->parse($file);
- I18n::translator('default', 'en_US', function () use ($messages) {
- $package = new Package('default');
- $package->setMessages($messages);
- return $package;
- });
- $this->assertTextEquals('En cours', $messages['Pending']);
- $this->assertTextEquals('En resolved', $messages['Resolved']);
- }
- }
|