123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Eav\Test\Unit\Model;
- use Magento\Eav\Model\AttributeSetManagement;
- class AttributeSetManagementTest extends \PHPUnit\Framework\TestCase
- {
- /**
- * @var AttributeSetManagement
- */
- private $model;
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject
- */
- private $repositoryMock;
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject
- */
- private $eavConfigMock;
- protected function setUp()
- {
- $this->repositoryMock = $this->createMock(\Magento\Eav\Api\AttributeSetRepositoryInterface::class);
- $this->eavConfigMock = $this->createPartialMock(\Magento\Eav\Model\Config::class, ['getEntityType']);
- $this->model = new \Magento\Eav\Model\AttributeSetManagement(
- $this->eavConfigMock,
- $this->repositoryMock
- );
- }
- public function testCreate()
- {
- $skeletonId = 1;
- $entityTypeCode = 'catalog_product';
- $entityTypeId = 4;
- $entityTypeMock = $this->createMock(\Magento\Eav\Model\Entity\Type::class);
- $entityTypeMock->expects($this->any())->method('getId')->will($this->returnValue($entityTypeId));
- $this->eavConfigMock->expects($this->once())
- ->method('getEntityType')
- ->with($entityTypeCode)
- ->will($this->returnValue($entityTypeMock));
- $attributeSetMock = $this->createPartialMock(
- \Magento\Eav\Model\Entity\Attribute\Set::class,
- ['validate', 'getId', 'setEntityTypeId', 'initFromSkeleton']
- );
- $attributeSetMock->expects($this->once())->method('validate');
- $attributeSetMock->expects($this->once())->method('setEntityTypeId')->with($entityTypeId);
- $this->repositoryMock->expects($this->exactly(2))
- ->method('save')
- ->with($attributeSetMock)
- ->will($this->returnValue($attributeSetMock));
- $attributeSetMock->expects($this->once())->method('initFromSkeleton')->with($skeletonId);
- $this->assertEquals($attributeSetMock, $this->model->create($entityTypeCode, $attributeSetMock, $skeletonId));
- }
- /**
- * @expectedException \Magento\Framework\Exception\InputException
- * @expectedExceptionMessage Invalid value of "1" provided for the id field.
- */
- public function testCreateThrowsExceptionIfGivenAttributeSetAlreadyHasId()
- {
- $skeletonId = 1;
- $entityTypeCode = 'catalog_product';
- $attributeSetMock = $this->createPartialMock(
- \Magento\Eav\Model\Entity\Attribute\Set::class,
- ['validate', 'getId', 'setEntityTypeId', 'initFromSkeleton']
- );
- $attributeSetMock->expects($this->any())->method('getId')->will($this->returnValue(1));
- $this->repositoryMock->expects($this->never())->method('save')->with($attributeSetMock);
- $attributeSetMock->expects($this->never())->method('initFromSkeleton')->with($skeletonId);
- $this->model->create($entityTypeCode, $attributeSetMock, $skeletonId);
- }
- /**
- * @expectedException \Magento\Framework\Exception\InputException
- * @expectedExceptionMessage Invalid value of "0" provided for the skeletonId field.
- */
- public function testCreateThrowsExceptionIfGivenSkeletonIdIsInvalid()
- {
- $skeletonId = 0;
- $entityTypeCode = 'catalog_product';
- $attributeSetMock = $this->createPartialMock(
- \Magento\Eav\Model\Entity\Attribute\Set::class,
- ['validate', 'getId', 'setEntityTypeId', 'initFromSkeleton']
- );
- $this->repositoryMock->expects($this->never())->method('save')->with($attributeSetMock);
- $attributeSetMock->expects($this->never())->method('initFromSkeleton')->with($skeletonId);
- $this->model->create($entityTypeCode, $attributeSetMock, $skeletonId);
- }
- /**
- * @expectedException \Exception
- * @expectedExceptionMessage Wrong attribute properties
- */
- public function testCreateThrowsExceptionIfAttributeSetNotValid()
- {
- $entityTypeId = 4;
- $skeletonId = 5;
- $entityTypeCode = 'catalog_product';
- $attributeSetMock = $this->createPartialMock(
- \Magento\Eav\Model\Entity\Attribute\Set::class,
- ['validate', 'getId', 'setEntityTypeId', 'initFromSkeleton']
- );
- $entityTypeMock = $this->createMock(\Magento\Eav\Model\Entity\Type::class);
- $entityTypeMock->expects($this->any())->method('getId')->will($this->returnValue($entityTypeId));
- $this->eavConfigMock->expects($this->once())
- ->method('getEntityType')
- ->with($entityTypeCode)
- ->will($this->returnValue($entityTypeMock));
- $attributeSetMock->expects($this->once())->method('setEntityTypeId')->with($entityTypeId);
- $attributeSetMock->expects($this->once())
- ->method('validate')
- ->willThrowException(new \Exception('Wrong attribute properties'));
- $this->repositoryMock->expects($this->never())->method('save')->with($attributeSetMock);
- $attributeSetMock->expects($this->never())->method('initFromSkeleton')->with($skeletonId);
- $this->model->create($entityTypeCode, $attributeSetMock, $skeletonId);
- }
- }
|