-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathQueryBuilderTest.php
673 lines (574 loc) · 19 KB
/
QueryBuilderTest.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
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
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
<?php
declare(strict_types=1);
namespace Yiisoft\Db\Oracle\Tests;
use Throwable;
use Yiisoft\Db\Exception\Exception;
use Yiisoft\Db\Exception\InvalidArgumentException;
use Yiisoft\Db\Exception\InvalidConfigException;
use Yiisoft\Db\Exception\NotSupportedException;
use Yiisoft\Db\Expression\ExpressionInterface;
use Yiisoft\Db\Oracle\Tests\Support\TestTrait;
use Yiisoft\Db\Query\Query;
use Yiisoft\Db\Query\QueryInterface;
use Yiisoft\Db\Schema\SchemaInterface;
use Yiisoft\Db\Tests\Common\CommonQueryBuilderTest;
/**
* @group oracle
*
* @psalm-suppress PropertyNotSetInConstructor
*/
final class QueryBuilderTest extends CommonQueryBuilderTest
{
use TestTrait;
/**
* @throws Exception
* @throws InvalidConfigException
*/
public function testAddDefaultValue(): void
{
$db = $this->getConnection();
$qb = $db->getQueryBuilder();
$this->expectException(NotSupportedException::class);
$this->expectExceptionMessage('Yiisoft\Db\Oracle\DDLQueryBuilder::addDefaultValue is not supported by Oracle.');
$qb->addDefaultValue('T_constraints_1', 'CN_pk', 'C_default', 1);
}
/**
* @dataProvider \Yiisoft\Db\Oracle\Tests\Provider\QueryBuilderProvider::addForeignKey
*
* @throws Exception
* @throws InvalidConfigException
* @throws NotSupportedException
* @throws InvalidArgumentException
*/
public function testAddForeignKey(
string $name,
string $table,
array|string $columns,
string $refTable,
array|string $refColumns,
string|null $delete,
string|null $update,
string $expected
): void {
// Oracle does not support ON UPDATE CASCADE
parent::testAddForeignKey($name, $table, $columns, $refTable, $refColumns, $delete, null, $expected);
}
/**
* @throws InvalidConfigException
* @throws InvalidArgumentException
* @throws Exception
*/
public function testAddForeignKeyUpdateException(): void
{
$db = $this->getConnection();
$qb = $db->getQueryBuilder();
$this->expectException(Exception::class);
$this->expectExceptionMessage('Oracle does not support ON UPDATE clause.');
$qb->addForeignKey('T_constraints_1', 'fk1', 'C_fk1', 'T_constraints_2', 'C_fk2', 'CASCADE', 'CASCADE');
}
/**
* @dataProvider \Yiisoft\Db\Oracle\Tests\Provider\QueryBuilderProvider::addPrimaryKey
*/
public function testAddPrimaryKey(string $name, string $table, array|string $columns, string $expected): void
{
parent::testAddPrimaryKey($name, $table, $columns, $expected);
}
/**
* @dataProvider \Yiisoft\Db\Oracle\Tests\Provider\QueryBuilderProvider::addUnique
*/
public function testAddUnique(string $name, string $table, array|string $columns, string $expected): void
{
parent::testAddUnique($name, $table, $columns, $expected);
}
/**
* @throws Exception
* @throws InvalidConfigException
*/
public function testAlterColumn(): void
{
$db = $this->getConnection();
$qb = $db->getQueryBuilder();
$this->assertSame(
<<<SQL
ALTER TABLE "customer" MODIFY "email" VARCHAR2(255)
SQL,
$qb->alterColumn('customer', 'email', SchemaInterface::TYPE_STRING),
);
$db->close();
}
/**
* @dataProvider \Yiisoft\Db\Oracle\Tests\Provider\QueryBuilderProvider::batchInsert
*
* @throws Exception
* @throws InvalidConfigException
* @throws InvalidArgumentException
* @throws NotSupportedException
*/
public function testBatchInsert(
string $table,
array $columns,
iterable $rows,
string $expected,
array $expectedParams = [],
): void {
parent::testBatchInsert($table, $columns, $rows, $expected, $expectedParams);
}
/**
* @dataProvider \Yiisoft\Db\Oracle\Tests\Provider\QueryBuilderProvider::buildCondition
*
* @throws Exception
* @throws InvalidConfigException
* @throws InvalidArgumentException
* @throws NotSupportedException
*/
public function testBuildCondition(
array|ExpressionInterface|string $condition,
string|null $expected,
array $expectedParams
): void {
parent::testBuildCondition($condition, $expected, $expectedParams);
}
/**
* @dataProvider \Yiisoft\Db\Oracle\Tests\Provider\QueryBuilderProvider::buildLikeCondition
*
* @throws Exception
* @throws InvalidConfigException
* @throws InvalidArgumentException
* @throws NotSupportedException
*/
public function testBuildLikeCondition(
array|ExpressionInterface $condition,
string $expected,
array $expectedParams
): void {
parent::testBuildLikeCondition($condition, $expected, $expectedParams);
}
/**
* @throws Exception
* @throws InvalidArgumentException
* @throws InvalidConfigException
*/
public function testBuildOrderByAndLimit(): void
{
$db = $this->getConnection();
$qb = $db->getQueryBuilder();
$query = (new Query($db))
->from('admin_user')
->orderBy(['id' => SORT_ASC, 'name' => SORT_DESC])
->limit(10)
->offset(5);
$this->assertSame(
<<<SQL
WITH USER_SQL AS (SELECT * FROM admin_user ORDER BY "id", "name" DESC), PAGINATION AS (SELECT USER_SQL.*, rownum as rowNumId FROM USER_SQL)
SELECT * FROM PAGINATION WHERE rowNumId > 5 AND rownum <= 10
SQL,
$qb->buildOrderByAndLimit(
<<<SQL
SELECT * FROM admin_user
SQL,
$query->getOrderBy(),
$query->getLimit(),
$query->getOffset(),
),
);
$db->close();
}
/**
* @dataProvider \Yiisoft\Db\Oracle\Tests\Provider\QueryBuilderProvider::buildFrom
*
* @throws Exception
* @throws InvalidConfigException
* @throws InvalidArgumentException
* @throws NotSupportedException
*/
public function testBuildWithFrom(mixed $table, string $expectedSql, array $expectedParams = []): void
{
parent::testBuildWithFrom($table, $expectedSql, $expectedParams);
}
/**
* @throws Exception
* @throws InvalidConfigException
* @throws InvalidArgumentException
* @throws NotSupportedException
*/
public function testBuildWithLimit(): void
{
$db = $this->getConnection();
$qb = $db->getQueryBuilder();
$query = (new Query($db))->limit(10);
[$sql, $params] = $qb->build($query);
$this->assertSame(
<<<SQL
WITH USER_SQL AS (SELECT * FROM DUAL), PAGINATION AS (SELECT USER_SQL.*, rownum as rowNumId FROM USER_SQL)
SELECT * FROM PAGINATION WHERE rownum <= 10
SQL,
$sql,
);
$this->assertSame([], $params);
$db->close();
}
/**
* @throws Exception
* @throws InvalidConfigException
* @throws InvalidArgumentException
* @throws NotSupportedException
*/
public function testBuildWithOffset(): void
{
$db = $this->getConnection();
$qb = $db->getQueryBuilder();
$query = (new Query($db))->offset(10);
[$sql, $params] = $qb->build($query);
$this->assertSame(
<<<SQL
WITH USER_SQL AS (SELECT * FROM DUAL), PAGINATION AS (SELECT USER_SQL.*, rownum as rowNumId FROM USER_SQL)
SELECT * FROM PAGINATION WHERE rowNumId > 10
SQL,
$sql,
);
$this->assertSame([], $params);
$db->close();
}
/**
* @dataProvider \Yiisoft\Db\Oracle\Tests\Provider\QueryBuilderProvider::buildWhereExists
*
* @throws Exception
* @throws InvalidConfigException
* @throws InvalidArgumentException
* @throws NotSupportedException
*/
public function testBuildWithWhereExists(string $cond, string $expectedQuerySql): void
{
parent::testBuildWithWhereExists($cond, $expectedQuerySql);
}
/**
* @throws Exception
* @throws NotSupportedException
*/
public function testCheckIntegrity(): void
{
$db = $this->getConnection();
$qb = $db->getQueryBuilder();
$this->expectException(NotSupportedException::class);
$this->expectExceptionMessage('Yiisoft\Db\Oracle\DDLQueryBuilder::checkIntegrity is not supported by Oracle.');
$qb->checkIntegrity('', 'customer');
}
/**
* @throws Exception
* @throws InvalidConfigException
*/
public function testCreateTable(): void
{
$db = $this->getConnection();
$qb = $db->getQueryBuilder();
$this->assertSame(
<<<SQL
CREATE TABLE "test" (
\t"id" NUMBER(10) GENERATED BY DEFAULT AS IDENTITY NOT NULL PRIMARY KEY,
\t"name" VARCHAR2(255) NOT NULL,
\t"email" VARCHAR2(255) NOT NULL,
\t"status" NUMBER(10) NOT NULL,
\t"created_at" TIMESTAMP(0) NOT NULL
)
SQL,
$qb->createTable(
'test',
[
'id' => 'pk',
'name' => 'string(255) NOT NULL',
'email' => 'string(255) NOT NULL',
'status' => 'integer NOT NULL',
'created_at' => 'datetime NOT NULL',
],
),
);
$db->close();
}
/**
* @dataProvider \Yiisoft\Db\Oracle\Tests\Provider\QueryBuilderProvider::delete
*
* @throws Exception
* @throws InvalidConfigException
* @throws InvalidArgumentException
* @throws NotSupportedException
*/
public function testDelete(string $table, array|string $condition, string $expectedSQL, array $expectedParams): void
{
parent::testDelete($table, $condition, $expectedSQL, $expectedParams);
}
/**
* @throws Exception
* @throws InvalidConfigException
*/
public function testDropCommentFromColumn(): void
{
$db = $this->getConnection(true);
$qb = $db->getQueryBuilder();
$this->assertSame(
<<<SQL
COMMENT ON COLUMN "customer"."id" IS ''
SQL,
$qb->dropCommentFromColumn('customer', 'id'),
);
$db->close();
}
/**
* @throws Exception
* @throws InvalidConfigException
*/
public function testDropCommentFromTable(): void
{
$db = $this->getConnection();
$qb = $db->getQueryBuilder();
$this->assertSame(
<<<SQL
COMMENT ON TABLE "customer" IS ''
SQL,
$qb->dropCommentFromTable('customer'),
);
$db->close();
}
/**
* @throws Exception
* @throws InvalidConfigException
*/
public function testDropDefaultValue(): void
{
$db = $this->getConnection(true);
$qb = $db->getQueryBuilder();
$this->expectException(NotSupportedException::class);
$this->expectExceptionMessage(
'Yiisoft\Db\Oracle\DDLQueryBuilder::dropDefaultValue is not supported by Oracle.'
);
$qb->dropDefaultValue('T_constraints_1', 'CN_pk');
}
/**
* @throws Exception
* @throws InvalidConfigException
*/
public function testDropIndex(): void
{
$db = $this->getConnection();
$qb = $db->getQueryBuilder();
$this->assertSame(
<<<SQL
DROP INDEX "CN_constraints_2_single"
SQL,
$qb->dropIndex('T_constraints_2', 'CN_constraints_2_single'),
);
$db->close();
}
/**
* @dataProvider \Yiisoft\Db\Oracle\Tests\Provider\QueryBuilderProvider::insert
*
* @throws Exception
* @throws InvalidConfigException
* @throws InvalidArgumentException
* @throws NotSupportedException
*/
public function testInsert(
string $table,
array|QueryInterface $columns,
array $params,
string $expectedSQL,
array $expectedParams
): void {
parent::testInsert($table, $columns, $params, $expectedSQL, $expectedParams);
}
/**
* @dataProvider \Yiisoft\Db\Oracle\Tests\Provider\QueryBuilderProvider::insertWithReturningPks
*
* @throws Exception
* @throws InvalidConfigException
* @throws NotSupportedException
*/
public function testInsertWithReturningPks(
string $table,
array|QueryInterface $columns,
array $params,
string $expectedSQL,
array $expectedParams
): void {
$this->expectException(NotSupportedException::class);
$this->expectExceptionMessage(
'Yiisoft\Db\Oracle\DMLQueryBuilder::insertWithReturningPks is not supported by Oracle.',
);
$db = $this->getConnection(true);
$qb = $db->getQueryBuilder();
$qb->insertWithReturningPks($table, $columns, $params);
}
/**
* @throws Exception
* @throws InvalidConfigException
*/
public function testRenameTable(): void
{
$db = $this->getConnection();
$qb = $db->getQueryBuilder();
$this->assertSame(
<<<SQL
ALTER TABLE "alpha" RENAME TO "alpha-test"
SQL,
$qb->renameTable('alpha', 'alpha-test'),
);
$db->close();
}
/**
* @throws Exception
* @throws InvalidConfigException
* @throws NotSupportedException
* @throws Throwable
*/
public function testResetSequence(): void
{
$db = $this->getConnection(true);
$command = $db->createCommand();
$qb = $db->getQueryBuilder();
$checkSql = <<<SQL
SELECT last_number FROM user_sequences WHERE sequence_name = 'item_SEQ'
SQL;
$sql = $qb->resetSequence('item');
$this->assertSame(
<<<SQL
declare
lastSeq number;
begin
SELECT MAX("id") + 1 INTO lastSeq FROM "item";
if lastSeq IS NULL then lastSeq := 1; end if;
execute immediate 'DROP SEQUENCE "item_SEQ"';
execute immediate 'CREATE SEQUENCE "item_SEQ" START WITH ' || lastSeq || ' INCREMENT BY 1 NOMAXVALUE NOCACHE';
end;
SQL,
$sql,
);
$command->setSql($sql)->execute();
$this->assertSame('6', $command->setSql($checkSql)->queryScalar());
$sql = $qb->resetSequence('item', 4);
$this->assertSame(
<<<SQL
declare
lastSeq number := 4;
begin
if lastSeq IS NULL then lastSeq := 1; end if;
execute immediate 'DROP SEQUENCE "item_SEQ"';
execute immediate 'CREATE SEQUENCE "item_SEQ" START WITH ' || lastSeq || ' INCREMENT BY 1 NOMAXVALUE NOCACHE';
end;
SQL,
$sql,
);
$command->setSql($sql)->execute();
$this->assertEquals(4, $command->setSql($checkSql)->queryScalar());
$sql = $qb->resetSequence('item', '1');
$this->assertSame(
<<<SQL
declare
lastSeq number := 1;
begin
if lastSeq IS NULL then lastSeq := 1; end if;
execute immediate 'DROP SEQUENCE "item_SEQ"';
execute immediate 'CREATE SEQUENCE "item_SEQ" START WITH ' || lastSeq || ' INCREMENT BY 1 NOMAXVALUE NOCACHE';
end;
SQL,
$sql,
);
$command->setSql($sql)->execute();
$this->assertSame('1', $db->createCommand($checkSql)->queryScalar());
$db->close();
}
/**
* @throws Exception
* @throws InvalidConfigException
* @throws NotSupportedException
*/
public function testResetNonExistSequenceException(): void
{
$db = $this->getConnection(true);
$qb = $db->getQueryBuilder();
$this->expectException(InvalidArgumentException::class);
$this->expectExceptionMessage("There is not sequence associated with table 'default_multiple_pk'.");
$qb->resetSequence('default_multiple_pk');
$db->close();
}
public function testResetSequenceCompositeException(): void
{
self::markTestSkipped('Sequence name not found for composite primary key');
$db = $this->getConnection(true);
$qb = $db->getQueryBuilder();
$this->expectException(InvalidArgumentException::class);
$this->expectExceptionMessage("Can't reset sequence for composite primary key in table: employee");
$qb->resetSequence('employee');
$db->close();
}
/**
* @dataProvider \Yiisoft\Db\Oracle\Tests\Provider\QueryBuilderProvider::selectExist
*/
public function testSelectExists(string $sql, string $expected): void
{
parent::testSelectExists($sql, $expected);
}
/**
* @dataProvider \Yiisoft\Db\Oracle\Tests\Provider\QueryBuilderProvider::update
*
* @throws Exception
* @throws InvalidConfigException
* @throws NotSupportedException
* @throws Throwable
*/
public function testUpdate(
string $table,
array $columns,
array|string $condition,
array $params,
string $expectedSql,
array $expectedParams,
): void {
parent::testUpdate($table, $columns, $condition, $params, $expectedSql, $expectedParams);
}
/**
* @dataProvider \Yiisoft\Db\Oracle\Tests\Provider\QueryBuilderProvider::upsert
*
* @throws Exception
* @throws InvalidConfigException
* @throws NotSupportedException
* @throws Throwable
*/
public function testUpsert(
string $table,
array|QueryInterface $insertColumns,
array|bool $updateColumns,
string $expectedSQL,
array $expectedParams
): void {
parent::testUpsert($table, $insertColumns, $updateColumns, $expectedSQL, $expectedParams);
}
/**
* @dataProvider \Yiisoft\Db\Oracle\Tests\Provider\QueryBuilderProvider::upsert
*
* @throws Exception
* @throws InvalidConfigException
* @throws NotSupportedException
* @throws Throwable
*/
public function testUpsertExecute(
string $table,
array|QueryInterface $insertColumns,
array|bool $updateColumns
): void {
parent::testUpsertExecute($table, $insertColumns, $updateColumns);
}
public function testDefaultValues(): void
{
$db = $this->getConnection();
$queryBuilder = $db->getQueryBuilder();
// Non-primary key columns should have DEFAULT as value
$this->assertSame(
'INSERT INTO "negative_default_values" ("tinyint_col") VALUES (DEFAULT)',
$queryBuilder->insert('negative_default_values', []),
);
}
/** @dataProvider \Yiisoft\Db\Oracle\Tests\Provider\QueryBuilderProvider::selectScalar */
public function testSelectScalar(array|bool|float|int|string $columns, string $expected): void
{
parent::testSelectScalar($columns, $expected);
}
}