![]() 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/Test/Unit/Model/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Sales\Test\Unit\Model; use Magento\Eav\Model\Entity\Type; use Magento\Framework\Api\SearchCriteria; use Magento\Framework\Api\SearchCriteria\CollectionProcessorInterface; use Magento\Framework\TestFramework\Unit\Helper\ObjectManager; use Magento\Sales\Api\Data\InvoiceSearchResultInterfaceFactory; use Magento\Sales\Model\Order\Invoice; use Magento\Sales\Model\Order\InvoiceRepository; use Magento\Sales\Model\ResourceModel\Metadata; use Magento\Sales\Model\ResourceModel\Order\Invoice\Collection; use PHPUnit\Framework\MockObject\MockObject; use PHPUnit\Framework\TestCase; class InvoiceRepositoryTest extends TestCase { /** * @var InvoiceRepository */ protected $invoice; /** * @var MockObject */ protected $invoiceMetadata; /** * @var MockObject */ protected $searchResultFactory; /** * @var CollectionProcessorInterface|MockObject */ private $collectionProcessorMock; /** * @var Type|MockObject */ private $type; /** * @inheritDoc */ protected function setUp(): void { $objectManager = new ObjectManager($this); $this->invoiceMetadata = $this->createMock(Metadata::class); $this->searchResultFactory = $this->getMockBuilder( InvoiceSearchResultInterfaceFactory::class ) ->disableOriginalConstructor() ->setMethods(['create']) ->getMock(); $this->collectionProcessorMock = $this->getMockBuilder(CollectionProcessorInterface::class) ->getMock(); $this->invoice = $objectManager->getObject( InvoiceRepository::class, [ 'invoiceMetadata' => $this->invoiceMetadata, 'searchResultFactory' => $this->searchResultFactory, 'collectionProcessor' => $this->collectionProcessorMock, ] ); $this->type = $this->createPartialMock(Type::class, ['fetchNewIncrementId']); } public function testGet() { $id = 1; $entity = $this->getMockBuilder(Invoice::class) ->disableOriginalConstructor() ->getMock(); $entity->expects($this->once()) ->method('load') ->with($id) ->willReturn($entity); $entity->expects($this->once()) ->method('getEntityId') ->willReturn($id); $this->invoiceMetadata->expects($this->once()) ->method('getNewInstance') ->willReturn($entity); $this->assertEquals($entity, $this->invoice->get($id)); } public function testGetNoId() { $this->expectException('Magento\Framework\Exception\InputException'); $this->expectExceptionMessage('An ID is needed. Set the ID and try again.'); $this->invoice->get(null); } public function testGetEntityNoId() { $this->expectException('Magento\Framework\Exception\NoSuchEntityException'); $this->expectExceptionMessage('The entity that was requested doesn\'t exist. Verify the entity and try again.'); $id = 1; $entity = $this->getMockBuilder(Invoice::class) ->disableOriginalConstructor() ->getMock(); $entity->expects($this->once()) ->method('load') ->with($id) ->willReturn($entity); $entity->expects($this->once()) ->method('getEntityId') ->willReturn(null); $this->invoiceMetadata->expects($this->once()) ->method('getNewInstance') ->willReturn($entity); $this->assertNull($entity, $this->invoice->get($id)); } public function testCreate() { $entity = $this->getMockBuilder(Invoice::class) ->disableOriginalConstructor() ->getMock(); $this->invoiceMetadata->expects($this->once()) ->method('getNewInstance') ->willReturn($entity); $this->assertEquals($entity, $this->invoice->create()); } public function testGetList() { $searchCriteria = $this->getMockBuilder(SearchCriteria::class) ->disableOriginalConstructor() ->getMock(); $collection = $this->getMockBuilder(Collection::class) ->disableOriginalConstructor() ->getMock(); $this->collectionProcessorMock->expects($this->once()) ->method('process') ->with($searchCriteria, $collection); $this->searchResultFactory->expects($this->once()) ->method('create') ->willReturn($collection); $this->assertEquals($collection, $this->invoice->getList($searchCriteria)); } public function testDelete() { $entity = $this->getMockBuilder(Invoice::class) ->disableOriginalConstructor() ->getMock(); $entity->expects($this->once()) ->method('getEntityId') ->willReturn(1); $mapper = $this->getMockBuilder(\Magento\Sales\Model\ResourceModel\Order\Invoice::class) ->disableOriginalConstructor() ->getMock(); $mapper->expects($this->once()) ->method('delete') ->with($entity); $this->invoiceMetadata->expects($this->any()) ->method('getMapper') ->willReturn($mapper); $this->assertTrue($this->invoice->delete($entity)); } public function testDeleteById() { $id = 1; $entity = $this->getMockBuilder(Invoice::class) ->disableOriginalConstructor() ->getMock(); $entity->expects($this->once()) ->method('load') ->with($id) ->willReturn($entity); $entity->expects($this->any()) ->method('getEntityId') ->willReturn($id); $this->invoiceMetadata->expects($this->once()) ->method('getNewInstance') ->willReturn($entity); $mapper = $this->getMockBuilder(\Magento\Sales\Model\ResourceModel\Order\Invoice::class) ->disableOriginalConstructor() ->getMock(); $mapper->expects($this->once()) ->method('delete') ->with($entity); $this->invoiceMetadata->expects($this->any()) ->method('getMapper') ->willReturn($mapper); $this->assertTrue($this->invoice->deleteById($id)); } public function testSave() { $entity = $this->getMockBuilder(Invoice::class) ->disableOriginalConstructor() ->getMock(); $entity->expects($this->any()) ->method('getEntityId') ->willReturn(1); $mapper = $this->getMockBuilder(\Magento\Sales\Model\ResourceModel\Order\Invoice::class) ->disableOriginalConstructor() ->getMock(); $mapper->expects($this->once()) ->method('save') ->with($entity); $this->invoiceMetadata->expects($this->any()) ->method('getMapper') ->willReturn($mapper); $this->assertEquals($entity, $this->invoice->save($entity)); } }