-
Notifications
You must be signed in to change notification settings - Fork 9.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ENGCOM-6887: Unit test for Magento\Downloadable\Model\Sample\DeleteHa…
…ndler #26835 - Merge Pull Request #26835 from karyna-tsymbal-atwix/magento2:unit-test-downloadable-model-sample-deletehandler - Merged commits: 1. a0e239a
- Loading branch information
Showing
1 changed file
with
100 additions
and
0 deletions.
There are no files selected for viewing
100 changes: 100 additions & 0 deletions
100
app/code/Magento/Downloadable/Test/Unit/Model/Sample/DeleteHandlerTest.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
<?php | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Magento\Downloadable\Test\Unit\Model\Sample; | ||
|
||
use Magento\Catalog\Api\Data\ProductInterface; | ||
use Magento\Catalog\Model\Product; | ||
use Magento\Downloadable\Api\Data\SampleInterface; | ||
use Magento\Downloadable\Api\SampleRepositoryInterface as SampleRepository; | ||
use Magento\Downloadable\Model\Product\Type; | ||
use Magento\Downloadable\Model\Sample\DeleteHandler; | ||
use Magento\Framework\TestFramework\Unit\Helper\ObjectManager as ObjectManagerHelper; | ||
use PHPUnit\Framework\MockObject\MockObject; | ||
use PHPUnit\Framework\TestCase; | ||
|
||
/** | ||
* Unit Test for \Magento\Downloadable\Model\Sample\DeleteHandler | ||
*/ | ||
class DeleteHandlerTest extends TestCase | ||
{ | ||
const STUB_PRODUCT_TYPE = 'simple'; | ||
const STUB_PRODUCT_SKU = 'sku'; | ||
const STUB_SAMPLE_ID = 1; | ||
|
||
/** | ||
* @var ProductInterface|MockObject | ||
*/ | ||
private $entityMock; | ||
|
||
/** | ||
* @var SampleRepository|MockObject | ||
*/ | ||
private $sampleRepositoryMock; | ||
|
||
/** | ||
* @var DeleteHandler | ||
*/ | ||
private $deleteHandler; | ||
|
||
/** | ||
* @inheritDoc | ||
*/ | ||
protected function setUp() | ||
{ | ||
$this->entityMock = $this->createMock(Product::class); | ||
$this->sampleRepositoryMock = $this->getMockBuilder(SampleRepository::class) | ||
->disableOriginalConstructor() | ||
->setMethods(['getList', 'delete']) | ||
->getMockForAbstractClass(); | ||
|
||
$this->deleteHandler = (new ObjectManagerHelper($this))->getObject( | ||
DeleteHandler::class, | ||
['sampleRepository' => $this->sampleRepositoryMock] | ||
); | ||
} | ||
|
||
/** | ||
* Test case when provided Product has type Downloadable. | ||
*/ | ||
public function testExecuteWithDownloadableProduct() | ||
{ | ||
$this->entityMock->expects($this->once()) | ||
->method('getTypeId') | ||
->willReturn(Type::TYPE_DOWNLOADABLE); | ||
$this->entityMock->expects($this->once()) | ||
->method('getSku') | ||
->willReturn(self::STUB_PRODUCT_SKU); | ||
|
||
$sampleMock = $this->createMock(SampleInterface::class); | ||
$sampleMock->expects($this->once()) | ||
->method('getId') | ||
->willReturn(self::STUB_SAMPLE_ID); | ||
|
||
$this->sampleRepositoryMock->expects($this->once())->method('delete'); | ||
$this->sampleRepositoryMock->expects($this->once()) | ||
->method('getList') | ||
->willReturn([$sampleMock]); | ||
|
||
$this->assertSame($this->entityMock, $this->deleteHandler->execute($this->entityMock)); | ||
} | ||
|
||
/** | ||
* Test case when provided Product is not Downloadable. | ||
*/ | ||
public function testExecuteWithOtherProduct() | ||
{ | ||
$this->entityMock->expects($this->once()) | ||
->method('getTypeId') | ||
->willReturn(self::STUB_PRODUCT_TYPE); | ||
|
||
$this->sampleRepositoryMock->expects($this->never())->method('getList'); | ||
$this->sampleRepositoryMock->expects($this->never())->method('delete'); | ||
$this->assertSame($this->entityMock, $this->deleteHandler->execute($this->entityMock)); | ||
} | ||
} |