mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 19:38:26 +00:00
41db1485aa
Preventing ConsoleOutput and ConsoleInput constructors from being run as it causes too many files open exceptions.
112 lines
3.6 KiB
PHP
112 lines
3.6 KiB
PHP
<?php
|
|
/**
|
|
* BakeShell Test Case
|
|
*
|
|
*
|
|
* PHP 5
|
|
*
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
|
* Copyright 2005-2009, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
|
*
|
|
* Licensed under The MIT License
|
|
* Redistributions of files must retain the above copyright notice.
|
|
*
|
|
* @copyright Copyright 2005-2009, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
|
* @package cake
|
|
* @subpackage cake.tests.cases.console.libs.tasks
|
|
* @since CakePHP(tm) v 1.3
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
|
*/
|
|
App::import('Shell', 'Shell', false);
|
|
App::import('Core', 'Controller');
|
|
|
|
require_once CAKE . 'console' . DS . 'shell_dispatcher.php';
|
|
require_once CAKE . 'console' . DS . 'libs' . DS . 'bake.php';
|
|
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'model.php';
|
|
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'controller.php';
|
|
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'db_config.php';
|
|
|
|
if (!class_exists('UsersController')) {
|
|
class UsersController extends Controller {
|
|
public $name = 'Users';
|
|
}
|
|
}
|
|
|
|
class BakeShellTest extends CakeTestCase {
|
|
|
|
/**
|
|
* fixtures
|
|
*
|
|
* @var array
|
|
* @access public
|
|
*/
|
|
public $fixtures = array('core.user');
|
|
|
|
/**
|
|
* setup test
|
|
*
|
|
* @return void
|
|
*/
|
|
public function setUp() {
|
|
parent::setUp();
|
|
$out = $this->getMock('ConsoleOutput', array(), array(), '', false);
|
|
$in = $this->getMock('ConsoleInput', array(), array(), '', false);
|
|
|
|
$this->Dispatcher = $this->getMock(
|
|
'ShellDispatcher',
|
|
array('_stop', '_initEnvironment')
|
|
);
|
|
$this->Shell = $this->getMock(
|
|
'BakeShell',
|
|
array('in', 'out', 'hr', 'err', 'createFile', '_stop', '_checkUnitTest'),
|
|
array(&$this->Dispatcher, $out, $out, $in)
|
|
);
|
|
$this->Shell->Dispatch->shellPaths = App::path('shells');
|
|
}
|
|
|
|
/**
|
|
* teardown method
|
|
*
|
|
* @return void
|
|
*/
|
|
public function tearDown() {
|
|
parent::tearDown();
|
|
unset($this->Dispatch, $this->Shell);
|
|
}
|
|
|
|
/**
|
|
* test bake all
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testAllWithModelName() {
|
|
App::import('Model', 'User');
|
|
$userExists = class_exists('User');
|
|
if ($this->skipIf($userExists, 'User class exists, cannot test `bake all [param]`. %s')) {
|
|
return;
|
|
}
|
|
$this->Shell->Model = $this->getMock('ModelTask', array(), array(&$this->Dispatcher));
|
|
$this->Shell->Controller = $this->getMock('ControllerTask', array(), array(&$this->Dispatcher));
|
|
$this->Shell->View = $this->getMock('ModelTask', array(), array(&$this->Dispatcher));
|
|
$this->Shell->DbConfig = $this->getMock('DbConfigTask', array(), array(&$this->Dispatcher));
|
|
|
|
$this->Shell->DbConfig->expects($this->once())->method('getConfig')->will($this->returnValue('test'));
|
|
|
|
$this->Shell->Model->expects($this->never())->method('getName');
|
|
$this->Shell->Model->expects($this->once())->method('bake')->will($this->returnValue(true));
|
|
|
|
$this->Shell->Controller->expects($this->once())->method('bake')->will($this->returnValue(true));
|
|
$this->Shell->View->expects($this->once())->method('execute');
|
|
|
|
$this->Shell->expects($this->at(1))->method('out')->with('Bake All');
|
|
$this->Shell->expects($this->at(3))->method('out')->with('User Model was baked.');
|
|
$this->Shell->expects($this->at(5))->method('out')->with('User Controller was baked.');
|
|
$this->Shell->expects($this->at(7))->method('out')->with('User Views were baked.');
|
|
$this->Shell->expects($this->at(8))->method('out')->with('Bake All complete');
|
|
|
|
$this->Shell->params = array();
|
|
$this->Shell->args = array('User');
|
|
$this->Shell->all();
|
|
}
|
|
}
|