orderFactory = $this->createPartialMock(\Magento\Sales\Model\OrderFactory::class, ['create']); $this->scopeConfigMock = $this->createMock(ScopeConfigInterface::class); $objectManagerHelper = new ObjectManagerHelper($this); $this->cmItemCollectionFactoryMock = $this->getMockBuilder( \Magento\Sales\Model\ResourceModel\Order\Creditmemo\Item\CollectionFactory::class )->disableOriginalConstructor() ->setMethods(['create']) ->getMock(); $arguments = [ 'context' => $this->createMock(\Magento\Framework\Model\Context::class), 'registry' => $this->createMock(\Magento\Framework\Registry::class), 'localeDate' => $this->createMock( \Magento\Framework\Stdlib\DateTime\TimezoneInterface::class ), 'dateTime' => $this->createMock(\Magento\Framework\Stdlib\DateTime::class), 'creditmemoConfig' => $this->createMock( \Magento\Sales\Model\Order\Creditmemo\Config::class ), 'orderFactory' => $this->orderFactory, 'cmItemCollectionFactory' => $this->cmItemCollectionFactoryMock, 'calculatorFactory' => $this->createMock(\Magento\Framework\Math\CalculatorFactory::class), 'storeManager' => $this->createMock(\Magento\Store\Model\StoreManagerInterface::class), 'commentFactory' => $this->createMock(\Magento\Sales\Model\Order\Creditmemo\CommentFactory::class), 'commentCollectionFactory' => $this->createMock( \Magento\Sales\Model\ResourceModel\Order\Creditmemo\Comment\CollectionFactory::class ), 'scopeConfig' => $this->scopeConfigMock ]; $this->creditmemo = $objectManagerHelper->getObject( \Magento\Sales\Model\Order\Creditmemo::class, $arguments ); } public function testGetOrder() { $orderId = 100000041; $this->creditmemo->setOrderId($orderId); $entityName = 'creditmemo'; $order = $this->createPartialMock( \Magento\Sales\Model\Order::class, ['load', 'setHistoryEntityName', '__wakeUp'] ); $this->creditmemo->setOrderId($orderId); $order->expects($this->atLeastOnce()) ->method('setHistoryEntityName') ->with($entityName) ->will($this->returnSelf()); $order->expects($this->atLeastOnce()) ->method('load') ->with($orderId) ->will($this->returnValue($order)); $this->orderFactory->expects($this->atLeastOnce()) ->method('create') ->will($this->returnValue($order)); $this->assertEquals($order, $this->creditmemo->getOrder()); } public function testGetEntityType() { $this->assertEquals('creditmemo', $this->creditmemo->getEntityType()); } public function testIsValidGrandTotalGrandTotalEmpty() { $this->creditmemo->setGrandTotal(0); $this->assertFalse($this->creditmemo->isValidGrandTotal()); } public function testIsValidGrandTotalGrandTotal() { $this->creditmemo->setGrandTotal(0); $this->assertFalse($this->creditmemo->isValidGrandTotal()); } public function testIsValidGrandTotal() { $this->creditmemo->setGrandTotal(1); $this->assertTrue($this->creditmemo->isValidGrandTotal()); } public function testGetIncrementId() { $this->creditmemo->setIncrementId('test_increment_id'); $this->assertEquals('test_increment_id', $this->creditmemo->getIncrementId()); } public function testGetItemsCollectionWithId() { $id = 1; $this->creditmemo->setId($id); $items = []; $itemMock = $this->getMockBuilder(\Magento\Sales\Model\Order\Creditmemo\Item::class) ->disableOriginalConstructor() ->getMock(); $itemMock->expects($this->once()) ->method('setCreditmemo') ->with($this->creditmemo); $items[] = $itemMock; /** @var ItemCollection|\PHPUnit_Framework_MockObject_MockObject $itemCollectionMock */ $itemCollectionMock = $this->getMockBuilder( \Magento\Sales\Model\ResourceModel\Order\Creditmemo\Item\Collection::class ) ->disableOriginalConstructor() ->getMock(); $itemCollectionMock->expects($this->once()) ->method('setCreditmemoFilter') ->with($id) ->will($this->returnValue($items)); $this->cmItemCollectionFactoryMock->expects($this->any()) ->method('create') ->will($this->returnValue($itemCollectionMock)); $itemsCollection = $this->creditmemo->getItemsCollection(); $this->assertEquals($items, $itemsCollection); } public function testGetItemsCollectionWithoutId() { $items = []; $itemMock = $this->getMockBuilder(\Magento\Sales\Model\Order\Creditmemo\Item::class) ->disableOriginalConstructor() ->getMock(); $itemMock->expects($this->never()) ->method('setCreditmemo'); $items[] = $itemMock; /** @var ItemCollection|\PHPUnit_Framework_MockObject_MockObject $itemCollectionMock */ $itemCollectionMock = $this->getMockBuilder( \Magento\Sales\Model\ResourceModel\Order\Creditmemo\Item\Collection::class ) ->disableOriginalConstructor() ->getMock(); $itemCollectionMock->expects($this->once()) ->method('setCreditmemoFilter') ->with(null) ->will($this->returnValue($items)); $this->cmItemCollectionFactoryMock->expects($this->any()) ->method('create') ->will($this->returnValue($itemCollectionMock)); $itemsCollection = $this->creditmemo->getItemsCollection(); $this->assertEquals($items, $itemsCollection); } }