-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathDatabaseSpec.hs
1585 lines (1458 loc) · 62.8 KB
/
DatabaseSpec.hs
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
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- This Source Code Form is subject to the terms of the Mozilla Public
-- License, v. 2.0. If a copy of the MPL was not distributed with this
-- file, You can obtain one at http://mozilla.org/MPL/2.0/.
{-# LANGUAGE RecordWildCards #-}
module Test.Kupo.Data.DatabaseSpec
( spec
) where
import Kupo.Prelude
import Data.List
( maximum
)
import Database.SQLite.Simple
( Connection
, Query (..)
, SQLData (..)
, executeMany
, execute_
, query_
, withConnection
, withTransaction
)
import Kupo.App.Database
( deleteInputsQry
, foldInputsQry
, foldPoliciesQry
, getBinaryDataQry
, getScriptQry
, installIndex
, listAncestorQry
, listCheckpointsQry
, markInputsQry
, newDBPool
, pruneBinaryDataQry
, pruneInputsQry
, rollbackQryDeleteCheckpoints
, rollbackQryDeleteInputs
, rollbackQryUpdateInputs
, selectMaxCheckpointQry
)
import Kupo.App.Database.Types
( ConnectionType (..)
, DBPool (..)
, Database (..)
)
import Kupo.Control.MonadAsync
( mapConcurrently_
)
import Kupo.Control.MonadCatch
( MonadCatch (..)
)
import Kupo.Control.MonadDelay
( threadDelay
)
import Kupo.Control.MonadLog
( nullTracer
)
import Kupo.Control.MonadSTM
( MonadSTM (..)
)
import Kupo.Control.MonadThrow
( MonadThrow (..)
)
import Kupo.Control.MonadTime
( millisecondsToDiffTime
)
import Kupo.Data.Cardano
( Address
, Output
, Point
, PolicyId
, SlotNo (..)
, foldrValue
, getAddress
, getOutputIndex
, getPointSlotNo
, getValue
, policyIdToBytes
, slotNoToText
)
import Kupo.Data.Configuration
( DatabaseLocation (..)
, DeferIndexesInstallation (..)
, LongestRollback (..)
, getLongestRollback
)
import Kupo.Data.Database
( SortDirection (..)
, addressFromRow
, addressToRow
, datumFromRow
, datumToRow
, extendedOutputReferenceFromRow
, extendedOutputReferenceToRow
, outputReferenceToRow
, patternFromRow
, patternToRow
, patternToSql
, pointFromRow
, pointToRow
, resultFromRow
, resultToRow
, scriptReferenceFromRow
, scriptReferenceToRow
)
import Kupo.Data.Http.ReferenceFlag
( ReferenceFlag (..)
)
import Kupo.Data.Http.SlotRange
( Range (..)
, RangeField (..)
)
import Kupo.Data.Http.StatusFlag
( StatusFlag (..)
)
import Kupo.Data.Pattern
( MatchBootstrap (..)
, Pattern (..)
, Result (..)
)
import System.IO.Temp
( withSystemTempDirectory
)
import Test.Hspec
( Expectation
, Spec
, around
, context
, parallel
, shouldBe
, specify
)
import Test.Hspec.QuickCheck
( prop
)
import Test.Kupo.Data.Generators
( chooseVector
, genAddress
, genBytes
, genDatum
, genExtendedOutputReference
, genNonGenesisPoint
, genNonGenesisPointBetween
, genOutputReference
, genPattern
, genPointsBetween
, genPolicyId
, genQueryablePattern
, genResult
, genResultWith
, genScriptReference
, genTransactionId
, generateWith
)
import Test.Kupo.Data.Pattern.Fixture
( matches
, patterns
)
import Test.QuickCheck
( Gen
, Property
, choose
, conjoin
, counterexample
, elements
, forAllBlind
, forAllShow
, forAllShrinkShow
, frequency
, generate
, label
, listOf1
, property
, scale
, shrinkList
, withMaxSuccess
, (.&&.)
)
import Test.QuickCheck.Monadic
( PropertyM
, assert
, monadicIO
, monitor
, run
)
import Test.QuickCheck.Property
( Testable
)
import qualified Data.Set as Set
import qualified Data.Text as T
import qualified Prelude
spec :: Spec
spec = parallel $ do
context "fromRow ↔ toRow" $ do
prop "Address" $
roundtripFromToRow genAddress addressToRow addressFromRow
prop "Result" $
roundtripFromToRow genResult resultToRow resultFromRow
prop "Checkpoint" $
roundtripFromToRow genNonGenesisPoint pointToRow pointFromRow
prop "Pattern" $
roundtripFromToRow genPattern patternToRow patternFromRow
prop "OutputReference" $
roundtripFromToRow genExtendedOutputReference extendedOutputReferenceToRow extendedOutputReferenceFromRow
prop "Datum" $
roundtripFromToRow2 genDatum datumToRow datumFromRow
prop "ScriptReference" $
roundtripFromToRow2 genScriptReference scriptReferenceToRow scriptReferenceFromRow
context "patternToSql" $ around withFixtureDatabase $ do
forM_ patterns $ \(_, p, ms) -> do
let (whereClause, fromMaybe "" -> additionalJoin) = patternToSql p
let results = sort $ (\(_, out) -> getAddress out) <$> ms
specify (toString whereClause) $ \conn -> do
rows <- query_ conn $ Query $ unwords
[ "SELECT address, LENGTH(address) as len FROM inputs"
, additionalJoin
, "WHERE"
, whereClause
]
sort (rowToAddress <$> rows) `shouldBe` results
context "checkpoints" $ do
let k = 100
prop "list checkpoints after inserting them" $
forAllCheckpoints k $ \pts -> monadicIO $ do
cps <- withInMemoryDatabase k $ \Database{..} -> do
runTransaction $ insertCheckpoints pts
runTransaction $ fmap getPointSlotNo <$> listCheckpointsDesc
monitor $ counterexample (show cps)
assert $ all (uncurry (>)) (zip cps (drop 1 cps))
assert $ Prelude.head cps == maximum (getPointSlotNo <$> pts)
prop "get ancestor of any checkpoint" $
forAllCheckpoints k $ \pts -> monadicIO $ do
oneByOne <- withInMemoryDatabase k $ \Database{..} -> do
runTransaction $ insertCheckpoints pts
fmap mconcat $ runTransaction $ forM pts $ \pt -> do
listAncestorsDesc (getPointSlotNo pt) 1
allAtOnce <- withInMemoryDatabase k $ \Database{..} -> do
runTransaction $ insertCheckpoints pts
fmap reverse $ runTransaction $ do
let slotNo = maximum (getPointSlotNo <$> pts)
listAncestorsDesc slotNo (fromIntegral $ length pts)
monitor $ counterexample $ toString $ unlines
[ "one-by-one: " <> show (getPointSlotNo <$> oneByOne)
, "all-at-once: " <> show (getPointSlotNo <$> allAtOnce)
]
assert (Prelude.init pts == oneByOne)
assert (oneByOne == allAtOnce)
context "matches" $ do
prop "return matches in order" $ do
let slot = getPointSlotNo . createdAt
let txIx = snd . outputReference
let outIx = getOutputIndex . fst . outputReference
let oldestFirst current successor
| slot current == slot successor =
if txIx current == txIx successor then
label "same transaction index" (outIx current <= outIx successor)
else
property (txIx current < txIx successor)
| otherwise =
property (slot current < slot successor)
let mostRecentFirst current successor
| slot current == slot successor =
if txIx current == txIx successor then
label "same transaction index" (outIx current >= outIx successor)
else
property (txIx current >= txIx successor)
| otherwise =
property (slot current > slot successor)
let genConflictingResults =
scale (10*) $ listOf1 $ genResultWith (genNonGenesisPointBetween (1, 100))
let shrinkResults =
shrinkList (const [])
let showResults xs = toString $ unlines
[ "sl/tx/out"
, "---------"
, T.intercalate "\n" $ fmap (\x ->
T.intercalate "/"
[ slotNoToText (slot x)
, show (txIx x)
, show (outIx x)
]
) xs
]
forAllShrinkShow genConflictingResults shrinkResults showResults $ \results ->
withMaxSuccess 50 $ monadicIO $ do
(asc, desc) <- withInMemoryDatabase 10 $ \Database{..} -> do
let matchAll = MatchAny IncludingBootstrap
runTransaction $ do
insertInputs (resultToRow <$> results)
insertCheckpoints (createdAt <$> results)
insertCheckpoints (mapMaybe spentAt results)
qAsc <- newTBQueueIO (fromIntegral $ length results)
runTransaction $ foldInputs matchAll Whole NoStatusFlag AsReference Asc
(atomically . writeTBQueue qAsc)
qDesc <- newTBQueueIO (fromIntegral $ length results)
runTransaction $ foldInputs matchAll Whole NoStatusFlag AsReference Desc
(atomically . writeTBQueue qDesc)
atomically $ (,) <$> flushTBQueue qAsc <*> flushTBQueue qDesc
let pAsc = conjoin (uncurry oldestFirst <$> zip asc (drop 1 asc))
& counterexample (showResults asc)
& counterexample "\n Not ordered ASC ↴\n"
let pDesc = conjoin (uncurry mostRecentFirst <$> zip desc (drop 1 desc))
& counterexample (showResults desc)
& counterexample "\n Not ordered DESC ↴\n"
monitor (.&&. pAsc .&&. pDesc)
context "concurrent read / write" $ do
let k = LongestRollback { getLongestRollback = 42 }
mapM_
(\(title, withDatabasePool) -> do
specify ("1 long-lived worker vs 2 short-lived workers (" <> title <> ")") $ do
withDatabasePool $ \pool -> do
waitGroup <- newTVarIO False
let allow = atomically (writeTVar waitGroup True)
let await = atomically (readTVar waitGroup >>= check)
mapConcurrently_ identity
[ longLivedWorker pool allow
, await >> shortLivedWorker pool ReadOnly
, await >> shortLivedWorker pool ReadWrite
]
)
[ ( "in-memory"
, \test -> do
test =<< newDBPool nullTracer False
(InMemory (Just "file::concurrent-read-write:?cache=shared&mode=memory"))
k
)
, ( "on-disk"
, \test ->
withSystemTempDirectory "kupo-database-concurrent" $ \dir -> do
test =<< newDBPool nullTracer False (Dir dir) k
)
]
context "efficiency of search and update queries" $ do
context "with essential indexes only" $ do
let deferIndexes = SkipNonEssentialIndexes
specifyQuery "listCheckpoints" deferIndexes
(pure listCheckpointsQry)
(`shouldBe`
[ "SEARCH checkpoints USING INTEGER PRIMARY KEY (rowid>?)"
, "SCALAR SUBQUERY 1"
, "SEARCH checkpoints"
]
)
specifyQuery "listAncestorQry" deferIndexes
(pure listAncestorQry)
(`shouldBe`
[ "SEARCH checkpoints USING INTEGER PRIMARY KEY (rowid<?)"
]
)
specifyQuery "pruneBinaryData" deferIndexes
(pure pruneBinaryDataQry)
(`shouldBe`
[ "SEARCH binary_data USING COVERING INDEX sqlite_autoindex_binary_data_1 (binary_data_hash=?)"
, "LIST SUBQUERY 1"
, "SCAN binary_data USING COVERING INDEX sqlite_autoindex_binary_data_1"
, "BLOOM FILTER ON inputs (datum_hash=?)"
, "SEARCH inputs USING AUTOMATIC COVERING INDEX (datum_hash=?) LEFT-JOIN"
, "USE TEMP B-TREE FOR ORDER BY"
]
)
specifyQuery "deleteInputs" deferIndexes
(deleteInputsQry . MatchOutputReference <$> genOutputReference)
(`shouldBe`
[ "SEARCH inputs USING INDEX inputsByOutputReference (output_reference=?)"
, "SEARCH policies USING COVERING INDEX sqlite_autoindex_policies_1 (output_reference=?)"
]
)
specifyQuery "markInputs" deferIndexes
(markInputsQry . MatchOutputReference <$> genOutputReference)
(`shouldBe`
[ "SEARCH inputs USING INDEX inputsByOutputReference (output_reference=?)"
]
)
specifyQuery "getBinaryData" deferIndexes
(pure getBinaryDataQry)
(`shouldBe`
[ "SEARCH binary_data USING INDEX sqlite_autoindex_binary_data_1 (binary_data_hash=?)"
]
)
specifyQuery "getScript" deferIndexes
(pure getScriptQry)
(`shouldBe`
[ "SEARCH scripts USING INDEX sqlite_autoindex_scripts_1 (script_hash=?)"
]
)
specifyQuery "selectMaxCheckpoint" deferIndexes
(pure selectMaxCheckpointQry)
(`shouldBe`
[ "SEARCH checkpoints"
]
)
context "with temporary indexes" $ do
let deferIndexes = SkipNonEssentialIndexes
specifyQueryWith "pruneInputs" deferIndexes
(pure pruneInputsQry)
(\conn -> installIndex nullTracer conn "inputsBySpentAt" "inputs(spent_at)")
(`shouldBe`
[ "SEARCH inputs USING COVERING INDEX sqlite_autoindex_inputs_1 (ext_output_reference=?)"
, "LIST SUBQUERY 2"
, "SEARCH inputs USING INDEX inputsBySpentAt (spent_at<?)"
, "SCALAR SUBQUERY 1"
, "SEARCH checkpoints"
, "SEARCH policies USING COVERING INDEX sqlite_autoindex_policies_1 (output_reference=?)"
]
)
specifyQueryWith "rollbackQry (delete inputs)" deferIndexes
(pure rollbackQryDeleteInputs)
(\conn -> installIndex nullTracer conn "inputsByCreatedAt" "inputs(created_at)")
(`shouldBe`
[ "SEARCH inputs USING INTEGER PRIMARY KEY (rowid=?)"
, "LIST SUBQUERY 1"
, "SEARCH inputs USING COVERING INDEX inputsByCreatedAt (created_at>?)"
, "SEARCH policies USING COVERING INDEX sqlite_autoindex_policies_1 (output_reference=?)"
]
)
specifyQueryWith "rollbackQry (update inputs)" deferIndexes
(pure rollbackQryUpdateInputs)
(\conn -> installIndex nullTracer conn "inputsBySpentAt" "inputs(spent_at)")
(`shouldBe`
[ "SEARCH inputs USING INDEX inputsBySpentAt (spent_at>?)"
]
)
specifyQuery "rollbackQry (delete checkpoints)" deferIndexes
(pure rollbackQryDeleteCheckpoints)
(`shouldBe`
[ "SEARCH checkpoints USING INTEGER PRIMARY KEY (rowid>?)"
]
)
context "with extra lookup indexes" $ do
let installIndexes =
InstallIndexesIfNotExist
let suffix =
[ "SEARCH createdAt USING INTEGER PRIMARY KEY (rowid=?)"
, "SEARCH spentAt USING INTEGER PRIMARY KEY (rowid=?) LEFT-JOIN"
, "USE TEMP B-TREE FOR ORDER BY"
]
let suffixInline =
Prelude.init suffix ++
[ "SEARCH datums USING INDEX sqlite_autoindex_binary_data_1 (binary_data_hash=?) LEFT-JOIN"
, "SEARCH scripts USING INDEX sqlite_autoindex_scripts_1 (script_hash=?) LEFT-JOIN"
, Prelude.last suffix
]
context "pruneBinaryData" $ do
specifyQuery "pruneBinaryData" installIndexes
(pure pruneBinaryDataQry)
(`shouldBe`
[ "SEARCH binary_data USING COVERING INDEX sqlite_autoindex_binary_data_1 (binary_data_hash=?)"
, "LIST SUBQUERY 1"
, "SCAN binary_data USING COVERING INDEX sqlite_autoindex_binary_data_1"
, "SEARCH inputs USING INDEX inputsByDatumHash (datum_hash=?) LEFT-JOIN"
, "USE TEMP B-TREE FOR ORDER BY"
]
)
context "foldInputs / MatchExact" $ do
specifyQuery "NoStatusFlag" installIndexes
(foldInputsQry
<$> fmap MatchExact genAddress
<*> pure Whole
<*> pure NoStatusFlag
<*> pure AsReference
<*> pure Asc
)
(`shouldBe`
( "SEARCH inputs USING INDEX inputsByAddress (address=?)" : suffix )
)
specifyQuery "NoStatusFlag + InlineAll" installIndexes
(foldInputsQry
<$> fmap MatchExact genAddress
<*> pure Whole
<*> pure NoStatusFlag
<*> pure InlineAll
<*> pure Asc
)
(`shouldBe`
( "SEARCH inputs USING INDEX inputsByAddress (address=?)" : suffixInline )
)
specifyQuery "Created After" installIndexes
(foldInputsQry
<$> fmap MatchExact genAddress
<*> pure (After CreatedAt 14)
<*> pure NoStatusFlag
<*> pure AsReference
<*> pure Asc
)
(`shouldBe`
( "SEARCH inputs USING INDEX inputsByAddress (address=?)" : suffix )
)
specifyQuery "Created After + InlineAll" installIndexes
(foldInputsQry
<$> fmap MatchExact genAddress
<*> pure (After CreatedAt 14)
<*> pure NoStatusFlag
<*> pure InlineAll
<*> pure Asc
)
(`shouldBe`
( "SEARCH inputs USING INDEX inputsByAddress (address=?)" : suffixInline )
)
specifyQuery "Spent Before" installIndexes
(foldInputsQry
<$> fmap MatchExact genAddress
<*> pure (Before SpentAt 14)
<*> pure NoStatusFlag
<*> pure AsReference
<*> pure Asc
)
(`shouldBe`
( "SEARCH inputs USING INDEX inputsByAddress (address=?)" : suffix )
)
specifyQuery "Spent Before + InlineAll" installIndexes
(foldInputsQry
<$> fmap MatchExact genAddress
<*> pure (Before SpentAt 14)
<*> pure NoStatusFlag
<*> pure InlineAll
<*> pure Asc
)
(`shouldBe`
( "SEARCH inputs USING INDEX inputsByAddress (address=?)" : suffixInline )
)
specifyQuery "Created Between" installIndexes
(foldInputsQry
<$> fmap MatchExact genAddress
<*> pure (Between (CreatedAt, 14) (CreatedAt, 42))
<*> pure NoStatusFlag
<*> pure AsReference
<*> pure Asc
)
(`shouldBe`
( "SEARCH inputs USING INDEX inputsByAddress (address=?)" : suffix )
)
specifyQuery "Created Between + InlineAll" installIndexes
(foldInputsQry
<$> fmap MatchExact genAddress
<*> pure (Between (CreatedAt, 14) (CreatedAt, 42))
<*> pure NoStatusFlag
<*> pure InlineAll
<*> pure Asc
)
(`shouldBe`
( "SEARCH inputs USING INDEX inputsByAddress (address=?)" : suffixInline )
)
specifyQuery "Spent Between" installIndexes
(foldInputsQry
<$> fmap MatchExact genAddress
<*> pure (Between (SpentAt, 14) (SpentAt, 42))
<*> pure NoStatusFlag
<*> pure AsReference
<*> pure Asc
)
(`shouldBe`
( "SEARCH inputs USING INDEX inputsByAddress (address=?)" : suffix )
)
specifyQuery "Spent Between + InlineAll" installIndexes
(foldInputsQry
<$> fmap MatchExact genAddress
<*> pure (Between (SpentAt, 14) (SpentAt, 42))
<*> pure NoStatusFlag
<*> pure InlineAll
<*> pure Asc
)
(`shouldBe`
( "SEARCH inputs USING INDEX inputsByAddress (address=?)" : suffixInline )
)
specifyQuery "Created/Spent Between" installIndexes
(foldInputsQry
<$> fmap MatchExact genAddress
<*> pure (Between (CreatedAt, 14) (SpentAt, 42))
<*> pure NoStatusFlag
<*> pure AsReference
<*> pure Asc
)
(`shouldBe`
( "SEARCH inputs USING INDEX inputsByAddress (address=?)" : suffix )
)
specifyQuery "OnlyUnspent" installIndexes
(foldInputsQry
<$> fmap MatchExact genAddress
<*> pure Whole
<*> pure OnlyUnspent
<*> pure AsReference
<*> pure Asc
)
(`shouldBe`
( "SEARCH inputs USING INDEX inputsByAddress (address=?)" : suffix )
)
specifyQuery "OnlyUnspent + InlineAll" installIndexes
(foldInputsQry
<$> fmap MatchExact genAddress
<*> pure Whole
<*> pure OnlyUnspent
<*> pure InlineAll
<*> pure Asc
)
(`shouldBe`
( "SEARCH inputs USING INDEX inputsByAddress (address=?)" : suffixInline )
)
specifyQuery "Created Before" installIndexes
(foldInputsQry
<$> fmap MatchExact genAddress
<*> pure (Before CreatedAt 42)
<*> pure OnlyUnspent
<*> pure AsReference
<*> pure Asc
)
(`shouldBe`
( "SEARCH inputs USING INDEX inputsByAddress (address=?)" : suffix )
)
specifyQuery "Spent Before" installIndexes
(foldInputsQry
<$> fmap MatchExact genAddress
<*> pure (Before SpentAt 42)
<*> pure OnlyUnspent
<*> pure AsReference
<*> pure Asc
)
(`shouldBe`
( "SEARCH inputs USING INDEX inputsByAddress (address=?)" : suffix )
)
specifyQuery "OnlySpent" installIndexes
(foldInputsQry
<$> fmap MatchExact genAddress
<*> pure Whole
<*> pure OnlySpent
<*> pure AsReference
<*> pure Asc
)
(`shouldBe`
( "SEARCH inputs USING INDEX inputsByAddress (address=?)" :
[ "SEARCH createdAt USING INTEGER PRIMARY KEY (rowid=?)"
, "SEARCH spentAt USING INTEGER PRIMARY KEY (rowid=?)"
, "USE TEMP B-TREE FOR ORDER BY"
]
)
)
context "foldInputs / MatchPayment" $ do
specifyQuery "NoStatusFlag" installIndexes
(foldInputsQry
<$> fmap MatchPayment (genBytes 28)
<*> pure Whole
<*> pure NoStatusFlag
<*> pure AsReference
<*> pure Asc
)
(`shouldBe`
( "SEARCH inputs USING INDEX inputsByPaymentCredential (payment_credential=?)" : suffix )
)
specifyQuery "NoStatusFlag + InlineAll" installIndexes
(foldInputsQry
<$> fmap MatchPayment (genBytes 28)
<*> pure Whole
<*> pure NoStatusFlag
<*> pure InlineAll
<*> pure Asc
)
(`shouldBe`
( "SEARCH inputs USING INDEX inputsByPaymentCredential (payment_credential=?)" : suffixInline )
)
specifyQuery "Created Before" installIndexes
(foldInputsQry
<$> fmap MatchPayment (genBytes 28)
<*> pure (Before CreatedAt 42)
<*> pure OnlyUnspent
<*> pure AsReference
<*> pure Asc
)
(`shouldBe`
( "SEARCH inputs USING INDEX inputsByPaymentCredential (payment_credential=?)" : suffix )
)
specifyQuery "Spent After" installIndexes
(foldInputsQry
<$> fmap MatchPayment (genBytes 28)
<*> pure (After SpentAt 42)
<*> pure OnlyUnspent
<*> pure AsReference
<*> pure Asc
)
(`shouldBe`
( "SEARCH inputs USING INDEX inputsByPaymentCredential (payment_credential=?)" : suffix )
)
specifyQuery "Created Between" installIndexes
(foldInputsQry
<$> fmap MatchPayment (genBytes 28)
<*> pure (Between (CreatedAt, 14) (CreatedAt, 42))
<*> pure OnlyUnspent
<*> pure AsReference
<*> pure Asc
)
(`shouldBe`
( "SEARCH inputs USING INDEX inputsByPaymentCredential (payment_credential=?)" : suffix )
)
specifyQuery "Spent Between" installIndexes
(foldInputsQry
<$> fmap MatchPayment (genBytes 28)
<*> pure (Between (SpentAt, 14) (SpentAt, 42))
<*> pure OnlyUnspent
<*> pure AsReference
<*> pure Asc
)
(`shouldBe`
( "SEARCH inputs USING INDEX inputsByPaymentCredential (payment_credential=?)" : suffix )
)
specifyQuery "Created/Spent Between" installIndexes
(foldInputsQry
<$> fmap MatchPayment (genBytes 28)
<*> pure (Between (CreatedAt, 14) (SpentAt, 42))
<*> pure OnlyUnspent
<*> pure AsReference
<*> pure Asc
)
(`shouldBe`
( "SEARCH inputs USING INDEX inputsByPaymentCredential (payment_credential=?)" : suffix )
)
specifyQuery "OnlyUnspent" installIndexes
(foldInputsQry
<$> fmap MatchPayment (genBytes 28)
<*> pure Whole
<*> pure OnlyUnspent
<*> pure AsReference
<*> pure Asc
)
(`shouldBe`
( "SEARCH inputs USING INDEX inputsByPaymentCredential (payment_credential=?)" : suffix )
)
specifyQuery "OnlySpent" installIndexes
(foldInputsQry
<$> fmap MatchPayment (genBytes 28)
<*> pure Whole
<*> pure OnlySpent
<*> pure AsReference
<*> pure Asc
)
(`shouldBe`
( "SEARCH inputs USING INDEX inputsByPaymentCredential (payment_credential=?)" :
[ "SEARCH createdAt USING INTEGER PRIMARY KEY (rowid=?)"
, "SEARCH spentAt USING INTEGER PRIMARY KEY (rowid=?)"
, "USE TEMP B-TREE FOR ORDER BY"
]
)
)
context "foldInputs / MatchDelegation" $ do
specifyQuery "NoStatusFlag" installIndexes
(foldInputsQry
<$> fmap MatchDelegation (genBytes 28)
<*> pure Whole
<*> pure NoStatusFlag
<*> pure AsReference
<*> pure Asc
)
(`shouldBe`
( "SEARCH inputs USING INDEX inputsByAddress (address>? AND address<?)" : suffix )
)
specifyQuery "NoStatusFlag + InlineAll" installIndexes
(foldInputsQry
<$> fmap MatchDelegation (genBytes 28)
<*> pure Whole
<*> pure NoStatusFlag
<*> pure InlineAll
<*> pure Asc
)
(`shouldBe`
( "SEARCH inputs USING INDEX inputsByAddress (address>? AND address<?)" : suffixInline )
)
specifyQuery "Created After" installIndexes
(foldInputsQry
<$> fmap MatchDelegation (genBytes 28)
<*> pure (After CreatedAt 14)
<*> pure OnlyUnspent
<*> pure AsReference
<*> pure Asc
)
(`shouldBe`
( "SEARCH inputs USING INDEX inputsByAddress (address>? AND address<?)" : suffix )
)
specifyQuery "Spent Before" installIndexes
(foldInputsQry
<$> fmap MatchDelegation (genBytes 28)
<*> pure (Before SpentAt 42)
<*> pure OnlyUnspent
<*> pure AsReference
<*> pure Asc
)
(`shouldBe`
( "SEARCH inputs USING INDEX inputsByAddress (address>? AND address<?)" : suffix )
)
specifyQuery "Created Between" installIndexes
(foldInputsQry
<$> fmap MatchDelegation (genBytes 28)
<*> pure (Between (CreatedAt, 14) (CreatedAt, 42))
<*> pure OnlyUnspent
<*> pure AsReference
<*> pure Asc
)
(`shouldBe`
( "SEARCH inputs USING INDEX inputsByAddress (address>? AND address<?)" : suffix )
)
specifyQuery "Spent Between" installIndexes
(foldInputsQry
<$> fmap MatchDelegation (genBytes 28)
<*> pure (Between (SpentAt, 14) (SpentAt, 42))
<*> pure OnlyUnspent
<*> pure AsReference
<*> pure Asc
)
(`shouldBe`
( "SEARCH inputs USING INDEX inputsByAddress (address>? AND address<?)" : suffix )
)
specifyQuery "Created/Spent Between" installIndexes
(foldInputsQry
<$> fmap MatchDelegation (genBytes 28)
<*> pure (Between (SpentAt, 14) (CreatedAt, 42))
<*> pure OnlyUnspent
<*> pure AsReference
<*> pure Asc
)
(`shouldBe`
( "SEARCH inputs USING INDEX inputsByAddress (address>? AND address<?)" : suffix )
)
specifyQuery "OnlyUnspent" installIndexes
(foldInputsQry
<$> fmap MatchDelegation (genBytes 28)
<*> pure Whole
<*> pure OnlyUnspent
<*> pure AsReference
<*> pure Asc
)
(`shouldBe`
( "SEARCH inputs USING INDEX inputsByAddress (address>? AND address<?)" : suffix )
)
specifyQuery "OnlySpent" installIndexes
(foldInputsQry
<$> fmap MatchDelegation (genBytes 28)
<*> pure Whole
<*> pure OnlySpent
<*> pure AsReference
<*> pure Asc
)
(`shouldBe`
( "SEARCH inputs USING INDEX inputsByAddress (address>? AND address<?)" :
[ "SEARCH spentAt USING INTEGER PRIMARY KEY (rowid=?)"
, "SEARCH createdAt USING INTEGER PRIMARY KEY (rowid=?)"
, "USE TEMP B-TREE FOR ORDER BY"
]
)
)
context "foldInputs / MatchTransactionId" $ do
specifyQuery "NoStatusFlag" installIndexes
(foldInputsQry
<$> fmap MatchTransactionId genTransactionId
<*> pure Whole
<*> pure NoStatusFlag
<*> pure AsReference
<*> pure Asc
)
(`shouldBe`
( "SEARCH inputs USING INDEX inputsByOutputReference (output_reference>? AND output_reference<?)" : suffix )
)
specifyQuery "NoStatusFlag + InlineAll" installIndexes
(foldInputsQry
<$> fmap MatchTransactionId genTransactionId
<*> pure Whole
<*> pure NoStatusFlag
<*> pure InlineAll
<*> pure Asc
)
(`shouldBe`
( "SEARCH inputs USING INDEX inputsByOutputReference (output_reference>? AND output_reference<?)" : suffixInline )
)
specifyQuery "Created Before" installIndexes
(foldInputsQry
<$> fmap MatchTransactionId genTransactionId
<*> pure (Before CreatedAt 42)
<*> pure OnlyUnspent
<*> pure AsReference
<*> pure Asc
)
(`shouldBe`
( "SEARCH inputs USING INDEX inputsByOutputReference (output_reference>? AND output_reference<?)" : suffix )
)
specifyQuery "Spent After" installIndexes
(foldInputsQry
<$> fmap MatchTransactionId genTransactionId
<*> pure (After SpentAt 14)
<*> pure OnlyUnspent
<*> pure AsReference
<*> pure Asc
)
(`shouldBe`
( "SEARCH inputs USING INDEX inputsByOutputReference (output_reference>? AND output_reference<?)" : suffix )
)
specifyQuery "Created Between" installIndexes
(foldInputsQry
<$> fmap MatchTransactionId genTransactionId
<*> pure (Between (CreatedAt, 14) (CreatedAt, 42))
<*> pure OnlyUnspent
<*> pure AsReference
<*> pure Asc
)
(`shouldBe`
( "SEARCH inputs USING INDEX inputsByOutputReference (output_reference>? AND output_reference<?)" : suffix )
)
specifyQuery "Spent Between" installIndexes
(foldInputsQry
<$> fmap MatchTransactionId genTransactionId
<*> pure (Between (SpentAt, 14) (SpentAt, 42))
<*> pure OnlyUnspent
<*> pure AsReference
<*> pure Asc
)
(`shouldBe`
( "SEARCH inputs USING INDEX inputsByOutputReference (output_reference>? AND output_reference<?)" : suffix )
)
specifyQuery "Created/Spent Between" installIndexes
(foldInputsQry
<$> fmap MatchTransactionId genTransactionId
<*> pure (Between (CreatedAt, 14) (SpentAt, 42))