2009-06-10 21:43:55 -04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* PluginTask Test file
|
|
|
|
*
|
|
|
|
* Test Case for plugin generation shell task
|
|
|
|
*
|
2010-10-03 12:31:21 -04:00
|
|
|
* PHP 5
|
2009-06-10 21:43:55 -04:00
|
|
|
*
|
2009-11-06 17:46:59 +11:00
|
|
|
* CakePHP : Rapid Development Framework (http://cakephp.org)
|
2013-02-08 21:28:17 +09:00
|
|
|
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2009-06-10 21:43:55 -04:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
2013-02-08 21:22:51 +09:00
|
|
|
* For full copyright and license information, please see the LICENSE.txt
|
2009-06-10 21:43:55 -04:00
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2013-02-08 21:28:17 +09:00
|
|
|
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2009-11-06 17:00:11 +11:00
|
|
|
* @link http://cakephp.org CakePHP Project
|
2011-07-26 01:46:14 -04:30
|
|
|
* @package Cake.Test.Case.Console.Command.Task
|
2009-06-16 22:34:16 -04:00
|
|
|
* @since CakePHP v 1.3.0
|
2013-05-31 00:11:14 +02:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php MIT License
|
2009-06-10 21:43:55 -04:00
|
|
|
*/
|
2010-10-17 15:43:20 -04:00
|
|
|
|
2010-12-08 23:15:18 -04:30
|
|
|
App::uses('ShellDispatcher', 'Console');
|
2011-03-08 00:50:07 -04:30
|
|
|
App::uses('ConsoleOutput', 'Console');
|
|
|
|
App::uses('ConsoleInput', 'Console');
|
2010-12-08 23:15:18 -04:30
|
|
|
App::uses('Shell', 'Console');
|
|
|
|
App::uses('PluginTask', 'Console/Command/Task');
|
|
|
|
App::uses('ModelTask', 'Console/Command/Task');
|
2011-03-08 00:50:07 -04:30
|
|
|
App::uses('Folder', 'Utility');
|
2010-12-09 00:43:11 -04:30
|
|
|
App::uses('File', 'Utility');
|
2009-07-08 22:25:27 -04:00
|
|
|
|
2009-06-10 21:43:55 -04:00
|
|
|
/**
|
|
|
|
* PluginTaskPlugin class
|
|
|
|
*
|
2011-07-26 01:46:14 -04:30
|
|
|
* @package Cake.Test.Case.Console.Command.Task
|
2009-06-10 21:43:55 -04:00
|
|
|
*/
|
|
|
|
class PluginTaskTest extends CakeTestCase {
|
2009-07-24 21:18:37 +02:00
|
|
|
|
2009-06-10 21:43:55 -04:00
|
|
|
/**
|
2011-12-04 13:27:51 -08:00
|
|
|
* setUp method
|
2009-06-10 21:43:55 -04:00
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2010-09-25 21:36:49 -04:00
|
|
|
public function setUp() {
|
|
|
|
parent::setUp();
|
2011-05-22 22:03:51 -04:00
|
|
|
$this->out = $this->getMock('ConsoleOutput', array(), array(), '', false);
|
|
|
|
$this->in = $this->getMock('ConsoleInput', array(), array(), '', false);
|
2010-09-25 21:36:49 -04:00
|
|
|
|
2011-10-28 01:01:17 -04:00
|
|
|
$this->Task = $this->getMock('PluginTask',
|
2010-10-06 22:52:42 -04:00
|
|
|
array('in', 'err', 'createFile', '_stop', 'clear'),
|
2011-05-22 22:03:51 -04:00
|
|
|
array($this->out, $this->out, $this->in)
|
2010-06-09 18:11:21 -04:00
|
|
|
);
|
2009-06-16 23:05:48 -04:00
|
|
|
$this->Task->path = TMP . 'tests' . DS;
|
2012-06-12 22:10:47 -04:00
|
|
|
$this->Task->bootstrap = TMP . 'tests' . DS . 'bootstrap.php';
|
|
|
|
touch($this->Task->bootstrap);
|
2011-10-28 01:01:17 -04:00
|
|
|
|
2010-09-25 21:36:49 -04:00
|
|
|
$this->_paths = $paths = App::path('plugins');
|
2011-05-22 22:03:51 -04:00
|
|
|
foreach ($paths as $i => $p) {
|
|
|
|
if (!is_dir($p)) {
|
|
|
|
array_splice($paths, $i, 1);
|
|
|
|
}
|
|
|
|
}
|
2010-09-25 21:36:49 -04:00
|
|
|
$this->_testPath = array_push($paths, TMP . 'tests' . DS);
|
2009-07-08 22:25:27 -04:00
|
|
|
App::build(array('plugins' => $paths));
|
2009-06-10 22:52:38 -04:00
|
|
|
}
|
2009-07-24 21:18:37 +02:00
|
|
|
|
2012-06-12 22:10:47 -04:00
|
|
|
/**
|
|
|
|
* tearDown()
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function tearDown() {
|
|
|
|
if (file_exists($this->Task->bootstrap)) {
|
|
|
|
unlink($this->Task->bootstrap);
|
|
|
|
}
|
|
|
|
parent::tearDown();
|
|
|
|
}
|
|
|
|
|
2009-06-10 21:43:55 -04:00
|
|
|
/**
|
|
|
|
* test bake()
|
|
|
|
*
|
|
|
|
* @return void
|
2009-11-14 23:18:31 +11:00
|
|
|
*/
|
2010-04-05 13:19:38 +10:00
|
|
|
public function testBakeFoldersAndFiles() {
|
2010-09-25 21:36:49 -04:00
|
|
|
$this->Task->expects($this->at(0))->method('in')->will($this->returnValue($this->_testPath));
|
2010-06-09 18:11:21 -04:00
|
|
|
$this->Task->expects($this->at(1))->method('in')->will($this->returnValue('y'));
|
|
|
|
|
2011-05-11 23:48:51 -04:30
|
|
|
$path = $this->Task->path . 'BakeTestPlugin';
|
2010-06-09 18:11:21 -04:00
|
|
|
|
2012-03-10 23:32:02 -05:00
|
|
|
$file = $path . DS . 'Controller' . DS . 'BakeTestPluginAppController.php';
|
2010-10-17 23:09:30 -04:00
|
|
|
$this->Task->expects($this->at(2))->method('createFile')
|
2010-06-09 18:11:21 -04:00
|
|
|
->with($file, new PHPUnit_Framework_Constraint_IsAnything());
|
|
|
|
|
2011-04-21 17:55:35 -04:30
|
|
|
$file = $path . DS . 'Model' . DS . 'BakeTestPluginAppModel.php';
|
2010-10-17 23:09:30 -04:00
|
|
|
$this->Task->expects($this->at(3))->method('createFile')
|
2010-06-09 18:11:21 -04:00
|
|
|
->with($file, new PHPUnit_Framework_Constraint_IsAnything());
|
|
|
|
|
2009-06-10 22:19:14 -04:00
|
|
|
$this->Task->bake('BakeTestPlugin');
|
2009-06-10 22:52:38 -04:00
|
|
|
|
2011-05-11 23:48:51 -04:30
|
|
|
$path = $this->Task->path . 'BakeTestPlugin';
|
2009-06-10 22:19:14 -04:00
|
|
|
$this->assertTrue(is_dir($path), 'No plugin dir %s');
|
2011-10-28 01:01:17 -04:00
|
|
|
|
2010-10-17 23:09:30 -04:00
|
|
|
$directories = array(
|
2011-07-28 18:57:10 +02:00
|
|
|
'Config' . DS . 'Schema',
|
2011-04-21 17:55:35 -04:30
|
|
|
'Model' . DS . 'Behavior',
|
|
|
|
'Model' . DS . 'Datasource',
|
|
|
|
'Console' . DS . 'Command' . DS . 'Task',
|
|
|
|
'Controller' . DS . 'Component',
|
|
|
|
'Lib',
|
|
|
|
'View' . DS . 'Helper',
|
2011-05-19 21:35:51 -04:30
|
|
|
'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-17 23:09:30 -04:00
|
|
|
'webroot'
|
2009-07-16 21:49:26 -04:00
|
|
|
);
|
2010-10-17 23:09:30 -04:00
|
|
|
foreach ($directories as $dir) {
|
|
|
|
$this->assertTrue(is_dir($path . DS . $dir), 'Missing directory for ' . $dir);
|
|
|
|
}
|
2009-06-10 22:19:14 -04:00
|
|
|
|
2011-05-11 23:48:51 -04:30
|
|
|
$Folder = new Folder($this->Task->path . 'BakeTestPlugin');
|
2009-08-02 22:00:57 +02:00
|
|
|
$Folder->delete();
|
2009-06-10 23:21:42 -04:00
|
|
|
}
|
2009-07-24 21:18:37 +02:00
|
|
|
|
2009-07-20 00:20:58 -04:00
|
|
|
/**
|
|
|
|
* test execute with no args, flowing into interactive,
|
|
|
|
*
|
|
|
|
* @return void
|
2009-11-14 23:18:31 +11:00
|
|
|
*/
|
2010-04-05 13:19:38 +10:00
|
|
|
public function testExecuteWithNoArgs() {
|
2010-06-09 18:11:21 -04:00
|
|
|
$this->Task->expects($this->at(0))->method('in')->will($this->returnValue('TestPlugin'));
|
2011-05-14 23:40:09 -04:30
|
|
|
$this->Task->expects($this->at(1))->method('in')->will($this->returnValue($this->_testPath));
|
2010-06-09 18:11:21 -04:00
|
|
|
$this->Task->expects($this->at(2))->method('in')->will($this->returnValue('y'));
|
2009-07-20 00:20:58 -04:00
|
|
|
|
2011-05-11 23:48:51 -04:30
|
|
|
$path = $this->Task->path . 'TestPlugin';
|
2011-04-21 17:55:35 -04:30
|
|
|
$file = $path . DS . 'Controller' . DS . 'TestPluginAppController.php';
|
2011-05-14 23:40:09 -04:30
|
|
|
|
2010-10-17 23:09:30 -04:00
|
|
|
$this->Task->expects($this->at(3))->method('createFile')
|
2010-06-09 18:11:21 -04:00
|
|
|
->with($file, new PHPUnit_Framework_Constraint_IsAnything());
|
2009-07-20 00:20:58 -04:00
|
|
|
|
2011-04-21 17:55:35 -04:30
|
|
|
$file = $path . DS . 'Model' . DS . 'TestPluginAppModel.php';
|
2010-10-17 23:09:30 -04:00
|
|
|
$this->Task->expects($this->at(4))->method('createFile')
|
2010-06-09 18:11:21 -04:00
|
|
|
->with($file, new PHPUnit_Framework_Constraint_IsAnything());
|
2009-07-20 00:20:58 -04:00
|
|
|
|
|
|
|
$this->Task->args = array();
|
|
|
|
$this->Task->execute();
|
2009-07-26 01:52:05 -04:00
|
|
|
|
2010-06-09 18:11:21 -04:00
|
|
|
$Folder = new Folder($path);
|
2009-08-02 22:00:57 +02:00
|
|
|
$Folder->delete();
|
2009-07-20 00:20:58 -04:00
|
|
|
}
|
2009-07-24 21:18:37 +02:00
|
|
|
|
2009-06-10 23:21:42 -04:00
|
|
|
/**
|
|
|
|
* Test Execute
|
|
|
|
*
|
|
|
|
* @return void
|
2009-11-14 23:18:31 +11:00
|
|
|
*/
|
2010-04-05 13:19:38 +10:00
|
|
|
public function testExecuteWithOneArg() {
|
2010-06-09 18:11:21 -04:00
|
|
|
$this->Task->expects($this->at(0))->method('in')
|
2010-09-25 21:36:49 -04:00
|
|
|
->will($this->returnValue($this->_testPath));
|
2010-06-09 18:11:21 -04:00
|
|
|
$this->Task->expects($this->at(1))->method('in')
|
|
|
|
->will($this->returnValue('y'));
|
2009-06-10 23:21:42 -04:00
|
|
|
|
2011-05-11 23:48:51 -04:30
|
|
|
$path = $this->Task->path . 'BakeTestPlugin';
|
2011-04-21 17:55:35 -04:30
|
|
|
$file = $path . DS . 'Controller' . DS . 'BakeTestPluginAppController.php';
|
2010-10-17 23:09:30 -04:00
|
|
|
$this->Task->expects($this->at(2))->method('createFile')
|
2010-06-09 18:11:21 -04:00
|
|
|
->with($file, new PHPUnit_Framework_Constraint_IsAnything());
|
2009-06-10 23:21:42 -04:00
|
|
|
|
2011-05-11 23:48:51 -04:30
|
|
|
$path = $this->Task->path . 'BakeTestPlugin';
|
2011-04-21 17:55:35 -04:30
|
|
|
$file = $path . DS . 'Model' . DS . 'BakeTestPluginAppModel.php';
|
2010-10-17 23:09:30 -04:00
|
|
|
$this->Task->expects($this->at(3))->method('createFile')
|
2010-06-09 18:11:21 -04:00
|
|
|
->with($file, new PHPUnit_Framework_Constraint_IsAnything());
|
2011-10-28 01:01:17 -04:00
|
|
|
|
2010-10-24 15:27:04 -04:00
|
|
|
$this->Task->args = array('BakeTestPlugin');
|
2009-06-10 23:21:42 -04:00
|
|
|
|
|
|
|
$this->Task->execute();
|
2009-07-08 22:25:27 -04:00
|
|
|
|
2011-05-11 23:48:51 -04:30
|
|
|
$Folder = new Folder($this->Task->path . 'BakeTestPlugin');
|
2009-08-02 22:00:57 +02:00
|
|
|
$Folder->delete();
|
2009-06-10 21:43:55 -04:00
|
|
|
}
|
2009-07-24 21:18:37 +02:00
|
|
|
|
2011-05-22 22:03:51 -04: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 01:01:17 -04:00
|
|
|
$this->Task = $this->getMock('PluginTask',
|
2011-05-22 22:03:51 -04: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 01:01:17 -04:00
|
|
|
|
2011-05-22 22:03:51 -04:00
|
|
|
$this->Task->expects($this->once())
|
|
|
|
->method('in')
|
|
|
|
->will($this->returnValue($last));
|
|
|
|
|
|
|
|
$this->Task->findPath($paths);
|
|
|
|
}
|
2009-06-10 21:43:55 -04:00
|
|
|
}
|