-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add test to hash check in `governance committee create-cold-key-resig…
…nation-certificate`
- Loading branch information
Showing
2 changed files
with
84 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
83 changes: 83 additions & 0 deletions
83
cardano-cli/test/cardano-cli-test/Test/Cli/Governance/Committee.hs
This file contains 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 |
---|---|---|
@@ -0,0 +1,83 @@ | ||
{-# LANGUAGE FlexibleContexts #-} | ||
|
||
module Test.Cli.Governance.Committee where | ||
|
||
import Cardano.Api (MonadIO) | ||
|
||
import Control.Monad (void) | ||
import Control.Monad.Catch (MonadCatch) | ||
import Control.Monad.Trans.Control (MonadBaseControl) | ||
|
||
import Test.Cardano.CLI.Hash (exampleAnchorDataHash, exampleAnchorDataIpfsHash, | ||
exampleAnchorDataPathTest, serveFilesWhile, tamperBase16Hash) | ||
import Test.Cardano.CLI.Util (execCardanoCLI, execCardanoCLIWithEnvVars, expectFailure, | ||
noteTempFile, propertyOnce) | ||
|
||
import Hedgehog (MonadTest, Property) | ||
import qualified Hedgehog as H | ||
import qualified Hedgehog.Extras as H | ||
|
||
-- | Execute me with: | ||
-- @cabal test cardano-cli-test --test-options '-p "/governance governance committee checks wrong hash fails/"'@ | ||
hprop_governance_governance_committee_checks_wrong_hash_fails :: Property | ||
hprop_governance_governance_committee_checks_wrong_hash_fails = | ||
propertyOnce . expectFailure . H.moduleWorkspace "tmp" $ \tempDir -> do | ||
-- We modify the hash slightly so that the hash check fails | ||
alteredHash <- H.evalMaybe $ tamperBase16Hash exampleAnchorDataHash | ||
-- We run the test with the altered | ||
baseGovernanceGovernanceCommitteeChecksHash | ||
alteredHash | ||
tempDir | ||
|
||
-- | Execute me with: | ||
-- @cabal test cardano-cli-test --test-options '-p "/governance governance committee checks right hash works/"'@ | ||
hprop_governance_governance_committee_checks_right_hash_works :: Property | ||
hprop_governance_governance_committee_checks_right_hash_works = | ||
propertyOnce . H.moduleWorkspace "tmp" $ \tempDir -> | ||
baseGovernanceGovernanceCommitteeChecksHash exampleAnchorDataHash tempDir | ||
|
||
baseGovernanceGovernanceCommitteeChecksHash | ||
:: (MonadBaseControl IO m, MonadTest m, MonadIO m, MonadCatch m) => String -> FilePath -> m () | ||
baseGovernanceGovernanceCommitteeChecksHash hash tempDir = do | ||
ccColdVKey <- noteTempFile tempDir "cold.vkey" | ||
ccColdSKey <- noteTempFile tempDir "cold.skey" | ||
|
||
certFile <- noteTempFile tempDir "hot-auth.cert" | ||
|
||
void $ | ||
execCardanoCLI | ||
[ "conway" | ||
, "governance" | ||
, "committee" | ||
, "key-gen-cold" | ||
, "--verification-key-file" | ||
, ccColdVKey | ||
, "--signing-key-file" | ||
, ccColdSKey | ||
] | ||
|
||
let relativeUrl = ["ipfs", exampleAnchorDataIpfsHash] | ||
|
||
-- Create temporary HTTP server with files required by the call to `cardano-cli` | ||
-- In this case, the server emulates an IPFS gateway | ||
serveFilesWhile | ||
[(relativeUrl, exampleAnchorDataPathTest)] | ||
( \port -> do | ||
void $ | ||
execCardanoCLIWithEnvVars | ||
[("IPFS_GATEWAY_URI", "http://localhost:" ++ show port ++ "/")] | ||
[ "conway" | ||
, "governance" | ||
, "committee" | ||
, "create-cold-key-resignation-certificate" | ||
, "--cold-verification-key-file" | ||
, ccColdVKey | ||
, "--resignation-metadata-url" | ||
, "ipfs://" ++ exampleAnchorDataIpfsHash | ||
, "--resignation-metadata-hash" | ||
, hash | ||
, "--check-resignation-metadata-hash" | ||
, "--out-file" | ||
, certFile | ||
] | ||
) |