| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205 |
- <?php
- /**
- * ExtractTaskTest file
- *
- * Test Case for i18n extraction shell task
- *
- * PHP 5
- *
- * CakePHP : Rapid Development Framework (http://cakephp.org)
- * Copyright 2006-2010, Cake Software Foundation, Inc.
- *
- * Licensed under The MIT License
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright 2006-2010, Cake Software Foundation, Inc.
- * @link http://cakephp.org CakePHP Project
- * @package cake.tests.cases.console.libs.tasks
- * @since CakePHP v 1.2.0.7726
- * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
- */
- App::uses('Folder', 'Utility');
- App::uses('ShellDispatcher', 'Console');
- App::uses('Shell', 'Console');
- App::uses('ExtractTask', 'Console/Command/Task');
- /**
- * ExtractTaskTest class
- *
- * @package cake.tests.cases.console.libs.tasks
- */
- class ExtractTaskTest extends CakeTestCase {
- /**
- * setUp method
- *
- * @return void
- */
- public function setUp() {
- $out = $this->getMock('ConsoleOutput', array(), array(), '', false);
- $in = $this->getMock('ConsoleInput', array(), array(), '', false);
- $this->Task = $this->getMock(
- 'ExtractTask',
- array('in', 'out', 'err', '_stop'),
- array($out, $out, $in)
- );
- $this->path = TMP . 'tests' . DS . 'extract_task_test';
- $Folder = new Folder($this->path . DS . 'locale', true);
- }
- /**
- * tearDown method
- *
- * @return void
- */
- public function tearDown() {
- parent::tearDown();
- unset($this->Task);
- $Folder = new Folder($this->path);
- $Folder->delete();
- }
- /**
- * testExecute method
- *
- * @return void
- */
- public function testExecute() {
- $this->Task->interactive = false;
- $this->Task->params['paths'] = LIBS . 'tests' . DS . 'test_app' . DS . 'View' . DS . 'pages';
- $this->Task->params['output'] = $this->path . DS;
- $this->Task->expects($this->never())->method('err');
- $this->Task->expects($this->any())->method('in')
- ->will($this->returnValue('y'));
- $this->Task->expects($this->never())->method('_stop');
- $this->Task->execute();
- $this->assertTrue(file_exists($this->path . DS . 'default.pot'));
- $result = file_get_contents($this->path . DS . 'default.pot');
- $pattern = '/"Content-Type\: text\/plain; charset\=utf-8/';
- $this->assertPattern($pattern, $result);
- $pattern = '/"Content-Transfer-Encoding\: 8bit/';
- $this->assertPattern($pattern, $result);
- $pattern = '/"Plural-Forms\: nplurals\=INTEGER; plural\=EXPRESSION;/';
- $this->assertPattern($pattern, $result);
- // home.ctp
- $pattern = '/msgid "Your tmp directory is writable."\nmsgstr ""\n/';
- $this->assertPattern($pattern, $result);
- $pattern = '/msgid "Your tmp directory is NOT writable."\nmsgstr ""\n/';
- $this->assertPattern($pattern, $result);
- $pattern = '/msgid "The %s is being used for caching. To change the config edit ';
- $pattern .= 'APP\/config\/core.php "\nmsgstr ""\n/';
- $this->assertPattern($pattern, $result);
- $pattern = '/msgid "Your cache is NOT working. Please check ';
- $pattern .= 'the settings in APP\/config\/core.php"\nmsgstr ""\n/';
- $this->assertPattern($pattern, $result);
- $pattern = '/msgid "Your database configuration file is present."\nmsgstr ""\n/';
- $this->assertPattern($pattern, $result);
- $pattern = '/msgid "Your database configuration file is NOT present."\nmsgstr ""\n/';
- $this->assertPattern($pattern, $result);
- $pattern = '/msgid "Rename config\/database.php.default to ';
- $pattern .= 'config\/database.php"\nmsgstr ""\n/';
- $this->assertPattern($pattern, $result);
- $pattern = '/msgid "Cake is able to connect to the database."\nmsgstr ""\n/';
- $this->assertPattern($pattern, $result);
- $pattern = '/msgid "Cake is NOT able to connect to the database."\nmsgstr ""\n/';
- $this->assertPattern($pattern, $result);
- $pattern = '/msgid "Editing this Page"\nmsgstr ""\n/';
- $this->assertPattern($pattern, $result);
- $pattern = '/msgid "To change the content of this page, create: APP\/views\/pages\/home\.ctp/';
- $this->assertPattern($pattern, $result);
- $pattern = '/To change its layout, create: APP\/views\/layouts\/default\.ctp\./s';
- $this->assertPattern($pattern, $result);
-
- // extract.ctp
- $pattern = '/\#: (\\\\|\/)extract\.ctp:6\n';
- $pattern .= 'msgid "You have %d new message."\nmsgid_plural "You have %d new messages."/';
- $this->assertPattern($pattern, $result);
- $pattern = '/\#: (\\\\|\/)extract\.ctp:7\n';
- $pattern .= 'msgid "You deleted %d message."\nmsgid_plural "You deleted %d messages."/';
- $this->assertPattern($pattern, $result);
- $pattern = '/\#: (\\\\|\/)extract\.ctp:14\n';
- $pattern .= '\#: (\\\\|\/)home\.ctp:99\n';
- $pattern .= 'msgid "Editing this Page"\nmsgstr ""/';
- $this->assertPattern($pattern, $result);
-
- $pattern = '/\#: (\\\\|\/)extract\.ctp:17\nmsgid "';
- $pattern .= 'Hot features!';
- $pattern .= '\\\n - No Configuration: Set-up the database and let the magic begin';
- $pattern .= '\\\n - Extremely Simple: Just look at the name...It\'s Cake';
- $pattern .= '\\\n - Active, Friendly Community: Join us #cakephp on IRC. We\'d love to help you get started';
- $pattern .= '"\nmsgstr ""/';
- $this->assertPattern($pattern, $result);
- // extract.ctp - reading the domain.pot
- $result = file_get_contents($this->path . DS . 'domain.pot');
- $pattern = '/msgid "You have %d new message."\nmsgid_plural "You have %d new messages."/';
- $this->assertNoPattern($pattern, $result);
- $pattern = '/msgid "You deleted %d message."\nmsgid_plural "You deleted %d messages."/';
- $this->assertNoPattern($pattern, $result);
- $pattern = '/msgid "You have %d new message \(domain\)."\nmsgid_plural "You have %d new messages \(domain\)."/';
- $this->assertPattern($pattern, $result);
- $pattern = '/msgid "You deleted %d message \(domain\)."\nmsgid_plural "You deleted %d messages \(domain\)."/';
- $this->assertPattern($pattern, $result);
- }
- /**
- * test exclusions
- *
- * @return void
- */
- function testExtractWithExclude() {
- $this->Task->interactive = false;
- $this->Task->params['paths'] = LIBS . 'tests' . DS . 'test_app' . DS . 'View';
- $this->Task->params['output'] = $this->path . DS;
- $this->Task->params['exclude'] = 'pages,layouts';
- $this->Task->expects($this->any())->method('in')
- ->will($this->returnValue('y'));
- $this->Task->execute();
- $this->assertTrue(file_exists($this->path . DS . 'default.pot'));
- $result = file_get_contents($this->path . DS . 'default.pot');
- $pattern = '/\#: .*extract\.ctp:6\n/';
- $this->assertNotRegExp($pattern, $result);
-
- $pattern = '/\#: .*default\.ctp:26\n/';
- $this->assertNotRegExp($pattern, $result);
- }
- /**
- * test extract can read more than one path.
- *
- * @return void
- */
- function testExtractMultiplePaths() {
- $this->Task->interactive = false;
- $this->Task->params['paths'] =
- LIBS . 'tests' . DS . 'test_app' . DS . 'View' . DS . 'pages,' .
- LIBS . 'tests' . DS . 'test_app' . DS . 'View' . DS . 'posts';
-
- $this->Task->params['output'] = $this->path . DS;
- $this->Task->expects($this->never())->method('err');
- $this->Task->expects($this->never())->method('_stop');
- $this->Task->execute();
- $result = file_get_contents($this->path . DS . 'default.pot');
- $pattern = '/msgid "Add User"/';
- $this->assertPattern($pattern, $result);
- }
- }
|