2009-06-11 01:43:55 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* PluginTask Test file
|
|
|
|
*
|
|
|
|
* Test Case for plugin generation shell task
|
|
|
|
*
|
2010-10-03 16:31:21 +00:00
|
|
|
* PHP 5
|
2009-06-11 01:43:55 +00:00
|
|
|
*
|
2009-11-06 06:46:59 +00:00
|
|
|
* CakePHP : Rapid Development Framework (http://cakephp.org)
|
2009-06-17 02:34:16 +00:00
|
|
|
* Copyright 2006-2009, Cake Software Foundation, Inc.
|
2009-06-11 01:43:55 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2009-06-17 02:34:16 +00:00
|
|
|
* @copyright Copyright 2006-2009, Cake Software Foundation, Inc.
|
2009-11-06 06:00:11 +00:00
|
|
|
* @link http://cakephp.org CakePHP Project
|
2010-12-24 18:57:20 +00:00
|
|
|
* @package cake.tests.cases.console.libs.tasks
|
2009-06-17 02:34:16 +00:00
|
|
|
* @since CakePHP v 1.3.0
|
2009-11-06 06:51:51 +00:00
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
2009-06-11 01:43:55 +00:00
|
|
|
*/
|
2010-10-17 19:43:20 +00:00
|
|
|
|
2010-12-09 03:45:18 +00:00
|
|
|
App::uses('ShellDispatcher', 'Console');
|
|
|
|
App::uses('Shell', 'Console');
|
|
|
|
App::uses('PluginTask', 'Console/Command/Task');
|
|
|
|
App::uses('ModelTask', 'Console/Command/Task');
|
2010-12-09 05:13:11 +00:00
|
|
|
App::uses('File', 'Utility');
|
2009-07-09 02:25:27 +00:00
|
|
|
|
2009-06-11 01:43:55 +00:00
|
|
|
/**
|
|
|
|
* PluginTaskPlugin class
|
|
|
|
*
|
2010-12-24 18:57:20 +00:00
|
|
|
* @package cake.tests.cases.console.libs.tasks
|
2009-06-11 01:43:55 +00:00
|
|
|
*/
|
|
|
|
class PluginTaskTest extends CakeTestCase {
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2009-06-11 01:43:55 +00:00
|
|
|
/**
|
2010-09-26 01:36:49 +00:00
|
|
|
* setup method
|
2009-06-11 01:43:55 +00:00
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2010-09-26 01:36:49 +00:00
|
|
|
public function setUp() {
|
|
|
|
parent::setUp();
|
2010-10-07 02:52:42 +00:00
|
|
|
$out = $this->getMock('ConsoleOutput', array(), array(), '', false);
|
|
|
|
$in = $this->getMock('ConsoleInput', array(), array(), '', false);
|
2010-09-26 01:36:49 +00:00
|
|
|
|
2010-06-09 22:11:21 +00:00
|
|
|
$this->Task = $this->getMock('PluginTask',
|
2010-10-07 02:52:42 +00:00
|
|
|
array('in', 'err', 'createFile', '_stop', 'clear'),
|
2010-10-24 19:27:04 +00:00
|
|
|
array($out, $out, $in)
|
2010-06-09 22:11:21 +00:00
|
|
|
);
|
2009-06-17 03:05:48 +00:00
|
|
|
$this->Task->path = TMP . 'tests' . DS;
|
2010-09-26 01:36:49 +00:00
|
|
|
|
|
|
|
$this->_paths = $paths = App::path('plugins');
|
|
|
|
$this->_testPath = array_push($paths, TMP . 'tests' . DS);
|
2009-07-09 02:25:27 +00:00
|
|
|
App::build(array('plugins' => $paths));
|
2009-06-11 02:52:38 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2009-06-11 01:43:55 +00:00
|
|
|
/**
|
|
|
|
* test bake()
|
|
|
|
*
|
|
|
|
* @return void
|
2009-11-14 12:18:31 +00:00
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function testBakeFoldersAndFiles() {
|
2010-09-26 01:36:49 +00:00
|
|
|
$this->Task->expects($this->at(0))->method('in')->will($this->returnValue($this->_testPath));
|
2010-06-09 22:11:21 +00:00
|
|
|
$this->Task->expects($this->at(1))->method('in')->will($this->returnValue('y'));
|
|
|
|
|
|
|
|
$path = $this->Task->path . 'bake_test_plugin';
|
|
|
|
|
|
|
|
$file = $path . DS . 'bake_test_plugin_app_controller.php';
|
2010-10-18 03:09:30 +00:00
|
|
|
$this->Task->expects($this->at(2))->method('createFile')
|
2010-06-09 22:11:21 +00:00
|
|
|
->with($file, new PHPUnit_Framework_Constraint_IsAnything());
|
|
|
|
|
|
|
|
$file = $path . DS . 'bake_test_plugin_app_model.php';
|
2010-10-18 03:09:30 +00:00
|
|
|
$this->Task->expects($this->at(3))->method('createFile')
|
2010-06-09 22:11:21 +00:00
|
|
|
->with($file, new PHPUnit_Framework_Constraint_IsAnything());
|
|
|
|
|
2009-06-11 02:19:14 +00:00
|
|
|
$this->Task->bake('BakeTestPlugin');
|
2009-06-11 02:52:38 +00:00
|
|
|
|
2009-06-17 03:05:48 +00:00
|
|
|
$path = $this->Task->path . 'bake_test_plugin';
|
2009-06-11 02:19:14 +00:00
|
|
|
$this->assertTrue(is_dir($path), 'No plugin dir %s');
|
2010-10-18 03:09:30 +00:00
|
|
|
|
|
|
|
$directories = array(
|
|
|
|
'config' . DS . 'schema',
|
|
|
|
'models' . DS . 'behaviors',
|
|
|
|
'models' . DS . 'datasources',
|
|
|
|
'console' . DS . 'shells' . DS . 'tasks',
|
|
|
|
'controllers' . DS . 'components',
|
|
|
|
'libs',
|
|
|
|
'views' . DS . 'helpers',
|
|
|
|
'tests' . DS . 'cases' . DS . 'components',
|
|
|
|
'tests' . DS . 'cases' . DS . 'helpers',
|
|
|
|
'tests' . DS . 'cases' . DS . 'behaviors',
|
|
|
|
'tests' . DS . 'cases' . DS . 'controllers',
|
|
|
|
'tests' . DS . 'cases' . DS . 'models',
|
|
|
|
'tests' . DS . 'groups',
|
|
|
|
'tests' . DS . 'fixtures',
|
|
|
|
'vendors',
|
|
|
|
'webroot'
|
2009-07-17 01:49:26 +00:00
|
|
|
);
|
2010-10-18 03:09:30 +00:00
|
|
|
foreach ($directories as $dir) {
|
|
|
|
$this->assertTrue(is_dir($path . DS . $dir), 'Missing directory for ' . $dir);
|
|
|
|
}
|
2009-06-11 02:19:14 +00:00
|
|
|
|
2010-06-09 22:11:21 +00:00
|
|
|
$Folder = new Folder($this->Task->path . 'bake_test_plugin');
|
2009-08-02 20:00:57 +00:00
|
|
|
$Folder->delete();
|
2009-06-11 03:21:42 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2009-07-20 04:20:58 +00:00
|
|
|
/**
|
|
|
|
* test execute with no args, flowing into interactive,
|
|
|
|
*
|
|
|
|
* @return void
|
2009-11-14 12:18:31 +00:00
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function testExecuteWithNoArgs() {
|
2010-06-09 22:11:21 +00:00
|
|
|
$this->Task->expects($this->at(0))->method('in')->will($this->returnValue('TestPlugin'));
|
|
|
|
$this->Task->expects($this->at(1))->method('in')->will($this->returnValue('3'));
|
|
|
|
$this->Task->expects($this->at(2))->method('in')->will($this->returnValue('y'));
|
2009-07-20 04:20:58 +00:00
|
|
|
|
|
|
|
$path = $this->Task->path . 'test_plugin';
|
|
|
|
$file = $path . DS . 'test_plugin_app_controller.php';
|
2010-10-18 03:09:30 +00:00
|
|
|
$this->Task->expects($this->at(3))->method('createFile')
|
2010-06-09 22:11:21 +00:00
|
|
|
->with($file, new PHPUnit_Framework_Constraint_IsAnything());
|
2009-07-20 04:20:58 +00:00
|
|
|
|
|
|
|
$file = $path . DS . 'test_plugin_app_model.php';
|
2010-10-18 03:09:30 +00:00
|
|
|
$this->Task->expects($this->at(4))->method('createFile')
|
2010-06-09 22:11:21 +00:00
|
|
|
->with($file, new PHPUnit_Framework_Constraint_IsAnything());
|
2009-07-20 04:20:58 +00:00
|
|
|
|
|
|
|
$this->Task->args = array();
|
|
|
|
$this->Task->execute();
|
2009-07-26 05:52:05 +00:00
|
|
|
|
2010-06-09 22:11:21 +00:00
|
|
|
$Folder = new Folder($path);
|
2009-08-02 20:00:57 +00:00
|
|
|
$Folder->delete();
|
2009-07-20 04:20:58 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2009-06-11 03:21:42 +00:00
|
|
|
/**
|
|
|
|
* Test Execute
|
|
|
|
*
|
|
|
|
* @return void
|
2009-11-14 12:18:31 +00:00
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function testExecuteWithOneArg() {
|
2010-06-09 22:11:21 +00:00
|
|
|
$this->Task->expects($this->at(0))->method('in')
|
2010-09-26 01:36:49 +00:00
|
|
|
->will($this->returnValue($this->_testPath));
|
2010-06-09 22:11:21 +00:00
|
|
|
$this->Task->expects($this->at(1))->method('in')
|
|
|
|
->will($this->returnValue('y'));
|
2009-06-11 03:21:42 +00:00
|
|
|
|
2009-06-17 03:05:48 +00:00
|
|
|
$path = $this->Task->path . 'bake_test_plugin';
|
2009-06-11 03:21:42 +00:00
|
|
|
$file = $path . DS . 'bake_test_plugin_app_controller.php';
|
2010-10-18 03:09:30 +00:00
|
|
|
$this->Task->expects($this->at(2))->method('createFile')
|
2010-06-09 22:11:21 +00:00
|
|
|
->with($file, new PHPUnit_Framework_Constraint_IsAnything());
|
2009-06-11 03:21:42 +00:00
|
|
|
|
2010-06-09 22:11:21 +00:00
|
|
|
$path = $this->Task->path . 'bake_test_plugin';
|
2009-06-11 03:21:42 +00:00
|
|
|
$file = $path . DS . 'bake_test_plugin_app_model.php';
|
2010-10-18 03:09:30 +00:00
|
|
|
$this->Task->expects($this->at(3))->method('createFile')
|
2010-06-09 22:11:21 +00:00
|
|
|
->with($file, new PHPUnit_Framework_Constraint_IsAnything());
|
|
|
|
|
2010-10-24 19:27:04 +00:00
|
|
|
$this->Task->args = array('BakeTestPlugin');
|
2009-06-11 03:21:42 +00:00
|
|
|
|
|
|
|
$this->Task->execute();
|
2009-07-09 02:25:27 +00:00
|
|
|
|
2010-06-09 22:11:21 +00:00
|
|
|
$Folder = new Folder($this->Task->path . 'bake_test_plugin');
|
2009-08-02 20:00:57 +00:00
|
|
|
$Folder->delete();
|
2009-06-11 01:43:55 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2009-06-11 01:43:55 +00:00
|
|
|
}
|