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
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Persistent\Test\Unit\Observer;
use Magento\Persistent\Observer\RefreshCustomerData;
class RefreshCustomerDataTest extends \PHPUnit\Framework\TestCase
{
/**
* @var RefreshCustomerData
*/
private $observer;
/**
* @var \Magento\Framework\Stdlib\Cookie\PhpCookieManager|\PHPUnit_Framework_MockObject_MockObject
*/
private $cookieManager;
/**
* @var \Magento\Framework\Stdlib\Cookie\CookieMetadataFactory|\PHPUnit_Framework_MockObject_MockObject
*/
private $metadataFactory;
/**
* @var \Magento\Framework\Stdlib\Cookie\CookieMetadata|\PHPUnit_Framework_MockObject_MockObject
*/
private $metadata;
/**
* @var \Magento\Customer\Model\Session|\PHPUnit_Framework_MockObject_MockObject
*/
private $sessionManager;
public function setUp()
{
$this->cookieManager = $this->getMockBuilder(\Magento\Framework\Stdlib\Cookie\PhpCookieManager::class)
->disableOriginalConstructor()
->getMock();
$this->metadataFactory = $this->getMockBuilder(\Magento\Framework\Stdlib\Cookie\CookieMetadataFactory::class)
->disableOriginalConstructor()
->getMock();
$this->metadata = $this->getMockBuilder(\Magento\Framework\Stdlib\Cookie\CookieMetadata::class)
->disableOriginalConstructor()
->getMock();
$this->sessionManager = $this->getMockBuilder(\Magento\Framework\Session\SessionManager::class)
->disableOriginalConstructor()
->getMock();
$this->observer = new RefreshCustomerData($this->cookieManager, $this->metadataFactory);
}
/**
* @param bool $result
* @param string $callCount
* @return void
* @dataProvider beforeStartDataProvider
*/
public function testBeforeStart($result, $callCount)
{
$observerMock = $this->createMock(\Magento\Framework\Event\Observer::class);
$frontendSessionCookieName = 'mage-cache-sessid';
$this->cookieManager->expects($this->once())
->method('getCookie')
->with($frontendSessionCookieName)
->willReturn($result);
$this->metadataFactory->expects($this->{$callCount}())
->method('createCookieMetadata')
->willReturn($this->metadata);
$this->metadata->expects($this->{$callCount}())
->method('setPath')
->with('/');
$this->cookieManager->expects($this->{$callCount}())
->method('deleteCookie')
->with('mage-cache-sessid', $this->metadata);
$this->observer->execute($observerMock);
}
/**
* @return array
*/
public function beforeStartDataProvider()
{
return [
[true, 'once'],
[false, 'never']
];
}
}