當前位置: 首頁>>代碼示例>>PHP>>正文


PHP GetResponseForExceptionEvent::expects方法代碼示例

本文整理匯總了PHP中Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent::expects方法的典型用法代碼示例。如果您正苦於以下問題:PHP GetResponseForExceptionEvent::expects方法的具體用法?PHP GetResponseForExceptionEvent::expects怎麽用?PHP GetResponseForExceptionEvent::expects使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent的用法示例。


在下文中一共展示了GetResponseForExceptionEvent::expects方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: testOnKernelException

 public function testOnKernelException()
 {
     $response = $this->getMock(Response::class);
     $exception = $this->getNoConstructorMock(NotModifiedException::class);
     $exception->expects($this->once())->method('getResponse')->will($this->returnValue($response));
     $this->event->expects($this->once())->method('getException')->will($this->returnValue($exception));
     $this->event->expects($this->once())->method('setResponse')->with($response);
     $this->listener->onKernelException($this->event);
 }
開發者ID:anime-db,項目名稱:cache-time-keeper-bundle,代碼行數:9,代碼來源:ExceptionListenerTest.php

示例2: setUp

 /**
  * Set up mocking
  */
 protected function setUp()
 {
     $this->exception = new \Exception("Mary had a little lamb");
     $reflection = new \ReflectionClass($this->exception);
     $codeProperty = $reflection->getProperty('code');
     $this->codeProperty = $codeProperty;
     $this->codeProperty->setAccessible(true);
     $this->event = $this->getMockBuilder('Symfony\\Component\\HttpKernel\\Event\\GetResponseForExceptionEvent')->disableOriginalConstructor()->setMethods(['getException'])->getMock();
     $this->event->expects($this->any())->method('getException')->willReturn($this->exception);
     /** @var LoggerInterface $logger */
     $logger = $this->getMockForAbstractClass('Psr\\Log\\LoggerInterface');
     $this->exceptionListener = new ExceptionListener($logger);
 }
開發者ID:krizon,項目名稱:swagger-bundle,代碼行數:16,代碼來源:ExceptionListenerTest.php

示例3: testOnKernelException

 /**
  * Test RqlOperatorNotAllowedListener::onKernelException()
  *
  * @return void
  */
 public function testOnKernelException()
 {
     $serializedContent = 'serialized content';
     $response = $this->getMockBuilder(Response::class)->disableOriginalConstructor()->getMock();
     $response->expects($this->once())->method('setStatusCode')->with(Response::HTTP_BAD_REQUEST)->willReturnSelf();
     $response->expects($this->once())->method('setContent')->with($serializedContent)->willReturnSelf();
     $exception = new RqlOperatorNotAllowedException('limit');
     $exception->setResponse($response);
     $this->serializer->expects($this->once())->method('serialize')->with(['message' => $exception->getMessage()], 'json', $this->context)->willReturn($serializedContent);
     $this->event->expects($this->once())->method('getException')->willReturn($exception);
     $this->event->expects($this->once())->method('setResponse');
     $listener = new RqlOperatorNotAllowedListener($this->serializer, $this->context);
     $listener->onKernelException($this->event);
 }
開發者ID:alebon,項目名稱:graviton,代碼行數:19,代碼來源:RqlOperatorNotAllowedListenerTest.php

示例4: setUp

 /**
  * Set up mocking
  */
 protected function setUp()
 {
     $this->event = $this->getMockBuilder(GetResponseForExceptionEvent::class)->disableOriginalConstructor()->setMethods(['getException', 'getRequest'])->getMock();
     $this->exception = new \Exception("Mary had a little lamb");
     $reflection = new \ReflectionClass($this->exception);
     $codeProperty = $reflection->getProperty('code');
     $this->codeProperty = $codeProperty;
     $this->codeProperty->setAccessible(true);
     $attributes = [RequestMeta::ATTRIBUTE_URI => '/foo/bar'];
     $this->request = new Request($query = [], $request = [], $attributes);
     $this->event->expects($this->any())->method('getException')->willReturn($this->exception);
     $this->event->expects($this->any())->method('getRequest')->willReturn($this->request);
     /** @var ErrorResponseFactory $errorResponseFactory */
     $errorResponseFactory = $this->getMockBuilder(ErrorResponseFactory::class)->disableOriginalConstructor()->getMock();
     /** @var LogRefBuilder $logRefBuilder */
     $lofRefBuilderMock = $logRefBuilder = $this->getMockForAbstractClass(LogRefBuilder::class);
     $lofRefBuilderMock->expects($this->any())->method('create')->willReturn((string) rand());
     $this->logger = $this->getMockForAbstractClass(LoggerInterface::class);
     $this->exceptionListener = new ExceptionListener($errorResponseFactory, $logRefBuilder, $this->logger);
 }
開發者ID:kleijnweb,項目名稱:swagger-bundle,代碼行數:23,代碼來源:ExceptionListenerTest.php


注:本文中的Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent::expects方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。