| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- <?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.8
- * @license http://www.opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\Shell;
- use Cake\Shell\I18nShell;
- use Cake\TestSuite\TestCase;
- /**
- * I18nShell test.
- */
- class I18nShellTest extends TestCase
- {
- /**
- * setup method
- *
- * @return void
- */
- public function setUp()
- {
- parent::setUp();
- $this->io = $this->getMock('Cake\Console\ConsoleIo');
- $this->shell = new I18nShell($this->io);
- $this->localeDir = TMP . 'Locale' . DS;
- }
- /**
- * Teardown
- *
- * @return void
- */
- public function tearDown()
- {
- parent::tearDown();
- $deDir = $this->localeDir . 'de_DE' . DS;
- if (file_exists($this->localeDir . 'default.pot')) {
- unlink($this->localeDir . 'default.pot');
- unlink($this->localeDir . 'cake.pot');
- }
- if (file_exists($deDir . 'default.po')) {
- unlink($deDir . 'default.po');
- unlink($deDir . 'cake.po');
- }
- }
- /**
- * Tests that init() creates the PO files from POT files.
- *
- * @return void
- */
- public function testInit()
- {
- $deDir = $this->localeDir . 'de_DE' . DS;
- if (!is_dir($deDir)) {
- mkdir($deDir, 0770, true);
- }
- file_put_contents($this->localeDir . 'default.pot', 'Testing POT file.');
- file_put_contents($this->localeDir . 'cake.pot', 'Testing POT file.');
- if (file_exists($deDir . 'default.po')) {
- unlink($deDir . 'default.po');
- }
- if (file_exists($deDir . 'default.po')) {
- unlink($deDir . 'cake.po');
- }
- $this->shell->io()->expects($this->at(0))
- ->method('ask')
- ->will($this->returnValue('de_DE'));
- $this->shell->io()->expects($this->at(1))
- ->method('ask')
- ->will($this->returnValue($this->localeDir));
- $this->shell->params['verbose'] = true;
- $this->shell->init();
- $this->assertFileExists($deDir . 'default.po');
- $this->assertFileExists($deDir . 'cake.po');
- }
- /**
- * Test that the option parser is shaped right.
- *
- * @return void
- */
- public function testGetOptionParser()
- {
- $this->shell->loadTasks();
- $parser = $this->shell->getOptionParser();
- $this->assertArrayHasKey('init', $parser->subcommands());
- $this->assertArrayHasKey('extract', $parser->subcommands());
- }
- }
|