![]() 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/dev/tests/integration/testsuite/Magento/Swatches/Helper/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Swatches\Helper; use Magento\Catalog\Api\ProductRepositoryInterface; use Magento\Framework\ObjectManagerInterface; use Magento\TestFramework\Helper\Bootstrap; use PHPUnit\Framework\TestCase; /** * Tests for product swatch attribute helper. * * @see \Magento\Swatches\Helper\Data * @magentoDbIsolation enabled */ class DataTest extends TestCase { /** @var ObjectManagerInterface */ private $objectManager; /** @var Data */ private $helper; /** @var ProductRepositoryInterface */ private $productRepository; /** * @inheritdoc */ protected function setUp(): void { parent::setUp(); $this->objectManager = Bootstrap::getObjectManager(); $this->helper = $this->objectManager->get(Data::class); $this->productRepository = $this->objectManager->get(ProductRepositoryInterface::class); $this->productRepository->cleanCache(); } /** * @magentoDataFixture Magento/Catalog/_files/second_product_simple.php * * @return void */ public function testGetSwatchAttributesAsArray(): void { $product = $this->productRepository->get('simple2'); $this->assertEmpty($this->helper->getSwatchAttributesAsArray($product)); } /** * @magentoDataFixture Magento/Catalog/_files/product_with_disabled_image.php * * @return void */ public function testGetProductMediaGalleryWithHiddenImage(): void { $result = $this->helper->getProductMediaGallery($this->productRepository->get('simple_with_disabled_img')); $this->assertEmpty($result); } }