-
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.
Catalog: Add unit tests for Cron classes
- Loading branch information
Showing
2 changed files
with
176 additions
and
0 deletions.
There are no files selected for viewing
51 changes: 51 additions & 0 deletions
51
app/code/Magento/Catalog/Test/Unit/Cron/DeleteAbandonedStoreFlatTablesTest.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,51 @@ | ||
<?php | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
declare(strict_types=1); | ||
|
||
namespace Magento\Catalog\Test\Unit\Cron; | ||
|
||
use Magento\Catalog\Cron\DeleteAbandonedStoreFlatTables; | ||
use Magento\Catalog\Helper\Product\Flat\Indexer; | ||
|
||
/** | ||
* @covers \Magento\Catalog\Cron\DeleteAbandonedStoreFlatTables | ||
*/ | ||
class AvailabilityCheckerTest extends \PHPUnit\Framework\TestCase | ||
{ | ||
/** | ||
* Testable Object | ||
* | ||
* @var DeleteAbandonedStoreFlatTables | ||
*/ | ||
private $deleteAbandonedStoreFlatTables; | ||
|
||
/** | ||
* @var Indexer|\PHPUnit_Framework_MockObject_MockObject | ||
*/ | ||
private $indexerMock; | ||
|
||
/** | ||
* Set Up | ||
* | ||
* @return void | ||
*/ | ||
protected function setUp() | ||
{ | ||
$this->indexerMock = $this->createMock(Indexer::class); | ||
$this->deleteAbandonedStoreFlatTables = new DeleteAbandonedStoreFlatTables($this->indexerMock); | ||
} | ||
|
||
/** | ||
* Test execute method | ||
* | ||
* @return void | ||
*/ | ||
public function testExecute() | ||
{ | ||
$this->indexerMock->expects($this->once())->method('deleteAbandonedStoreFlatTables'); | ||
$this->deleteAbandonedStoreFlatTables->execute(); | ||
} | ||
} |
125 changes: 125 additions & 0 deletions
125
app/code/Magento/Catalog/Test/Unit/Cron/DeleteOutdatedPriceValuesTest.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,125 @@ | ||
<?php | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
declare(strict_types=1); | ||
|
||
namespace Magento\Catalog\Test\Unit\Cron; | ||
|
||
use Magento\Catalog\Api\Data\ProductAttributeInterface; | ||
use Magento\Catalog\Cron\DeleteOutdatedPriceValues; | ||
use Magento\Eav\Api\AttributeRepositoryInterface as AttributeRepository; | ||
use Magento\Eav\Model\Entity\Attribute; | ||
use Magento\Eav\Model\Entity\Attribute\Backend\BackendInterface; | ||
use Magento\Framework\App\Config\MutableScopeConfigInterface as ScopeConfig; | ||
use Magento\Framework\App\ResourceConnection; | ||
use Magento\Framework\DB\Adapter\AdapterInterface; | ||
use Magento\Store\Model\Store; | ||
|
||
/** | ||
* @covers \Magento\Catalog\Cron\DeleteOutdatedPriceValues | ||
*/ | ||
class DeleteOutdatedPriceValuesTest extends \PHPUnit\Framework\TestCase | ||
{ | ||
/** | ||
* Testable Object | ||
* | ||
* @var DeleteOutdatedPriceValues | ||
*/ | ||
private $deleteOutdatedPriceValues; | ||
|
||
/** | ||
* @var AttributeRepository|\PHPUnit_Framework_MockObject_MockObject | ||
*/ | ||
private $attributeRepositoryMock; | ||
|
||
/** | ||
* @var ResourceConnection|\PHPUnit_Framework_MockObject_MockObject | ||
*/ | ||
private $resourceConnectionMock; | ||
|
||
/** | ||
* @var ScopeConfig|\PHPUnit_Framework_MockObject_MockObject | ||
*/ | ||
private $scopeConfigMock; | ||
|
||
/** | ||
* @var Attribute|\PHPUnit_Framework_MockObject_MockObject | ||
*/ | ||
private $attributeMock; | ||
|
||
/** | ||
* @var AdapterInterface|\PHPUnit_Framework_MockObject_MockObject | ||
*/ | ||
private $dbAdapterMock; | ||
|
||
/** | ||
* @var BackendInterface|\PHPUnit_Framework_MockObject_MockObject | ||
*/ | ||
private $attributeBackendMock; | ||
|
||
/** | ||
* Set Up | ||
* | ||
* @return void | ||
*/ | ||
protected function setUp() | ||
{ | ||
$this->resourceConnectionMock = $this->createMock(ResourceConnection::class); | ||
$this->attributeRepositoryMock = $this->createMock(AttributeRepository::class); | ||
$this->attributeMock = $this->createMock(Attribute::class); | ||
$this->scopeConfigMock = $this->createMock(ScopeConfig::class); | ||
$this->dbAdapterMock = $this->createMock(AdapterInterface::class); | ||
$this->attributeBackendMock = $this->createMock(BackendInterface::class); | ||
$this->deleteOutdatedPriceValues = new DeleteOutdatedPriceValues( | ||
$this->resourceConnectionMock, | ||
$this->attributeRepositoryMock, | ||
$this->scopeConfigMock | ||
); | ||
} | ||
|
||
/** | ||
* Test execute method | ||
* | ||
* @return void | ||
*/ | ||
public function testExecute() | ||
{ | ||
$table = 'catalog_product_entity_decimal'; | ||
$attributeId = 15; | ||
$conditions = ['first', 'second']; | ||
|
||
$this->scopeConfigMock->expects($this->once())->method('getValue')->with(Store::XML_PATH_PRICE_SCOPE) | ||
->willReturn(Store::XML_PATH_PRICE_SCOPE); | ||
$this->attributeRepositoryMock->expects($this->once())->method('get') | ||
->with(ProductAttributeInterface::ENTITY_TYPE_CODE, ProductAttributeInterface::CODE_PRICE) | ||
->willReturn($this->attributeMock); | ||
$this->attributeMock->expects($this->once())->method('getId')->willReturn($attributeId); | ||
$this->attributeMock->expects($this->once())->method('getBackend')->willReturn($this->attributeBackendMock); | ||
$this->attributeBackendMock->expects($this->once())->method('getTable')->willReturn($table); | ||
$this->resourceConnectionMock->expects($this->once())->method('getConnection')->willReturn($this->dbAdapterMock); | ||
$this->dbAdapterMock->expects($this->exactly(2))->method('quoteInto')->willReturnMap([ | ||
['attribute_id = ?', $attributeId, null, null, $conditions[0]], | ||
['store_id != ?', Store::DEFAULT_STORE_ID, null, null, $conditions[1]], | ||
]); | ||
$this->dbAdapterMock->expects($this->once())->method('delete')->with($table, $conditions); | ||
$this->deleteOutdatedPriceValues->execute(); | ||
} | ||
|
||
/** | ||
* Test execute method | ||
* The price scope config option is not equal to global value | ||
* | ||
* @return void | ||
*/ | ||
public function testExecutePriceConfigIsNotSetToGlobal() | ||
{ | ||
$this->scopeConfigMock->expects($this->once())->method('getValue')->with(Store::XML_PATH_PRICE_SCOPE) | ||
->willReturn(null); | ||
$this->attributeRepositoryMock->expects($this->never())->method('get'); | ||
$this->dbAdapterMock->expects($this->never())->method('delete'); | ||
|
||
$this->deleteOutdatedPriceValues->execute(); | ||
} | ||
} |