-
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.
Merge remote-tracking branch 'origin/develop' into bugs
- Loading branch information
Showing
11 changed files
with
567 additions
and
182 deletions.
There are no files selected for viewing
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
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
212 changes: 212 additions & 0 deletions
212
app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Category/FlatTest.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,212 @@ | ||
<?php | ||
/** | ||
* Copyright © 2016 Magento. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
|
||
namespace Magento\Catalog\Test\Unit\Model\ResourceModel\Category; | ||
|
||
use Magento\Catalog\Model\ResourceModel\Category\Flat\CollectionFactory; | ||
use Magento\Catalog\Model\ResourceModel\Category\Flat\Collection; | ||
use Magento\Framework\TestFramework\Unit\Helper\ObjectManager; | ||
use Magento\Catalog\Model\ResourceModel\Category\Flat; | ||
use Magento\Framework\DB\Select; | ||
use Magento\Framework\DB\Adapter\AdapterInterface as Adapter; | ||
use Magento\Framework\App\ResourceConnection; | ||
use Magento\Framework\Model\ResourceModel\Db\Context; | ||
use Magento\Store\Model\Store; | ||
use Magento\Store\Model\StoreManagerInterface; | ||
|
||
/** | ||
* Category flat model test | ||
* | ||
* @SuppressWarnings(PHPMD.CouplingBetweenObjects) | ||
*/ | ||
class FlatTest extends \PHPUnit_Framework_TestCase | ||
{ | ||
const STORE_ID = 1; | ||
const TABLE_NAME = 'test_table'; | ||
const PARENT_PATH = '1'; | ||
const SORTED = false; | ||
const PARENT = 1; | ||
const RECURSION_LEVEL = 0; | ||
|
||
/** | ||
* @var CollectionFactory|\PHPUnit_Framework_MockObject_MockObject | ||
*/ | ||
private $categoryCollectionFactoryMock; | ||
|
||
/** | ||
* @var Collection|\PHPUnit_Framework_MockObject_MockObject | ||
*/ | ||
private $categoryCollectionMock; | ||
|
||
/** | ||
* @var Flat | ||
*/ | ||
private $model; | ||
|
||
/** | ||
* @var ObjectManager | ||
*/ | ||
private $objectManager; | ||
|
||
/** | ||
* @var Select|\PHPUnit_Framework_MockObject_MockObject | ||
*/ | ||
private $selectMock; | ||
|
||
/** | ||
* @var Adapter|\PHPUnit_Framework_MockObject_MockObject | ||
*/ | ||
private $connectionMock; | ||
|
||
/** | ||
* @var ResourceConnection|\PHPUnit_Framework_MockObject_MockObject | ||
*/ | ||
private $resourceMock; | ||
|
||
/** | ||
* @var Context|\PHPUnit_Framework_MockObject_MockObject | ||
*/ | ||
private $contextMock; | ||
|
||
/** | ||
* @var Store|\PHPUnit_Framework_MockObject_MockObject | ||
*/ | ||
private $storeMock; | ||
|
||
/** | ||
* @var StoreManagerInterface|\PHPUnit_Framework_MockObject_MockObject | ||
*/ | ||
private $storeManagerMock; | ||
|
||
/** | ||
* {@inheritdoc} | ||
*/ | ||
protected function setUp() | ||
{ | ||
$this->objectManager = new ObjectManager($this); | ||
|
||
$this->selectMock = $this->getMockBuilder(Select::class) | ||
->disableOriginalConstructor() | ||
->setMethods(['where', 'from']) | ||
->getMock(); | ||
$this->selectMock->expects($this->once()) | ||
->method('where') | ||
->willReturn($this->selectMock); | ||
$this->selectMock->expects($this->once()) | ||
->method('from') | ||
->willReturn($this->selectMock); | ||
$this->connectionMock = $this->getMockBuilder(Adapter::class) | ||
->getMockForAbstractClass(); | ||
$this->connectionMock->expects($this->once()) | ||
->method('select') | ||
->willReturn($this->selectMock); | ||
$this->connectionMock->expects($this->once()) | ||
->method('fetchOne') | ||
->with($this->selectMock) | ||
->willReturn(self::PARENT_PATH); | ||
$this->resourceMock = $this->getMockBuilder(ResourceConnection::class) | ||
->disableOriginalConstructor() | ||
->setMethods(['getConnection', 'getTableName']) | ||
->getMock(); | ||
$this->resourceMock->expects($this->any()) | ||
->method('getConnection') | ||
->willReturn($this->connectionMock); | ||
$this->resourceMock->expects($this->any()) | ||
->method('getTableName') | ||
->willReturn(self::TABLE_NAME); | ||
$this->contextMock = $this->getMockBuilder(Context::class) | ||
->disableOriginalConstructor() | ||
->setMethods(['getResources']) | ||
->getMock(); | ||
$this->contextMock->expects($this->any()) | ||
->method('getResources') | ||
->willReturn($this->resourceMock); | ||
|
||
$this->storeMock = $this->getMockBuilder(Store::class) | ||
->disableOriginalConstructor() | ||
->setMethods(['getId']) | ||
->getMock(); | ||
$this->storeMock->expects($this->any()) | ||
->method('getId') | ||
->willReturn(self::STORE_ID); | ||
$this->storeManagerMock = $this->getMockBuilder(StoreManagerInterface::class) | ||
->getMockForAbstractClass(); | ||
$this->storeManagerMock->expects($this->any()) | ||
->method('getStore') | ||
->willReturn($this->storeMock); | ||
} | ||
|
||
public function testGetCategories() | ||
{ | ||
$this->categoryCollectionFactoryMock = $this->getMockBuilder(CollectionFactory::class) | ||
->disableOriginalConstructor() | ||
->setMethods(['create']) | ||
->getMock(); | ||
$this->categoryCollectionMock = $this->getMockBuilder(Collection::class) | ||
->disableOriginalConstructor() | ||
->setMethods( | ||
[ | ||
'addNameToResult', | ||
'addUrlRewriteToResult', | ||
'addParentPathFilter', | ||
'addStoreFilter', | ||
'addIsActiveFilter', | ||
'addAttributeToFilter', | ||
'addSortedField', | ||
'load' | ||
] | ||
) | ||
->getMock(); | ||
$this->categoryCollectionMock->expects($this->once()) | ||
->method('addNameToResult') | ||
->willReturn($this->categoryCollectionMock); | ||
$this->categoryCollectionMock->expects($this->once()) | ||
->method('addUrlRewriteToResult') | ||
->willReturn($this->categoryCollectionMock); | ||
$this->categoryCollectionMock->expects($this->once()) | ||
->method('addParentPathFilter') | ||
->with(self::PARENT_PATH) | ||
->willReturn($this->categoryCollectionMock); | ||
$this->categoryCollectionMock->expects($this->once()) | ||
->method('addStoreFilter') | ||
->willReturn($this->categoryCollectionMock); | ||
$this->categoryCollectionMock->expects($this->once()) | ||
->method('addIsActiveFilter') | ||
->willReturn($this->categoryCollectionMock); | ||
$this->categoryCollectionMock->expects($this->once()) | ||
->method('addSortedField') | ||
->with(self::SORTED) | ||
->willReturn($this->categoryCollectionMock); | ||
$this->categoryCollectionMock->expects($this->once()) | ||
->method('addAttributeToFilter') | ||
->with('include_in_menu', 1) | ||
->willReturn($this->categoryCollectionMock); | ||
$this->categoryCollectionMock->expects($this->once()) | ||
->method('load') | ||
->willReturn($this->categoryCollectionMock); | ||
$this->categoryCollectionFactoryMock->expects($this->once()) | ||
->method('create') | ||
->willReturn($this->categoryCollectionMock); | ||
|
||
$this->model = $this->objectManager->getObject( | ||
Flat::class, | ||
[ | ||
'context' => $this->contextMock, | ||
'storeManager' => $this->storeManagerMock, | ||
] | ||
); | ||
|
||
$reflection = new \ReflectionClass(get_class($this->model)); | ||
$reflectionProperty = $reflection->getProperty('categoryFlatCollectionFactory'); | ||
$reflectionProperty->setAccessible(true); | ||
$reflectionProperty->setValue($this->model, $this->categoryCollectionFactoryMock); | ||
|
||
$this->assertEquals( | ||
$this->model->getCategories(self::PARENT, self::RECURSION_LEVEL, self::SORTED, true), | ||
$this->categoryCollectionMock | ||
); | ||
} | ||
} |
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
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
Oops, something went wrong.