当前位置: 首页>>代码示例>>PHP>>正文


PHP TestController::render方法代码示例

本文整理汇总了PHP中TestController::render方法的典型用法代码示例。如果您正苦于以下问题:PHP TestController::render方法的具体用法?PHP TestController::render怎么用?PHP TestController::render使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在TestController的用法示例。


在下文中一共展示了TestController::render方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: testRender

 /**
  * testRender method
  *
  * @return void
  */
 public function testRender()
 {
     App::build(array('View' => array(CAKE . 'Test' . DS . 'test_app' . DS . 'View' . DS)), App::RESET);
     ClassRegistry::flush();
     $request = new CakeRequest('controller_posts/index');
     $request->params['action'] = 'index';
     $Controller = new Controller($request, new CakeResponse());
     $Controller->viewPath = 'Posts';
     $result = $Controller->render('index');
     $this->assertRegExp('/posts index/', (string) $result);
     $Controller->view = 'index';
     $result = $Controller->render();
     $this->assertRegExp('/posts index/', (string) $result);
     $result = $Controller->render('/Elements/test_element');
     $this->assertRegExp('/this is the test element/', (string) $result);
     $Controller->view = null;
     $Controller = new TestController($request, new CakeResponse());
     $Controller->uses = array('ControllerAlias', 'TestPlugin.ControllerComment', 'ControllerPost');
     $Controller->helpers = array('Html');
     $Controller->constructClasses();
     $Controller->ControllerComment->validationErrors = array('title' => 'tooShort');
     $expected = $Controller->ControllerComment->validationErrors;
     $Controller->viewPath = 'Posts';
     $result = $Controller->render('index');
     $View = $Controller->View;
     $this->assertTrue(isset($View->validationErrors['ControllerComment']));
     $this->assertEquals($expected, $View->validationErrors['ControllerComment']);
     $expectedModels = array('ControllerAlias' => array('plugin' => null, 'className' => 'ControllerAlias'), 'ControllerComment' => array('plugin' => 'TestPlugin', 'className' => 'ControllerComment'), 'ControllerPost' => array('plugin' => null, 'className' => 'ControllerPost'));
     $this->assertEquals($expectedModels, $Controller->request->params['models']);
     ClassRegistry::flush();
     App::build();
 }
开发者ID:abhinand4858,项目名称:ProgrammedV,代码行数:37,代码来源:ControllerTest.php

示例2: testRender

 /**
  * testRender method
  *
  * @access public
  * @return void
  */
 function testRender()
 {
     Configure::write('viewPaths', array(TEST_CAKE_CORE_INCLUDE_PATH . 'tests' . DS . 'test_app' . DS . 'views' . DS, TEST_CAKE_CORE_INCLUDE_PATH . 'libs' . DS . 'view' . DS));
     $Controller =& new Controller();
     $Controller->viewPath = 'posts';
     $result = $Controller->render('index');
     $this->assertPattern('/posts index/', $result);
     $result = $Controller->render('/elements/test_element');
     $this->assertPattern('/this is the test element/', $result);
     $Controller = new TestController();
     $Controller->constructClasses();
     $Controller->ControllerComment->validationErrors = array('title' => 'tooShort');
     $expected = $Controller->ControllerComment->validationErrors;
     ClassRegistry::flush();
     $Controller->viewPath = 'posts';
     $result = $Controller->render('index');
     $View = ClassRegistry::getObject('view');
     $this->assertTrue(isset($View->validationErrors['ControllerComment']));
     $this->assertEqual($expected, $View->validationErrors['ControllerComment']);
     $Controller->ControllerComment->validationErrors = array();
     ClassRegistry::flush();
 }
开发者ID:acerato,项目名称:cntcetp,代码行数:28,代码来源:controller.test.php

示例3: testRender

 /**
  * testRender method
  *
  * @access public
  * @return void
  */
 function testRender()
 {
     App::build(array('views' => array(TEST_CAKE_CORE_INCLUDE_PATH . 'tests' . DS . 'test_app' . DS . 'views' . DS)), true);
     $request = new CakeRequest('controller_posts/index');
     $request->params['action'] = 'index';
     $Controller = new Controller($request, $this->getMock('CakeResponse'));
     $Controller->viewPath = 'posts';
     $result = $Controller->render('index');
     $this->assertPattern('/posts index/', $result);
     $Controller->view = 'index';
     $result = $Controller->render();
     $this->assertPattern('/posts index/', $result);
     $result = $Controller->render('/elements/test_element');
     $this->assertPattern('/this is the test element/', $result);
     $Controller->view = null;
     $Controller = new TestController($request);
     $Controller->helpers = array('Html');
     $Controller->constructClasses();
     $Controller->ControllerComment->validationErrors = array('title' => 'tooShort');
     $expected = $Controller->ControllerComment->validationErrors;
     ClassRegistry::flush();
     $Controller->viewPath = 'posts';
     $result = $Controller->render('index');
     $View = $Controller->View;
     $this->assertTrue(isset($View->validationErrors['ControllerComment']));
     $this->assertEqual($expected, $View->validationErrors['ControllerComment']);
     $Controller->ControllerComment->validationErrors = array();
     ClassRegistry::flush();
     App::build();
 }
开发者ID:robotarmy,项目名称:Phog,代码行数:36,代码来源:controller.test.php


注:本文中的TestController::render方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。