![]() 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\SalesRule\Api\Data\CouponGenerationSpecInterface; use Magento\SalesRule\Api\Data\CouponGenerationSpecInterfaceFactory; use Magento\SalesRule\Model\CouponGenerator; use Magento\SalesRule\Model\Service\CouponManagementService; use PHPUnit\Framework\MockObject\MockObject; use PHPUnit\Framework\TestCase; /** * @covers \Magento\SalesRule\Model\CouponGenerator */ class CouponGeneratorTest extends TestCase { /** * Testable Object * * @var CouponGenerator */ private $couponGenerator; /** * @var CouponManagementService|MockObject */ private $couponManagementServiceMock; /** * @var CouponGenerationSpecInterfaceFactory|MockObject */ private $generationSpecFactoryMock; /** * @var CouponGenerationSpecInterface|MockObject */ private $generationSpecMock; /** * Set Up * * @return void */ protected function setUp(): void { $this->generationSpecFactoryMock = $this->getMockBuilder(CouponGenerationSpecInterfaceFactory::class) ->disableOriginalConstructor() ->setMethods(['create'])->getMock(); $this->couponManagementServiceMock = $this->createMock(CouponManagementService::class); $this->generationSpecMock = $this->getMockForAbstractClass(CouponGenerationSpecInterface::class); $this->couponGenerator = new CouponGenerator( $this->couponManagementServiceMock, $this->generationSpecFactoryMock ); } /** * Test beforeSave method * * @return void */ public function testBeforeSave() { $expected = ['test']; $this->generationSpecFactoryMock->expects($this->once())->method('create') ->willReturn($this->generationSpecMock); $this->couponManagementServiceMock->expects($this->once())->method('generate') ->with($this->generationSpecMock)->willReturn($expected); $actual = $this->couponGenerator->generateCodes([]); self::assertEquals($expected, $actual); } }