![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-new-relic-reporting/Test/Unit/Plugin/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\NewRelicReporting\Test\Unit\Plugin; use Exception; use Magento\Framework\App\Bootstrap; use Magento\Framework\App\Http; use Magento\Framework\TestFramework\Unit\Helper\ObjectManager; use Magento\NewRelicReporting\Model\Config as NewRelicConfig; use Magento\NewRelicReporting\Model\NewRelicWrapper; use Magento\NewRelicReporting\Plugin\HttpPlugin; use PHPUnit\Framework\MockObject\MockObject; use PHPUnit\Framework\TestCase; /** * Test coverage for \Magento\NewRelicReporting\Plugin\HttpPlugin */ class HttpPluginTest extends TestCase { /** * @var HttpPlugin */ private $httpPlugin; /** * @var NewRelicConfig|MockObject */ private $configMock; /** * @var NewRelicWrapper|MockObject */ private $newRelicWrapperMock; /** * @var Http|MockObject */ private $httpMock; /** * @var Bootstrap|MockObject */ private $bootstrapMock; /** * @var Exception|MockObject */ private $exceptionMock; /** * Set Up */ protected function setUp(): void { $objectManager = new ObjectManager($this); $this->configMock = $this->getMockBuilder(NewRelicConfig::class) ->disableOriginalConstructor() ->getMock(); $this->newRelicWrapperMock = $this->createMock(NewRelicWrapper::class); $this->httpMock = $this->createMock(Http::class); $this->bootstrapMock = $this->createMock(Bootstrap::class); $this->exceptionMock = $this->createMock(Exception::class); $this->httpPlugin = $objectManager->getObject( HttpPlugin::class, [ 'config' => $this->configMock, 'newRelicWrapper' => $this->newRelicWrapperMock, ] ); } /** * Tests the thrown exception is reported to New Relic */ public function testSuccessfullyReportingError(): void { $this->configMock->expects($this->once())->method('isNewRelicEnabled')->willReturn(true); $this->newRelicWrapperMock->expects($this->once())->method('reportError'); $this->httpPlugin->beforeCatchException($this->httpMock, $this->bootstrapMock, $this->exceptionMock); } /** * Tests the thrown exception is not reported to New Relic */ public function testNotReportingException(): void { $this->configMock->expects($this->once())->method('isNewRelicEnabled')->willReturn(false); $this->newRelicWrapperMock->expects($this->never())->method('reportError'); $this->httpPlugin->beforeCatchException($this->httpMock, $this->bootstrapMock, $this->exceptionMock); } }