1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Customer\Test\Unit\Model\Metadata;
use Magento\Customer\Api\Data\AttributeMetadataInterface;
use Magento\Customer\Model\Attribute;
use Magento\Customer\Model\AttributeMetadataDataProvider;
use Magento\Customer\Model\Metadata\AttributeResolver;
class AttributeResolverTest extends \PHPUnit\Framework\TestCase
{
/** @var AttributeResolver */
protected $model;
/** @var AttributeMetadataDataProvider|\PHPUnit_Framework_MockObject_MockObject */
protected $metadataDataProviderMock;
protected function setUp()
{
$this->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);
}
}