2009-06-11 01:43:55 +00:00
|
|
|
<?php
|
|
|
|
/* SVN FILE: $Id$ */
|
|
|
|
/**
|
|
|
|
* PluginTask Test file
|
|
|
|
*
|
|
|
|
* Test Case for plugin generation shell task
|
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
|
|
|
* CakePHP : Rapid Development Framework (http://www.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.
|
|
|
|
*
|
|
|
|
* @filesource
|
2009-06-17 02:34:16 +00:00
|
|
|
* @copyright Copyright 2006-2009, Cake Software Foundation, Inc.
|
2009-06-11 01:43:55 +00:00
|
|
|
* @link http://www.cakefoundation.org/projects/info/cakephp CakePHP Project
|
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.tests.cases.console.libs.tasks
|
2009-06-17 02:34:16 +00:00
|
|
|
* @since CakePHP v 1.3.0
|
2009-06-11 01:43:55 +00:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
|
|
|
|
*/
|
|
|
|
App::import('Core', 'Shell');
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
Mock::generatePartial(
|
|
|
|
'ShellDispatcher', 'TestPluginTaskMockShellDispatcher',
|
|
|
|
array('getInput', 'stdout', 'stderr', '_stop', '_initEnvironment')
|
|
|
|
);
|
|
|
|
Mock::generatePartial(
|
|
|
|
'PluginTask', 'MockPluginTask',
|
2009-06-11 04:04:22 +00:00
|
|
|
array('in', '_stop', 'err', 'out', 'createFile')
|
2009-06-11 01:43:55 +00:00
|
|
|
);
|
|
|
|
|
2009-06-11 04:04:22 +00:00
|
|
|
Mock::generate('ModelTask', 'PluginTestMockModelTask');
|
|
|
|
|
2009-06-11 01:43:55 +00:00
|
|
|
/**
|
|
|
|
* PluginTaskPlugin class
|
|
|
|
*
|
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.tests.cases.console.libs.tasks
|
|
|
|
*/
|
|
|
|
class PluginTaskTest extends CakeTestCase {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* setUp method
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
function startTest() {
|
|
|
|
$this->Dispatcher =& new TestPluginTaskMockShellDispatcher();
|
2009-07-07 03:11:57 +00:00
|
|
|
$this->Dispatcher->shellPaths = App::path('shells');
|
2009-06-11 01:43:55 +00:00
|
|
|
$this->Task =& new MockPluginTask($this->Dispatcher);
|
|
|
|
$this->Task->Dispatch =& $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-06-11 02:52:38 +00:00
|
|
|
/**
|
|
|
|
* startCase methods
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
**/
|
|
|
|
function startCase() {
|
2009-07-09 02:25:27 +00:00
|
|
|
$this->_paths = $paths = App::path('plugins');
|
2009-06-17 03:05:48 +00:00
|
|
|
$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
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* endCase
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
**/
|
|
|
|
function endCase() {
|
2009-07-09 02:25:27 +00:00
|
|
|
App::build(array('plugins' => $this->_paths));
|
2009-06-11 02:52:38 +00:00
|
|
|
}
|
|
|
|
|
2009-06-11 01:43:55 +00:00
|
|
|
/**
|
|
|
|
* tearDown method
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
function endTest() {
|
|
|
|
ClassRegistry::flush();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* test bake()
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
**/
|
2009-06-11 02:19:14 +00:00
|
|
|
function testBakeFoldersAndFiles() {
|
2009-06-11 02:52:38 +00:00
|
|
|
$this->Task->setReturnValueAt(0, 'in', $this->_testPath);
|
|
|
|
$this->Task->setReturnValueAt(1, 'in', 'y');
|
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:34:14 +00:00
|
|
|
$this->assertTrue(is_dir($path . DS . 'config'), 'No config dir %s');
|
|
|
|
$this->assertTrue(is_dir($path . DS . 'config' . DS . 'sql'), 'No config dir %s');
|
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');
|
|
|
|
$this->assertTrue(is_dir($path . DS . 'models'), 'No models dir %s');
|
|
|
|
$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-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');
|
|
|
|
$this->assertTrue(is_dir($path . DS . 'tests' . DS . 'groups'), 'No groups dir %s');
|
|
|
|
$this->assertTrue(is_dir($path . DS . 'tests' . DS . 'fixtures'), 'No fixtures dir %s');
|
2009-07-09 02:25:27 +00:00
|
|
|
$this->assertTrue(is_dir($path . DS . 'vendors'), 'No vendors dir %s');
|
|
|
|
$this->assertTrue(is_dir($path . DS . 'vendors' . DS . 'css'), 'No vendors css dir %s');
|
|
|
|
$this->assertTrue(is_dir($path . DS . 'vendors' . DS . 'js'), 'No vendors js dir %s');
|
|
|
|
$this->assertTrue(is_dir($path . DS . 'vendors' . DS . 'img'), 'No vendors img dir %s');
|
|
|
|
$this->assertTrue(is_dir($path . DS . 'vendors' . DS . 'shells'), 'No vendors shells dir %s');
|
2009-06-11 02:19:14 +00:00
|
|
|
|
|
|
|
$file = $path . DS . 'bake_test_plugin_app_controller.php';
|
|
|
|
$this->Task->expectAt(0, 'createFile', array($file, '*'), 'No AppController %s');
|
|
|
|
|
|
|
|
$file = $path . DS . 'bake_test_plugin_app_model.php';
|
|
|
|
$this->Task->expectAt(1, 'createFile', array($file, '*'), 'No AppModel %s');
|
|
|
|
|
2009-06-17 03:05:48 +00:00
|
|
|
$Folder =& new Folder($this->Task->path . 'bake_test_plugin');
|
2009-06-11 03:21:42 +00:00
|
|
|
$Folder->delete();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test Execute
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
**/
|
2009-07-09 02:25:27 +00:00
|
|
|
function XXtestExecuteWithOneArg() {
|
2009-06-11 03:21:42 +00:00
|
|
|
$this->Task->setReturnValueAt(0, 'in', $this->_testPath);
|
|
|
|
$this->Task->setReturnValueAt(1, 'in', 'y');
|
|
|
|
$this->Task->Dispatch->args = array('BakeTestPlugin');
|
|
|
|
$this->Task->args =& $this->Task->Dispatch->args;
|
|
|
|
|
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';
|
|
|
|
$this->Task->expectAt(0, 'createFile', array($file, '*'), 'No AppController %s');
|
|
|
|
|
|
|
|
$file = $path . DS . 'bake_test_plugin_app_model.php';
|
|
|
|
$this->Task->expectAt(1, 'createFile', array($file, '*'), 'No AppModel %s');
|
|
|
|
|
|
|
|
$this->Task->execute();
|
2009-07-09 02:25:27 +00:00
|
|
|
|
2009-06-17 03:05:48 +00:00
|
|
|
$Folder =& new Folder($this->Task->path . 'bake_test_plugin');
|
2009-06-11 03:21:42 +00:00
|
|
|
$Folder->delete();
|
2009-06-11 01:43:55 +00:00
|
|
|
}
|
2009-06-11 02:52:38 +00:00
|
|
|
|
2009-06-11 04:04:22 +00:00
|
|
|
/**
|
|
|
|
* test execute chaining into MVC parts
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
**/
|
2009-07-09 02:25:27 +00:00
|
|
|
function XXtestExecuteWithTwoArgs() {
|
2009-06-11 04:04:22 +00:00
|
|
|
$this->Task->Model =& new PluginTestMockModelTask();
|
|
|
|
$this->Task->setReturnValueAt(0, 'in', $this->_testPath);
|
|
|
|
$this->Task->setReturnValueAt(1, 'in', 'y');
|
|
|
|
|
2009-06-17 03:05:48 +00:00
|
|
|
$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');
|
|
|
|
$this->Task->args =& $this->Task->Dispatch->args;
|
|
|
|
|
|
|
|
$this->Task->Model->expectOnce('loadTasks');
|
|
|
|
$this->Task->Model->expectOnce('execute');
|
|
|
|
$this->Task->execute();
|
|
|
|
$Folder->delete();
|
|
|
|
}
|
2009-06-11 01:43:55 +00:00
|
|
|
}
|
|
|
|
?>
|