本文整理汇总了PHP中CMTest_TH::createResponsePage方法的典型用法代码示例。如果您正苦于以下问题:PHP CMTest_TH::createResponsePage方法的具体用法?PHP CMTest_TH::createResponsePage怎么用?PHP CMTest_TH::createResponsePage使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CMTest_TH
的用法示例。
在下文中一共展示了CMTest_TH::createResponsePage方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testProcessExceptionCatching
public function testProcessExceptionCatching()
{
CM_Config::get()->CM_Http_Response_Page->exceptionsToCatch = ['CM_Exception_InvalidParam' => ['errorPage' => 'CM_Page_Error_NotFound', 'log' => null]];
$this->getMock('CM_Layout_Abstract', null, [], 'CM_Layout_Default');
$request = CMTest_TH::createResponsePage('/example')->getRequest();
/** @var CM_Http_Response_Page|\Mocka\AbstractClassTrait $response */
$response = $this->mockObject('CM_Http_Response_Page', [$request, CMTest_TH::getServiceManager()]);
$response->mockMethod('_renderPage')->set(function (CM_Page_Abstract $page) {
if ($page instanceof CM_Page_Example) {
throw new CM_Exception_InvalidParam();
}
return '<html>Error</html>';
});
$this->assertSame('/example', $response->getRequest()->getPath());
$response->process();
$this->assertSame('/error/not-found', $response->getRequest()->getPath());
}
示例2: testProcessExceptionCatching
public function testProcessExceptionCatching()
{
CM_Config::get()->CM_Http_Response_Page->exceptionsToCatch = ['CM_Exception_InvalidParam' => ['errorPage' => 'CM_Page_Error_NotFound', 'log' => null]];
$this->getMock('CM_Layout_Abstract', null, [], 'CM_Layout_Default');
$request = CMTest_TH::createResponsePage('/example')->getRequest();
$response = $this->mockObject('CM_Http_Response_Page', [$request, CMTest_TH::getServiceManager()]);
$response->mockMethod('_renderPage')->set(function () {
static $counter = 0;
if ($counter++ === 0) {
// don't throw when rendering the error-page the request was redirected to
throw new CM_Exception_InvalidParam();
}
});
/** @var CM_Http_Response_Page $response */
$this->assertSame('/example', $response->getRequest()->getPath());
$response->process();
$this->assertSame('/error/not-found', $response->getRequest()->getPath());
}