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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Analytics\Test\Unit\Model;
use Magento\Analytics\Api\Data\LinkInterface;
use Magento\Analytics\Api\Data\LinkInterfaceFactory;
use Magento\Analytics\Model\FileInfo;
use Magento\Analytics\Model\FileInfoManager;
use Magento\Analytics\Model\LinkProvider;
use Magento\Framework\TestFramework\Unit\Helper\ObjectManager as ObjectManagerHelper;
use Magento\Framework\UrlInterface;
use Magento\Store\Model\Store;
use Magento\Store\Model\StoreManagerInterface;
class LinkProviderTest extends \PHPUnit\Framework\TestCase
{
/**
* @var ObjectManagerHelper
*/
private $objectManagerHelper;
/**
* @var LinkInterfaceFactory | \PHPUnit_Framework_MockObject_MockObject
*/
private $linkInterfaceFactoryMock;
/**
* @var FileInfoManager | \PHPUnit_Framework_MockObject_MockObject
*/
private $fileInfoManagerMock;
/**
* @var StoreManagerInterface | \PHPUnit_Framework_MockObject_MockObject
*/
private $storeManagerInterfaceMock;
/**
* @var LinkInterface | \PHPUnit_Framework_MockObject_MockObject
*/
private $linkInterfaceMock;
/**
* @var FileInfo | \PHPUnit_Framework_MockObject_MockObject
*/
private $fileInfoMock;
/**
* @var Store | \PHPUnit_Framework_MockObject_MockObject
*/
private $storeMock;
/**
* @var LinkProvider
*/
private $linkProvider;
/**
* @return void
*/
protected function setUp()
{
$this->linkInterfaceFactoryMock = $this->getMockBuilder(LinkInterfaceFactory::class)
->disableOriginalConstructor()
->setMethods(['create'])
->getMock();
$this->fileInfoManagerMock = $this->getMockBuilder(FileInfoManager::class)
->disableOriginalConstructor()
->getMock();
$this->storeManagerInterfaceMock = $this->getMockBuilder(StoreManagerInterface::class)
->getMockForAbstractClass();
$this->linkInterfaceMock = $this->getMockBuilder(LinkInterface::class)
->getMockForAbstractClass();
$this->fileInfoMock = $this->getMockBuilder(FileInfo::class)
->disableOriginalConstructor()
->getMock();
$this->storeMock = $this->getMockBuilder(Store::class)
->disableOriginalConstructor()
->getMock();
$this->objectManagerHelper = new ObjectManagerHelper($this);
$this->linkProvider = $this->objectManagerHelper->getObject(
LinkProvider::class,
[
'linkFactory' => $this->linkInterfaceFactoryMock,
'fileInfoManager' => $this->fileInfoManagerMock,
'storeManager' => $this->storeManagerInterfaceMock
]
);
}
public function testGet()
{
$baseUrl = 'http://magento.local/pub/media/';
$fileInfoPath = 'analytics/data.tgz';
$fileInitializationVector = 'er312esq23eqq';
$this->fileInfoManagerMock->expects($this->once())
->method('load')
->willReturn($this->fileInfoMock);
$this->linkInterfaceFactoryMock->expects($this->once())
->method('create')
->with(
[
'initializationVector' => base64_encode($fileInitializationVector),
'url' => $baseUrl . $fileInfoPath
]
)
->willReturn($this->linkInterfaceMock);
$this->storeManagerInterfaceMock->expects($this->once())
->method('getStore')->willReturn($this->storeMock);
$this->storeMock->expects($this->once())
->method('getBaseUrl')
->with(
UrlInterface::URL_TYPE_MEDIA
)
->willReturn($baseUrl);
$this->fileInfoMock->expects($this->atLeastOnce())
->method('getPath')
->willReturn($fileInfoPath);
$this->fileInfoMock->expects($this->atLeastOnce())
->method('getInitializationVector')
->willReturn($fileInitializationVector);
$this->assertEquals($this->linkInterfaceMock, $this->linkProvider->get());
}
/**
* @param string|null $fileInfoPath
* @param string|null $fileInitializationVector
*
* @dataProvider fileNotReadyDataProvider
* @expectedException \Magento\Framework\Exception\NoSuchEntityException
* @expectedExceptionMessage File is not ready yet.
*/
public function testFileNotReady($fileInfoPath, $fileInitializationVector)
{
$this->fileInfoManagerMock->expects($this->once())
->method('load')
->willReturn($this->fileInfoMock);
$this->fileInfoMock->expects($this->once())
->method('getPath')
->willReturn($fileInfoPath);
$this->fileInfoMock->expects($this->any())
->method('getInitializationVector')
->willReturn($fileInitializationVector);
$this->linkProvider->get();
}
/**
* @return array
*/
public function fileNotReadyDataProvider()
{
return [
[null, 'initVector'],
['path', null],
['', 'initVector'],
['path', ''],
['', ''],
[null, null]
];
}
}