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)
|
2012-03-13 02:46:46 +00:00
|
|
|
* Copyright 2005-2012, 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.
|
|
|
|
*
|
2012-03-13 02:46:46 +00:00
|
|
|
* @copyright Copyright 2005-2012, Cake Software Foundation, Inc.
|
2009-11-06 06:00:11 +00:00
|
|
|
* @link http://cakephp.org CakePHP Project
|
2011-07-26 06:16:14 +00:00
|
|
|
* @package Cake.Test.Case.Console.Command.Task
|
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');
|
2011-03-08 05:20:07 +00:00
|
|
|
App::uses('ConsoleOutput', 'Console');
|
|
|
|
App::uses('ConsoleInput', 'Console');
|
2010-12-09 03:45:18 +00:00
|
|
|
App::uses('Shell', 'Console');
|
|
|
|
App::uses('PluginTask', 'Console/Command/Task');
|
|
|
|
App::uses('ModelTask', 'Console/Command/Task');
|
2011-03-08 05:20:07 +00:00
|
|
|
App::uses('Folder', 'Utility');
|
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
|
|
|
|
*
|
2011-07-26 06:16:14 +00:00
|
|
|
* @package Cake.Test.Case.Console.Command.Task
|
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
|
|
|
/**
|
2011-12-04 21:27:51 +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();
|
2011-05-23 02:03:51 +00:00
|
|
|
$this->out = $this->getMock('ConsoleOutput', array(), array(), '', false);
|
|
|
|
$this->in = $this->getMock('ConsoleInput', array(), array(), '', false);
|
2010-09-26 01:36:49 +00:00
|
|
|
|
2011-10-28 05:01:17 +00:00
|
|
|
$this->Task = $this->getMock('PluginTask',
|
2010-10-07 02:52:42 +00:00
|
|
|
array('in', 'err', 'createFile', '_stop', 'clear'),
|
2011-05-23 02:03:51 +00:00
|
|
|
array($this->out, $this->out, $this->in)
|
2010-06-09 22:11:21 +00:00
|
|
|
);
|
2009-06-17 03:05:48 +00:00
|
|
|
$this->Task->path = TMP . 'tests' . DS;
|
2012-06-13 02:10:47 +00:00
|
|
|
$this->Task->bootstrap = TMP . 'tests' . DS . 'bootstrap.php';
|
|
|
|
touch($this->Task->bootstrap);
|
2011-10-28 05:01:17 +00:00
|
|
|
|
2010-09-26 01:36:49 +00:00
|
|
|
$this->_paths = $paths = App::path('plugins');
|
2011-05-23 02:03:51 +00:00
|
|
|
foreach ($paths as $i => $p) {
|
|
|
|
if (!is_dir($p)) {
|
|
|
|
array_splice($paths, $i, 1);
|
|
|
|
}
|
|
|
|
}
|
2010-09-26 01:36:49 +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
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2012-06-13 02:10:47 +00:00
|
|
|
/**
|
|
|
|
* tearDown()
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function tearDown() {
|
|
|
|
if (file_exists($this->Task->bootstrap)) {
|
|
|
|
unlink($this->Task->bootstrap);
|
|
|
|
}
|
|
|
|
parent::tearDown();
|
|
|
|
}
|
|
|
|
|
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'));
|
|
|
|
|
2011-05-12 04:18:51 +00:00
|
|
|
$path = $this->Task->path . 'BakeTestPlugin';
|
2010-06-09 22:11:21 +00:00
|
|
|
|
2012-03-11 04:32:02 +00:00
|
|
|
$file = $path . DS . 'Controller' . DS . 'BakeTestPluginAppController.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());
|
|
|
|
|
2011-04-21 22:25:35 +00:00
|
|
|
$file = $path . DS . 'Model' . DS . 'BakeTestPluginAppModel.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
|
|
|
|
2011-05-12 04:18:51 +00:00
|
|
|
$path = $this->Task->path . 'BakeTestPlugin';
|
2009-06-11 02:19:14 +00:00
|
|
|
$this->assertTrue(is_dir($path), 'No plugin dir %s');
|
2011-10-28 05:01:17 +00:00
|
|
|
|
2010-10-18 03:09:30 +00:00
|
|
|
$directories = array(
|
2011-07-28 16:57:10 +00:00
|
|
|
'Config' . DS . 'Schema',
|
2011-04-21 22:25:35 +00:00
|
|
|
'Model' . DS . 'Behavior',
|
|
|
|
'Model' . DS . 'Datasource',
|
|
|
|
'Console' . DS . 'Command' . DS . 'Task',
|
|
|
|
'Controller' . DS . 'Component',
|
|
|
|
'Lib',
|
|
|
|
'View' . DS . 'Helper',
|
2011-05-20 02:05:51 +00:00
|
|
|
'Test' . DS . 'Case' . DS . 'Controller' . DS . 'Component',
|
|
|
|
'Test' . DS . 'Case' . DS . 'View' . DS . 'Helper',
|
|
|
|
'Test' . DS . 'Case' . DS . 'Model' . DS . 'Behavior',
|
|
|
|
'Test' . DS . 'Fixture',
|
|
|
|
'Vendor',
|
2010-10-18 03:09:30 +00:00
|
|
|
'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
|
|
|
|
2011-05-12 04:18:51 +00:00
|
|
|
$Folder = new Folder($this->Task->path . 'BakeTestPlugin');
|
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'));
|
2011-05-15 04:10:09 +00:00
|
|
|
$this->Task->expects($this->at(1))->method('in')->will($this->returnValue($this->_testPath));
|
2010-06-09 22:11:21 +00:00
|
|
|
$this->Task->expects($this->at(2))->method('in')->will($this->returnValue('y'));
|
2009-07-20 04:20:58 +00:00
|
|
|
|
2011-05-12 04:18:51 +00:00
|
|
|
$path = $this->Task->path . 'TestPlugin';
|
2011-04-21 22:25:35 +00:00
|
|
|
$file = $path . DS . 'Controller' . DS . 'TestPluginAppController.php';
|
2011-05-15 04:10:09 +00:00
|
|
|
|
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
|
|
|
|
2011-04-21 22:25:35 +00:00
|
|
|
$file = $path . DS . 'Model' . DS . 'TestPluginAppModel.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
|
|
|
|
2011-05-12 04:18:51 +00:00
|
|
|
$path = $this->Task->path . 'BakeTestPlugin';
|
2011-04-21 22:25:35 +00:00
|
|
|
$file = $path . DS . 'Controller' . DS . 'BakeTestPluginAppController.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
|
|
|
|
2011-05-12 04:18:51 +00:00
|
|
|
$path = $this->Task->path . 'BakeTestPlugin';
|
2011-04-21 22:25:35 +00:00
|
|
|
$file = $path . DS . 'Model' . DS . 'BakeTestPluginAppModel.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());
|
2011-10-28 05:01:17 +00:00
|
|
|
|
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
|
|
|
|
2011-05-12 04:18:51 +00:00
|
|
|
$Folder = new Folder($this->Task->path . 'BakeTestPlugin');
|
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
|
|
|
|
2011-05-23 02:03:51 +00:00
|
|
|
/**
|
|
|
|
* Test that findPath ignores paths that don't exist.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function testFindPathNonExistant() {
|
|
|
|
$paths = App::path('plugins');
|
|
|
|
$last = count($paths);
|
|
|
|
$paths[] = '/fake/path';
|
|
|
|
|
2011-10-28 05:01:17 +00:00
|
|
|
$this->Task = $this->getMock('PluginTask',
|
2011-05-23 02:03:51 +00:00
|
|
|
array('in', 'out', 'err', 'createFile', '_stop'),
|
|
|
|
array($this->out, $this->out, $this->in)
|
|
|
|
);
|
|
|
|
$this->Task->path = TMP . 'tests' . DS;
|
|
|
|
|
|
|
|
// Make sure the added path is filtered out.
|
|
|
|
$this->Task->expects($this->exactly($last))
|
|
|
|
->method('out');
|
2011-10-28 05:01:17 +00:00
|
|
|
|
2011-05-23 02:03:51 +00:00
|
|
|
$this->Task->expects($this->once())
|
|
|
|
->method('in')
|
|
|
|
->will($this->returnValue($last));
|
|
|
|
|
|
|
|
$this->Task->findPath($paths);
|
|
|
|
}
|
2009-06-11 01:43:55 +00:00
|
|
|
}
|