| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- <?php
- /**
- * PluginTask Test file
- *
- * Test Case for plugin generation shell task
- *
- * PHP 5
- *
- * CakePHP : Rapid Development Framework (http://cakephp.org)
- * Copyright 2006-2009, Cake Software Foundation, Inc.
- *
- * Licensed under The MIT License
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright 2006-2009, Cake Software Foundation, Inc.
- * @link http://cakephp.org CakePHP Project
- * @package cake.tests.cases.console.libs.tasks
- * @since CakePHP v 1.3.0
- * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
- */
- App::uses('ShellDispatcher', 'Console');
- App::uses('ConsoleOutput', 'Console');
- App::uses('ConsoleInput', 'Console');
- App::uses('Shell', 'Console');
- App::uses('PluginTask', 'Console/Command/Task');
- App::uses('ModelTask', 'Console/Command/Task');
- App::uses('Folder', 'Utility');
- App::uses('File', 'Utility');
- /**
- * PluginTaskPlugin class
- *
- * @package cake.tests.cases.console.libs.tasks
- */
- class PluginTaskTest extends CakeTestCase {
- /**
- * setup method
- *
- * @return void
- */
- public function setUp() {
- parent::setUp();
- $out = $this->getMock('ConsoleOutput', array(), array(), '', false);
- $in = $this->getMock('ConsoleInput', array(), array(), '', false);
- $this->Task = $this->getMock('PluginTask',
- array('in', 'err', 'createFile', '_stop', 'clear'),
- array($out, $out, $in)
- );
- $this->Task->path = TMP . 'tests' . DS;
-
- $this->_paths = $paths = App::path('plugins');
- $this->_testPath = array_push($paths, TMP . 'tests' . DS);
- App::build(array('plugins' => $paths));
- }
- /**
- * test bake()
- *
- * @return void
- */
- public function testBakeFoldersAndFiles() {
- $this->Task->expects($this->at(0))->method('in')->will($this->returnValue($this->_testPath));
- $this->Task->expects($this->at(1))->method('in')->will($this->returnValue('y'));
- $path = $this->Task->path . 'BakeTestPlugin';
- $file = $path . DS . 'Controller' . DS .'BakeTestPluginAppController.php';
- $this->Task->expects($this->at(2))->method('createFile')
- ->with($file, new PHPUnit_Framework_Constraint_IsAnything());
- $file = $path . DS . 'Model' . DS . 'BakeTestPluginAppModel.php';
- $this->Task->expects($this->at(3))->method('createFile')
- ->with($file, new PHPUnit_Framework_Constraint_IsAnything());
- $this->Task->bake('BakeTestPlugin');
- $path = $this->Task->path . 'BakeTestPlugin';
- $this->assertTrue(is_dir($path), 'No plugin dir %s');
-
- $directories = array(
- 'config' . DS . 'schema',
- 'Model' . DS . 'Behavior',
- 'Model' . DS . 'Datasource',
- 'Console' . DS . 'Command' . DS . 'Task',
- 'Controller' . DS . 'Component',
- 'Lib',
- 'View' . DS . 'Helper',
- 'tests' . DS . 'Case' . DS . 'Controller' . DS . 'Component',
- 'tests' . DS . 'Case' . DS . 'View' . DS . 'Helper',
- 'tests' . DS . 'Case' . DS . 'Model' . DS . 'Behavior',
- 'tests' . DS . 'Fixture',
- 'vendors',
- 'webroot'
- );
- foreach ($directories as $dir) {
- $this->assertTrue(is_dir($path . DS . $dir), 'Missing directory for ' . $dir);
- }
- $Folder = new Folder($this->Task->path . 'BakeTestPlugin');
- $Folder->delete();
- }
- /**
- * test execute with no args, flowing into interactive,
- *
- * @return void
- */
- public function testExecuteWithNoArgs() {
- $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'));
- $path = $this->Task->path . 'TestPlugin';
- $file = $path . DS . 'Controller' . DS . 'TestPluginAppController.php';
- $this->Task->expects($this->at(3))->method('createFile')
- ->with($file, new PHPUnit_Framework_Constraint_IsAnything());
- $file = $path . DS . 'Model' . DS . 'TestPluginAppModel.php';
- $this->Task->expects($this->at(4))->method('createFile')
- ->with($file, new PHPUnit_Framework_Constraint_IsAnything());
- $this->Task->args = array();
- $this->Task->execute();
- $Folder = new Folder($path);
- $Folder->delete();
- }
- /**
- * Test Execute
- *
- * @return void
- */
- public function testExecuteWithOneArg() {
- $this->Task->expects($this->at(0))->method('in')
- ->will($this->returnValue($this->_testPath));
- $this->Task->expects($this->at(1))->method('in')
- ->will($this->returnValue('y'));
- $path = $this->Task->path . 'BakeTestPlugin';
- $file = $path . DS . 'Controller' . DS . 'BakeTestPluginAppController.php';
- $this->Task->expects($this->at(2))->method('createFile')
- ->with($file, new PHPUnit_Framework_Constraint_IsAnything());
- $path = $this->Task->path . 'BakeTestPlugin';
- $file = $path . DS . 'Model' . DS . 'BakeTestPluginAppModel.php';
- $this->Task->expects($this->at(3))->method('createFile')
- ->with($file, new PHPUnit_Framework_Constraint_IsAnything());
-
- $this->Task->args = array('BakeTestPlugin');
- $this->Task->execute();
- $Folder = new Folder($this->Task->path . 'BakeTestPlugin');
- $Folder->delete();
- }
- }
|