-
Notifications
You must be signed in to change notification settings - Fork 166
Add a golden test for duplicate certificates #5370
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+67
−11
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
68 changes: 62 additions & 6 deletions
68
eras/dijkstra/impl/testlib/Test/Cardano/Ledger/Dijkstra/Binary/Golden.hs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,27 +1,83 @@ | ||
| {-# LANGUAGE AllowAmbiguousTypes #-} | ||
| {-# LANGUAGE OverloadedStrings #-} | ||
| {-# LANGUAGE PatternSynonyms #-} | ||
| {-# LANGUAGE RankNTypes #-} | ||
| {-# LANGUAGE ScopedTypeVariables #-} | ||
| {-# LANGUAGE TypeApplications #-} | ||
|
|
||
| module Test.Cardano.Ledger.Dijkstra.Binary.Golden ( | ||
| goldenListRedeemersDisallowed, | ||
| spec, | ||
| ) where | ||
|
|
||
| import Cardano.Ledger.Alonzo.TxWits (Redeemers) | ||
| import Cardano.Ledger.Binary (DecoderError (..), DeserialiseFailure (..)) | ||
| import Cardano.Ledger.Dijkstra.Core (eraProtVerLow) | ||
| import Test.Cardano.Ledger.Common (Spec, it) | ||
| import Test.Cardano.Ledger.Conway.Binary.Golden (expectDecoderFailure, listRedeemersEnc) | ||
| import Cardano.Ledger.BaseTypes (Version) | ||
| import Cardano.Ledger.Binary (DecoderError (..), DeserialiseFailure (..), Tokens (..)) | ||
| import Cardano.Ledger.Coin (Coin (..)) | ||
| import Cardano.Ledger.Conway.TxCert (Delegatee (..)) | ||
| import Cardano.Ledger.Credential (Credential (..)) | ||
| import Cardano.Ledger.Dijkstra.Core ( | ||
| EraTxBody (..), | ||
| EraTxOut (..), | ||
| TxLevel (..), | ||
| eraProtVerLow, | ||
| pattern DelegTxCert, | ||
| ) | ||
| import Cardano.Ledger.TxIn (TxIn (..)) | ||
| import qualified Data.Set as Set | ||
| import Test.Cardano.Ledger.Binary.Plain.Golden (Enc (..)) | ||
| import Test.Cardano.Ledger.Common (Spec, describe, it) | ||
| import Test.Cardano.Ledger.Conway.Binary.Golden (expectDecoderFailureAnn, listRedeemersEnc) | ||
| import Test.Cardano.Ledger.Core.KeyPair (mkKeyHash) | ||
| import Test.Cardano.Ledger.Dijkstra.Era (DijkstraEraTest) | ||
|
|
||
| spec :: forall era. DijkstraEraTest era => Spec | ||
| spec = describe "Golden" $ do | ||
| goldenListRedeemersDisallowed @era | ||
| goldenDuplicateCertsDisallowed @era | ||
|
|
||
| goldenListRedeemersDisallowed :: forall era. DijkstraEraTest era => Spec | ||
| goldenListRedeemersDisallowed = | ||
| it "Decoding Redeemers encoded as a list fails" $ | ||
| expectDecoderFailure @(Redeemers era) | ||
| expectDecoderFailureAnn @(Redeemers era) | ||
| (eraProtVerLow @era) | ||
| listRedeemersEnc | ||
| ( DecoderErrorDeserialiseFailure | ||
| "Annotator (MemoBytes (RedeemersRaw DijkstraEra))" | ||
| (DeserialiseFailure 0 "List encoding of redeemers not supported starting with PV 12") | ||
| ) | ||
|
|
||
| duplicateCertsTx :: forall era. DijkstraEraTest era => Version -> Enc | ||
| duplicateCertsTx v = | ||
| mconcat | ||
| [ E $ TkMapLen 4 | ||
| , Em [E @Int 0, Ev v $ Set.empty @TxIn] | ||
| , Em [E @Int 1, Ev v $ [] @(TxOut era)] | ||
| , Em [E @Int 2, E $ Coin 0] | ||
| , Em | ||
| [ E @Int 4 | ||
| , Em | ||
| [ E $ TkTag 258 | ||
| , E $ TkListLen 2 | ||
| , Ev v cert | ||
| , Ev v cert | ||
| ] | ||
| ] | ||
| ] | ||
| where | ||
| cert = DelegTxCert @era (KeyHashObj (mkKeyHash 0)) (DelegStake (mkKeyHash 1)) | ||
|
|
||
| goldenDuplicateCertsDisallowed :: forall era. DijkstraEraTest era => Spec | ||
| goldenDuplicateCertsDisallowed = | ||
| it "Decoding a transaction body with duplicate certificates fails" $ | ||
| expectDecoderFailureAnn @(TxBody TopTx era) | ||
| version | ||
| (duplicateCertsTx @era version) | ||
| ( DecoderErrorDeserialiseFailure | ||
| "Annotator (MemoBytes (DijkstraTxBodyRaw TopTx DijkstraEra))" | ||
| ( DeserialiseFailure | ||
| 143 | ||
| "Final number of elements: 1 does not match the total count that was decoded: 2" | ||
| ) | ||
| ) | ||
| where | ||
| version = eraProtVerLow @era | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.