-
Notifications
You must be signed in to change notification settings - Fork 166
Expand file tree
/
Copy pathPlutus.hs
More file actions
898 lines (801 loc) · 28.9 KB
/
Copy pathPlutus.hs
File metadata and controls
898 lines (801 loc) · 28.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
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
{-# LANGUAGE CPP #-}
{-# LANGUAGE NumericUnderscores #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE TypeApplications #-}
#if __GLASGOW_HASKELL__ >= 908
{-# OPTIONS_GHC -Wno-x-partial #-}
#endif
module Test.Cardano.Db.Mock.Unit.Conway.Plutus (
-- * Plutus send scripts
simpleScript,
unlockScriptSameBlock,
unlockScriptNoPlutus,
failedScript,
failedScriptFees,
failedScriptSameBlock,
multipleScripts,
multipleScriptsRollback,
multipleScriptsSameBlock,
multipleScriptsFailed,
multipleScriptsFailedSameBlock,
-- * Plutus cert scripts
registrationScriptTx,
deregistrationScriptTx,
deregistrationsScriptTxs,
deregistrationsScriptTx,
deregistrationsScriptTx',
deregistrationsScriptTx'',
-- * Plutus MultiAsset scripts
mintMultiAsset,
mintMultiAssets,
swapMultiAssets,
swapMultiAssetsDisabled,
multiAssetsTxOut,
) where
import Cardano.Crypto.Hash.Class (hashToBytes)
import qualified Cardano.Db as DB
import qualified Cardano.Db.Schema.Core.TxOut as C
import qualified Cardano.Db.Schema.Variant.TxOut as V
import Cardano.DbSync.Era.Shelley.Generic (TxOutMultiAsset (..))
import Cardano.DbSync.Era.Shelley.Generic.Util (renderAddress, unTxHash)
import Cardano.Ledger.Coin (Coin (..))
import Cardano.Ledger.Core (txIdTx)
import Cardano.Ledger.Mary.Value (MaryValue (..), MultiAsset (..), PolicyID (..))
import Cardano.Ledger.Plutus.Data
import Cardano.Ledger.SafeHash (extractHash)
import Cardano.Mock.ChainSync.Server (IOManager ())
import Cardano.Mock.Forging.Interpreter (withConwayLedgerState)
import qualified Cardano.Mock.Forging.Tx.Alonzo.ScriptsExamples as Examples
import qualified Cardano.Mock.Forging.Tx.Conway as Conway
import Cardano.Mock.Forging.Types
import Cardano.Mock.Query (queryMultiAssetCount, queryTxOutMultiAssets)
import Cardano.Prelude hiding (head)
import qualified Data.Aeson as Aeson
import Data.ByteString.Lazy (fromStrict)
import qualified Data.Map as Map
import Data.Maybe.Strict (StrictMaybe (..))
import GHC.Base (error)
import Ouroboros.Consensus.Shelley.Eras (StandardConway ())
import Ouroboros.Network.Block (genesisPoint)
import Test.Cardano.Db.Mock.Config (
CommandLineArgs (..),
configMultiAssetsDisable,
configPlutusDisable,
conwayConfigDir,
initCommandLineArgs,
startDBSync,
txOutTableTypeFromConfig,
withCustomConfig,
withFullConfig,
withFullConfigAndDropDB,
)
import qualified Test.Cardano.Db.Mock.UnifiedApi as Api
import Test.Cardano.Db.Mock.Validate
import Test.Tasty.HUnit (Assertion)
import Prelude (head, tail, (!!))
------------------------------------------------------------------------------
-- Tests
------------------------------------------------------------------------------
simpleScript :: IOManager -> [(Text, Text)] -> Assertion
simpleScript =
withFullConfigAndDropDB conwayConfigDir testLabel $ \interpreter mockServer dbSync -> do
startDBSync dbSync
let txOutTableType = txOutTableTypeFromConfig dbSync
-- Forge a block with stake credentials
void $ Api.registerAllStakeCreds interpreter mockServer
-- Fill the rest of the epoch
epoch <- Api.fillUntilNextEpoch interpreter mockServer
-- Forge a block with a script
void $
Api.withConwayFindLeaderAndSubmitTx interpreter mockServer $
Conway.mkLockByScriptTx (UTxOIndex 0) [Conway.TxOutNoInline True] 20_000 20_000
-- Verify the outputs match expected
assertBlockNoBackoff dbSync (length epoch + 2)
assertEqQuery
dbSync
(map getOutFields <$> DB.queryScriptOutputs txOutTableType)
[expectedFields]
"Unexpected script outputs"
where
testLabel = "conwaySimpleScript"
getOutFields txOut =
case txOut of
DB.CTxOutW txOut' ->
( C.txOutAddress txOut'
, C.txOutAddressHasScript txOut'
, C.txOutValue txOut'
, C.txOutDataHash txOut'
)
DB.VTxOutW txOut' mAddress ->
case mAddress of
Just address ->
( V.addressAddress address
, V.addressHasScript address
, V.txOutValue txOut'
, V.txOutDataHash txOut'
)
Nothing -> error "conwaySimpleScript: expected an address"
expectedFields =
( renderAddress Examples.alwaysSucceedsScriptAddr
, True
, DB.DbLovelace 20_000
, Just $
hashToBytes (extractHash $ hashData @StandardConway Examples.plutusDataList)
)
unlockScriptSameBlock :: IOManager -> [(Text, Text)] -> Assertion
unlockScriptSameBlock =
withFullConfig conwayConfigDir testLabel $ \interpreter mockServer dbSync -> do
startDBSync dbSync
-- Forge a block with stake credentials
void $ Api.registerAllStakeCreds interpreter mockServer
-- Forge lock/unlock scripts in the same block
void $ Api.withConwayFindLeaderAndSubmit interpreter mockServer $ \state' -> do
tx0 <-
Conway.mkLockByScriptTx
(UTxOIndex 0)
[Conway.TxOutNoInline True]
20_000
20_000
state'
let utxo0 = head (Conway.mkUTxOConway tx0)
tx1 <-
Conway.mkUnlockScriptTx
[UTxOPair utxo0]
(UTxOIndex 1)
(UTxOIndex 2)
True
10_000
500
state'
pure [tx0, tx1]
-- Verify script counts
assertBlockNoBackoff dbSync 2
assertAlonzoCounts dbSync (1, 1, 1, 1, 1, 1, 0, 0)
where
testLabel = "conwayUnlockScriptSameBlock"
unlockScriptNoPlutus :: IOManager -> [(Text, Text)] -> Assertion
unlockScriptNoPlutus =
withCustomConfig args (Just configPlutusDisable) conwayConfigDir testLabel $ \interpreter mockServer dbSync -> do
startDBSync dbSync
-- Forge a block with stake credentials
void $ Api.registerAllStakeCreds interpreter mockServer
-- Lock some funds
lockTx <-
withConwayLedgerState interpreter $
Conway.mkLockByScriptTx (UTxOIndex 0) [Conway.TxOutNoInline True] 20_000 20_000
-- Unlock the funds above with a script
let utxos = map UTxOPair (Conway.mkUTxOConway lockTx)
unlockTx <-
withConwayLedgerState interpreter $
Conway.mkUnlockScriptTx utxos (UTxOIndex 1) (UTxOIndex 2) True 10_000 500
-- Submit them
void $
Api.forgeNextFindLeaderAndSubmit
interpreter
mockServer
(map TxConway [lockTx, unlockTx])
-- Wait for it to sync
assertBlockNoBackoff dbSync 2
-- Should not have any scripts
assertAlonzoCounts dbSync (0, 0, 0, 0, 1, 0, 0, 0)
where
args =
initCommandLineArgs
{ claFullMode = False
}
testLabel = "conwayConfigPlutusDisbaled"
failedScript :: IOManager -> [(Text, Text)] -> Assertion
failedScript =
withFullConfig conwayConfigDir testLabel $ \interpreter mockServer dbSync -> do
startDBSync dbSync
-- Forge a block with a script
tx <-
withConwayLedgerState interpreter $
Conway.mkLockByScriptTx (UTxOIndex 0) [Conway.TxOutNoInline False] 20_000 20_000
void $
Api.forgeNextAndSubmit interpreter mockServer $
MockBlock [TxConway tx] (NodeId 1)
-- Forge another block with a failing unlock script
let utxo = head (Conway.mkUTxOConway tx)
void $
Api.withConwayFindLeaderAndSubmitTx interpreter mockServer $
Conway.mkUnlockScriptTx
[UTxOPair utxo]
(UTxOIndex 1)
(UTxOIndex 2)
False -- Force failure
10_000
500
-- Verify the invalid tx counts
assertBlockNoBackoff dbSync 2
assertAlonzoCounts dbSync (0, 0, 0, 0, 1, 0, 1, 1)
where
testLabel = "conwayFailedScript"
failedScriptFees :: IOManager -> [(Text, Text)] -> Assertion
failedScriptFees =
withFullConfig conwayConfigDir testLabel $ \interpreter mockServer dbSync -> do
startDBSync dbSync
-- Forge a block with a lock script
tx <-
withConwayLedgerState interpreter $
Conway.mkLockByScriptTx (UTxOIndex 0) [Conway.TxOutNoInline False] 20_000 20_000
void $
Api.forgeNextAndSubmit interpreter mockServer $
MockBlock [TxConway tx] (NodeId 1)
-- Forge another block with a failing unlock script
let utxo = head (Conway.mkUTxOConway tx)
void $
Api.withConwayFindLeaderAndSubmitTx interpreter mockServer $
Conway.mkUnlockScriptTx
[UTxOPair utxo]
(UTxOIndex 1)
(UTxOIndex 2)
False -- Force failure
10_000
500
-- Verify fees
assertBlockNoBackoff dbSync 2
assertAlonzoCounts dbSync (0, 0, 0, 0, 1, 0, 1, 1)
assertNonZeroFeesContract dbSync
where
testLabel = "conwayFailedScriptFees"
failedScriptSameBlock :: IOManager -> [(Text, Text)] -> Assertion
failedScriptSameBlock =
withFullConfig conwayConfigDir testLabel $ \interpreter mockServer dbSync -> do
startDBSync dbSync
-- Forge a block with stake registrations
void $ Api.registerAllStakeCreds interpreter mockServer
-- Forge a single block with lock/unlock scripts
void $ Api.withConwayFindLeaderAndSubmit interpreter mockServer $ \state' -> do
-- Create a lock script
tx0 <-
Conway.mkLockByScriptTx
(UTxOIndex 0)
[Conway.TxOutNoInline False]
20_000
20_000
state'
-- Extract the utxo
let utxo = head (Conway.mkUTxOConway tx0)
-- Create a failing unlock script
tx1 <-
Conway.mkUnlockScriptTx
[UTxOPair utxo]
(UTxOIndex 1)
(UTxOIndex 2)
False -- Force failure
10_000
500
state'
pure [tx0, tx1]
-- Verify invalid tx counts
assertBlockNoBackoff dbSync 2
assertAlonzoCounts dbSync (0, 0, 0, 0, 1, 0, 1, 1)
where
testLabel = "conwayFailedScriptSameBlock"
multipleScripts :: IOManager -> [(Text, Text)] -> Assertion
multipleScripts =
withFullConfig conwayConfigDir testLabel $ \interpreter mockServer dbSync -> do
startDBSync dbSync
-- Forge multiple script transactions
tx0 <-
withConwayLedgerState interpreter $
Conway.mkLockByScriptTx
(UTxOIndex 0)
(map Conway.TxOutNoInline [True, False, True])
20_000
20_000
let utxo = Conway.mkUTxOConway tx0
pair1 = head utxo
pair2 = utxo !! 2
tx1 <-
withConwayLedgerState interpreter $
Conway.mkUnlockScriptTx
[UTxOPair pair1, UTxOPair pair2]
(UTxOIndex 1)
(UTxOIndex 2)
True
10_000
500
-- Submit the txs in separate blocks
void $
Api.forgeNextAndSubmit interpreter mockServer $
MockBlock [TxConway tx0] (NodeId 1)
void $
Api.forgeNextAndSubmit interpreter mockServer $
MockBlock [TxConway tx1] (NodeId 1)
-- Verify tx counts
assertBlockNoBackoff dbSync 2
assertAlonzoCounts dbSync (1, 2, 1, 1, 3, 2, 0, 0)
where
testLabel = "conwayMultipleScripts"
multipleScriptsRollback :: IOManager -> [(Text, Text)] -> Assertion
multipleScriptsRollback =
withFullConfig conwayConfigDir testLabel $ \interpreter mockServer dbSync -> do
startDBSync dbSync
-- Create multiple scripts
tx0 <-
withConwayLedgerState interpreter $
Conway.mkLockByScriptTx
(UTxOIndex 0)
(map Conway.TxOutNoInline [True, False, True])
20_000
20_000
let utxo = Conway.mkUTxOConway tx0
pair1 = head utxo
pair2 = utxo !! 2
tx1 <-
withConwayLedgerState interpreter $
Conway.mkUnlockScriptTx
[UTxOPair pair1, UTxOPair pair2]
(UTxOIndex 1)
(UTxOIndex 2)
True
10_000
500
-- Submit the txs in separate blocks
void $
Api.forgeNextAndSubmit interpreter mockServer $
MockBlock [TxConway tx0] (NodeId 1)
void $
Api.forgeNextAndSubmit interpreter mockServer $
MockBlock [TxConway tx1] (NodeId 1)
-- Wait for it to sync
assertBlockNoBackoff dbSync 2
assertAlonzoCounts dbSync (1, 2, 1, 1, 3, 2, 0, 0)
-- Roll back to genesis
Api.rollbackTo interpreter mockServer genesisPoint
-- Forge another block
void $ Api.forgeNextFindLeaderAndSubmit interpreter mockServer []
-- Submit the txs again
void $
Api.forgeNextAndSubmit interpreter mockServer $
MockBlock [TxConway tx0] (NodeId 1)
void $
Api.forgeNextAndSubmit interpreter mockServer $
MockBlock [TxConway tx1] (NodeId 1)
-- Verify tx counts
assertBlockNoBackoff dbSync 3
assertAlonzoCounts dbSync (1, 2, 1, 1, 3, 2, 0, 0)
where
testLabel = "conwayMultipleScriptsRollback"
multipleScriptsSameBlock :: IOManager -> [(Text, Text)] -> Assertion
multipleScriptsSameBlock =
withFullConfig conwayConfigDir testLabel $ \interpreter mockServer dbSync -> do
startDBSync dbSync
-- Forge a single block with multiple scripts
void $ Api.withConwayFindLeaderAndSubmit interpreter mockServer $ \state' -> do
tx0 <-
Conway.mkLockByScriptTx
(UTxOIndex 0)
(map Conway.TxOutNoInline [True, False, True])
20_000
20_000
state'
let utxo = Conway.mkUTxOConway tx0
pairs = [head utxo, utxo !! 2] -- Omit the failing (middle) script
tx1 <-
Conway.mkUnlockScriptTx
(map UTxOPair pairs)
(UTxOIndex 1)
(UTxOIndex 2)
True
10_000
500
state'
pure [tx0, tx1]
-- Verify tx counts
assertBlockNoBackoff dbSync 1
assertAlonzoCounts dbSync (1, 2, 1, 1, 3, 2, 0, 0)
where
testLabel = "conwayMultipleScriptsSameBlock"
multipleScriptsFailed :: IOManager -> [(Text, Text)] -> Assertion
multipleScriptsFailed =
withFullConfig conwayConfigDir testLabel $ \interpreter mockServer dbSync -> do
startDBSync dbSync
-- Forge a block with multiple scripts
tx0 <-
withConwayLedgerState interpreter $
Conway.mkLockByScriptTx
(UTxOIndex 0)
(map Conway.TxOutNoInline [True, False, True])
20_000
20_000
void $
Api.forgeNextAndSubmit interpreter mockServer $
MockBlock [TxConway tx0] (NodeId 1)
-- Forge another block with failing scripts
let utxos = Conway.mkUTxOConway tx0
tx1 <-
withConwayLedgerState interpreter $
Conway.mkUnlockScriptTx
(map UTxOPair utxos)
(UTxOIndex 1)
(UTxOIndex 2)
False -- Force failure
10_000
500
void $
Api.forgeNextAndSubmit interpreter mockServer $
MockBlock [TxConway tx1] (NodeId 1)
-- Verify failed txs
assertBlockNoBackoff dbSync 2
assertAlonzoCounts dbSync (0, 0, 0, 0, 3, 0, 1, 1)
where
testLabel = "conwayMultipleScriptsFailed"
multipleScriptsFailedSameBlock :: IOManager -> [(Text, Text)] -> Assertion
multipleScriptsFailedSameBlock =
withFullConfig conwayConfigDir testLabel $ \interpreter mockServer dbSync -> do
startDBSync dbSync
-- Add multiple scripts in the same block
void $ Api.withConwayFindLeaderAndSubmit interpreter mockServer $ \state' -> do
tx0 <-
Conway.mkLockByScriptTx
(UTxOIndex 0)
(map Conway.TxOutNoInline [True, False, True])
20_000
20_000
state'
let utxos = tail (Conway.mkUTxOConway tx0)
tx1 <-
Conway.mkUnlockScriptTx
(map UTxOPair utxos)
(UTxOIndex 1)
(UTxOIndex 2)
False -- Force failure
10_000
500
state'
pure [tx0, tx1]
-- Verify failed txs
assertBlockNoBackoff dbSync 1
assertAlonzoCounts dbSync (0, 0, 0, 0, 3, 0, 1, 1)
where
testLabel = "conwayMultipleScriptsFailedSameBlock"
registrationScriptTx :: IOManager -> [(Text, Text)] -> Assertion
registrationScriptTx =
withFullConfigAndDropDB conwayConfigDir testLabel $ \interpreter mockServer dbSync -> do
startDBSync dbSync
-- Forge a transaction with a registration cert
void $
Api.withConwayFindLeaderAndSubmitTx interpreter mockServer $
Conway.mkSimpleDCertTx [(StakeIndexScript True, Conway.mkRegTxCert SNothing)]
-- Verify stake address script counts
assertBlockNoBackoff dbSync 1
assertScriptCert dbSync (0, 0, 0, 1)
where
testLabel = "conwayRegistrationScriptTx"
deregistrationScriptTx :: IOManager -> [(Text, Text)] -> Assertion
deregistrationScriptTx =
withFullConfig conwayConfigDir testLabel $ \interpreter mockServer dbSync -> do
startDBSync dbSync
-- Forge registration/deregistration cert transaction
void $ Api.withConwayFindLeaderAndSubmit interpreter mockServer $ \state' -> do
sequence
[ Conway.mkSimpleDCertTx
[(StakeIndexScript True, Conway.mkRegTxCert SNothing)]
state'
, Conway.mkScriptDCertTx
[(StakeIndexScript True, True, Conway.mkUnRegTxCert SNothing)]
True
state'
]
-- Verify dereg and stake address script counts
assertBlockNoBackoff dbSync 1
assertScriptCert dbSync (1, 0, 0, 1)
where
testLabel = "conwayDeregistrationScriptTx"
deregistrationsScriptTxs :: IOManager -> [(Text, Text)] -> Assertion
deregistrationsScriptTxs =
withFullConfig conwayConfigDir testLabel $ \interpreter mockServer dbSync -> do
startDBSync dbSync
-- Forge multiple reg/dereg transactions in a single block
void $ Api.withConwayFindLeaderAndSubmit interpreter mockServer $ \state' -> do
reg <-
Conway.mkSimpleDCertTx
[(StakeIndexScript True, Conway.mkRegTxCert SNothing)]
state'
dereg <-
Conway.mkScriptDCertTx
[(StakeIndexScript True, True, Conway.mkUnRegTxCert SNothing)]
True
state'
pure
[ reg
, dereg
, Conway.addValidityInterval 1000 reg
, Conway.addValidityInterval 2000 dereg
]
assertBlockNoBackoff dbSync 1
-- Verify dereg and stake address script counts
assertScriptCert dbSync (2, 0, 0, 1)
-- Verify script/redeemer/datum counts
assertAlonzoCounts dbSync (1, 2, 1, 0, 0, 0, 0, 0)
where
testLabel = "conwayDeregistrationsScriptTxs"
deregistrationsScriptTx :: IOManager -> [(Text, Text)] -> Assertion
deregistrationsScriptTx =
withFullConfig conwayConfigDir testLabel $ \interpreter mockServer dbSync -> do
startDBSync dbSync
-- Forge multiple reg/dereg transactions in a single block
void $ Api.withConwayFindLeaderAndSubmit interpreter mockServer $ \state' -> do
sequence
[ -- A transaction with one registration
Conway.mkSimpleDCertTx
[(StakeIndexScript True, Conway.mkRegTxCert SNothing)]
state'
, -- A transaction with multiple deregistrations/registrations
Conway.mkScriptDCertTx
[ (StakeIndexScript True, True, Conway.mkUnRegTxCert SNothing)
, -- No redeemer
(StakeIndexScript True, False, Conway.mkRegTxCert SNothing)
, -- Add redeemer
(StakeIndexScript True, True, Conway.mkUnRegTxCert SNothing)
]
True
state'
]
assertBlockNoBackoff dbSync 1
-- Verify dereg and stake address script counts
assertScriptCert dbSync (2, 0, 0, 1)
-- Verify script/redeemer/datum counts
assertAlonzoCounts dbSync (1, 2, 1, 0, 0, 0, 0, 0)
where
testLabel = "conwayDeregistrationsScriptTx"
-- Like previous but missing a redeemer. This is a known ledger issue
deregistrationsScriptTx' :: IOManager -> [(Text, Text)] -> Assertion
deregistrationsScriptTx' =
withFullConfig conwayConfigDir testLabel $ \interpreter mockServer dbSync -> do
startDBSync dbSync
-- Forge registrations/deregistrations without a redeemer
void $ Api.withConwayFindLeaderAndSubmit interpreter mockServer $ \state' ->
sequence
[ -- A transaction with one registration
Conway.mkSimpleDCertTx
[(StakeIndexScript True, Conway.mkRegTxCert SNothing)]
state'
, -- Multiple degistrations/registrations, missing redeemer
Conway.mkScriptDCertTx
[ -- No redeemer
(StakeIndexScript True, False, Conway.mkUnRegTxCert SNothing)
, (StakeIndexScript True, False, Conway.mkRegTxCert SNothing)
, -- Add redeemer
(StakeIndexScript True, True, Conway.mkUnRegTxCert SNothing)
]
True
state'
]
assertBlockNoBackoff dbSync 1
-- TODO: This is a bug! The first field (delegations) should be 2. However the
-- deregistrations are missing the redeemers
assertScriptCert dbSync (0, 0, 0, 1)
-- Redeemer count should now be 1
assertAlonzoCounts dbSync (1, 1, 1, 0, 0, 0, 0, 0)
where
testLabel = "conwayDeregistrationsScriptTx'"
-- Like previous but missing the other redeemer. This is a known ledger issue
deregistrationsScriptTx'' :: IOManager -> [(Text, Text)] -> Assertion
deregistrationsScriptTx'' =
withFullConfig conwayConfigDir testLabel $ \interpreter mockServer dbSync -> do
startDBSync dbSync
-- Forge registrations/deregistrations without a redeemer
void $ Api.withConwayFindLeaderAndSubmit interpreter mockServer $ \state' ->
sequence
[ -- A transaction with one registration
Conway.mkSimpleDCertTx
[(StakeIndexScript True, Conway.mkRegTxCert SNothing)]
state'
, -- Multiple deregistrations/registrations, missing redeemer
Conway.mkScriptDCertTx
[ -- Add redeemer
(StakeIndexScript True, True, Conway.mkUnRegTxCert SNothing)
, (StakeIndexScript True, False, Conway.mkRegTxCert SNothing)
, -- No redeemer
(StakeIndexScript True, False, Conway.mkUnRegTxCert SNothing)
]
True
state'
]
assertBlockNoBackoff dbSync 1
-- TODO: Is this a bug? The first field (delegations) should be 2, but it's only 1
assertScriptCert dbSync (1, 0, 0, 1)
-- Redeemer count should now be 1
assertAlonzoCounts dbSync (1, 1, 1, 0, 0, 0, 0, 0)
where
testLabel = "conwayDeregistrationsScriptTx''"
mintMultiAsset :: IOManager -> [(Text, Text)] -> Assertion
mintMultiAsset =
withFullConfigAndDropDB conwayConfigDir testLabel $ \interpreter mockServer dbSync -> do
startDBSync dbSync
-- Forge a block with a multi-asset script
void $ Api.withConwayFindLeaderAndSubmitTx interpreter mockServer $ \state' -> do
let val =
MultiAsset $
Map.singleton
(PolicyID Examples.alwaysMintScriptHash)
(Map.singleton (head Examples.assetNames) 1)
Conway.mkMultiAssetsScriptTx
[UTxOIndex 0]
(UTxOIndex 1)
[(UTxOAddressNew 0, MaryValue (Coin 10_000) mempty)]
[]
val
True
100
state'
-- Verify script counts
assertBlockNoBackoff dbSync 1
assertAlonzoCounts dbSync (1, 1, 1, 1, 0, 0, 0, 0)
where
testLabel = "conwayMintMultiAsset"
mintMultiAssets :: IOManager -> [(Text, Text)] -> Assertion
mintMultiAssets =
withFullConfig conwayConfigDir testLabel $ \interpreter mockServer dbSync -> do
startDBSync dbSync
-- Forge a block with multiple multi-asset scripts
void $ Api.withConwayFindLeaderAndSubmit interpreter mockServer $ \state' -> do
let assets = Map.fromList [(head Examples.assetNames, 10), (Examples.assetNames !! 1, 4)]
policy0 = PolicyID Examples.alwaysMintScriptHash
policy1 = PolicyID Examples.alwaysSucceedsScriptHash
val = MultiAsset $ Map.fromList [(policy0, assets), (policy1, assets)]
sequence
[ Conway.mkMultiAssetsScriptTx
[UTxOIndex 0]
(UTxOIndex 1)
[(UTxOAddressNew 0, MaryValue (Coin 10_000) mempty)]
[]
val
True
100
state'
, Conway.mkMultiAssetsScriptTx
[UTxOIndex 2]
(UTxOIndex 3)
[(UTxOAddressNew 0, MaryValue (Coin 10_000) mempty)]
[]
val
True
200
state'
]
-- Verify script counts
assertBlockNoBackoff dbSync 1
assertAlonzoCounts dbSync (2, 4, 1, 2, 0, 0, 0, 0)
where
testLabel = "conwayMintMultiAssets"
swapMultiAssets :: IOManager -> [(Text, Text)] -> Assertion
swapMultiAssets =
withFullConfig conwayConfigDir testLabel $ \interpreter mockServer dbSync -> do
startDBSync dbSync
-- Forge a block with multiple multi-asset scripts
void $ Api.withConwayFindLeaderAndSubmit interpreter mockServer $ \state' -> do
let assetsMinted =
Map.fromList [(head Examples.assetNames, 10), (Examples.assetNames !! 1, 4)]
policy0 = PolicyID Examples.alwaysMintScriptHash
policy1 = PolicyID Examples.alwaysSucceedsScriptHash
mintValue =
MultiAsset $
Map.fromList [(policy0, assetsMinted), (policy1, assetsMinted)]
assets =
Map.fromList [(head Examples.assetNames, 5), (Examples.assetNames !! 1, 2)]
outValue =
MaryValue (Coin 20) $
MultiAsset $
Map.fromList [(policy0, assets), (policy1, assets)]
-- Forge a multi-asset script
tx0 <-
Conway.mkMultiAssetsScriptTx
[UTxOIndex 0]
(UTxOIndex 1)
[ (UTxOAddress Examples.alwaysSucceedsScriptAddr, outValue)
, (UTxOAddress Examples.alwaysMintScriptAddr, outValue)
]
[]
mintValue
True
100
state'
-- Consume the outputs from tx0
let utxos = Conway.mkUTxOConway tx0
tx1 <-
Conway.mkMultiAssetsScriptTx
[UTxOPair (head utxos), UTxOPair (utxos !! 1), UTxOIndex 2]
(UTxOIndex 3)
[ (UTxOAddress Examples.alwaysSucceedsScriptAddr, outValue)
, (UTxOAddress Examples.alwaysMintScriptAddr, outValue)
, (UTxOAddressNew 0, outValue)
, (UTxOAddressNew 0, outValue)
]
[]
mintValue
True
200
state'
pure [tx0, tx1]
-- Verify script counts
assertBlockNoBackoff dbSync 1
assertAlonzoCounts dbSync (2, 6, 1, 2, 4, 2, 0, 0)
assertEqBackoff dbSync queryMultiAssetCount 4 [] "Expected multi-assets"
where
testLabel = "conwaySwapMultiAssets"
swapMultiAssetsDisabled :: IOManager -> [(Text, Text)] -> Assertion
swapMultiAssetsDisabled =
withCustomConfig args (Just configMultiAssetsDisable) cfgDir testLabel $ \interpreter mockServer dbSync -> do
startDBSync dbSync
-- Forge a block with multiple multi-asset scripts
void $ Api.withConwayFindLeaderAndSubmit interpreter mockServer $ \state' -> do
let policy = PolicyID Examples.alwaysMintScriptHash
assets = Map.singleton (Prelude.head Examples.assetNames) 1
mintedValue = MultiAsset $ Map.singleton policy assets
outValue = MaryValue (Coin 20) (MultiAsset $ Map.singleton policy assets)
-- Forge a multi-asset script
tx0 <-
Conway.mkMultiAssetsScriptTx
[UTxOIndex 0]
(UTxOIndex 1)
[(UTxOAddress Examples.alwaysSucceedsScriptAddr, outValue)]
[]
mintedValue
True
100
state'
pure [tx0]
-- Wait for it to sync
assertBlockNoBackoff dbSync 1
-- Verify multi-assets
assertEqBackoff dbSync queryMultiAssetCount 0 [] "Unexpected multi-assets"
where
args =
initCommandLineArgs
{ claFullMode = False
}
testLabel = "conwayConfigMultiAssetsDisabled"
cfgDir = conwayConfigDir
multiAssetsTxOut :: IOManager -> [(Text, Text)] -> Assertion
multiAssetsTxOut =
withFullConfig conwayConfigDir testLabel $ \interpreter server dbSync -> do
let txOutVariant = txOutTableTypeFromConfig dbSync
startDBSync dbSync
-- Forge a multi-asset transaction
let assetName = head Examples.assetNames
policy = PolicyID Examples.alwaysMintScriptHash
assets = Map.singleton (head Examples.assetNames) 5
outValue = MaryValue (Coin 20) (MultiAsset $ Map.singleton policy assets)
mintValue = MultiAsset $ Map.singleton policy assets
tx <- withConwayLedgerState interpreter $ \state' ->
Conway.mkMultiAssetsScriptTx
[UTxOIndex 0]
(UTxOIndex 1)
[(UTxOAddress Examples.alwaysMintScriptAddr, outValue)]
[]
mintValue
True
100
state'
-- Submit it
void $
Api.withConwayFindLeaderAndSubmitTx interpreter server $
const (Right tx)
let txHash = unTxHash (txIdTx tx)
txIndex = 0
expectedMultiAssets =
Just
[ TxOutMultiAsset
{ txOutMaPolicyId = policy
, txOutMaAssetName = assetName
, txOutMaAmount = 5
}
]
-- Wait for it to sync
assertBlockNoBackoff dbSync 1
-- Should now have tx_out.ma_tx_out
assertEqBackoff dbSync queryMultiAssetCount 1 [] "Expected multi-assets"
assertBackoff
dbSync
(queryTxOutMultiAssets txOutVariant txHash txIndex)
[]
((== expectedMultiAssets) . parseMultiAsset)
(const "Unexpected multi-assets")
where
testLabel = "conwayMultiAssetsTxOut"
parseMultiAsset = join . fmap (Aeson.decode . fromStrict . encodeUtf8)