![]() 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/framework/Webapi/Test/Unit/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Framework\Webapi\Test\Unit; use Magento\Framework\TestFramework\Unit\Helper\ObjectManager; use Magento\Framework\Webapi\Request; use Magento\Webapi\Model\Soap\Server; use PHPUnit\Framework\TestCase; class RequestTest extends TestCase { /** @var Request */ protected $request; protected function setUp(): void { /** Initialize SUT. */ $objectManager = new ObjectManager($this); $this->request = $objectManager->getObject(Request::class); } protected function tearDown(): void { unset($this->request); parent::tearDown(); } /** * @dataProvider providerTestGetRequestedServicesSuccess * @param $requestParamServices * @param $expectedResult */ public function testGetRequestedServicesSuccess($requestParamServices, $expectedResult) { $requestParams = [ Server::REQUEST_PARAM_WSDL => true, Server::REQUEST_PARAM_SERVICES => $requestParamServices, ]; $this->request->setParams($requestParams); $this->assertEquals($expectedResult, $this->request->getRequestedServices()); } /** * @return array */ public function providerTestGetRequestedServicesSuccess() { $testModuleA = 'testModule1AllSoapAndRestV1'; $testModuleB = 'testModule1AllSoapAndRestV2'; $testModuleC = 'testModule2AllSoapNoRestV1'; return [ ["{$testModuleA},{$testModuleB}", [$testModuleA, $testModuleB]], ["{$testModuleA},{$testModuleC}", [$testModuleA, $testModuleC]], ["{$testModuleA}", [$testModuleA]] ]; } }