-
Notifications
You must be signed in to change notification settings - Fork 9.4k
/
Copy pathDataTest.php
112 lines (103 loc) · 3.21 KB
/
DataTest.php
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
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Framework\Config\Test\Unit;
use Magento\Framework\Config\CacheInterface;
use Magento\Framework\Config\Data;
use Magento\Framework\Config\ReaderInterface;
use Magento\Framework\Serialize\SerializerInterface;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
class DataTest extends TestCase
{
/**
* @var ReaderInterface|MockObject
*/
private $readerMock;
/**
* @var CacheInterface|MockObject
*/
private $cacheMock;
/**
* @var SerializerInterface|MockObject
*/
private $serializerMock;
protected function setUp(): void
{
$this->readerMock = $this->getMockForAbstractClass(ReaderInterface::class);
$this->cacheMock = $this->getMockForAbstractClass(CacheInterface::class);
$this->serializerMock = $this->getMockForAbstractClass(SerializerInterface::class);
}
public function testGetConfigNotCached()
{
$data = ['a' => 'b'];
$cacheId = 'test';
$this->cacheMock->expects($this->once())
->method('load')
->willReturn(false);
$this->readerMock->expects($this->once())
->method('read')
->willReturn($data);
$this->serializerMock->expects($this->once())
->method('serialize')
->with($data);
$config = new Data(
$this->readerMock,
$this->cacheMock,
$cacheId,
$this->serializerMock
);
$this->assertEquals($data, $config->get());
$this->assertEquals('b', $config->get('a'));
$this->assertNull($config->get('a/b'));
$this->assertEquals(33, $config->get('a/b', 33));
}
public function testGetConfigCached()
{
$data = ['a' => 'b'];
$serializedData = '{"a":"b"}';
$cacheId = 'test';
$this->cacheMock->expects($this->once())
->method('load')
->willReturn($serializedData);
$this->readerMock->expects($this->never())
->method('read');
$this->serializerMock->expects($this->once())
->method('unserialize')
->with($serializedData)
->willReturn($data);
$config = new Data(
$this->readerMock,
$this->cacheMock,
$cacheId,
$this->serializerMock
);
$this->assertEquals($data, $config->get());
$this->assertEquals('b', $config->get('a'));
}
public function testReset()
{
$serializedData = '';
$cacheId = 'test';
$this->cacheMock->expects($this->once())
->method('load')
->willReturn($serializedData);
$this->serializerMock->expects($this->once())
->method('unserialize')
->with($serializedData)
->willReturn([]);
$this->cacheMock->expects($this->once())
->method('remove')
->with($cacheId);
$config = new Data(
$this->readerMock,
$this->cacheMock,
$cacheId,
$this->serializerMock
);
$config->reset();
}
}