linkRepositoryMock = $this->getMockBuilder(LinkRepositoryInterface::class) ->getMockForAbstractClass(); $this->model = new UpdateHandler( $this->linkRepositoryMock ); } public function testExecute() { $entitySku = 'sku'; $entityStoreId = 0; $linkId = 11; $linkToDeleteId = 22; /** @var LinkInterface|\PHPUnit_Framework_MockObject_MockObject $linkMock */ $linkMock = $this->getMockBuilder(LinkInterface::class) ->getMock(); $linkMock->expects($this->exactly(3)) ->method('getId') ->willReturn($linkId); /** @var LinkInterface|\PHPUnit_Framework_MockObject_MockObject $linkToDeleteMock */ $linkToDeleteMock = $this->getMockBuilder(LinkInterface::class) ->getMock(); $linkToDeleteMock->expects($this->exactly(2)) ->method('getId') ->willReturn($linkToDeleteId); /** @var ProductExtensionInterface|\PHPUnit_Framework_MockObject_MockObject $productExtensionMock */ $productExtensionMock = $this->getMockBuilder(ProductExtensionInterface::class) ->setMethods(['getDownloadableProductLinks']) ->getMockForAbstractClass(); $productExtensionMock->expects($this->once()) ->method('getDownloadableProductLinks') ->willReturn([$linkMock]); /** @var ProductInterface|\PHPUnit_Framework_MockObject_MockObject $entityMock */ $entityMock = $this->getMockBuilder(ProductInterface::class) ->setMethods(['getTypeId', 'getExtensionAttributes', 'getSku', 'getStoreId']) ->getMockForAbstractClass(); $entityMock->expects($this->once()) ->method('getTypeId') ->willReturn(Type::TYPE_DOWNLOADABLE); $entityMock->expects($this->once()) ->method('getExtensionAttributes') ->willReturn($productExtensionMock); $entityMock->expects($this->exactly(2)) ->method('getSku') ->willReturn($entitySku); $entityMock->expects($this->once()) ->method('getStoreId') ->willReturn($entityStoreId); $this->linkRepositoryMock->expects($this->once()) ->method('getList') ->with($entitySku) ->willReturn([$linkMock, $linkToDeleteMock]); $this->linkRepositoryMock->expects($this->once()) ->method('save') ->with($entitySku, $linkMock, !$entityStoreId); $this->linkRepositoryMock->expects($this->once()) ->method('delete') ->with($linkToDeleteId); $this->assertEquals($entityMock, $this->model->execute($entityMock)); } public function testExecuteNonDownloadable() { /** @var ProductInterface|\PHPUnit_Framework_MockObject_MockObject $entityMock */ $entityMock = $this->getMockBuilder(ProductInterface::class) ->setMethods(['getTypeId', 'getExtensionAttributes', 'getSku', 'getStoreId']) ->getMockForAbstractClass(); $entityMock->expects($this->once()) ->method('getTypeId') ->willReturn(Type::TYPE_DOWNLOADABLE . 'some'); $entityMock->expects($this->never()) ->method('getExtensionAttributes'); $entityMock->expects($this->never()) ->method('getSku'); $entityMock->expects($this->never()) ->method('getStoreId'); $this->linkRepositoryMock->expects($this->never()) ->method('getList'); $this->linkRepositoryMock->expects($this->never()) ->method('save'); $this->linkRepositoryMock->expects($this->never()) ->method('delete'); $this->assertEquals($entityMock, $this->model->execute($entityMock)); } }