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


PHP CMTest_TH::getServiceManager方法代码示例

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


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

示例1: runBare

 public function runBare()
 {
     if (!isset(CM_Config::get()->CM_Site_Abstract->class)) {
         $siteDefault = $this->getMockSite(null, null, array('url' => 'http://www.default.dev', 'urlCdn' => 'http://cdn.default.dev', 'name' => 'Default', 'emailAddress' => 'default@default.dev'));
         CM_Config::get()->CM_Site_Abstract->class = get_class($siteDefault);
     }
     $this->setServiceManager(CMTest_TH::getServiceManager());
     parent::runBare();
 }
开发者ID:NicolasSchmutz,项目名称:cm,代码行数:9,代码来源:TestCase.php

示例2: testProcessExceptionCatching

 public function testProcessExceptionCatching()
 {
     CM_Config::get()->CM_Http_Response_RPC->catchPublicExceptions = true;
     CM_Config::get()->CM_Http_Response_RPC->exceptionsToCatch = ['CM_Exception_Nonexistent' => []];
     $request = $this->mockObject('CM_Http_Request_Abstract', ['/rpc/' . CM_Site_Abstract::factory()->getType() . '/foo']);
     $request->mockMethod('getQuery')->set(function () {
         throw new CM_Exception_Invalid('foo', null, ['messagePublic' => 'bar']);
     });
     /** @var CM_Http_Request_Abstract|\Mocka\AbstractClassTrait $request */
     $response = new CM_Http_Response_RPC($request, $this->getServiceManager());
     $response->process();
     $responseData = CM_Params::jsonDecode($response->getContent());
     $this->assertSame(['error' => ['type' => 'CM_Exception_Invalid', 'msg' => 'bar', 'isPublic' => true]], $responseData);
     $request->mockMethod('getQuery')->set(function () {
         throw new CM_Exception_Nonexistent('foo');
     });
     $response = new CM_Http_Response_RPC($request, CMTest_TH::getServiceManager());
     $response->process();
     $responseData = CM_Params::jsonDecode($response->getContent());
     $this->assertSame(['error' => ['type' => 'CM_Exception_Nonexistent', 'msg' => 'Internal server error', 'isPublic' => false]], $responseData);
 }
开发者ID:aladin1394,项目名称:CM,代码行数:21,代码来源:RPCTest.php

示例3: tearDown

 public function tearDown()
 {
     (new CM_Elasticsearch_Type_Location($this->_elasticsearchClient))->deleteIndex();
     CMTest_TH::getServiceManager()->getElasticsearch()->setEnabled(false);
     CMTest_TH::clearEnv();
 }
开发者ID:cargomedia,项目名称:cm,代码行数:6,代码来源:SearchTextTest.php

示例4: 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());
 }
开发者ID:NicolasSchmutz,项目名称:cm,代码行数:17,代码来源:PageTest.php

示例5: tearDownAfterClass

 public static function tearDownAfterClass()
 {
     self::$_type->getIndex()->delete();
     CMTest_TH::getServiceManager()->getElasticsearch()->setEnabled(false);
     parent::tearDownAfterClass();
 }
开发者ID:NicolasSchmutz,项目名称:cm,代码行数:6,代码来源:LocationTest.php

示例6: tearDown

 public function tearDown()
 {
     $this->_type->deleteIndex();
     CMTest_TH::getServiceManager()->getElasticsearch()->setEnabled(false);
     CMTest_TH::clearEnv();
 }
开发者ID:cargomedia,项目名称:cm,代码行数:6,代码来源:AbstractTest.php

示例7: testSearchWithoutSearchEnabled

 public function testSearchWithoutSearchEnabled()
 {
     CMTest_TH::getServiceManager()->getElasticsearch()->setEnabled(false);
     CM_Cache_Local::getInstance()->flush();
     $source = new CM_Paging_Location_Suggestions('', CM_Model_Location::LEVEL_CITY, CM_Model_Location::LEVEL_CITY);
     $this->assertCount(0, $source);
     $source = new CM_Paging_Location_Suggestions('el', CM_Model_Location::LEVEL_CITY, CM_Model_Location::LEVEL_CITY);
     $this->assertCount(0, $source);
 }
开发者ID:NicolasSchmutz,项目名称:cm,代码行数:9,代码来源:SuggestionsTest.php

示例8: tearDown

 public function tearDown()
 {
     CMTest_TH::getServiceManager()->getElasticsearch()->setEnabled(false);
     CMTest_TH::clearEnv();
 }
开发者ID:NicolasSchmutz,项目名称:cm,代码行数:5,代码来源:ElasticsearchTest.php

示例9: 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());
 }
开发者ID:aladin1394,项目名称:CM,代码行数:18,代码来源:PageTest.php


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