![]() 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-integration/Test/Unit/Helper/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Integration\Test\Unit\Helper; use Magento\Framework\TestFramework\Unit\Helper\ObjectManager; use Magento\Integration\Helper\Data; use Magento\Integration\Model\Integration; use PHPUnit\Framework\TestCase; class DataTest extends TestCase { /** @var Data */ protected $dataHelper; protected function setUp(): void { $helper = new ObjectManager($this); $this->dataHelper = $helper->getObject(Data::class); } public function testMapResources() { $testData = require __DIR__ . '/_files/acl.php'; $expectedData = require __DIR__ . '/_files/acl-map.php'; $this->assertEquals($expectedData, $this->dataHelper->mapResources($testData)); } /** * @dataProvider integrationDataProvider */ public function testIsConfigType($integrationsData, $expectedResult) { $this->assertEquals($expectedResult, $this->dataHelper->isConfigType($integrationsData)); } /** * @return array */ public function integrationDataProvider() { return [ [ [ 'id' => 1, Integration::NAME => 'TestIntegration1', Integration::EMAIL => '[email protected]', Integration::ENDPOINT => 'http://endpoint.com', Integration::SETUP_TYPE => 1, ], true, ], [ [ 'id' => 1, Integration::NAME => 'TestIntegration1', Integration::EMAIL => '[email protected]', Integration::ENDPOINT => 'http://endpoint.com', Integration::SETUP_TYPE => 0, ], false, ] ]; } }