![]() 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/cartforge.co/app/code/Amasty/Label/Test/Unit/Plugin/Catalog/Product/ |
<?php /** * @author Amasty Team * @copyright Copyright (c) Amasty (https://www.amasty.com) * @package Product Labels for Magento 2 */ namespace Amasty\Label\Test\Unit\Plugin\Catalog\Product; use Amasty\Label\Plugin\Catalog\Product\Label; use Amasty\Label\Test\Unit\Traits; use Magento\Catalog\Model\Product; /** * Class LabelTest * * @see Label * * @SuppressWarnings(PHPMD.CouplingBetweenObjects) * phpcs:ignoreFile */ class LabelTest extends \PHPUnit\Framework\TestCase { use Traits\ObjectManagerTrait; use Traits\ReflectionTrait; /** * @covers Label::afterToHtml */ public function testAfterToHtml() { $plugin = $this->createPartialMock(Label::class, []); $product = $this->createPartialMock(Product::class, []); $registry = $this->createPartialMock(\Magento\Framework\Registry::class, []); $request = $this->getMockBuilder(\Magento\Framework\App\RequestInterface::class) ->setMethods(['getModuleName']) ->disableOriginalConstructor() ->getMockForAbstractClass(); $helper = $this->createPartialMock(\Amasty\Label\Model\LabelViewer::class, ['renderProductLabel']); $subject = $this->createPartialMock(\Magento\Catalog\Block\Product\Image::class, ['getProduct']); $subject->expects($this->any())->method('getProduct')->willReturn($product); $request->expects($this->any())->method('getModuleName')->willReturnOnConsecutiveCalls('checkout', ''); $helper->expects($this->once())->method('renderProductLabel')->willReturn('test'); $this->setProperty($plugin, 'registry', $registry, Label::class); $this->setProperty($plugin, 'request', $request, Label::class); $this->setProperty($plugin, 'helper', $helper, Label::class); $this->assertEquals('test', $plugin->afterToHtml($subject, 'test')); $this->assertEquals('testtest', $plugin->afterToHtml($subject, 'test')); } }