-
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 branch '2.4-develop' into AC-9547
- Loading branch information
Showing
10 changed files
with
343 additions
and
59 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
180 changes: 180 additions & 0 deletions
180
app/code/Magento/Catalog/Test/Unit/Model/ProductRepository/MediaGalleryProcessorTest.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,180 @@ | ||
<?php | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
declare(strict_types=1); | ||
|
||
namespace Magento\Catalog\Test\Unit\Model\ProductRepository; | ||
|
||
use Magento\Catalog\Model\Product; | ||
use Magento\Catalog\Model\Product\Gallery\DeleteValidator; | ||
use Magento\Catalog\Model\Product\Gallery\Processor; | ||
use Magento\Catalog\Model\Product\Media\Config; | ||
use Magento\Catalog\Model\ProductRepository\MediaGalleryProcessor; | ||
use Magento\Framework\Api\Data\ImageContentInterface; | ||
use Magento\Framework\Api\Data\ImageContentInterfaceFactory; | ||
use Magento\Framework\Api\ImageContent; | ||
use Magento\Framework\Api\ImageProcessorInterface; | ||
use PHPUnit\Framework\MockObject\MockObject; | ||
use PHPUnit\Framework\TestCase; | ||
|
||
class MediaGalleryProcessorTest extends TestCase | ||
{ | ||
/** | ||
* @var MediaGalleryProcessor | ||
*/ | ||
private $galleryProcessor; | ||
|
||
/** | ||
* @var Processor|MockObject | ||
*/ | ||
private $processorMock; | ||
|
||
/** | ||
* @var ImageContentInterfaceFactory|MockObject | ||
*/ | ||
private $contentFactoryMock; | ||
|
||
/** | ||
* @var ImageProcessorInterface|MockObject | ||
*/ | ||
private $imageProcessorMock; | ||
|
||
/** | ||
* @var DeleteValidator|MockObject | ||
*/ | ||
private $deleteValidatorMock; | ||
|
||
/** | ||
* @var Product|MockObject | ||
*/ | ||
private $productMock; | ||
|
||
protected function setUp(): void | ||
{ | ||
$this->processorMock = $this->getMockBuilder(Processor::class) | ||
->disableOriginalConstructor() | ||
->getMock(); | ||
$this->contentFactoryMock = $this->getMockBuilder(ImageContentInterfaceFactory::class) | ||
->disableOriginalConstructor() | ||
->getMock(); | ||
$this->imageProcessorMock = $this->getMockBuilder(ImageProcessorInterface::class) | ||
->disableOriginalConstructor() | ||
->getMock(); | ||
$this->deleteValidatorMock = $this->getMockBuilder(DeleteValidator::class) | ||
->disableOriginalConstructor() | ||
->getMock(); | ||
$this->productMock = $this->getMockBuilder(Product::class) | ||
->addMethods(['getMediaGallery']) | ||
->onlyMethods(['hasGalleryAttribute', 'getMediaConfig', 'getMediaAttributes']) | ||
->disableOriginalConstructor() | ||
->getMock(); | ||
|
||
$this->galleryProcessor = new MediaGalleryProcessor( | ||
$this->processorMock, | ||
$this->contentFactoryMock, | ||
$this->imageProcessorMock, | ||
$this->deleteValidatorMock | ||
); | ||
} | ||
|
||
/** | ||
* The media gallery array should not have "removed" key while adding the new entry | ||
* | ||
* @return void | ||
*/ | ||
public function testProcessMediaGallery(): void | ||
{ | ||
$initialExitingEntry = [ | ||
'value_id' => 5, | ||
"label" => "new_label_text", | ||
'file' => 'filename1', | ||
'position' => 10, | ||
'disabled' => false, | ||
'types' => ['image', 'small_image'] | ||
]; | ||
$newEntriesData = [ | ||
'images' => [ | ||
$initialExitingEntry, | ||
[ | ||
'value_id' => null, | ||
'label' => "label_text", | ||
'position' => 10, | ||
'disabled' => false, | ||
'types' => ['image', 'small_image'], | ||
'content' => [ | ||
'data' => [ | ||
ImageContentInterface::NAME => 'filename', | ||
ImageContentInterface::TYPE => 'image/jpeg', | ||
ImageContentInterface::BASE64_ENCODED_DATA => 'encoded_content' | ||
] | ||
], | ||
'media_type' => 'media_type' | ||
] | ||
] | ||
]; | ||
$newExitingEntriesData = [ | ||
'images' => [ | ||
$initialExitingEntry, | ||
[ | ||
'value_id' => 6, | ||
"label" => "label_text2", | ||
'file' => 'filename2', | ||
'position' => 10, | ||
'disabled' => false, | ||
'types' => ['image', 'small_image'] | ||
] | ||
] | ||
]; | ||
$this->productMock->method('getMediaGallery') | ||
->willReturnOnConsecutiveCalls( | ||
$newExitingEntriesData['images'], | ||
$newExitingEntriesData['images'] | ||
); | ||
$this->productMock->expects($this->any()) | ||
->method('getMediaAttributes') | ||
->willReturn(["image" => "imageAttribute", "small_image" => "small_image_attribute"]); | ||
$this->productMock->method('hasGalleryAttribute')->willReturn(true); | ||
$mediaTmpPath = '/tmp'; | ||
$absolutePath = '/a/b/filename.jpg'; | ||
$this->processorMock->expects($this->once())->method('clearMediaAttribute') | ||
->with($this->productMock, ['image', 'small_image']); | ||
$mediaConfigMock = $this->getMockBuilder(Config::class)->disableOriginalConstructor()->getMock(); | ||
$mediaConfigMock->expects($this->once())->method('getTmpMediaShortUrl')->with($absolutePath) | ||
->willReturn($mediaTmpPath . $absolutePath); | ||
$this->productMock->expects($this->once())->method('getMediaConfig')->willReturn($mediaConfigMock); | ||
//verify new entries | ||
$contentDataObject = $this->getMockBuilder(ImageContent::class) | ||
->disableOriginalConstructor() | ||
->setMethods(null) | ||
->getMock(); | ||
$this->contentFactoryMock->expects($this->once())->method('create')->willReturn($contentDataObject); | ||
$this->imageProcessorMock->expects($this->once())->method('processImageContent')->willReturn($absolutePath); | ||
$imageFileUri = $mediaTmpPath . $absolutePath; | ||
$this->processorMock->expects($this->once())->method('addImage') | ||
->willReturnCallback( | ||
function ($product, $imageFileUri) use ($newEntriesData) { | ||
foreach ($product['media_gallery']['images'] as $entry) { | ||
if (isset($entry['value_id'])) { | ||
$this->assertArrayNotHasKey('removed', $entry); | ||
} | ||
} | ||
$this->productMock->setData('media_gallery', $newEntriesData); | ||
return $imageFileUri; | ||
} | ||
); | ||
$this->processorMock->expects($this->once())->method('updateImage') | ||
->with( | ||
$this->productMock, | ||
$imageFileUri, | ||
[ | ||
'label' => 'label_text', | ||
'position' => 10, | ||
'disabled' => false, | ||
'media_type' => 'media_type', | ||
] | ||
); | ||
$this->galleryProcessor->processMediaGallery($this->productMock, $newEntriesData['images']); | ||
} | ||
} |
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.