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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\Session;
use Magento\Framework\App\State;
use Zend\Stdlib\Parameters;
class SidResolverTest extends \PHPUnit\Framework\TestCase
{
/**
* @var \Magento\Framework\Session\SidResolver
*/
protected $model;
/**
* @var \Magento\Framework\Session\Generic
*/
protected $session;
/**
* @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Store\Model\Store
*/
protected $store;
/**
* @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Framework\App\Config\ScopeConfigInterface
*/
protected $scopeConfig;
/**
* @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Framework\UrlInterface
*/
protected $urlBuilder;
/**
* @var string
*/
protected $customSessionName = 'csn';
/**
* @var string
*/
protected $customSessionQueryParam = 'csqp';
/**
* @var \Magento\Framework\App\RequestInterface
*/
protected $request;
/**
* @var State|\PHPUnit_Framework_MockObject_MockObject
*/
private $appState;
protected function setUp()
{
$objectManager = \Magento\TestFramework\Helper\Bootstrap::getObjectManager();
/** @var \Magento\Framework\Session\Generic _model */
$this->session = $objectManager->get(\Magento\Framework\Session\Generic::class);
$this->scopeConfig = $this->getMockBuilder(
\Magento\Framework\App\Config\ScopeConfigInterface::class
)->setMethods(
['getValue']
)->disableOriginalConstructor()->getMockForAbstractClass();
$this->urlBuilder = $this->getMockBuilder(
\Magento\Framework\Url::class
)->setMethods(
['isOwnOriginUrl']
)->disableOriginalConstructor()->getMockForAbstractClass();
$this->request = $objectManager->get(\Magento\Framework\App\RequestInterface::class);
$this->appState = $this->getMockBuilder(State::class)
->setMethods(['getAreaCode'])
->disableOriginalConstructor()
->getMock();
$this->model = $objectManager->create(
\Magento\Framework\Session\SidResolver::class,
[
'scopeConfig' => $this->scopeConfig,
'urlBuilder' => $this->urlBuilder,
'sidNameMap' => [$this->customSessionName => $this->customSessionQueryParam],
'request' => $this->request,
'appState' => $this->appState,
]
);
}
public function tearDown()
{
$this->request->setQuery(new Parameters());
}
/**
* @param mixed $sid
* @param bool $useFrontedSid
* @param bool $isOwnOriginUrl
* @param mixed $testSid
* @dataProvider dataProviderTestGetSid
*/
public function testGetSid($sid, $useFrontedSid, $isOwnOriginUrl, $testSid)
{
$this->appState->expects($this->atLeastOnce())
->method('getAreaCode')
->willReturn(\Magento\Framework\App\Area::AREA_FRONTEND);
$this->scopeConfig->expects(
$this->any()
)->method(
'isSetFlag'
)->with(
\Magento\Framework\Session\SidResolver::XML_PATH_USE_FRONTEND_SID,
\Magento\Store\Model\ScopeInterface::SCOPE_STORE
)->will(
$this->returnValue($useFrontedSid)
);
$this->urlBuilder->expects($this->any())->method('isOwnOriginUrl')->will($this->returnValue($isOwnOriginUrl));
if ($testSid) {
$this->request->getQuery()->set($this->model->getSessionIdQueryParam($this->session), $testSid);
}
$this->assertEquals($sid, $this->model->getSid($this->session));
$this->assertEquals($useFrontedSid, $this->model->getUseSessionInUrl());
}
/**
* @return array
*/
public function dataProviderTestGetSid()
{
return [
[null, false, false, 'test-sid'],
[null, false, true, 'test-sid'],
[null, false, false, 'test-sid'],
[null, true, false, 'test-sid'],
[null, false, true, 'test-sid'],
['test-sid', true, true, 'test-sid'],
[null, true, true, null]
];
}
public function testGetSessionIdQueryParam()
{
$this->assertEquals(SidResolver::SESSION_ID_QUERY_PARAM, $this->model->getSessionIdQueryParam($this->session));
}
public function testGetSessionIdQueryParamCustom()
{
$this->session->destroy();
$oldSessionName = $this->session->getName();
$this->session->setName($this->customSessionName);
$this->assertEquals($this->customSessionQueryParam, $this->model->getSessionIdQueryParam($this->session));
$this->session->setName($oldSessionName);
$this->session->start();
}
public function testSetGetUseSessionVar()
{
$this->assertFalse($this->model->getUseSessionVar());
$this->model->setUseSessionVar(true);
$this->assertTrue($this->model->getUseSessionVar());
}
/**
* Variations of Use SID on frontend value.
*
* @return array
*/
public function dataProviderSessionInUrl()
{
return [
[true],
[false],
];
}
/**
* Testing "Use SID in URLs" flag.
* Checking that the method returns config value if not explicitly
* overridden.
*
* @param bool $configValue Use SID on frontend config value.
* @dataProvider dataProviderSessionInUrl
*/
public function testSetGetUseSessionInUrl($configValue)
{
$this->scopeConfig->expects(
$this->any()
)->method(
'isSetFlag'
)->with(
\Magento\Framework\Session\SidResolver::XML_PATH_USE_FRONTEND_SID,
\Magento\Store\Model\ScopeInterface::SCOPE_STORE
)->will(
$this->returnValue($configValue)
);
$this->assertEquals($configValue, $this->model->getUseSessionInUrl());
$this->model->setUseSessionInUrl(!$configValue);
$this->assertEquals(!$configValue, $this->model->getUseSessionInUrl());
}
}