morley-0.4.0: src/Michelson/Test/Integrational.hs
-- | 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
, transfer
, validate
, setMaxSteps
, modifyNow
, setNow
, rewindTime
, withSender
, setChainId
, branchout
, (?-)
, offshoot
-- * Validators
, composeValidators
, composeValidatorsList
, expectAnySuccess
, expectNoUpdates
, expectNoStorageUpdates
, expectStorageUpdate
, expectStorageUpdateConst
, expectBalance
, expectStorageConst
, expectGasExhaustion
, expectMichelsonFailed
) 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 Test.Hspec (Expectation, expectationFailure)
import Test.QuickCheck (Property)
import Michelson.Interpret (InterpretError(..), MichelsonFailed(..), RemainingSteps)
import Michelson.Runtime
(InterpreterError, InterpreterError'(..), InterpreterOp(..), InterpreterRes(..), interpreterPure)
import Michelson.Runtime.GState
import Michelson.Runtime.TxData
import Michelson.Test.Dummy
import Michelson.Test.Util (failedProp, succeededProp)
import Michelson.TypeCheck (TCError)
import Michelson.Untyped (Contract, 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)
----------------------------------------------------------------------------
data InternalState = InternalState
{ _isMaxSteps :: !RemainingSteps
, _isNow :: !Timestamp
, _isGState :: !GState
, _isOperations :: ![InterpreterOp]
-- ^ Operations to be interpreted when 'TOValidate' is encountered.
, _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 (InterpreterError -> 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 (Show)
newtype ExpectedBalance = ExpectedBalance Mutez deriving (Show)
data AddressName = AddressName (Maybe Text) Address deriving (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 IntegrationalInterpreterError = InterpreterError' AddressName
data ValidationError
= UnexpectedInterpreterError IntegrationalInterpreterError
| UnexpectedTypeCheckError TCError
| ExpectingInterpreterToFail
| IncorrectUpdates ValidationError [GStateUpdate]
| IncorrectStorageUpdate AddressName Text
| InvalidStorage AddressName ExpectedStorage Text
| InvalidBalance AddressName ExpectedBalance Text
| UnexpectedUpdates (NonEmpty GStateUpdate)
| CustomValidationError Text
deriving (Show)
instance Buildable ValidationError where
build (UnexpectedInterpreterError 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 (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))
-- | 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
address <- mkContractAddress origination <$ putOperation originateOp
isContractsNames %= (insert address contractName)
pure address
where
origination = (dummyOrigination value contract) {ooBalance = balance}
originateOp = OriginateOp origination
-- | Transfer tokens to given address.
transfer :: TxData -> Address -> IntegrationalScenarioM ()
transfer txData destination = do
mSender <- use isSender
let txData' = maybe id (set tdSenderAddressL) mSender txData
putOperation (TransferOp destination txData')
-- | Execute all operations that were added to the scenarion since
-- last 'validate' call. If validator fails, the execution will be aborted.
validate :: IntegrationalValidator -> IntegrationalScenario
validate validator = Validated <$ do
now <- use isNow
maxSteps <- use isMaxSteps
gState <- use isGState
ops <- use isOperations
iState <- get
let interpret = interpreterPure now maxSteps gState ops
mUpdatedGState <-
lift $
withExcept (ScenarioError emptyScenarioBranch) $
validateResult validator interpret iState
isOperations .= mempty
whenJust mUpdatedGState $ \newGState -> isGState .= newGState
-- | 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)
putOperation :: InterpreterOp -> IntegrationalScenarioM ()
putOperation op = isOperations <>= one op
-- | 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 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 gs _ =
case gsAddresses gs ^. at addr of
Just (ASContract cs)
| csStorage cs == expected -> pass
| otherwise ->
Left $ intro $ "its actual storage is: " <> (pretty $ csStorage cs)
Just (ASSimple {}) ->
Left $ intro $ "it's a simple address"
Nothing -> Left $ intro $ "it's unknown"
where
intro = InvalidStorage (addrToAddrName addr is) (ExpectedStorage 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 :: InterpreterError -> Bool
expectGasExhaustion =
\case
IEInterpreterFailed _ (RuntimeFailure (MichelsonGasExhaustion, _)) -> True
_ -> False
-- | Expect that interpretation of contract with given address ended
-- with [FAILED].
expectMichelsonFailed :: (MichelsonFailed -> Bool) -> Address -> InterpreterError -> Bool
expectMichelsonFailed predicate addr =
\case
IEInterpreterFailed failedAddr (RuntimeFailure (mf, _)) ->
addr == failedAddr && predicate mf
_ -> False
----------------------------------------------------------------------------
-- Implementation of the testing engine
----------------------------------------------------------------------------
initIS :: InternalState
initIS = InternalState
{ _isNow = dummyNow
, _isMaxSteps = dummyMaxSteps
, _isGState = initGState
, _isOperations = mempty
, _isContractsNames = Map.empty
, _isSender = Nothing
}
integrationalTest ::
(Maybe ScenarioError -> res)
-> IntegrationalScenario
-> res
integrationalTest howToFail scenario =
howToFail $ leftToMaybe $ runExcept (runStateT scenario initIS)
validateResult ::
IntegrationalValidator
-> Either InterpreterError InterpreterRes
-> InternalState
-> Except ValidationError (Maybe GState)
validateResult validator result iState =
case (validator, result) of
(Left validateError, Left err)
| validateError err -> pure Nothing
(_, Left err) ->
doFail $ UnexpectedInterpreterError (mkError err iState)
(Left _, Right _) ->
doFail $ ExpectingInterpreterToFail
(Right validateUpdates, Right ir)
| Left bad <- validateUpdates iState (_irGState ir) (_irUpdates ir) ->
doFail $ IncorrectUpdates bad (_irUpdates ir)
| otherwise -> pure $ Just $ _irGState ir
where
doFail = throwError
mkError
:: InterpreterError -> InternalState -> IntegrationalInterpreterError
mkError iErr is = case iErr of
IEUnknownContract addr -> IEUnknownContract $ addrToAddrName addr is
IEInterpreterFailed addr err ->
IEInterpreterFailed (addrToAddrName addr is) err
IEAlreadyOriginated addr cs ->
IEAlreadyOriginated (addrToAddrName addr is) cs
IEUnknownSender addr -> IEUnknownSender $ addrToAddrName addr is
IEUnknownManager addr -> IEUnknownManager $ addrToAddrName addr is
IENotEnoughFunds addr amount ->
IENotEnoughFunds (addrToAddrName addr is) amount
IEZeroTransaction addr ->
IEZeroTransaction (addrToAddrName addr is)
IEFailedToApplyUpdates err -> IEFailedToApplyUpdates err
IEIllTypedContract err -> IEIllTypedContract err
IEIllTypedStorage err -> IEIllTypedStorage err
IEIllTypedParameter err -> IEIllTypedParameter err