2009-06-11 01:43:55 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* PluginTask Test file
|
|
|
|
*
|
|
|
|
* Test Case for plugin generation shell task
|
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
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
|
2009-06-11 01:43:55 +00:00
|
|
|
* @package cake
|
|
|
|
* @subpackage 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
|
|
|
*/
|
2009-07-26 01:27:02 +00:00
|
|
|
App::import('Shell', 'Shell', false);
|
2010-06-09 22:11:21 +00:00
|
|
|
App::import('Core', array('File'));
|
2009-06-11 01:43:55 +00:00
|
|
|
|
|
|
|
if (!defined('DISABLE_AUTO_DISPATCH')) {
|
|
|
|
define('DISABLE_AUTO_DISPATCH', true);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!class_exists('ShellDispatcher')) {
|
|
|
|
ob_start();
|
|
|
|
$argv = false;
|
|
|
|
require CAKE . 'console' . DS . 'cake.php';
|
|
|
|
ob_end_clean();
|
|
|
|
}
|
|
|
|
|
2009-07-09 02:25:27 +00:00
|
|
|
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'plugin.php';
|
|
|
|
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'model.php';
|
|
|
|
|
2009-06-11 01:43:55 +00:00
|
|
|
/**
|
|
|
|
* PluginTaskPlugin class
|
|
|
|
*
|
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.tests.cases.console.libs.tasks
|
|
|
|
*/
|
|
|
|
class PluginTaskTest extends CakeTestCase {
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2010-06-09 22:11:21 +00:00
|
|
|
public static $_paths = array();
|
|
|
|
|
|
|
|
public static $_testPath = array();
|
|
|
|
|
2009-06-11 01:43:55 +00:00
|
|
|
/**
|
2009-07-17 03:55:41 +00:00
|
|
|
* startTest method
|
2009-06-11 01:43:55 +00:00
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function startTest() {
|
2010-06-09 22:11:21 +00:00
|
|
|
$this->Dispatcher = $this->getMock('ShellDispatcher', array(
|
|
|
|
'getInput', 'stdout', 'stderr', '_stop', '_initEnvironment'
|
|
|
|
));
|
|
|
|
$this->Task = $this->getMock('PluginTask',
|
|
|
|
array('in', 'err', 'createFile', '_stop'),
|
|
|
|
array(&$this->Dispatcher)
|
|
|
|
);
|
2009-06-17 03:05:48 +00:00
|
|
|
$this->Task->path = TMP . 'tests' . DS;
|
2009-06-11 01:43:55 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2009-06-11 02:52:38 +00:00
|
|
|
/**
|
|
|
|
* startCase methods
|
|
|
|
*
|
|
|
|
* @return void
|
2009-11-14 12:18:31 +00:00
|
|
|
*/
|
2010-06-09 22:11:21 +00:00
|
|
|
public static function setUpBeforeClass() {
|
|
|
|
self::$_paths = $paths = App::path('plugins');
|
|
|
|
self::$_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 02:52:38 +00:00
|
|
|
/**
|
|
|
|
* endCase
|
|
|
|
*
|
|
|
|
* @return void
|
2009-11-14 12:18:31 +00:00
|
|
|
*/
|
2010-06-09 22:11:21 +00:00
|
|
|
public static function tearDownAfterClass() {
|
|
|
|
App::build(array('plugins' => self::$_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
|
|
|
/**
|
2009-07-17 03:55:41 +00:00
|
|
|
* endTest method
|
2009-06-11 01:43:55 +00:00
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function endTest() {
|
2009-06-11 01:43:55 +00:00
|
|
|
ClassRegistry::flush();
|
|
|
|
}
|
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-06-09 22:11:21 +00:00
|
|
|
$this->Task->expects($this->at(0))->method('in')->will($this->returnValue(self::$_testPath));
|
|
|
|
$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';
|
|
|
|
$this->Task->expects($this->at(3))->method('createFile')
|
|
|
|
->with($file, new PHPUnit_Framework_Constraint_IsAnything());
|
|
|
|
|
|
|
|
$file = $path . DS . 'bake_test_plugin_app_model.php';
|
|
|
|
$this->Task->expects($this->at(4))->method('createFile')
|
|
|
|
->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');
|
2009-07-17 01:49:26 +00:00
|
|
|
|
2009-07-17 01:34:14 +00:00
|
|
|
$this->assertTrue(is_dir($path . DS . 'config'), 'No config dir %s');
|
2009-08-02 21:39:59 +00:00
|
|
|
$this->assertTrue(is_dir($path . DS . 'config' . DS . 'schema'), 'No schema dir %s');
|
|
|
|
$this->assertTrue(file_exists($path . DS . 'config' . DS . 'schema' . DS . 'empty'), 'No empty file %s');
|
2009-07-17 01:49:26 +00:00
|
|
|
|
2009-06-11 02:19:14 +00:00
|
|
|
$this->assertTrue(is_dir($path . DS . 'controllers'), 'No controllers dir %s');
|
|
|
|
$this->assertTrue(is_dir($path . DS . 'controllers' . DS .'components'), 'No components dir %s');
|
2009-07-17 01:49:26 +00:00
|
|
|
$this->assertTrue(file_exists($path . DS . 'controllers' . DS . 'components' . DS . 'empty'), 'No empty file %s');
|
2009-08-02 21:39:59 +00:00
|
|
|
|
2009-06-11 02:19:14 +00:00
|
|
|
$this->assertTrue(is_dir($path . DS . 'models'), 'No models dir %s');
|
2009-07-17 01:49:26 +00:00
|
|
|
$this->assertTrue(file_exists($path . DS . 'models' . DS . 'behaviors' . DS . 'empty'), 'No empty file %s');
|
2009-08-02 21:39:59 +00:00
|
|
|
$this->assertTrue(is_dir($path . DS . 'models' . DS . 'datasources'), 'No datasources dir %s');
|
|
|
|
$this->assertTrue(file_exists($path . DS . 'models' . DS . 'datasources' . DS . 'empty'), 'No empty file %s');
|
2009-07-17 01:49:26 +00:00
|
|
|
|
2009-06-11 02:19:14 +00:00
|
|
|
$this->assertTrue(is_dir($path . DS . 'views'), 'No views dir %s');
|
|
|
|
$this->assertTrue(is_dir($path . DS . 'views' . DS . 'helpers'), 'No helpers dir %s');
|
2009-07-17 01:49:26 +00:00
|
|
|
$this->assertTrue(file_exists($path . DS . 'views' . DS . 'helpers' . DS . 'empty'), 'No empty file %s');
|
|
|
|
|
2009-06-11 02:22:06 +00:00
|
|
|
$this->assertTrue(is_dir($path . DS . 'tests'), 'No tests dir %s');
|
|
|
|
$this->assertTrue(is_dir($path . DS . 'tests' . DS . 'cases'), 'No cases dir %s');
|
2009-07-17 01:49:26 +00:00
|
|
|
|
|
|
|
$this->assertTrue(
|
|
|
|
is_dir($path . DS . 'tests' . DS . 'cases' . DS . 'components'), 'No components cases dir %s'
|
|
|
|
);
|
|
|
|
$this->assertTrue(
|
|
|
|
file_exists($path . DS . 'tests' . DS . 'cases' . DS . 'components' . DS . 'empty'), 'No empty file %s'
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertTrue(is_dir($path . DS . 'tests' . DS . 'cases' . DS . 'behaviors'), 'No behaviors cases dir %s');
|
|
|
|
$this->assertTrue(
|
|
|
|
file_exists($path . DS . 'tests' . DS . 'cases' . DS . 'behaviors' . DS . 'empty'), 'No empty file %s'
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertTrue(is_dir($path . DS . 'tests' . DS . 'cases' . DS . 'helpers'), 'No helpers cases dir %s');
|
|
|
|
$this->assertTrue(
|
|
|
|
file_exists($path . DS . 'tests' . DS . 'cases' . DS . 'helpers' . DS . 'empty'), 'No empty file %s'
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertTrue(is_dir($path . DS . 'tests' . DS . 'cases' . DS . 'models'), 'No models cases dir %s');
|
|
|
|
$this->assertTrue(
|
|
|
|
file_exists($path . DS . 'tests' . DS . 'cases' . DS . 'models' . DS . 'empty'), 'No empty file %s'
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertTrue(
|
2009-07-24 19:18:37 +00:00
|
|
|
is_dir($path . DS . 'tests' . DS . 'cases' . DS . 'controllers'),
|
2009-07-17 01:49:26 +00:00
|
|
|
'No controllers cases dir %s'
|
|
|
|
);
|
|
|
|
$this->assertTrue(
|
|
|
|
file_exists($path . DS . 'tests' . DS . 'cases' . DS . 'controllers' . DS . 'empty'), 'No empty file %s'
|
|
|
|
);
|
|
|
|
|
2009-06-11 02:22:06 +00:00
|
|
|
$this->assertTrue(is_dir($path . DS . 'tests' . DS . 'groups'), 'No groups dir %s');
|
2009-07-17 01:49:26 +00:00
|
|
|
$this->assertTrue(file_exists($path . DS . 'tests' . DS . 'groups' . DS . 'empty'), 'No empty file %s');
|
|
|
|
|
2009-06-11 02:22:06 +00:00
|
|
|
$this->assertTrue(is_dir($path . DS . 'tests' . DS . 'fixtures'), 'No fixtures dir %s');
|
2009-07-17 01:49:26 +00:00
|
|
|
$this->assertTrue(file_exists($path . DS . 'tests' . DS . 'fixtures' . DS . 'empty'), 'No empty file %s');
|
|
|
|
|
2009-07-09 02:25:27 +00:00
|
|
|
$this->assertTrue(is_dir($path . DS . 'vendors'), 'No vendors dir %s');
|
2009-11-26 03:50:50 +00:00
|
|
|
|
2009-07-09 02:25:27 +00:00
|
|
|
$this->assertTrue(is_dir($path . DS . 'vendors' . DS . 'shells'), 'No vendors shells dir %s');
|
2009-08-02 21:39:59 +00:00
|
|
|
$this->assertTrue(is_dir($path . DS . 'vendors' . DS . 'shells' . DS . 'tasks'), 'No vendors shells tasks dir %s');
|
2009-07-29 08:12:54 +00:00
|
|
|
$this->assertTrue(file_exists($path . DS . 'vendors' . DS . 'shells' . DS . 'tasks' . DS . 'empty'), 'No empty file %s');
|
2009-10-28 13:21:42 +00:00
|
|
|
$this->assertTrue(is_dir($path . DS . 'libs'), 'No libs dir %s');
|
2009-11-26 03:50:50 +00:00
|
|
|
$this->assertTrue(is_dir($path . DS . 'webroot'), 'No webroot dir %s');
|
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'));
|
|
|
|
$this->Task->expects($this->at(3))->method('in')->will($this->returnValue('n'));
|
2009-07-20 04:20:58 +00:00
|
|
|
|
|
|
|
$path = $this->Task->path . 'test_plugin';
|
|
|
|
$file = $path . DS . 'test_plugin_app_controller.php';
|
2010-06-09 22:11:21 +00:00
|
|
|
$this->Task->expects($this->at(4))->method('createFile')
|
|
|
|
->with($file, new PHPUnit_Framework_Constraint_IsAnything());
|
2009-07-20 04:20:58 +00:00
|
|
|
|
|
|
|
$file = $path . DS . 'test_plugin_app_model.php';
|
2010-06-09 22:11:21 +00:00
|
|
|
$this->Task->expects($this->at(5))->method('createFile')
|
|
|
|
->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')
|
|
|
|
->will($this->returnValue(self::$_testPath));
|
|
|
|
$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-06-09 22:11:21 +00:00
|
|
|
$this->Task->expects($this->at(3))->method('createFile')
|
|
|
|
->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-06-09 22:11:21 +00:00
|
|
|
$this->Task->expects($this->at(4))->method('createFile')
|
|
|
|
->with($file, new PHPUnit_Framework_Constraint_IsAnything());
|
|
|
|
|
|
|
|
$this->Task->Dispatch->args = array('BakeTestPlugin');
|
|
|
|
$this->Task->args =& $this->Task->Dispatch->args;
|
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 04:04:22 +00:00
|
|
|
/**
|
|
|
|
* test execute chaining into MVC parts
|
|
|
|
*
|
|
|
|
* @return void
|
2009-11-14 12:18:31 +00:00
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function testExecuteWithTwoArgs() {
|
2010-06-09 22:11:21 +00:00
|
|
|
$this->Task->Model = $this->getMock('ModelTask', array(), array(&$this->Dispatcher));
|
2009-06-11 04:04:22 +00:00
|
|
|
|
2010-06-09 22:11:21 +00:00
|
|
|
$this->Task->expects($this->at(0))->method('in')->will($this->returnValue(self::$_testPath));
|
|
|
|
|
|
|
|
$this->Task->Model->expects($this->once())->method('loadTasks');
|
|
|
|
$this->Task->Model->expects($this->once())->method('execute');
|
|
|
|
|
|
|
|
$Folder = new Folder($this->Task->path . 'bake_test_plugin', true);
|
2009-06-11 04:04:22 +00:00
|
|
|
|
|
|
|
$this->Task->Dispatch->args = array('BakeTestPlugin', 'model');
|
2010-06-09 22:11:21 +00:00
|
|
|
$this->Task->args = $this->Task->Dispatch->args;
|
2009-06-11 04:04:22 +00:00
|
|
|
|
|
|
|
$this->Task->execute();
|
2009-08-02 20:00:57 +00:00
|
|
|
$Folder->delete();
|
2009-06-11 04:04:22 +00:00
|
|
|
}
|
2009-06-11 01:43:55 +00:00
|
|
|
}
|