-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_select_const.nim
736 lines (599 loc) · 25.7 KB
/
test_select_const.nim
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
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
# Copyright Thomas T. Jarløv (TTJ)
when NimMajor >= 2:
import db_connector/db_common
else:
import std/db_common
import
std/strutils,
std/unittest
import
src/sqlbuilder,
src/sqlbuilderpkg/utils_private
suite "test sqlSelectConst":
test "useDeleteMarker = false":
var test: SqlQuery
test = sqlSelectConst(
table = "tasks",
select = ["id", "name", "description", "created", "updated", "completed"],
where = ["id ="],
joinargs = [],
useDeleteMarker = false
)
check querycompare(test, sql("SELECT id, name, description, created, updated, completed FROM tasks WHERE id = ? "))
test "from using AS ":
var test: SqlQuery
test = sqlSelectConst(
table = "tasks",
tableAs = "t",
select = ["id", "name", "description", "created", "updated", "completed"],
where = ["id ="],
joinargs = [],
useDeleteMarker = false
)
check querycompare(test, sql("SELECT id, name, description, created, updated, completed FROM tasks AS t WHERE id = ? "))
test = sqlSelectConst(
table = "tasks",
tableAs = "t",
select = ["t.id", "t.name", "t.description", "t.created", "t.updated", "t.completed"],
where = ["t.id ="],
joinargs = [],
useDeleteMarker = false,
customSQL = "ORDER BY t.created DESC"
)
check querycompare(test, sql("SELECT t.id, t.name, t.description, t.created, t.updated, t.completed FROM tasks AS t WHERE t.id = ? ORDER BY t.created DESC "))
test "WHERE statements: general":
var test: SqlQuery
test = sqlSelectConst(
table = "tasks",
tableAs = "t",
select = ["id", "name", "description", "created", "updated", "completed"],
where = ["id =", "name !=", "updated >", "completed IS", "description LIKE"],
joinargs = [],
useDeleteMarker = false
)
check querycompare(test, sql("SELECT id, name, description, created, updated, completed FROM tasks AS t WHERE id = ? AND name != ? AND updated > ? AND completed IS ? AND description LIKE ? "))
check string(test).count("?") == 5
test = sqlSelectConst(
table = "tasks",
tableAs = "t",
select = ["id", "name", "description", "created", "updated", "completed"],
where = ["id =", "name !=", "updated >", "completed IS", "description LIKE"],
joinargs = [],
customSQL = "AND name != 'test' AND created > ? ",
useDeleteMarker = false
)
check querycompare(test, sql("SELECT id, name, description, created, updated, completed FROM tasks AS t WHERE id = ? AND name != ? AND updated > ? AND completed IS ? AND description LIKE ? AND name != 'test' AND created > ? "))
check string(test).count("?") == 6
test "WHERE statements: = ANY(...)":
var test: SqlQuery
test = sqlSelectConst(
table = "tasks",
tableAs = "t",
select = ["id", "ids_array"],
where = ["id =", "= ANY(ids_array)"],
joinargs = [],
useDeleteMarker = false
)
check querycompare(test, sql("SELECT id, ids_array FROM tasks AS t WHERE id = ? AND ? = ANY(ids_array) "))
check string(test).count("?") == 2
test "WHERE statements: = ANY(...) multiple instances":
var test: SqlQuery
test = sqlSelectConst(
table = "tasks",
tableAs = "t",
select = ["id", "ids_array"],
where = ["id =", "= ANY(ids_array)", "= ANY(user_array)", "= ANY(tasks_array)"],
joinargs = [],
useDeleteMarker = false
)
check querycompare(test, sql("SELECT id, ids_array FROM tasks AS t WHERE id = ? AND ? = ANY(ids_array) AND ? = ANY(user_array) AND ? = ANY(tasks_array) "))
check string(test).count("?") == 4
test "WHERE statements: x IN y":
var test: SqlQuery
test = sqlSelectConst(
table = "tasks",
tableAs = "t",
select = ["id", "ids_array"],
where = ["id =", "IN (ids_array)"],
joinargs = [],
useDeleteMarker = false
)
check querycompare(test, sql("SELECT id, ids_array FROM tasks AS t WHERE id = ? AND ? IN (ids_array) "))
check string(test).count("?") == 2
test = sqlSelectConst(
table = "tasks",
tableAs = "t",
select = ["id", "ids_array"],
where = ["id =", "id IN"],
joinargs = [],
useDeleteMarker = false
)
check querycompare(test, sql("SELECT id, ids_array FROM tasks AS t WHERE id = ? AND id IN (?) "))
check string(test).count("?") == 2
test "WHERE statements: `is NULL` ":
var test: SqlQuery
test = sqlSelectConst(
table = "tasks",
tableAs = "t",
select = ["id", "name", "description", "created", "updated", "completed"],
where = ["id =", "name != NULL", "description = NULL"],
joinargs = [],
useDeleteMarker = false
)
check querycompare(test, sql("SELECT id, name, description, created, updated, completed FROM tasks AS t WHERE id = ? AND name != NULL AND description = NULL "))
check string(test).count("?") == 1
test = sqlSelectConst(
table = "tasks",
tableAs = "t",
select = ["id", "name", "description", "created", "updated", "completed"],
where = ["id =", "name !=", "description = NULL"],
joinargs = [],
useDeleteMarker = false
)
check querycompare(test, sql("SELECT id, name, description, created, updated, completed FROM tasks AS t WHERE id = ? AND name != ? AND description = NULL "))
check string(test).count("?") == 2
test "SELECT with SUM and COUNT":
var test: SqlQuery
test = sqlSelectConst(
table = "checklist_table",
tableAs = "cht",
select = [
"cht.c_id",
"SUM(CASE WHEN cht.status IS NULL THEN 1 ELSE 0 END) as null",
"SUM(CASE WHEN cht.status = 0 THEN 1 ELSE 0 END) as zero",
"SUM(CASE WHEN cht.status = 1 THEN 1 ELSE 0 END) as one",
"SUM(CASE WHEN cht.status = 2 THEN 1 ELSE 0 END) as two",
"COUNT(cht.id) as total",
"SUM(CASE WHEN cht.extra_check IS TRUE AND cht.extra_approve IS TRUE THEN 1 ELSE 0 END) as extraApproved",
"SUM(CASE WHEN cht.extra_check IS TRUE AND cht.extra_approve IS False THEN 1 ELSE 0 END) as extraFailed",
"SUM(CASE WHEN cht.extra_check IS TRUE AND cht.extra_approve IS NULL AND cht.status = 1 THEN 1 ELSE 0 END) as extraAwaiting",
],
where = [
"cht.project_id =",
"cht.type ="
],
joinargs = [
(table: "checklist", tableAs: "c", on: @["c.id = cht.c_id"])
],
customSQL = "GROUP BY cht.c_id"
)
check querycompare(test, sql("""
select
cht.c_id,
SUM(case when cht.status is null then 1 else 0 end) as null,
SUM(case when cht.status = 0 then 1 else 0 end) as zero,
SUM(case when cht.status = 1 then 1 else 0 end) as one,
SUM(case when cht.status = 2 then 1 else 0 end) as two,
COUNT(cht.id) as total,
SUM(case when cht.extra_check is true and cht.extra_approve is true then 1 else 0 end) as extraApproved,
SUM(case when cht.extra_check is true and cht.extra_approve is false then 1 else 0 end) as extraFailed,
SUM(case when cht.extra_check is true and cht.extra_approve is null and cht.status = 1 then 1 else 0 end) as extraAwaiting
from
checklist_table as cht
left join checklist as c on
(c.id = cht.c_id)
where
cht.project_id = ?
and cht.type = ?
group by
cht.c_id
"""))
suite "test sqlSelectConst - joins":
test "LEFT JOIN using AS values":
var test: SqlQuery
test = sqlSelectConst(
table = "tasks",
tableAs = "t",
select = ["id", "name"],
where = ["id ="],
joinargs = [(table: "projects", tableAs: "p", on: @["p.id = t.project_id", "p.status = 1"])],
useDeleteMarker = false
)
check querycompare(test, sql("SELECT id, name FROM tasks AS t LEFT JOIN projects AS p ON (p.id = t.project_id AND p.status = 1) WHERE id = ? "))
test "LEFT JOIN (default) - 1 value":
var test: SqlQuery
test = sqlSelectConst(
table = "tasks",
tableAs = "t",
select = ["id", "name"],
where = ["id ="],
joinargs = [(table: "projects", tableAs: "", on: @["projects.id = t.project_id", "projects.status = 1"])],
useDeleteMarker = false
)
check querycompare(test, sql("SELECT id, name FROM tasks AS t LEFT JOIN projects ON (projects.id = t.project_id AND projects.status = 1) WHERE id = ? "))
test "LEFT JOIN (default) - 2 value":
var test: SqlQuery
test = sqlSelectConst(
table = "tasks",
tableAs = "t",
select = ["id", "name"],
where = ["id ="],
joinargs = [(table: "projects", tableAs: "", on: @["projects.id = t.project_id", "projects.status = 1"]), (table: "invoice", tableAs: "", on: @["invoice.id = t.invoice_id", "invoice.status = 1"])],
useDeleteMarker = false
)
check querycompare(test, sql("SELECT id, name FROM tasks AS t LEFT JOIN projects ON (projects.id = t.project_id AND projects.status = 1) LEFT JOIN invoice ON (invoice.id = t.invoice_id AND invoice.status = 1) WHERE id = ? "))
test "LEFT JOIN (default) - 3 value":
var test: SqlQuery
test = sqlSelectConst(
table = "tasks",
tableAs = "t",
select = ["id", "name"],
where = ["id ="],
joinargs = [(table: "projects", tableAs: "", on: @["projects.id = t.project_id", "projects.status = 1"]), (table: "invoice", tableAs: "", on: @["invoice.id = t.invoice_id", "invoice.status = 1"]), (table: "letter", tableAs: "", on: @["letter.id = t.letter_id", "letter.status = 1"])],
useDeleteMarker = false
)
check querycompare(test, sql("SELECT id, name FROM tasks AS t LEFT JOIN projects ON (projects.id = t.project_id AND projects.status = 1) LEFT JOIN invoice ON (invoice.id = t.invoice_id AND invoice.status = 1) LEFT JOIN letter ON (letter.id = t.letter_id AND letter.status = 1) WHERE id = ? "))
test "INNER JOIN":
var test: SqlQuery
test = sqlSelectConst(
table = "tasks",
tableAs = "t",
select = ["id", "name"],
where = ["id ="],
joinargs = [(table: "projects", tableAs: "", on: @["projects.id = t.project_id", "projects.status = 1"])],
jointype = INNER,
useDeleteMarker = false
)
check querycompare(test, sql("SELECT id, name FROM tasks AS t INNER JOIN projects ON (projects.id = t.project_id AND projects.status = 1) WHERE id = ? "))
test "CROSS JOIN":
var test: SqlQuery
test = sqlSelectConst(
table = "a",
select = ["id"],
where = [],
joinargs = [(table: "b", tableAs: "", on: @["a.id = b.id"])],
jointype = CROSS,
)
check querycompare(test, sql("SELECT id FROM a CROSS JOIN b ON (a.id = b.id)"))
test "JOIN #1":
var test: SqlQuery
test = sqlSelectConst(
table = "tasks",
tableAs = "t",
select = ["id", "name", "description", "created", "updated", "completed"],
where = ["id ="],
joinargs = [(table: "projects", tableAs: "", on: @["projects.id = t.project_id", "projects.status = 1"])],
useDeleteMarker = false,
tablesWithDeleteMarker = ["tasks", "history", "tasksitems"]
)
check querycompare(test, sql("SELECT id, name, description, created, updated, completed FROM tasks AS t LEFT JOIN projects ON (projects.id = t.project_id AND projects.status = 1) WHERE id = ? "))
test "JOIN #2":
var test: SqlQuery
test = sqlSelectConst(
table = "tasks",
tableAs = "t",
select = ["t.id", "t.name", "t.description", "t.created", "t.updated", "t.completed"],
where = ["t.id ="],
joinargs = [(table: "projects", tableAs: "", on: @["projects.id = t.project_id", "projects.status = 1"])],
useDeleteMarker = false,
tablesWithDeleteMarker = ["tasks", "history", "tasksitems"]
)
check querycompare(test, sql("SELECT t.id, t.name, t.description, t.created, t.updated, t.completed FROM tasks AS t LEFT JOIN projects ON (projects.id = t.project_id AND projects.status = 1) WHERE t.id = ? "))
test "JOIN #3":
var test: SqlQuery
test = sqlSelectConst(
table = "tasks",
tableAs = "t",
select = ["t.id", "t.name", "t.description", "t.created", "t.updated", "t.completed"],
where = ["t.id ="],
# joinargs = [],
joinargs = [
(table: "projects", tableAs: "", on: @["projects.id = t.project_id", "projects.status = 1"]),
(table: "projects", tableAs: "", on: @["projects.id = t.project_id", "projects.status = 1"])
],
useDeleteMarker = false,
tablesWithDeleteMarker = ["tasks", "history", "tasksitems"]
)
check querycompare(test, sql("SELECT t.id, t.name, t.description, t.created, t.updated, t.completed FROM tasks AS t LEFT JOIN projects ON (projects.id = t.project_id AND projects.status = 1) LEFT JOIN projects ON (projects.id = t.project_id AND projects.status = 1) WHERE t.id = ? "))
suite "test sqlSelectConst - deletemarkers / softdelete":
test "deletemarkers from const - 1 value":
let test = sqlSelectConst(
table = "tasks",
select = ["id", "name"],
where = ["id ="],
joinargs = [(table: "projects", tableAs: "", on: @["projects.id = tasks.project_id", "projects.status = 1"])],
tablesWithDeleteMarker = ["tasks"],
)
check querycompare(test, sql("SELECT id, name FROM tasks LEFT JOIN projects ON (projects.id = tasks.project_id AND projects.status = 1) WHERE id = ? AND tasks.is_deleted IS NULL "))
test "deletemarkers from const - 2 values":
let test = sqlSelectConst(
table = "tasks",
select = ["id", "name"],
where = ["id ="],
joinargs = [(table: "projects", tableAs: "", on: @["projects.id = tasks.project_id", "projects.status = 1"])],
tablesWithDeleteMarker = ["tasks", "history"],
)
check querycompare(test, sql("SELECT id, name FROM tasks LEFT JOIN projects ON (projects.id = tasks.project_id AND projects.status = 1) WHERE id = ? AND tasks.is_deleted IS NULL "))
test "deletemarkers from const - 3 values":
let test = sqlSelectConst(
table = "tasks",
select = ["id", "name"],
where = ["id ="],
joinargs = [(table: "projects", tableAs: "", on: @["projects.id = tasks.project_id", "projects.status = 1"])],
tablesWithDeleteMarker = ["tasks", "history", "person"],
)
check querycompare(test, sql("SELECT id, name FROM tasks LEFT JOIN projects ON (projects.id = tasks.project_id AND projects.status = 1) WHERE id = ? AND tasks.is_deleted IS NULL "))
test "deletemarkers from const":
const tableWithDeleteMarkerLet = ["tasks", "history", "tasksitems"]
let test = sqlSelectConst(
table = "tasks",
select = ["id", "name"],
where = ["id ="],
joinargs = [(table: "projects", tableAs: "", on: @["projects.id = tasks.project_id", "projects.status = 1"])],
# tablesWithDeleteMarker = tableWithDeleteMarkerLet,
tablesWithDeleteMarker = ["tasks", "history", "tasksitems"]
)
check querycompare(test, sql("SELECT id, name FROM tasks LEFT JOIN projects ON (projects.id = tasks.project_id AND projects.status = 1) WHERE id = ? AND tasks.is_deleted IS NULL "))
test "deletemarkers from inline":
var test: SqlQuery
# const tableWithDeleteMarkerLet = ["tasks", "history", "tasksitems"]
test = sqlSelectConst(
table = "tasks",
select = ["id", "name"],
where = ["id ="],
joinargs = [(table: "projects", tableAs: "", on: @["projects.id = tasks.project_id", "projects.status = 1"])],
# tablesWithDeleteMarker = [] #tableWithDeleteMarkerLet,
tablesWithDeleteMarker = ["tasks", "history", "tasksitems"]
)
check querycompare(test, sql("SELECT id, name FROM tasks LEFT JOIN projects ON (projects.id = tasks.project_id AND projects.status = 1) WHERE id = ? AND tasks.is_deleted IS NULL "))
test "deletemarkers from inline (without join)":
var test: SqlQuery
# const tableWithDeleteMarkerLet = ["tasks", "history", "tasksitems"]
test = sqlSelectConst(
table = "tasks",
select = ["id", "name"],
where = ["id ="],
joinargs = [],
# joinargs = [(table: "projects", tableAs: "", on: @["projects.id = tasks.project_id", "projects.status = 1"])],
# tablesWithDeleteMarker = [] #tableWithDeleteMarkerLet,
tablesWithDeleteMarker = ["tasks", "history", "tasksitems"]
)
check querycompare(test, sql("SELECT id, name FROM tasks WHERE id = ? AND tasks.is_deleted IS NULL "))
test "deletemarkers from inline with WHERE IN":
var test: SqlQuery
const tableWithDeleteMarkerLet = ["tasks", "history", "tasksitems"]
test = sqlSelectConst(
table = "tasks",
select = ["id", "name"],
where = ["id ="],
joinargs = [(table: "projects", tableAs: "", on: @["projects.id = tasks.project_id", "projects.status = 1"])],
# tablesWithDeleteMarker = [] #tableWithDeleteMarkerLet,
tablesWithDeleteMarker = ["tasks", "history", "tasksitems"],
whereInField = "tasks",
whereInValue = ["1", "2", "3"]
)
check querycompare(test, sql("SELECT id, name FROM tasks LEFT JOIN projects ON (projects.id = tasks.project_id AND projects.status = 1) WHERE id = ? AND tasks in (1,2,3) AND tasks.is_deleted IS NULL "))
test "deletemarkers misc":
var test: SqlQuery
# const tableWithDeleteMarkerLet = ["tasks", "history", "tasksitems"]
test = sqlSelectConst(
table = "tasks",
select = ["id", "name"],
where = ["id ="],
joinargs = [(table: "history", tableAs: "", on: @["history.id = tasks.hid"])],
tablesWithDeleteMarker = ["tasks", "history", "tasksitems"]
)
check querycompare(test, sql("SELECT id, name FROM tasks LEFT JOIN history ON (history.id = tasks.hid AND history.is_deleted IS NULL) WHERE id = ? AND tasks.is_deleted IS NULL "))
test = sqlSelectConst(
table = "tasks",
select = ["tasks.id", "tasks.name"],
where = ["tasks.id ="],
joinargs = [(table: "history", tableAs: "his", on: @["his.id = tasks.hid"])],
tablesWithDeleteMarker = ["tasks", "history", "tasksitems"]
)
check querycompare(test, sql("SELECT tasks.id, tasks.name FROM tasks LEFT JOIN history AS his ON (his.id = tasks.hid AND his.is_deleted IS NULL) WHERE tasks.id = ? AND tasks.is_deleted IS NULL "))
test "deletemarkers on the fly":
var test: SqlQuery
test = sqlSelectConst(
table = "tasks",
select = ["id", "name"],
where = ["id ="],
joinargs = [(table: "projects", tableAs: "", on: @["projects.id = tasks.project_id", "projects.status = 1"])],
tablesWithDeleteMarker = ["tasks", "history", "tasksitems"]
)
check querycompare(test, sql("SELECT id, name FROM tasks LEFT JOIN projects ON (projects.id = tasks.project_id AND projects.status = 1) WHERE id = ? AND tasks.is_deleted IS NULL "))
test "custom deletemarker override":
var test: SqlQuery
test = sqlSelectConst(
table = "tasks",
select = ["id", "name"],
where = ["id ="],
joinargs = [(table: "history", tableAs: "", on: @["history.id = tasks.hid"])],
tablesWithDeleteMarker = ["tasks", "history", "tasksitems"],
deleteMarker = ".deleted_at = 543234563"
)
check querycompare(test, sql("SELECT id, name FROM tasks LEFT JOIN history ON (history.id = tasks.hid AND history.deleted_at = 543234563) WHERE id = ? AND tasks.deleted_at = 543234563 "))
test "complex query":
var test: SqlQuery
test = sqlSelectConst(
table = "tasksitems",
tableAs = "tasks",
select = [
"tasks.id",
"tasks.name",
"tasks.status",
"tasks.created",
"his.id",
"his.name",
"his.status",
"his.created",
"projects.id",
"projects.name",
"person.id",
"person.name",
"person.email"
],
where = [
"projects.id =",
"tasks.status >"
],
joinargs = [
(table: "history", tableAs: "his", on: @["his.id = tasks.hid", "his.status = 1"]),
(table: "projects", tableAs: "", on: @["projects.id = tasks.project_id", "projects.status = 1"]),
(table: "person", tableAs: "", on: @["person.id = tasks.person_id"])
],
whereInField = "tasks.id",
whereInValue = ["1", "2", "3"],
customSQL = "ORDER BY tasks.created DESC",
tablesWithDeleteMarker = ["tasks", "history", "tasksitems"]
)
check querycompare(test, (sql("""
SELECT
tasks.id,
tasks.name,
tasks.status,
tasks.created,
his.id,
his.name,
his.status,
his.created,
projects.id,
projects.name,
person.id,
person.name,
person.email
FROM
tasksitems AS tasks
LEFT JOIN history AS his ON
(his.id = tasks.hid AND his.status = 1 AND his.is_deleted IS NULL)
LEFT JOIN projects ON
(projects.id = tasks.project_id AND projects.status = 1)
LEFT JOIN person ON
(person.id = tasks.person_id)
WHERE
projects.id = ?
AND tasks.status > ?
AND tasks.id in (1,2,3)
AND tasks.is_deleted IS NULL
ORDER BY
tasks.created DESC
""")))
suite "sqlSelectConst":
test "with delete marker":
let a = sqlSelectConst(
table = "tasks",
tableAs = "t",
select = ["t.id", "t.name", "t.description", "t.created", "t.updated", "t.completed"],
where = ["t.id ="],
joinargs = [],
tablesWithDeleteMarker = ["tasks", "history", "tasksitems"], #tableWithDeleteMarker
)
check querycompare(a, (sql("""
SELECT
t.id, t.name, t.description, t.created, t.updated, t.completed
FROM
tasks AS t
WHERE
t.id = ?
AND t.is_deleted IS NULL
""")))
test "deletemarkers + joind":
let b = sqlSelectConst(
table = "tasks",
# tableAs = "t",
select = ["id", "name", "description", "created", "updated", "completed"],
where = ["id =", "status >"],
joinargs = [
(table: "history", tableAs: "his", on: @["his.id = tasks.hid", "his.status = 1"]),
(table: "projects", tableAs: "", on: @["projects.id = tasks.project_id", "projects.status = 1"]),
],
tablesWithDeleteMarker = ["tasks", "history", "tasksitems"] #tableWithDeleteMarker
)
check querycompare(b, sql("""
SELECT
id, name, description, created, updated, completed
FROM
tasks
LEFT JOIN history AS his ON
(his.id = tasks.hid AND his.status = 1 AND his.is_deleted IS NULL)
LEFT JOIN projects ON
(projects.id = tasks.project_id AND projects.status = 1)
WHERE
id = ?
AND status > ?
AND tasks.is_deleted IS NULL
"""))
let c = sqlSelectConst(
table = "tasks",
select = ["tasks.id"],
where = ["status >"],
joinargs = [
(table: "history", tableAs: "", on: @["history.id = tasks.hid"]),
],
tablesWithDeleteMarker = ["tasks", "history", "tasksitems"]
)
check querycompare(c, sql("""
SELECT
tasks.id
FROM
tasks
LEFT JOIN history ON
(history.id = tasks.hid AND history.is_deleted IS NULL)
WHERE
status > ?
AND tasks.is_deleted IS NULL
"""))
test "deletemarkers + join-mess":
let d = sqlSelectConst(
table = "tasks",
select = ["tasks.id"],
where = ["status >"],
joinargs = [
(table: "history", tableAs: "his", on: @["his.id = tasks.hid"]),
# (table: "history", tableAs: "his", on: @["his.id = tasks.hid"]),
# (table: "history", tableAs: "his", on: @["his.id = tasks.hid"]),
# (table: "history", tableAs: "his", on: @["his.id = tasks.hid"]),
# (table: "history", tableAs: "his", on: @["his.id = tasks.hid"]),
],
tablesWithDeleteMarker = ["tasks", "history", "tasksitems"]
)
check querycompare(d, sql("""
SELECT
tasks.id
FROM
tasks
LEFT JOIN history AS his ON
(his.id = tasks.hid AND his.is_deleted IS NULL)
WHERE
status > ?
AND tasks.is_deleted IS NULL
"""))
# LEFT JOIN history AS his ON
# (his.id = tasks.hid AND his.is_deleted IS NULL)
# LEFT JOIN history AS his ON
# (his.id = tasks.hid AND his.is_deleted IS NULL)
# LEFT JOIN history AS his ON
# (his.id = tasks.hid AND his.is_deleted IS NULL)
# LEFT JOIN history AS his ON
# (his.id = tasks.hid AND his.is_deleted IS NULL)
test "where in values (preformatted)":
let e = sqlSelectConst(
table = "tasks",
tableAs = "t",
select = ["t.id", "t.name"],
where = ["t.id ="],
joinargs = [],
whereInField = "t.name",
whereInValue = ["'1aa'", "'2bb'", "'3cc'"],
tablesWithDeleteMarker = ["tasksQ", "history", "tasksitems"], #tableWithDeleteMarker
)
check querycompare(e, sql("""
SELECT
t.id, t.name
FROM
tasks AS t
WHERE
t.id = ?
AND t.name in ('1aa','2bb','3cc')"""))
test "where in values (empty)":
let f = sqlSelectConst(
table = "tasks",
tableAs = "t",
select = ["t.id", "t.name"],
where = ["t.id ="],
joinargs = [],
whereInField = "t.id",
whereInValue = [""],
tablesWithDeleteMarker = ["tasksQ", "history", "tasksitems"], #tableWithDeleteMarker
)
check querycompare(f, sql("SELECT t.id, t.name FROM tasks AS t WHERE t.id = ? AND t.id in (0)"))