Skip to content

Commit

Permalink
Add tests for custom locale folder.
Browse files Browse the repository at this point in the history
  • Loading branch information
ADmad committed Nov 17, 2014
1 parent 5c11066 commit 4d0ea0f
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 0 deletions.
65 changes: 65 additions & 0 deletions tests/TestCase/I18n/MessagesFileLoaderTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
<?php
/**
* CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html>
* 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://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests
* @since 3.0.0
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\Test\TestCase\I18n;

use Cake\Core\Configure;
use Cake\I18n\MessagesFileLoader;
use Cake\TestSuite\TestCase;

/**
* MessagesFileLoaderTest class
*
*/
class MessagesFileLoaderTest extends TestCase {

/**
* Set Up
*
* @return void
*/
public function setUp() {
parent::setUp();
$this->localePaths = Configure::read('App.paths.locales');
}

/**
* Tear down method
*
* @return void
*/
public function tearDown() {
parent::tearDown();
Configure::write('App.paths.locales', $this->localePaths);
}

/**
* test reading file from custom locale folder
*
* @return void
*/
public function testCustomLocalePath() {
$loader = new MessagesFileLoader('default', 'en');
$package = $loader();
$messages = $package->getMessages();
$this->assertEquals('Po (translated)', $messages['Plural Rule 1']);

Configure::write('App.paths.locales', [TEST_APP . 'custom_locale' . DS]);
$loader = new MessagesFileLoader('default', 'en');
$package = $loader();
$messages = $package->getMessages();
$this->assertEquals('Po (translated) from custom folder', $messages['Plural Rule 1']);
}

}
2 changes: 2 additions & 0 deletions tests/test_app/custom_locale/en/default.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
msgid "Plural Rule 1"
msgstr "Po (translated) from custom folder"

0 comments on commit 4d0ea0f

Please sign in to comment.