metadataDataProviderMock = $this->getMockBuilder( \Magento\Customer\Model\AttributeMetadataDataProvider::class )->disableOriginalConstructor()->getMock(); $this->model = new AttributeResolver( $this->metadataDataProviderMock ); } public function testGetModelByAttribute() { $entityType = 'type'; $attributeCode = 'code'; /** @var AttributeMetadataInterface|\PHPUnit_Framework_MockObject_MockObject $attributeMock */ $attributeMock = $this->getMockBuilder(\Magento\Customer\Api\Data\AttributeMetadataInterface::class) ->disableOriginalConstructor() ->getMock(); $attributeMock->expects($this->once()) ->method('getAttributeCode') ->willReturn($attributeCode); /** @var Attribute|\PHPUnit_Framework_MockObject_MockObject $modelMock */ $modelMock = $this->getMockBuilder(\Magento\Customer\Model\Attribute::class) ->disableOriginalConstructor() ->getMock(); $this->metadataDataProviderMock->expects($this->once()) ->method('getAttribute') ->with($entityType, $attributeCode) ->willReturn($modelMock); $this->assertEquals($modelMock, $this->model->getModelByAttribute($entityType, $attributeMock)); } /** * @expectedException \Magento\Framework\Exception\NoSuchEntityException * @expectedExceptionMessage No such entity with entityType = type, attributeCode = code */ public function testGetModelByAttributeWithoutModel() { $entityType = 'type'; $attributeCode = 'code'; /** @var AttributeMetadataInterface|\PHPUnit_Framework_MockObject_MockObject $attributeMock */ $attributeMock = $this->getMockBuilder(\Magento\Customer\Api\Data\AttributeMetadataInterface::class) ->disableOriginalConstructor() ->getMock(); $attributeMock->expects($this->exactly(2)) ->method('getAttributeCode') ->willReturn($attributeCode); $this->metadataDataProviderMock->expects($this->once()) ->method('getAttribute') ->with($entityType, $attributeCode) ->willReturn(false); $this->model->getModelByAttribute($entityType, $attributeMock); } }