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
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Indexer\Test\Unit\Model\Config;
class DataTest extends \PHPUnit\Framework\TestCase
{
/**
* @var \Magento\Indexer\Model\Config\Data
*/
protected $model;
/**
* @var \Magento\Framework\Indexer\Config\Reader|\PHPUnit_Framework_MockObject_MockObject
*/
protected $reader;
/**
* @var \Magento\Framework\Config\CacheInterface|\PHPUnit_Framework_MockObject_MockObject
*/
protected $cache;
/**
* @var \Magento\Indexer\Model\ResourceModel\Indexer\State\Collection|\PHPUnit_Framework_MockObject_MockObject
*/
protected $stateCollection;
/**
* @var string
*/
protected $cacheId = 'indexer_config';
/**
* @var string
*/
protected $indexers = ['indexer1' => [], 'indexer3' => []];
/**
* @var \Magento\Framework\Serialize\SerializerInterface|\PHPUnit_Framework_MockObject_MockObject
*/
private $serializerMock;
protected function setUp()
{
$this->reader = $this->createPartialMock(\Magento\Framework\Indexer\Config\Reader::class, ['read']);
$this->cache = $this->getMockForAbstractClass(
\Magento\Framework\Config\CacheInterface::class,
[],
'',
false,
false,
true,
['test', 'load', 'save']
);
$this->stateCollection = $this->createPartialMock(
\Magento\Indexer\Model\ResourceModel\Indexer\State\Collection::class,
['getItems']
);
$this->serializerMock = $this->createMock(\Magento\Framework\Serialize\SerializerInterface::class);
}
public function testConstructorWithCache()
{
$serializedData = 'serialized data';
$this->cache->expects($this->once())->method('test')->with($this->cacheId)->will($this->returnValue(true));
$this->cache->expects($this->once())
->method('load')
->with($this->cacheId)
->willReturn($serializedData);
$this->serializerMock->expects($this->once())
->method('unserialize')
->with($serializedData)
->willReturn($this->indexers);
$this->stateCollection->expects($this->never())->method('getItems');
$this->model = new \Magento\Indexer\Model\Config\Data(
$this->reader,
$this->cache,
$this->stateCollection,
$this->cacheId,
$this->serializerMock
);
}
public function testConstructorWithoutCache()
{
$this->cache->expects($this->once())->method('test')->with($this->cacheId)->will($this->returnValue(false));
$this->cache->expects($this->once())->method('load')->with($this->cacheId)->will($this->returnValue(false));
$this->reader->expects($this->once())->method('read')->will($this->returnValue($this->indexers));
$stateExistent = $this->createPartialMock(
\Magento\Indexer\Model\Indexer\State::class,
['getIndexerId', '__wakeup', 'delete']
);
$stateExistent->expects($this->once())->method('getIndexerId')->will($this->returnValue('indexer1'));
$stateExistent->expects($this->never())->method('delete');
$stateNonexistent = $this->createPartialMock(
\Magento\Indexer\Model\Indexer\State::class,
['getIndexerId', '__wakeup', 'delete']
);
$stateNonexistent->expects($this->once())->method('getIndexerId')->will($this->returnValue('indexer2'));
$stateNonexistent->expects($this->once())->method('delete');
$states = [$stateExistent, $stateNonexistent];
$this->stateCollection->expects($this->once())->method('getItems')->will($this->returnValue($states));
$this->model = new \Magento\Indexer\Model\Config\Data(
$this->reader,
$this->cache,
$this->stateCollection,
$this->cacheId,
$this->serializerMock
);
}
}