123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Eav\Test\Unit\Model\Entity\VersionControl;
- use Magento\Eav\Model\Entity\VersionControl\AbstractEntity;
- use Magento\Framework\Model\ResourceModel\Db\VersionControl\RelationComposite;
- use Magento\Framework\TestFramework\Unit\Helper\ObjectManager;
- /**
- * Test for version control abstract entity model.
- */
- class AbstractEntityTest extends \Magento\Eav\Test\Unit\Model\Entity\AbstractEntityTest
- {
- /**
- * @var \Magento\Framework\Model\ResourceModel\Db\VersionControl\Snapshot|\PHPUnit_Framework_MockObject_MockObject
- */
- protected $entitySnapshot;
- /**
- * @var RelationComposite|\PHPUnit_Framework_MockObject_MockObject
- */
- protected $entityRelationComposite;
- protected function setUp()
- {
- $this->entitySnapshot = $this->createPartialMock(
- \Magento\Framework\Model\ResourceModel\Db\VersionControl\Snapshot::class,
- ['isModified', 'registerSnapshot']
- );
- $this->entityRelationComposite = $this->createPartialMock(
- \Magento\Framework\Model\ResourceModel\Db\VersionControl\RelationComposite::class,
- ['processRelations']
- );
- parent::setUp();
- }
- /**
- * @param string $attributeCode
- * @param int $attributeSetId
- * @param array $productData
- * @param array $productOrigData
- *
- * @SuppressWarnings(PHPMD.ExcessiveMethodLength)
- * @dataProvider productAttributesDataProvider
- */
- public function testSave($attributeCode, $attributeSetId, $productData, $productOrigData)
- {
- $object = $this->createPartialMock(
- \Magento\Catalog\Model\Product::class,
- ['getOrigData', '__wakeup', 'beforeSave', 'afterSave', 'validateBeforeSave']
- );
- $object->setEntityTypeId(1);
- foreach ($productData as $key => $value) {
- $object->setData($key, $value);
- }
- $object->expects($this->any())->method('getOrigData')->will($this->returnValue($productOrigData));
- $entityType = new \Magento\Framework\DataObject();
- $entityType->setEntityTypeCode('test');
- $entityType->setEntityTypeId(0);
- $entityType->setEntityTable('table');
- $attributes = $this->_getAttributes();
- $attribute = $this->_getAttributeMock($attributeCode, $attributeSetId);
- /** @var $backendModel \Magento\Eav\Model\Entity\Attribute\Backend\AbstractBackend */
- $backendModel = $this->createPartialMock(
- \Magento\Eav\Model\Entity\Attribute\Backend\AbstractBackend::class,
- [
- 'getBackend',
- 'getBackendTable',
- 'getAffectedFields',
- 'isStatic',
- 'getEntityValueId',
- ]
- );
- $backendModel->expects(
- $this->once()
- )->method(
- 'getAffectedFields'
- )->will(
- $this->returnValue(['test_table' => [['value_id' => 0, 'attribute_id' => $attributeCode]]])
- );
- $backendModel->expects($this->any())->method('isStatic')->will($this->returnValue(false));
- $backendModel->expects($this->never())->method('getEntityValueId');
- $backendModel->setAttribute($attribute);
- $attribute->expects($this->any())->method('getBackend')->will($this->returnValue($backendModel));
- $attribute->setId(222);
- $attributes[$attributeCode] = $attribute;
- $eavConfig = $this->getMockBuilder(\Magento\Eav\Model\Config::class)
- ->disableOriginalConstructor()
- ->getMock();
- $objectManager = new ObjectManager($this);
- $this->entitySnapshot->expects($this->once())->method('isModified')->willReturn(true);
- $this->entitySnapshot->expects($this->once())->method('registerSnapshot')->with($object);
- $this->entityRelationComposite->expects($this->once())->method('processRelations')->with($object);
- $arguments = $objectManager->getConstructArguments(
- \Magento\Eav\Model\Entity\VersionControl\AbstractEntity::class,
- [
- 'eavConfig' => $eavConfig,
- 'entitySnapshot' => $this->entitySnapshot,
- 'entityRelationComposite' => $this->entityRelationComposite,
- 'data' => [
- 'type' => $entityType,
- 'entityTable' => 'entityTable',
- 'attributesByCode' => $attributes
- ]
- ]
- );
- /** @var $model AbstractEntity|\PHPUnit_Framework_MockObject_MockObject */
- $model = $this->getMockBuilder(\Magento\Eav\Model\Entity\VersionControl\AbstractEntity::class)
- ->setConstructorArgs($arguments)
- ->setMethods(['_getValue', 'beginTransaction', 'commit', 'rollback', 'getConnection'])
- ->getMock();
- $model->expects($this->any())->method('_getValue')->will($this->returnValue($eavConfig));
- $model->expects($this->any())->method('getConnection')->will($this->returnValue($this->_getConnectionMock()));
- $eavConfig->expects($this->any())->method('getAttribute')->will(
- $this->returnCallback(
- function ($entityType, $attributeCode) use ($attributes) {
- return $entityType && isset($attributes[$attributeCode]) ? $attributes[$attributeCode] : null;
- }
- )
- );
- $model->isPartialSave(true);
- $model->save($object);
- }
- public function testSaveNotModified()
- {
- $objectManager = new ObjectManager($this);
- /** @var $object \Magento\Catalog\Model\Product|\PHPUnit_Framework_MockObject_MockObject */
- $object = $this->createMock(\Magento\Catalog\Model\Product::class);
- $arguments = $objectManager->getConstructArguments(
- \Magento\Eav\Model\Entity\VersionControl\AbstractEntity::class,
- [
- 'entitySnapshot' => $this->entitySnapshot,
- 'entityRelationComposite' => $this->entityRelationComposite,
- ]
- );
- /** @var $model AbstractEntity|\PHPUnit_Framework_MockObject_MockObject */
- $model = $this->getMockBuilder(\Magento\Eav\Model\Entity\VersionControl\AbstractEntity::class)
- ->setConstructorArgs($arguments)
- ->setMethods(['beginTransaction', 'commit'])
- ->getMock();
- $this->entitySnapshot->expects($this->once())->method('isModified')->willReturn(false);
- $this->entitySnapshot->expects($this->never())->method('registerSnapshot');
- $this->entityRelationComposite->expects($this->once())->method('processRelations')->with($object);
- $model->save($object);
- }
- }
|