-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathDatabaseAccessorTest.php
315 lines (295 loc) · 11.1 KB
/
DatabaseAccessorTest.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
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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
<?php
/**
* This file is part of MetaModels/attribute_translatedtabletext.
*
* (c) 2012-2021 The MetaModels team.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* This project is provided in good faith and hope to be usable by anyone.
*
* @package MetaModels/attribute_translatedtabletext
* @author Christian Schiffler <[email protected]>
* @author Sven Baumann <[email protected]>
* @copyright 2012-2021 The MetaModels team.
* @license https://github.com/MetaModels/attribute_translatedtabletext/blob/master/LICENSE LGPL-3.0-or-later
* @filesource
*/
namespace MetaModels\AttributeTranslatedTableTextBundle\Test;
use Doctrine\DBAL\ArrayParameterType;
use Doctrine\DBAL\Connection;
use Doctrine\DBAL\Query\QueryBuilder;
use Doctrine\DBAL\Result;
use MetaModels\AttributeTranslatedTableTextBundle\DatabaseAccessor;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
/**
* Unit tests to test class GeoProtection.
*
* @covers \MetaModels\AttributeTranslatedTableTextBundle\DatabaseAccessor
*/
class DatabaseAccessorTest extends TestCase
{
/**
* Mock the database connection.
*
* @return MockObject|Connection
*/
private function mockConnection()
{
return $this->getMockBuilder(Connection::class)
->disableOriginalConstructor()
->getMock();
}
/**
* Test that the class can be instantiated.
*
* @return void
*/
public function testInstantiation(): void
{
self::assertInstanceOf(DatabaseAccessor::class, new DatabaseAccessor($this->mockConnection()));
}
/**
* Test storing of a data row.
*
* @return void
*/
public function testSetDataRow(): void
{
$insertBuilder = $this
->getMockBuilder(QueryBuilder::class)
->disableOriginalConstructor()
->getMock();
$insertBuilder
->expects(self::once())
->method('insert')
->with('tl_metamodel_translatedtabletext')
->willReturn($insertBuilder);
$insertBuilder
->expects(self::once())
->method('values')
->with([
'tl_metamodel_translatedtabletext.tstamp' => ':tstamp',
'tl_metamodel_translatedtabletext.value' => ':value',
'tl_metamodel_translatedtabletext.att_id' => ':att_id',
'tl_metamodel_translatedtabletext.row' => ':row',
'tl_metamodel_translatedtabletext.col' => ':col',
'tl_metamodel_translatedtabletext.item_id' => ':item_id',
'tl_metamodel_translatedtabletext.langcode' => ':langcode',
])
->willReturn($insertBuilder);
$insertBuilder
->expects(self::once())
->method('setParameters')
->with([
'tstamp' => \time(),
'value' => 'value',
'att_id' => 42,
'row' => 0,
'col' => 0,
'item_id' => 21,
'langcode' => 'en',
])
->willReturn($insertBuilder);
$insertBuilder
->expects(self::once())
->method('executeQuery');
$connection = $this->mockConnection();
$connection->expects(self::once())->method('createQueryBuilder')->willReturn($insertBuilder);
$accessor = new DatabaseAccessor($connection);
$accessor->setDataRow(42, 21, 'en', 0, 0, 'value');
}
/**
* Test removal of data.
*
* @return void
*/
public function testRemoveDataForIds(): void
{
$deleteBuilder = $this
->getMockBuilder(QueryBuilder::class)
->disableOriginalConstructor()
->getMock();
$deleteBuilder
->expects(self::once())
->method('delete')
->with('tl_metamodel_translatedtabletext')
->willReturn($deleteBuilder);
$deleteBuilder
->expects(self::exactly(3))
->method('andWhere')
->withConsecutive(
['tl_metamodel_translatedtabletext.att_id=:att_id'],
['tl_metamodel_translatedtabletext.item_id IN (:item_ids)'],
['tl_metamodel_translatedtabletext.langcode=:langcode']
)
->willReturn($deleteBuilder);
$deleteBuilder
->expects(self::exactly(3))
->method('setParameter')
->withConsecutive(
['att_id', 42],
['item_ids', [21], Connection::PARAM_STR_ARRAY],
['langcode', 'en']
)
->willReturn($deleteBuilder);
$connection = $this->mockConnection();
$connection->expects(self::once())->method('createQueryBuilder')->willReturn($deleteBuilder);
$accessor = new DatabaseAccessor($connection);
$accessor->removeDataForIds(42, [21], 'en');
}
/**
* Test that fetching of data works.
*
* @return void
*
* @SuppressWarnings(PHPMD.ExcessiveMethodLength)
*/
public function testFetchDataFor(): void
{
$queryBuilder = $this
->getMockBuilder(QueryBuilder::class)
->disableOriginalConstructor()
->getMock();
$connection = $this->mockConnection();
$connection->expects(self::once())->method('createQueryBuilder')->willReturn($queryBuilder);
$queryBuilder
->expects(self::once())
->method('select')
->with('*')
->willReturn($queryBuilder);
$queryBuilder
->expects(self::once())
->method('from')
->with('tl_metamodel_translatedtabletext', 't')
->willReturn($queryBuilder);
$queryBuilder
->expects(self::once())
->method('orderBy')
->with('t.item_id', 'ASC')
->willReturn($queryBuilder);
$queryBuilder
->expects(self::exactly(2))
->method('addOrderBy')
->willReturnCallback(static function (string $column, string $direction) use ($queryBuilder): QueryBuilder {
static $callCount = 0;
switch (++$callCount) {
case 1:
self::assertSame('t.row', $column);
self::assertSame('ASC', $direction);
return $queryBuilder;
case 2:
self::assertSame('t.col', $column);
self::assertSame('ASC', $direction);
return $queryBuilder;
}
self::fail('Called too many times');
});
$queryBuilder
->expects(self::exactly(3))
->method('andWhere')
->willReturnCallback(static function (string $condition) use ($queryBuilder): QueryBuilder {
static $callCount = 0;
switch (++$callCount) {
case 1:
self::assertSame('t.att_id=:att_id', $condition);
return $queryBuilder;
case 2:
self::assertSame('t.item_id IN (:item_ids)', $condition);
return $queryBuilder;
case 3:
self::assertSame('t.langcode=:langcode', $condition);
return $queryBuilder;
}
self::fail('Called too many times');
});
$queryBuilder
->expects(self::exactly(3))
->method('setParameter')
->willReturnCallback(
static function (string $parameter, mixed $value, ?int $type = null) use ($queryBuilder): QueryBuilder {
static $callCount = 0;
switch (++$callCount) {
case 1:
self::assertSame('att_id', $parameter);
self::assertSame('42', $value);
return $queryBuilder;
case 2:
self::assertSame('item_ids', $parameter);
self::assertSame([21], $value);
self::assertSame(ArrayParameterType::STRING, $type);
return $queryBuilder;
case 3:
self::assertSame('langcode', $parameter);
self::assertSame('en', $value);
return $queryBuilder;
}
self::fail('Called too many times');
}
);
$mockResult = $this->getMockBuilder(Result::class)->disableOriginalConstructor()->getMock();
$queryBuilder
->expects(self::once())
->method('executeQuery')
->willReturn($mockResult);
$mockResult
->expects(self::exactly(6))
->method('fetchAssociative')
->willReturnOnConsecutiveCalls(
$this->langRow(1, '1', '42', 0, 0, 21, 'en'),
$this->langRow(1, '2', '42', 0, 1, 21, 'en'),
$this->langRow(1, '3', '42', 0, 2, 21, 'en'),
$this->langRow(1, '4', '42', 2, 0, 21, 'en'),
$this->langRow(1, '6', '42', 2, 2, 21, 'en'),
null
);
$accessor = new DatabaseAccessor($connection);
self::assertSame(
[21 => [
0 => [
$this->langRow(1, '1', '42', 0, 0, '21', 'en'),
$this->langRow(1, '2', '42', 0, 1, '21', 'en'),
$this->langRow(1, '3', '42', 0, 2, '21', 'en'),
],
1 => [
$this->langRow(0, '', '42', 1, 0, '21', 'en'),
$this->langRow(0, '', '42', 1, 1, '21', 'en'),
$this->langRow(0, '', '42', 1, 2, '21', 'en'),
],
2 => [
$this->langRow(1, '4', '42', 2, 0, '21', 'en'),
$this->langRow(0, '', '42', 2, 1, '21', 'en'),
$this->langRow(1, '6', '42', 2, 2, '21', 'en'),
]
]],
$accessor->fetchDataFor('42', [21], 'en', 3)
);
}
/**
* Build a database row from the passed values.
*
* @param int $tstamp The timestamp.
* @param string $value The value.
* @param string $attId The attribute id.
* @param int $row The row index.
* @param int $col The column index.
* @param string $itemId The item id.
* @param string $langcode The language code.
*
* @return array
*/
private function langRow($tstamp, $value, $attId, $row, $col, $itemId, $langcode)
{
return [
'tstamp' => $tstamp,
'value' => $value,
'att_id' => $attId,
'row' => $row,
'col' => $col,
'item_id' => $itemId,
'langcode' => $langcode,
];
}
}