2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
|
|
|
/* SVN FILE: $Id$ */
|
|
|
|
/**
|
|
|
|
* Short description for file.
|
|
|
|
*
|
|
|
|
* Long description for file
|
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
|
|
|
* CakePHP(tm) Tests <https://trac.cakephp.org/wiki/Developement/TestSuite>
|
|
|
|
* Copyright 2005-2008, Cake Software Foundation, Inc.
|
|
|
|
* 1785 E. Sahara Avenue, Suite 490-204
|
|
|
|
* Las Vegas, Nevada 89104
|
|
|
|
*
|
|
|
|
* Licensed under The Open Group Test Suite License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
|
|
|
* @filesource
|
|
|
|
* @copyright Copyright 2005-2008, Cake Software Foundation, Inc.
|
|
|
|
* @link https://trac.cakephp.org/wiki/Developement/TestSuite CakePHP(tm) Tests
|
|
|
|
* @package cake.tests
|
|
|
|
* @subpackage cake.tests.cases.libs.controller
|
|
|
|
* @since CakePHP(tm) v 1.2.0.5436
|
|
|
|
* @version $Revision$
|
|
|
|
* @modifiedby $LastChangedBy$
|
|
|
|
* @lastmodified $Date$
|
|
|
|
* @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License
|
|
|
|
*/
|
|
|
|
uses('controller' . DS . 'scaffold');
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* ScaffoldMockController class
|
|
|
|
*
|
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.tests.cases.libs.controller
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
class ScaffoldMockController extends Controller {
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* name property
|
|
|
|
*
|
|
|
|
* @var string 'ScaffoldMock'
|
|
|
|
* @access public
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
var $name = 'ScaffoldMock';
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* scaffold property
|
|
|
|
*
|
|
|
|
* @var mixed
|
|
|
|
* @access public
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
var $scaffold;
|
|
|
|
}
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* ScaffoldMock class
|
|
|
|
*
|
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.tests.cases.libs.controller
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
class ScaffoldMock extends CakeTestModel {
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* useTable property
|
|
|
|
*
|
|
|
|
* @var string 'posts'
|
|
|
|
* @access public
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
var $useTable = 'posts';
|
|
|
|
|
|
|
|
}
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* TestScaffoldView class
|
|
|
|
*
|
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.tests.cases.libs.controller
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
class TestScaffoldView extends ScaffoldView {
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testGetFilename method
|
|
|
|
*
|
|
|
|
* @param mixed $action
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testGetFilename($action) {
|
|
|
|
return $this->_getViewFileName($action);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Short description for class.
|
|
|
|
*
|
|
|
|
* @package cake.tests
|
|
|
|
* @subpackage cake.tests.cases.libs.controller
|
|
|
|
*/
|
|
|
|
class ScaffoldViewTest extends CakeTestCase {
|
2008-06-05 15:20:45 +00:00
|
|
|
/**
|
|
|
|
* fixtures property
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
* @access public
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
var $fixtures = array('core.post');
|
2008-06-05 15:20:45 +00:00
|
|
|
/**
|
|
|
|
* setUp method
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function setUp() {
|
2008-06-09 02:56:36 +00:00
|
|
|
$this->Controller =& new ScaffoldMockController();
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2008-06-05 15:20:45 +00:00
|
|
|
/**
|
|
|
|
* testGetViewFilename method
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testGetViewFilename() {
|
|
|
|
$this->Controller->action = 'index';
|
|
|
|
$ScaffoldView =& new TestScaffoldView($this->Controller);
|
|
|
|
$result = $ScaffoldView->testGetFilename('index');
|
|
|
|
$expected = TEST_CAKE_CORE_INCLUDE_PATH . 'libs' . DS . 'view' . DS . 'scaffolds' . DS . 'index.ctp';
|
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
|
|
|
|
$result = $ScaffoldView->testGetFilename('error');
|
|
|
|
$expected = 'cake' . DS . 'libs' . DS . 'view' . DS . 'errors' . DS . 'scaffold_error.ctp';
|
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
}
|
2008-06-09 02:56:36 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* test default index scaffold generation
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
**/
|
|
|
|
function testIndexScaffold() {
|
|
|
|
$this->Controller->action = 'index';
|
|
|
|
$this->Controller->here = '/scaffold_mock';
|
|
|
|
$this->Controller->webroot = '/';
|
|
|
|
$params = array(
|
|
|
|
'plugin' => null,
|
|
|
|
'pass' => array(),
|
|
|
|
'form' => array(),
|
|
|
|
'named' => array(),
|
|
|
|
'url' => array('url' =>'scaffold_mock'),
|
|
|
|
'controller' => 'scaffold_mock',
|
|
|
|
'action' => 'index',
|
|
|
|
);
|
|
|
|
//set router.
|
|
|
|
Router::setRequestInfo(array($params, array('base' => '/', 'here' => '/scaffold_mock', 'webroot' => '/')));
|
|
|
|
$this->Controller->params = $params;
|
|
|
|
$this->Controller->controller = 'scaffold_mock';
|
|
|
|
$this->Controller->base = '/';
|
|
|
|
$this->Controller->constructClasses();
|
|
|
|
ob_start();
|
|
|
|
new Scaffold($this->Controller, $params);
|
|
|
|
$result = ob_get_clean();
|
|
|
|
|
|
|
|
$this->assertPattern('/<h2>ScaffoldMock<\/h2>/', $result);
|
|
|
|
$this->assertPattern('/<table cellpadding="0" cellspacing="0">/', $result);
|
|
|
|
//TODO: add testing for table generation
|
|
|
|
$this->assertPattern('/<li><a href="\/scaffold_mock\/add\/">New ScaffoldMock<\/a><\/li>/', $result);
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* test default view scaffold generation
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
**/
|
|
|
|
function testViewScaffold() {
|
|
|
|
$this->Controller->action = 'view';
|
|
|
|
$this->Controller->here = '/scaffold_mock';
|
|
|
|
$this->Controller->webroot = '/';
|
|
|
|
$params = array(
|
|
|
|
'plugin' => null,
|
|
|
|
'pass' => array(1),
|
|
|
|
'form' => array(),
|
|
|
|
'named' => array(),
|
|
|
|
'url' => array('url' =>'scaffold_mock'),
|
|
|
|
'controller' => 'scaffold_mock',
|
|
|
|
'action' => 'view',
|
|
|
|
);
|
|
|
|
//set router.
|
|
|
|
Router::reload();
|
|
|
|
Router::setRequestInfo(array($params, array('base' => '/', 'here' => '/scaffold_mock', 'webroot' => '/')));
|
|
|
|
$this->Controller->params = $params;
|
|
|
|
$this->Controller->controller = 'scaffold_mock';
|
|
|
|
$this->Controller->base = '/';
|
|
|
|
$this->Controller->constructClasses();
|
|
|
|
ob_start();
|
|
|
|
new Scaffold($this->Controller, $params);
|
|
|
|
$result = ob_get_clean();
|
|
|
|
|
|
|
|
$this->assertPattern('/<h2>View ScaffoldMock<\/h2>/', $result);
|
|
|
|
$this->assertPattern('/<dl>/', $result);
|
|
|
|
//TODO: add specific tests for fields.
|
|
|
|
$this->assertPattern('/<li><a href="\/scaffold_mock\/edit\/1">Edit ScaffoldMock<\/a>\s<\/li>/', $result);
|
|
|
|
$this->assertPattern('/<li><a href="\/scaffold_mock\/delete\/1"[^>]*>Delete ScaffoldMock<\/a>\s*<\/li>/', $result);
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* test default view scaffold generation
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
**/
|
|
|
|
function testEditScaffold() {
|
|
|
|
$this->Controller->action = 'edit';
|
|
|
|
$this->Controller->here = '/scaffold_mock';
|
|
|
|
$this->Controller->webroot = '/';
|
|
|
|
$params = array(
|
|
|
|
'plugin' => null,
|
|
|
|
'pass' => array(1),
|
|
|
|
'form' => array(),
|
|
|
|
'named' => array(),
|
|
|
|
'url' => array('url' =>'scaffold_mock'),
|
|
|
|
'controller' => 'scaffold_mock',
|
|
|
|
'action' => 'edit',
|
|
|
|
);
|
|
|
|
//set router.
|
|
|
|
Router::reload();
|
|
|
|
Router::setRequestInfo(array($params, array('base' => '/', 'here' => '/scaffold_mock', 'webroot' => '/')));
|
|
|
|
$this->Controller->params = $params;
|
|
|
|
$this->Controller->controller = 'scaffold_mock';
|
|
|
|
$this->Controller->base = '/';
|
|
|
|
$this->Controller->constructClasses();
|
|
|
|
ob_start();
|
|
|
|
new Scaffold($this->Controller, $params);
|
|
|
|
$result = ob_get_clean();
|
|
|
|
|
|
|
|
$this->assertPattern('/<form id="ScaffoldMockEditForm" method="post" action="\/scaffold_mock\/edit\/1">/', $result);
|
|
|
|
$this->assertPattern('/<legend>Edit Scaffold Mock<\/legend>/', $result);
|
|
|
|
//TODO: add specific tests for fields.
|
|
|
|
$this->assertPattern('/<li><a href="\/scaffold_mock\/delete\/1"[^>]*>Delete<\/a>\s*<\/li>/', $result);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test Admin Index Scaffolding.
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
**/
|
|
|
|
function testAdminIndexScaffold() {
|
|
|
|
$_backAdmin = Configure::read('Routing.admin');
|
|
|
|
|
|
|
|
Configure::write('Routing.admin', 'admin');
|
|
|
|
$params = array(
|
|
|
|
'plugin' => null,
|
|
|
|
'pass' => array(),
|
|
|
|
'form' => array(),
|
|
|
|
'named' => array(),
|
|
|
|
'prefix' => 'admin',
|
|
|
|
'url' => array('url' =>'admin/scaffold_mock'),
|
|
|
|
'controller' => 'scaffold_mock',
|
|
|
|
'action' => 'admin_index',
|
|
|
|
'admin' => 1,
|
|
|
|
);
|
|
|
|
//reset, and set router.
|
|
|
|
Router::reload();
|
|
|
|
Router::setRequestInfo(array($params, array('base' => '/', 'here' => '/admin/scaffold_mock', 'webroot' => '/')));
|
|
|
|
$this->Controller->params = $params;
|
|
|
|
$this->Controller->controller = 'scaffold_mock';
|
|
|
|
$this->Controller->base = '/';
|
|
|
|
$this->Controller->action = 'admin_index';
|
|
|
|
$this->Controller->here = '/tests/admin/scaffold_mock';
|
|
|
|
$this->Controller->webroot = '/';
|
|
|
|
$this->Controller->scaffold = 'admin';
|
|
|
|
$this->Controller->constructClasses();
|
|
|
|
|
|
|
|
ob_start();
|
|
|
|
$Scaffold = new Scaffold($this->Controller, $params);
|
|
|
|
$result = ob_get_clean();
|
|
|
|
$this->assertPattern('/<h2>ScaffoldMock<\/h2>/', $result);
|
|
|
|
$this->assertPattern('/<table cellpadding="0" cellspacing="0">/', $result);
|
|
|
|
//TODO: add testing for table generation
|
|
|
|
$this->assertPattern('/<li><a href="\/admin\/scaffold_mock\/add\/">New ScaffoldMock<\/a><\/li>/', $result);
|
|
|
|
|
|
|
|
Configure::write('Routing.admin', $_backAdmin);
|
|
|
|
}
|
2008-06-05 15:20:45 +00:00
|
|
|
/**
|
|
|
|
* tearDown method
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function tearDown() {
|
|
|
|
unset($this->Controller);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-06-02 19:22:55 +00:00
|
|
|
?>
|