morley-1.3.0: src/Michelson/Test/Integrational.hs
-- SPDX-FileCopyrightText: 2020 Tocqueville Group
--
-- SPDX-License-Identifier: LicenseRef-MIT-TQ
-- | Utilities for integrational testing.
-- Example tests can be found in the 'morley-test' test suite.
module Michelson.Test.Integrational
(
-- * Re-exports
TxData (..)
-- * More genesis addresses which can be used in tests
, genesisAddress
, genesisAddress1
, genesisAddress2
, genesisAddress3
, genesisAddress4
, genesisAddress5
, genesisAddress6
-- * Testing engine
, IntegrationalValidator
, SuccessValidator
, IntegrationalScenarioM
, IntegrationalScenario
, ValidationError (..)
, integrationalTestExpectation
, integrationalTestProperty
, originate
, tOriginate
, transfer
, tTransfer
, validate
, integrationalFail
, setMaxSteps
, modifyNow
, setNow
, rewindTime
, withSender
, setChainId
, branchout
, (?-)
, offshoot
-- * Validators
, composeValidators
, composeValidatorsList
, expectAnySuccess
, expectNoUpdates
, expectNoStorageUpdates
, expectStorageUpdate
, expectStorageUpdateConst
, expectBalance
, expectStorage
, expectStorageConst
, tExpectStorageConst
, expectGasExhaustion
, expectMichelsonFailed
-- * Lenses
, isGState
) where
import Control.Lens (assign, at, makeLenses, makeLensesFor, modifying, (%=), (.=), (<>=), (?=))
import Control.Monad.Except (Except, runExcept, throwError, withExcept)
import qualified Data.List as List
import Data.Map as Map (empty, insert, lookup)
import Fmt (Buildable(..), blockListF, listF, pretty, (+|), (|+))
import Named ((:!), arg)
import Test.Hspec (Expectation, expectationFailure)
import Test.QuickCheck (Property)
import Michelson.Interpret (InterpretError(..), MichelsonFailed(..), RemainingSteps)
import Michelson.Runtime
(ExecutorError, ExecutorError'(..), ExecutorOp(..), ExecutorRes(..), executorPure)
import Michelson.Runtime.GState
import Michelson.Runtime.TxData
import Michelson.Test.Dummy
import Michelson.Test.Util (failedProp, succeededProp)
import Michelson.TypeCheck (TCError)
import qualified Michelson.Typed as Typed
import Michelson.Typed.Scope (ParameterScope, StorageScope, properParameterEvi, withDict)
import Michelson.Untyped (Contract, EpName, OriginationOperation(..), Value, mkContractAddress)
import Tezos.Address (Address)
import Tezos.Core (ChainId, Mutez, Timestamp, timestampPlusSeconds, unsafeMkMutez)
----------------------------------------------------------------------------
-- Some internals (they are here because TH makes our very existence much harder)
----------------------------------------------------------------------------
-- | A result of an executed operation.
type ExecutorResOrError = Either ExecutorError ExecutorRes
data InternalState = InternalState
{ _isMaxSteps :: RemainingSteps
, _isNow :: Timestamp
, _isGState :: GState
, _isInterpreterLog :: [ExecutorResOrError]
-- ^ Store result of interpreted operations as they added.
, _isExecutorResult :: Maybe ExecutorResOrError
-- ^ Store the most recent result of interpreted operations.
, _isContractsNames :: Map Address Text
-- ^ Map from contracts addresses to humanreadable names.
, _isSender :: Maybe Address
-- ^ If set, all following transfers will be executed on behalf
-- of the given contract.
}
makeLenses ''InternalState
-- | When using 'branch' function for building test scenarios - names
-- of branches we are currently within.
newtype ScenarioBranchName = ScenarioBranchName { unTestBranch :: [Text] }
instance Buildable ScenarioBranchName where
build = mconcat . intersperse "/" . map build . unTestBranch
----------------------------------------------------------------------------
-- Interface
----------------------------------------------------------------------------
-- | Validator for integrational testing.
-- If an error is expected, it should be 'Left' with validator for errors.
-- Otherwise it should check final global state and its updates.
type IntegrationalValidator = Either (ExecutorError -> Bool) SuccessValidator
-- | Validator for integrational testing that expects successful execution.
type SuccessValidator = InternalState -> GState -> [GStateUpdate] -> Either ValidationError ()
-- | A monad inside which integrational tests can be described using
-- do-notation.
type IntegrationalScenarioM = StateT InternalState (Except ScenarioError)
-- | A dummy data type that ensures that `validate` is called in the
-- end of each scenario. It is intentionally not exported.
data Validated = Validated
type IntegrationalScenario = IntegrationalScenarioM Validated
newtype ExpectedStorage = ExpectedStorage Value deriving stock (Show)
newtype ExpectedBalance = ExpectedBalance Mutez deriving stock (Show)
data AddressName = AddressName (Maybe Text) Address deriving stock (Show)
addrToAddrName :: Address -> InternalState -> AddressName
addrToAddrName addr iState =
AddressName (lookup addr (iState ^. isContractsNames)) addr
instance Buildable AddressName where
build (AddressName mbName addr) =
build addr +| maybe "" (\cName -> " (" +|cName |+ ")") mbName
type IntegrationalExecutorError = ExecutorError' AddressName
data ValidationError
= UnexpectedExecutorError IntegrationalExecutorError
| UnexpectedTypeCheckError TCError
| ExpectingInterpreterToFail
| IncorrectUpdates ValidationError [GStateUpdate]
| IncorrectStorageUpdate AddressName Text
| InvalidStorage AddressName ExpectedStorage Text
| StoragePredicateMismatch AddressName Text
| InvalidBalance AddressName ExpectedBalance Text
| UnexpectedUpdates (NonEmpty GStateUpdate)
| CustomValidationError Text
deriving stock (Show)
instance Buildable ValidationError where
build (UnexpectedExecutorError iErr) =
"Unexpected interpreter error. Reason: " +| iErr |+ ""
build (UnexpectedTypeCheckError tcErr) =
"Unexpected type check error. Reason: " +| tcErr |+ ""
build ExpectingInterpreterToFail =
"Interpreter unexpectedly didn't fail"
build (IncorrectUpdates vErr updates) =
"Updates are incorrect: " +| vErr |+ " . Updates are:"
+| blockListF updates |+ ""
build (IncorrectStorageUpdate addr msg) =
"Storage of " +| addr |+ " is updated incorrectly: " +| msg |+ ""
build (InvalidStorage addr (ExpectedStorage expected) msg) =
"Expected " +| addr |+ " to have storage " +| expected |+ ", but " +| msg |+ ""
build (StoragePredicateMismatch addr msg) =
"Expected " +| addr |+ " to have storage that matches the predicate, but" +| msg |+ ""
build (InvalidBalance addr (ExpectedBalance expected) msg) =
"Expected " +| addr |+ " to have balance " +| expected |+ ", but " +| msg |+ ""
build (UnexpectedUpdates updates) =
"Did not expect certain updates, but there are some: " +| listF updates |+ ""
build (CustomValidationError msg) = pretty msg
instance Exception ValidationError where
displayException = pretty
-- | Overall information about test scenario error.
data ScenarioError = ScenarioError
{ _seBranch :: ScenarioBranchName
, _seError :: ValidationError
}
makeLensesFor [("_seBranch", "seBranch")] ''ScenarioError
instance Buildable ScenarioError where
build (ScenarioError br err) =
let builtBranch
| nullScenarioBranch br = ""
| otherwise = "In '" +| br |+ "' branch:\n"
in builtBranch <> build err
-- | Integrational test that executes given operations and validates
-- them using given validator. It can fail using 'Expectation'
-- capability.
-- It starts with 'initGState' and some reasonable dummy values for
-- gas limit and current timestamp. You can update blockchain state
-- by performing some operations.
integrationalTestExpectation
:: HasCallStack
=> IntegrationalScenario -> Expectation
integrationalTestExpectation =
integrationalTest (maybe pass (expectationFailure . pretty))
-- | Integrational test similar to 'integrationalTestExpectation'.
-- It can fail using 'Property' capability.
-- It can be used with QuickCheck's @forAll@ to make a
-- property-based test with arbitrary data.
integrationalTestProperty :: IntegrationalScenario -> Property
integrationalTestProperty =
integrationalTest (maybe succeededProp (failedProp . pretty))
-- | Helper function which provides the results of the given operations.
interpret :: [ExecutorOp] -> IntegrationalScenarioM ExecutorResOrError
interpret ops = do
now <- use isNow
maxSteps <- use isMaxSteps
gState <- use isGState
let interpretedResult = executorPure now maxSteps gState ops
whenRight interpretedResult $ \result -> isGState .= _erGState result
return interpretedResult
-- | Interprets provided list of operations only if previous interpretation
-- succeeded which allows for engine return the earliest error possible.
registerInterpretationIfNeeded :: [ExecutorOp] -> IntegrationalScenarioM ()
registerInterpretationIfNeeded ops = do
previousResult <- use isExecutorResult
case previousResult of
Just (Left _) -> pass
_ -> interpret ops >>= putResult
-- | Originate a contract with given initial storage and balance. Its
-- address is returned.
originate :: Contract -> Text -> Value -> Mutez -> IntegrationalScenarioM Address
originate contract contractName value balance = do
registerInterpretationIfNeeded [OriginateOp origination]
let address = mkContractAddress origination
isContractsNames %= insert address contractName
return address
where
origination = (dummyOrigination value contract) {ooBalance = balance}
-- | Like 'originate', but for typed contract and value.
tOriginate ::
(ParameterScope cp, StorageScope st)
=> Typed.Contract cp st
-> Text
-> Typed.Value st
-> Mutez
-> IntegrationalScenarioM Address
tOriginate contract name value balance =
originate (Typed.convertContract contract) name
(Typed.untypeValue value) balance
-- | Transfer tokens to a given address.
transfer :: TxData -> Address -> IntegrationalScenarioM ()
transfer txData destination = do
mSender <- use isSender
let unwrappedData = maybe id (set tdSenderAddressL) mSender txData
registerInterpretationIfNeeded [TransferOp destination unwrappedData]
-- | Similar to 'transfer', for typed values.
-- Note that it works with untyped 'Address' and does not check that
-- entrypoint with given name is present and has the expected type.
-- Passed value must correspond to the entrypoint argument type, not
-- the parameter type of the contract (and must be unit for implicit
-- accounts).
tTransfer
:: forall arg.
(ParameterScope arg)
=> "from" :! Address
-> "to" :! Address
-> Mutez
-> EpName
-> Typed.Value arg
-> IntegrationalScenarioM ()
tTransfer (arg #from -> from) (arg #to -> to) money epName param =
let txData = TxData
{ tdSenderAddress = from
, tdParameter =
withDict (properParameterEvi @arg) $
Typed.untypeValue param
, tdEntrypoint = epName
, tdAmount = money
}
in transfer txData to
-- | Validate the execution result.
validate :: IntegrationalValidator -> IntegrationalScenario
validate validator = Validated <$ do
iState <- get
interpreterResult <- use isExecutorResult
case interpreterResult of
Just result -> do
whenLeft result $ \_ -> isExecutorResult .= Nothing
validateResult validator result iState
_ ->
failWith "Validating empty scenario"
where
failWith = integrationalFail . CustomValidationError
-- | Just fail with given error.
integrationalFail :: ValidationError -> IntegrationalScenarioM anything
integrationalFail = throwError . ScenarioError emptyScenarioBranch
-- | Make all further interpreter calls (which are triggered by the
-- 'validate' function) use modified timestamp as the current one.
modifyNow :: (Timestamp -> Timestamp) -> IntegrationalScenarioM ()
modifyNow = modifying isNow
-- | Make all further interpreter calls (which are triggered by the
-- 'validate' function) use given timestamp as the current one.
setNow :: Timestamp -> IntegrationalScenarioM ()
setNow time = modifyNow (const time)
-- | Increase current time by the given number of seconds.
rewindTime :: Integer -> IntegrationalScenarioM ()
rewindTime interval = modifyNow (flip timestampPlusSeconds interval)
-- | Make all further interpreter calls (which are triggered by the
-- 'validate' function) use given gas limit.
setMaxSteps :: RemainingSteps -> IntegrationalScenarioM ()
setMaxSteps = assign isMaxSteps
-- | Pretend that given address initiates all the transfers within the
-- code block (i.e. @SENDER@ instruction will return this address).
withSender :: Address -> IntegrationalScenarioM a -> IntegrationalScenarioM a
withSender addr scenario = do
prevSender <- use isSender
isSender ?= addr
scenario <* (isSender .= prevSender)
-- | Make all further interpreter calls (which are triggered by the
-- 'validate' function) use given chain id.
setChainId :: ChainId -> IntegrationalScenarioM ()
setChainId = assign (isGState . gsChainIdL)
-- | Put an interpreted result to InternalState.
putResult :: ExecutorResOrError -> IntegrationalScenarioM ()
putResult res = do
isInterpreterLog <>= one res
isExecutorResult .= pure res
-- | Make branch names for a case when we are not within any branch.
emptyScenarioBranch :: ScenarioBranchName
emptyScenarioBranch = ScenarioBranchName []
-- | Add a new branch element to names provided by inner 'branch' calls.
appendScenarioBranch :: Text -> ScenarioBranchName -> ScenarioBranchName
appendScenarioBranch brName (ScenarioBranchName branches) =
ScenarioBranchName (brName : branches)
nullScenarioBranch :: ScenarioBranchName -> Bool
nullScenarioBranch (ScenarioBranchName brs) = null brs
-- | Execute multiple testing scenarios independently, basing
-- them on scenario built till this point.
--
-- The following property holds for this function:
--
-- @ pre >> branchout [a, b, c] = branchout [pre >> a, pre >> b, pre >> c] @.
--
-- In case of property failure in one of the branches no following branch is
-- executed.
--
-- Providing empty list of scenarios to this function causes error;
-- we do not require 'NonEmpty' here though for convenience.
branchout :: HasCallStack => [(Text, IntegrationalScenario)] -> IntegrationalScenario
branchout scenarios = do
st <- get
res <- lift . forM scenarios $ \(name, scenario) ->
withExcept (seBranch %~ appendScenarioBranch name) $
evalStateT scenario st
case nonEmpty res of
Nothing -> error "branch: empty list of scenarios provided"
Just (validated :| _) -> pure validated
-- | Make a tuple with name without extra syntactic noise.
(?-) :: Text -> a -> (Text, a)
(?-) = (,)
infixr 0 ?-
-- | Test given scenario with the state gathered till this moment;
-- if this scenario passes, go on as if it never happened.
offshoot :: Text -> IntegrationalScenario -> IntegrationalScenarioM ()
offshoot name scenario = do
st <- get
Validated <- lift $
withExcept (seBranch %~ appendScenarioBranch name) $
evalStateT scenario st
pass
----------------------------------------------------------------------------
-- Validators to be used within 'IntegrationalValidator'
----------------------------------------------------------------------------
-- | 'SuccessValidator' that always passes.
expectAnySuccess :: SuccessValidator
expectAnySuccess _ _ _ = pass
-- | Check that there were no updates.
expectNoUpdates :: SuccessValidator
expectNoUpdates _ _ updates =
maybe pass (throwError . UnexpectedUpdates) . nonEmpty $ updates
-- | Check that there were no storage updates.
expectNoStorageUpdates :: SuccessValidator
expectNoStorageUpdates _ _ updates =
maybe pass (throwError . UnexpectedUpdates) . nonEmpty $
filter isStorageUpdate updates
where
isStorageUpdate = \case
GSSetStorageValue {} -> True
_ -> False
-- | Check that storage value satisfies the given predicate.
expectStorage
:: Address
-> (Value -> Either ValidationError ())
-> SuccessValidator
expectStorage addr predicate is gs _ =
case gsAddresses gs ^. at addr of
Just (ASContract cs) ->
predicate $ csStorage cs
Just (ASSimple {}) ->
Left $ intro $ "it's a simple address"
Nothing -> Left $ intro $ "it's unknown"
where
intro = StoragePredicateMismatch (addrToAddrName addr is)
-- | Check that storage value is updated for given address. Takes a
-- predicate that is used to check the value.
--
-- It works even if updates are not filtered (i. e. a value can be
-- updated more than once).
expectStorageUpdate
:: Address
-> (Value -> Either ValidationError ())
-> SuccessValidator
expectStorageUpdate addr predicate is _ updates =
case List.find checkAddr (reverse updates) of
Nothing -> Left $
IncorrectStorageUpdate (addrToAddrName addr is) "storage wasn't updated"
Just (GSSetStorageValue _ val _) ->
first (IncorrectStorageUpdate (addrToAddrName addr is) . pretty) $
predicate val
-- 'checkAddr' ensures that only 'GSSetStorageValue' can be found
Just _ -> error "expectStorageUpdate: internal error"
where
checkAddr (GSSetStorageValue addr' _ _) = addr' == addr
checkAddr _ = False
-- | Like 'expectStorageUpdate', but expects a constant.
expectStorageUpdateConst
:: Address
-> Value
-> SuccessValidator
expectStorageUpdateConst addr expected is =
expectStorageUpdate addr predicate is
where
predicate val
| val == expected = pass
| otherwise = Left $
IncorrectStorageUpdate (addrToAddrName addr is) (pretty expected)
-- | Check that eventually address has some particular storage value.
expectStorageConst :: Address -> Value -> SuccessValidator
expectStorageConst addr expected is = expectStorage addr predicate is
where
predicate val
| val == expected = pass
| otherwise = Left $
InvalidStorage (addrToAddrName addr is) (ExpectedStorage expected) (pretty val)
-- | Similar to 'expectStorageConst', for typed stuff.
tExpectStorageConst
:: forall st.
(StorageScope st)
=> Address -> Typed.Value st -> SuccessValidator
tExpectStorageConst addr expected =
expectStorageConst addr (Typed.untypeValue expected)
-- | Check that eventually address has some particular balance.
expectBalance :: Address -> Mutez -> SuccessValidator
expectBalance addr balance is gs _ =
let realBalance = maybe (unsafeMkMutez 0) asBalance (gsAddresses gs ^. at addr) in
if realBalance == balance then pass
else
Left
$ InvalidBalance (addrToAddrName addr is) (ExpectedBalance balance)
$ "its actual balance is: " <> pretty realBalance
-- | Compose two success validators.
--
-- For example:
--
-- expectBalance bal addr `composeValidators`
-- expectStorageUpdateConst addr2 ValueUnit
composeValidators ::
SuccessValidator
-> SuccessValidator
-> SuccessValidator
composeValidators val1 val2 gState updates =
val1 gState updates >> val2 gState updates
-- | Compose a list of success validators.
composeValidatorsList :: [SuccessValidator] -> SuccessValidator
composeValidatorsList = foldl' composeValidators expectAnySuccess
-- | Check that interpreter failed due to gas exhaustion.
expectGasExhaustion :: ExecutorError -> Bool
expectGasExhaustion =
\case
EEInterpreterFailed _ (RuntimeFailure (MichelsonGasExhaustion, _)) -> True
_ -> False
-- | Expect that interpretation of contract with given address ended
-- with [FAILED].
expectMichelsonFailed :: (MichelsonFailed -> Bool) -> Address -> ExecutorError -> Bool
expectMichelsonFailed predicate addr =
\case
EEInterpreterFailed failedAddr (RuntimeFailure (mf, _)) ->
addr == failedAddr && predicate mf
_ -> False
----------------------------------------------------------------------------
-- Implementation of the testing engine
----------------------------------------------------------------------------
initIS :: InternalState
initIS = InternalState
{ _isNow = dummyNow
, _isMaxSteps = dummyMaxSteps
, _isGState = initGState
, _isInterpreterLog = mempty
, _isExecutorResult = Nothing
, _isContractsNames = Map.empty
, _isSender = Nothing
}
integrationalTest ::
(Maybe ScenarioError -> res)
-> IntegrationalScenario
-> res
integrationalTest howToFail scenario =
howToFail $ leftToMaybe $ runExcept (runStateT scenario initIS)
validateResult ::
IntegrationalValidator
-> ExecutorResOrError
-> InternalState
-> IntegrationalScenarioM ()
validateResult validator result iState =
case (validator, result) of
(Left validateError, Left err)
| validateError err -> pass
(_, Left err) ->
doFail $ UnexpectedExecutorError (mkError err iState)
(Left _, Right _) ->
doFail $ ExpectingInterpreterToFail
(Right validateUpdates, Right ir)
| Left bad <- validateUpdates iState (_erGState ir) (_erUpdates ir) ->
doFail $ IncorrectUpdates bad (_erUpdates ir)
| otherwise -> pass
where
doFail = integrationalFail
mkError
:: ExecutorError -> InternalState -> IntegrationalExecutorError
mkError iErr is = case iErr of
EEUnknownContract addr -> EEUnknownContract $ addrToAddrName addr is
EEInterpreterFailed addr err ->
EEInterpreterFailed (addrToAddrName addr is) err
EEAlreadyOriginated addr cs ->
EEAlreadyOriginated (addrToAddrName addr is) cs
EEUnknownSender addr -> EEUnknownSender $ addrToAddrName addr is
EEUnknownManager addr -> EEUnknownManager $ addrToAddrName addr is
EENotEnoughFunds addr amount ->
EENotEnoughFunds (addrToAddrName addr is) amount
EEZeroTransaction addr ->
EEZeroTransaction (addrToAddrName addr is)
EEFailedToApplyUpdates err -> EEFailedToApplyUpdates err
EEIllTypedContract err -> EEIllTypedContract err
EEIllTypedStorage err -> EEIllTypedStorage err
EEIllTypedParameter err -> EEIllTypedParameter err
EEUnknownEntrypoint err -> EEUnknownEntrypoint err