-
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.
MAGETWO-64902: [GitHub][PR] bug #8277 fixing bug with https downloadi…
…ng. #8278
- Loading branch information
Showing
72 changed files
with
2,280 additions
and
171 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ addons: | |
- postfix | ||
language: php | ||
php: | ||
- 5.6 | ||
- 5.6.29 | ||
- 7.0 | ||
env: | ||
global: | ||
|
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
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
110 changes: 110 additions & 0 deletions
110
app/code/Magento/Catalog/Test/Unit/Model/CollectionProviderTest.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,110 @@ | ||
<?php | ||
/** | ||
* Copyright © 2013-2017 Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
|
||
namespace Magento\Catalog\Test\Unit\Model; | ||
|
||
use Magento\Catalog\Model\ProductLink\CollectionProvider; | ||
use Magento\Catalog\Model\ProductLink\CollectionProviderInterface; | ||
use Magento\Catalog\Model\ProductLink\Converter\ConverterInterface; | ||
use Magento\Catalog\Model\ProductLink\Converter\ConverterPool; | ||
use Magento\Catalog\Model\Product; | ||
|
||
class CollectionProviderTest extends \PHPUnit_Framework_TestCase | ||
{ | ||
/** | ||
* @var CollectionProvider | ||
*/ | ||
private $model; | ||
|
||
/** | ||
* @var \PHPUnit_Framework_MockObject_MockObject | ||
*/ | ||
private $converterPoolMock; | ||
|
||
/** | ||
* @var \PHPUnit_Framework_MockObject_MockObject | ||
*/ | ||
private $providerMock; | ||
|
||
/** | ||
* @var \PHPUnit_Framework_MockObject_MockObject | ||
*/ | ||
private $productMock; | ||
|
||
/** | ||
* @var \PHPUnit_Framework_MockObject_MockObject | ||
*/ | ||
private $converterMock; | ||
|
||
protected function setUp() | ||
{ | ||
$this->productMock = $this->getMock(Product::class, [], [], '', false, false); | ||
$this->converterPoolMock = $this->getMock(ConverterPool::class, [], [], '', false, false); | ||
$this->providerMock = $this->getMock(CollectionProviderInterface::class); | ||
$this->converterMock = $this->getMock(ConverterInterface::class); | ||
|
||
$this->model = new CollectionProvider($this->converterPoolMock, ['crosssell' => $this->providerMock]); | ||
} | ||
|
||
/** | ||
* Test sort order of linked products based on configured item position. | ||
*/ | ||
public function testGetCollection() | ||
{ | ||
$linkedProductOneMock = $this->getMock(Product::class, [], [], '', false, false); | ||
$linkedProductTwoMock = $this->getMock(Product::class, [], [], '', false, false); | ||
$linkedProductThreeMock = $this->getMock(Product::class, [], [], '', false, false); | ||
|
||
$linkedProductOneMock->expects($this->once())->method('getId')->willReturn(1); | ||
$linkedProductTwoMock->expects($this->once())->method('getId')->willReturn(2); | ||
$linkedProductThreeMock->expects($this->once())->method('getId')->willReturn(3); | ||
|
||
$this->converterPoolMock->expects($this->once()) | ||
->method('getConverter') | ||
->with('crosssell') | ||
->willReturn($this->converterMock); | ||
|
||
$map = [ | ||
[$linkedProductOneMock, ['name' => 'Product One', 'position' => 10]], | ||
[$linkedProductTwoMock, ['name' => 'Product Two', 'position' => 2]], | ||
[$linkedProductThreeMock, ['name' => 'Product Three', 'position' => 2]], | ||
]; | ||
|
||
$this->converterMock->expects($this->exactly(3))->method('convert')->willReturnMap($map); | ||
|
||
$this->providerMock->expects($this->once()) | ||
->method('getLinkedProducts') | ||
->with($this->productMock) | ||
->willReturn( | ||
[ | ||
$linkedProductOneMock, | ||
$linkedProductTwoMock, | ||
$linkedProductThreeMock | ||
] | ||
); | ||
|
||
$expectedResult = [ | ||
2 => ['name' => 'Product Two', 'position' => 2], | ||
3 => ['name' => 'Product Three', 'position' => 2], | ||
10 => ['name' => 'Product One', 'position' => 10], | ||
]; | ||
|
||
$actualResult = $this->model->getCollection($this->productMock, 'crosssell'); | ||
|
||
$this->assertEquals($expectedResult, $actualResult, 'Sort order of linked products in incorrect'); | ||
} | ||
|
||
/** | ||
* Test exception when collection provider is not configured for product link type. | ||
* | ||
* @expectedException \Magento\Framework\Exception\NoSuchEntityException | ||
* @expectedExceptionMessage Collection provider is not registered | ||
*/ | ||
public function testGetCollectionWithMissingProviders() | ||
{ | ||
$this->model->getCollection($this->productMock, 'upsell'); | ||
} | ||
} |
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
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.