mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-19 19:16:16 +00:00
109 lines
3.3 KiB
PHP
109 lines
3.3 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* BakeShell Test Case
|
||
|
*
|
||
|
*
|
||
|
* PHP versions 4 and 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
|
||
|
* @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('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();
|
||
|
}
|
||
|
|
||
|
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';
|
||
|
|
||
|
Mock::generatePartial(
|
||
|
'ShellDispatcher', 'BakeShellMockShellDispatcher',
|
||
|
array('getInput', 'stdout', 'stderr', '_stop', '_initEnvironment')
|
||
|
);
|
||
|
Mock::generatePartial(
|
||
|
'BakeShell', 'MockBakeShell',
|
||
|
array('in', 'hr', 'out', 'err', 'createFile', '_stop', '_checkUnitTest')
|
||
|
);
|
||
|
|
||
|
Mock::generate('DbConfigTask', 'BakeShellMockDbConfigTask');
|
||
|
Mock::generate('ModelTask', 'BakeShellMockModelTask');
|
||
|
Mock::generate('ControllerTask', 'BakeShellMockControllerTask');
|
||
|
|
||
|
if (!class_exists('ArticlesController')) {
|
||
|
class ArticlesController extends Controller {
|
||
|
var $name = 'Articles';
|
||
|
}
|
||
|
}
|
||
|
|
||
|
class BakeShellTestCase extends CakeTestCase {
|
||
|
/**
|
||
|
* fixtures
|
||
|
*
|
||
|
* @var array
|
||
|
**/
|
||
|
var $fixtures = array('core.article');
|
||
|
/**
|
||
|
* start test
|
||
|
*
|
||
|
* @return void
|
||
|
**/
|
||
|
function startTest() {
|
||
|
$this->Dispatch =& new BakeShellMockShellDispatcher();
|
||
|
$this->Shell =& new MockBakeShell();
|
||
|
$this->Shell->Dispatch =& $this->Dispatcher;
|
||
|
$this->Shell->Dispatch->shellPaths = App::path('shells');
|
||
|
}
|
||
|
/**
|
||
|
* test bake all
|
||
|
*
|
||
|
* @return void
|
||
|
**/
|
||
|
function testAllWithModelName() {
|
||
|
$this->Shell->Model =& new BakeShellMockModelTask();
|
||
|
$this->Shell->Controller =& new BakeShellMockControllerTask();
|
||
|
$this->Shell->View =& new BakeShellMockModelTask();
|
||
|
$this->Shell->DbConfig =& new BakeShellMockDbConfigTask();
|
||
|
|
||
|
$this->Shell->DbConfig->expectOnce('getConfig');
|
||
|
$this->Shell->DbConfig->setReturnValue('getConfig', 'test_suite');
|
||
|
|
||
|
$this->Shell->Model->setReturnValue('bake', true);
|
||
|
$this->Shell->Model->expectNever('getName');
|
||
|
$this->Shell->Model->expectOnce('bake');
|
||
|
|
||
|
$this->Shell->Controller->expectOnce('bake');
|
||
|
$this->Shell->Controller->setReturnValue('bake', true);
|
||
|
|
||
|
$this->Shell->View->expectOnce('execute');
|
||
|
|
||
|
$this->Shell->expectAt(0, 'out', array('Bake All'));
|
||
|
$this->Shell->expectAt(1, 'out', array('Article Model was baked.'));
|
||
|
$this->Shell->expectAt(2, 'out', array('Article Controller was baked.'));
|
||
|
$this->Shell->expectAt(3, 'out', array('Article Views were baked.'));
|
||
|
$this->Shell->expectAt(4, 'out', array('Bake All complete'));
|
||
|
|
||
|
$this->Shell->params = array();
|
||
|
$this->Shell->args = array('Article', 'exitvalue');
|
||
|
$this->Shell->all();
|
||
|
}
|
||
|
}
|