![]() 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/Base/Test/Unit/Model/Config/Backend/ |
<?php /** * @author Amasty Team * @copyright Copyright (c) Amasty (https://www.amasty.com) * @package Magento 2 Base Package */ namespace Amasty\Base\Test\Unit\Model\Config\Backend; use Amasty\Base\Model\Config\Backend\Unsubscribe; use Amasty\Base\Model\Source\NotificationType; use Amasty\Base\Test\Unit\Traits; /** * Class UnsubscribeTest * * @see Unsubscribe * * @SuppressWarnings(PHPMD.CouplingBetweenObjects) * phpcs:ignoreFile */ class UnsubscribeTest extends \PHPUnit\Framework\TestCase { use Traits\ObjectManagerTrait; use Traits\ReflectionTrait; /** * @covers Unsubscribe::prepareMessage */ public function testPrepareMessage() { $model = $this->createPartialMock( Unsubscribe::class, ['generateMessage', 'getOldValue'] ); $model->setValue('test_value'); $messageManager = $this->createMock(\Amasty\Base\Model\AdminNotification\Messages::class); $model->expects($this->any())->method('generateMessage')->willReturn(10); $model->expects($this->any())->method('getOldValue')->willReturnOnConsecutiveCalls('test', ''); $messageManager->expects($this->once())->method('addMessage'); $messageManager->expects($this->once())->method('clear'); $this->setProperty($model, 'messageManager', $messageManager, Unsubscribe::class); $this->invokeMethod($model, 'prepareMessage'); $this->invokeMethod($model, 'prepareMessage'); } /** * @covers Unsubscribe::generateMessage * @dataProvider generateMessageDataProvider */ public function testGenerateMessage($data, $result) { $notificationType = $this->getObjectManager()->getObject(NotificationType::class); $model = $this->getObjectManager()->getObject( Unsubscribe::class, [ 'notificationType' => $notificationType ] ); $this->assertEquals($result, $this->invokeMethod($model, 'generateMessage', [$data])); } /** * Data provider for generateMessage test * @return array */ public function generateMessageDataProvider() { return [ ['test', ''], [ NotificationType::UNSUBSCRIBE_ALL, '<img src="https://feed.amasty.net/news/unsubscribe/unsubscribe_all.svg"/>' . '<span>You have successfully unsubscribed from All Notifications.</span>' ], [ NotificationType::GENERAL, '<img src="https://feed.amasty.net/news/unsubscribe/info.svg"/>' . '<span>You have successfully unsubscribed from General Info.</span>' ], ]; } }