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
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Catalog\Test\Unit\Cron;
use Magento\Framework\TestFramework\Unit\Helper\ObjectManager as ObjectManagerHelper;
class FrontendActionsFlushTest extends \PHPUnit\Framework\TestCase
{
/** @var \Magento\Catalog\Cron\FrontendActionsFlush */
protected $model;
/** @var ObjectManagerHelper */
protected $objectManagerHelper;
/** @var \Magento\Catalog\Model\ResourceModel\ProductFrontendAction|\PHPUnit_Framework_MockObject_MockObject */
protected $productFrontendActionMock;
/** @var \Magento\Catalog\Model\FrontendStorageConfigurationPool|\PHPUnit_Framework_MockObject_MockObject */
protected $frontendStorageConfigurationPoolMock;
protected function setUp()
{
$this->productFrontendActionMock = $this->getMockBuilder(
\Magento\Catalog\Model\ResourceModel\ProductFrontendAction::class
)
->disableOriginalConstructor()
->getMock();
$this->frontendStorageConfigurationPoolMock = $this->getMockBuilder(
\Magento\Catalog\Model\FrontendStorageConfigurationPool::class
)
->disableOriginalConstructor()
->getMock();
$this->objectManagerHelper = new ObjectManagerHelper($this);
$this->model = $this->objectManagerHelper->getObject(
\Magento\Catalog\Cron\FrontendActionsFlush::class,
[
'productFrontendActionResource' => $this->productFrontendActionMock,
'frontendStorageConfigurationPool' => $this->frontendStorageConfigurationPoolMock
]
);
}
public function testExecute()
{
$connectionMock = $this->createMock(\Magento\Framework\DB\Adapter\AdapterInterface::class);
$selectMock = $this->createMock(\Magento\Framework\DB\Select::class);
$frontendConfiguration = $this->createMock(\Magento\Catalog\Model\FrontendStorageConfigurationInterface::class);
$selectMock
->expects($this->once())
->method('from')
->with('catalog_product_frontend_action', ['action_id', 'type_id'])
->will($this->returnSelf());
$selectMock
->expects($this->once())
->method('group')
->with('type_id')
->willReturnSelf();
$frontendConfiguration->expects($this->once())
->method('get')
->willReturn([
'lifetime' => 1500
]);
$this->frontendStorageConfigurationPoolMock->expects($this->once())
->method('get')
->with('recently_viewed_product')
->willReturn($frontendConfiguration);
$this->productFrontendActionMock->expects($this->exactly(2))
->method('getMainTable')
->willReturn('catalog_product_frontend_action');
$this->productFrontendActionMock->expects($this->exactly(2))
->method('getConnection')
->willReturn($connectionMock);
$connectionMock->expects($this->once())
->method('select')
->willReturn($selectMock);
$connectionMock->expects($this->once())
->method('fetchPairs')
->with($selectMock)
->willReturn([
'recently_viewed_product'
]);
$connectionMock->expects($this->once())
->method('quoteInto')
->with('added_at < ?', time() - 1500)
->willReturn(['added_at < ?', time() - 1500]);
$connectionMock->expects($this->once())
->method('delete')
->with('catalog_product_frontend_action', [['added_at < ?', time() - 1500]]);
$this->model->execute();
}
}