forked from codeigniter4/CodeIgniter4
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBaseConnectionTest.php
More file actions
459 lines (380 loc) · 15.9 KB
/
BaseConnectionTest.php
File metadata and controls
459 lines (380 loc) · 15.9 KB
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
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
<?php
declare(strict_types=1);
/**
* This file is part of CodeIgniter 4 framework.
*
* (c) CodeIgniter Foundation <admin@codeigniter.com>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
namespace CodeIgniter\Database;
use CodeIgniter\Database\Exceptions\DatabaseException;
use CodeIgniter\Test\CIUnitTestCase;
use CodeIgniter\Test\Mock\MockConnection;
use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\Attributes\Group;
use Throwable;
/**
* @internal
*/
#[Group('Others')]
final class BaseConnectionTest extends CIUnitTestCase
{
private array $options = [
'DSN' => '',
'hostname' => 'localhost',
'username' => 'first',
'password' => 'last',
'database' => 'dbname',
'DBDriver' => 'MockDriver',
'DBPrefix' => 'test_',
'pConnect' => true,
'DBDebug' => true,
'charset' => 'utf8mb4',
'DBCollat' => 'utf8mb4_general_ci',
'swapPre' => '',
'encrypt' => false,
'compress' => false,
'failover' => [],
'dateFormat' => [
'date' => 'Y-m-d',
'datetime' => 'Y-m-d H:i:s',
'time' => 'H:i:s',
],
];
private array $failoverOptions = [
'DSN' => '',
'hostname' => 'localhost',
'username' => 'failover',
'password' => 'one',
'database' => 'failover',
'DBDriver' => 'MockDriver',
'DBPrefix' => 'test_',
'pConnect' => true,
'DBDebug' => true,
'charset' => 'utf8mb4',
'DBCollat' => 'utf8mb4_general_ci',
'swapPre' => '',
'encrypt' => false,
'compress' => false,
'failover' => [],
];
public function testSavesConfigOptions(): void
{
$db = new MockConnection($this->options);
$this->assertSame('localhost', $db->hostname);
$this->assertSame('first', $db->username);
$this->assertSame('last', $db->password);
$this->assertSame('dbname', $db->database);
$this->assertSame('MockDriver', $db->DBDriver);
$this->assertTrue($db->pConnect);
$this->assertTrue($db->DBDebug);
$this->assertSame('utf8mb4', $db->charset);
$this->assertSame('utf8mb4_general_ci', $db->DBCollat);
$this->assertSame('', $db->swapPre);
$this->assertFalse($db->encrypt);
$this->assertFalse($db->compress);
$this->assertSame([], $db->failover);
$this->assertSame([
'date' => 'Y-m-d',
'datetime' => 'Y-m-d H:i:s',
'datetime-ms' => 'Y-m-d H:i:s.v',
'datetime-us' => 'Y-m-d H:i:s.u',
'time' => 'H:i:s',
], $db->dateFormat);
}
public function testConnectionThrowExceptionWhenCannotConnect(): void
{
try {
$db = new MockConnection($this->options);
$db->shouldReturn('connect', false)->initialize();
} catch (Throwable $e) {
$this->assertInstanceOf(DatabaseException::class, $e);
$this->assertStringContainsString('Unable to connect to the database.', $e->getMessage());
}
}
public function testCanConnectAndStoreConnection(): void
{
$conn = new class () {};
$db = new MockConnection($this->options);
$db->shouldReturn('connect', $conn)->initialize();
$this->assertSame($conn, $db->getConnection());
}
public function testCanConnectToFailoverWhenNoConnectionAvailable(): void
{
$options = [
...$this->options,
...['failover' => [$this->failoverOptions]],
];
$conn = new class () {};
$db = new class ($options, $conn) extends MockConnection {
/**
* @param array<string, mixed> $params
*/
public function __construct(array $params, object $return)
{
// need to call it here before any initialization
// we cannot do it directly in the property as objects
// cannot be set directly in properties
$this->shouldReturn('connect', [false, $return]);
parent::__construct($params);
}
};
$this->assertSame($conn, $db->getConnection());
$this->assertSame('failover', $db->username);
}
public function testStoresConnectionTimings(): void
{
$start = microtime(true);
$db = new MockConnection($this->options);
$db->initialize();
$this->assertGreaterThan($start, $db->getConnectStart());
$this->assertGreaterThanOrEqual(0.0, $db->getConnectDuration());
}
/**
* @see https://github.com/codeigniter4/CodeIgniter4/issues/5535
*/
public function testStoresConnectionTimingsNotConnected(): void
{
$db = new MockConnection($this->options);
$this->assertSame('0.000000', $db->getConnectDuration());
}
public function testMagicIssetTrue(): void
{
$db = new MockConnection($this->options);
$this->assertSame($db->charset !== null, isset($db->charset)); // @phpstan-ignore isset.property
}
public function testMagicIssetFalse(): void
{
$db = new MockConnection($this->options);
$this->assertFalse(isset($db->foobar)); // @phpstan-ignore property.notFound
}
public function testMagicGet(): void
{
$db = new MockConnection($this->options);
$this->assertSame('utf8mb4', $db->charset);
}
public function testMagicGetMissing(): void
{
$db = new MockConnection($this->options);
$this->assertNull($db->foobar); // @phpstan-ignore property.notFound
}
/**
* These tests are intended to confirm the current behavior.
* We do not know if all of these are the correct behavior.
*/
#[DataProvider('provideProtectIdentifiers')]
public function testProtectIdentifiers(
bool $prefixSingle,
bool $protectIdentifiers,
bool $fieldExists,
string $item,
string $expected,
): void {
$db = new MockConnection($this->options);
$return = $db->protectIdentifiers($item, $prefixSingle, $protectIdentifiers, $fieldExists);
$this->assertSame($expected, $return);
}
public static function provideProtectIdentifiers(): iterable
{
yield from [
// $prefixSingle, $protectIdentifiers, $fieldExists, $item, $expected
'empty string' => [false, true, true, '', ''],
'empty string prefix' => [true, true, true, '', '"test_"'], // Incorrect usage? or should be ''?
'single table' => [false, true, false, 'jobs', '"jobs"'],
'single table prefix' => [true, true, false, 'jobs', '"test_jobs"'],
'string' => [false, true, true, "'Accountant'", "'Accountant'"],
'single prefix' => [true, true, true, "'Accountant'", "'Accountant'"],
'numbers only' => [false, true, false, '12345', '12345'], // Should be quoted?
'numbers only prefix' => [true, true, false, '12345', '"test_12345"'],
'table AS alias' => [false, true, false, 'role AS myRole', '"role" AS "myRole"'],
'table AS alias prefix' => [true, true, false, 'role AS myRole', '"test_role" AS "myRole"'],
'quoted table' => [false, true, false, '"jobs"', '"jobs"'],
'quoted table prefix' => [true, true, false, '"jobs"', '"test_jobs"'],
'quoted table alias' => [false, true, false, '"jobs" "j"', '"jobs" "j"'],
'quoted table alias prefix' => [true, true, false, '"jobs" "j"', '"test_jobs" "j"'],
'table.*' => [false, true, true, 'jobs.*', '"test_jobs".*'], // Prefixed because it has segments
'table.* prefix' => [true, true, true, 'jobs.*', '"test_jobs".*'],
'table.column' => [false, true, true, 'users.id', '"test_users"."id"'], // Prefixed because it has segments
'table.column prefix' => [true, true, true, 'users.id', '"test_users"."id"'],
'table.column AS' => [
false, true, true,
'users.id AS user_id',
'"test_users"."id" AS "user_id"', // Prefixed because it has segments
],
'table.column AS prefix' => [
true, true, true,
'users.id AS user_id',
'"test_users"."id" AS "user_id"',
],
'function table.column' => [false, true, true, 'LOWER(jobs.name)', 'LOWER(jobs.name)'],
'function table.column prefix' => [true, true, true, 'LOWER(jobs.name)', 'LOWER(jobs.name)'],
'function only' => [false, true, true, 'RAND()', 'RAND()'],
'function column' => [false, true, true, 'SUM(id)', 'SUM(id)'],
'function column AS' => [
false, true, true,
'COUNT(payments) AS myAlias',
'COUNT(payments) AS myAlias',
],
'function column AS prefix' => [
true, true, true,
'COUNT(payments) AS myAlias',
'COUNT(payments) AS myAlias',
],
'function quoted table column AS' => [
false, true, true,
'MAX("db"."payments") AS "payments"',
'MAX("db"."payments") AS "payments"',
],
'quoted column operator AS' => [
false, true, true,
'"numericValue1" + "numericValue2" AS "numericResult"',
'"numericValue1"" + ""numericValue2" AS "numericResult"', // Cannot process correctly
],
'quoted column operator AS no-protect' => [
false, false, true,
'"numericValue1" + "numericValue2" AS "numericResult"',
'"numericValue1" + "numericValue2" AS "numericResult"',
],
'sub query' => [
false, true, true,
'(SELECT SUM(payments.amount) FROM payments WHERE payments.invoice_id=4) AS amount_paid)',
'(SELECT SUM(payments.amount) FROM payments WHERE payments.invoice_id=4) AS amount_paid)',
],
'sub query with missing `)` at the end' => [
false, true, true,
'(SELECT MAX(advance_amount) FROM "orders" WHERE "id" > 2',
'(SELECT MAX(advance_amount) FROM "orders" WHERE "id" > 2',
],
];
}
/**
* These tests are intended to confirm the current behavior.
*/
#[DataProvider('provideEscapeIdentifiers')]
public function testEscapeIdentifiers(string $item, string $expected): void
{
$db = new MockConnection($this->options);
$return = $db->escapeIdentifiers($item);
$this->assertSame($expected, $return);
}
/**
* @return iterable<string, list<string>>
*/
public static function provideEscapeIdentifiers(): iterable
{
yield from [
// $item, $expected
'simple' => ['test', '"test"'],
'with dots' => ['com.sitedb.web', '"com"."sitedb"."web"'],
];
}
#[DataProvider('provideEscapeIdentifier')]
public function testEscapeIdentifier(string $item, string $expected): void
{
$db = new MockConnection($this->options);
$return = $db->escapeIdentifier($item);
$this->assertSame($expected, $return);
}
/**
* @return iterable<string, list<string>>
*/
public static function provideEscapeIdentifier(): iterable
{
yield from [
// $item, $expected
'simple' => ['test', '"test"'],
'with dots' => ['com.sitedb.web', '"com.sitedb.web"'],
];
}
public function testConvertTimezoneToOffsetWithOffset(): void
{
$db = new MockConnection($this->options);
// Offset strings should be returned as-is
$result = $this->getPrivateMethodInvoker($db, 'convertTimezoneToOffset')('+05:30');
$this->assertSame('+05:30', $result);
$result = $this->getPrivateMethodInvoker($db, 'convertTimezoneToOffset')('-08:00');
$this->assertSame('-08:00', $result);
$result = $this->getPrivateMethodInvoker($db, 'convertTimezoneToOffset')('+00:00');
$this->assertSame('+00:00', $result);
}
public function testConvertTimezoneToOffsetWithNamedTimezone(): void
{
$db = new MockConnection($this->options);
// UTC should always be +00:00
$result = $this->getPrivateMethodInvoker($db, 'convertTimezoneToOffset')('UTC');
$this->assertSame('+00:00', $result);
$result = $this->getPrivateMethodInvoker($db, 'convertTimezoneToOffset')('America/New_York');
$this->assertContains($result, ['-05:00', '-04:00']); // EST/EDT
$result = $this->getPrivateMethodInvoker($db, 'convertTimezoneToOffset')('Europe/Paris');
$this->assertContains($result, ['+01:00', '+02:00']); // CET/CEST
$result = $this->getPrivateMethodInvoker($db, 'convertTimezoneToOffset')('Asia/Tokyo');
$this->assertSame('+09:00', $result); // JST (no DST)
}
public function testConvertTimezoneToOffsetWithInvalidTimezone(): void
{
$db = new MockConnection($this->options);
$result = $this->getPrivateMethodInvoker($db, 'convertTimezoneToOffset')('Invalid/Timezone');
$this->assertSame('+00:00', $result);
$this->assertLogged('error', "Invalid timezone 'Invalid/Timezone'. Falling back to UTC. DateTimeZone::__construct(): Unknown or bad timezone (Invalid/Timezone).");
}
public function testGetSessionTimezoneWithFalse(): void
{
$options = $this->options;
$options['timezone'] = false;
$db = new MockConnection($options);
$result = $this->getPrivateMethodInvoker($db, 'getSessionTimezone')();
$this->assertNull($result);
}
public function testGetSessionTimezoneWithTrue(): void
{
$options = $this->options;
$options['timezone'] = true;
$db = new MockConnection($options);
$result = $this->getPrivateMethodInvoker($db, 'getSessionTimezone')();
$this->assertSame('+00:00', $result); // UTC = +00:00
}
public function testGetSessionTimezoneWithSpecificOffset(): void
{
$options = $this->options;
$options['timezone'] = '+05:30';
$db = new MockConnection($options);
$result = $this->getPrivateMethodInvoker($db, 'getSessionTimezone')();
$this->assertSame('+05:30', $result);
}
public function testGetSessionTimezoneWithSpecificNamedTimezone(): void
{
$options = $this->options;
$options['timezone'] = 'America/Chicago';
$db = new MockConnection($options);
$result = $this->getPrivateMethodInvoker($db, 'getSessionTimezone')();
$this->assertContains($result, ['-06:00', '-05:00']);
}
public function testGetSessionTimezoneWithoutTimezoneKey(): void
{
$db = new MockConnection($this->options);
$result = $this->getPrivateMethodInvoker($db, 'getSessionTimezone')();
$this->assertNull($result);
}
public function testCallFunctionDoesNotDoublePrefixAlreadyPrefixedName(): void
{
$db = new class ($this->options) extends MockConnection {
protected function getDriverFunctionPrefix(): string
{
return 'str_';
}
};
$this->assertTrue($db->callFunction('str_contains', 'CodeIgniter', 'Ignite'));
}
public function testCallFunctionPrefixesUnprefixedName(): void
{
$db = new class ($this->options) extends MockConnection {
protected function getDriverFunctionPrefix(): string
{
return 'str_';
}
};
$this->assertTrue($db->callFunction('contains', 'CodeIgniter', 'Ignite'));
}
}