![]() 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-sales-rule/Test/Unit/Model/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\SalesRule\Test\Unit\Model; use Magento\Framework\Event\Manager; use Magento\Framework\Model\Context; use Magento\Framework\TestFramework\Unit\Helper\ObjectManager; use Magento\SalesRule\Model\ResourceModel\Coupon; use Magento\SalesRule\Model\Rule; use PHPUnit\Framework\MockObject\MockObject; use PHPUnit\Framework\TestCase; class CouponTest extends TestCase { /** * @var Coupon|MockObject */ protected $resourceMock; /** * @var Manager|MockObject */ protected $eventManager; /** * @var \Magento\SalesRule\Model\Coupon */ protected $couponModel; protected function setUp(): void { $objectManager = new ObjectManager($this); $this->resourceMock = $this->createPartialMock( Coupon::class, ['loadPrimaryByRule', 'load', 'getIdFieldName'] ); $this->eventManager = $this->createPartialMock(Manager::class, ['dispatch']); $context = $this->createPartialMock(Context::class, ['getEventDispatcher']); $context->expects($this->once())->method('getEventDispatcher')->willReturn($this->eventManager); $this->couponModel = $objectManager->getObject( \Magento\SalesRule\Model\Coupon::class, [ 'resource' => $this->resourceMock, 'context' => $context ] ); } /** * Run test setRule method */ public function testSetRule() { /** @var Rule|MockObject $ruleMock */ $ruleMock = $this->createPartialMock(Rule::class, ['getId']); $ruleMock->expects($this->once())->method('getId'); $this->assertEquals($this->couponModel, $this->couponModel->setRule($ruleMock)); } /** * Run test loadPrimaryByRule method */ public function testLoadPrimaryByRule() { $this->resourceMock->expects($this->once())->method('loadPrimaryByRule'); $this->assertEquals($this->couponModel, $this->couponModel->loadPrimaryByRule(1)); } /** * Run test loadByCode method */ public function testLoadByCode() { $this->eventManager->expects($this->any())->method('dispatch'); $this->resourceMock->expects($this->once())->method('load'); $this->assertEquals($this->couponModel, $this->couponModel->loadByCode('code-value')); } }