Safe Haskell | None |
---|---|
Language | Haskell2010 |
Utilities for integrational testing. Example tests can be found in the 'morley-test' test suite.
Synopsis
- data TxData = TxData {}
- genesisAddress :: Address
- genesisAddress1 :: Address
- genesisAddress2 :: Address
- genesisAddress3 :: Address
- genesisAddress4 :: Address
- genesisAddress5 :: Address
- genesisAddress6 :: Address
- type IntegrationalValidator = Either (ExecutorError -> Bool) SuccessValidator
- type SuccessValidator = InternalState -> GState -> [GStateUpdate] -> Either ValidationError ()
- type IntegrationalScenarioM = StateT InternalState (Except ScenarioError)
- type IntegrationalScenario = IntegrationalScenarioM Validated
- 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
- integrationalTestExpectation :: HasCallStack => IntegrationalScenario -> Expectation
- integrationalTestProperty :: IntegrationalScenario -> Property
- originate :: Contract -> Text -> Value -> Mutez -> IntegrationalScenarioM Address
- tOriginate :: (ParameterScope cp, StorageScope st) => FullContract cp st -> Text -> Value st -> Mutez -> IntegrationalScenarioM Address
- transfer :: TxData -> Address -> IntegrationalScenarioM ()
- tTransfer :: forall arg. ParameterScope arg => ("from" :! Address) -> ("to" :! Address) -> Mutez -> EpName -> Value arg -> IntegrationalScenarioM ()
- validate :: IntegrationalValidator -> IntegrationalScenario
- integrationalFail :: ValidationError -> IntegrationalScenarioM anything
- setMaxSteps :: RemainingSteps -> IntegrationalScenarioM ()
- modifyNow :: (Timestamp -> Timestamp) -> IntegrationalScenarioM ()
- setNow :: Timestamp -> IntegrationalScenarioM ()
- rewindTime :: Integer -> IntegrationalScenarioM ()
- withSender :: Address -> IntegrationalScenarioM a -> IntegrationalScenarioM a
- setChainId :: ChainId -> IntegrationalScenarioM ()
- branchout :: HasCallStack => [(Text, IntegrationalScenario)] -> IntegrationalScenario
- (?-) :: Text -> a -> (Text, a)
- offshoot :: Text -> IntegrationalScenario -> IntegrationalScenarioM ()
- composeValidators :: SuccessValidator -> SuccessValidator -> SuccessValidator
- composeValidatorsList :: [SuccessValidator] -> SuccessValidator
- expectAnySuccess :: SuccessValidator
- expectNoUpdates :: SuccessValidator
- expectNoStorageUpdates :: SuccessValidator
- expectStorageUpdate :: Address -> (Value -> Either ValidationError ()) -> SuccessValidator
- expectStorageUpdateConst :: Address -> Value -> SuccessValidator
- expectBalance :: Address -> Mutez -> SuccessValidator
- expectStorage :: Address -> (Value -> Either ValidationError ()) -> SuccessValidator
- expectStorageConst :: Address -> Value -> SuccessValidator
- tExpectStorageConst :: forall st. StorageScope st => Address -> Value st -> SuccessValidator
- expectGasExhaustion :: ExecutorError -> Bool
- expectMichelsonFailed :: (MichelsonFailed -> Bool) -> Address -> ExecutorError -> Bool
Re-exports
Data associated with a particular transaction.
TxData | |
|
More genesis addresses which can be used in tests
genesisAddress :: Address Source #
One of genesis addresses.
genesisAddress1 :: Address Source #
More genesis addresses
We know size of genesisAddresses
, so it is safe to use !!
genesisAddress2 :: Address Source #
More genesis addresses
We know size of genesisAddresses
, so it is safe to use !!
genesisAddress3 :: Address Source #
More genesis addresses
We know size of genesisAddresses
, so it is safe to use !!
Testing engine
type IntegrationalValidator = Either (ExecutorError -> Bool) SuccessValidator Source #
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 SuccessValidator = InternalState -> GState -> [GStateUpdate] -> Either ValidationError () Source #
Validator for integrational testing that expects successful execution.
type IntegrationalScenarioM = StateT InternalState (Except ScenarioError) Source #
A monad inside which integrational tests can be described using do-notation.
type IntegrationalScenario = IntegrationalScenarioM Validated Source #
data ValidationError Source #
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 |
Instances
Show ValidationError Source # | |
Defined in Michelson.Test.Integrational showsPrec :: Int -> ValidationError -> ShowS # show :: ValidationError -> String # showList :: [ValidationError] -> ShowS # | |
Exception ValidationError Source # | |
Defined in Michelson.Test.Integrational | |
Buildable ValidationError Source # | |
Defined in Michelson.Test.Integrational build :: ValidationError -> Builder # |
integrationalTestExpectation :: HasCallStack => IntegrationalScenario -> Expectation Source #
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.
integrationalTestProperty :: IntegrationalScenario -> Property Source #
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.
originate :: Contract -> Text -> Value -> Mutez -> IntegrationalScenarioM Address Source #
Originate a contract with given initial storage and balance. Its address is returned.
tOriginate :: (ParameterScope cp, StorageScope st) => FullContract cp st -> Text -> Value st -> Mutez -> IntegrationalScenarioM Address Source #
Like originate
, but for typed contract and value.
transfer :: TxData -> Address -> IntegrationalScenarioM () Source #
Transfer tokens to a given address.
tTransfer :: forall arg. ParameterScope arg => ("from" :! Address) -> ("to" :! Address) -> Mutez -> EpName -> Value arg -> IntegrationalScenarioM () Source #
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).
validate :: IntegrationalValidator -> IntegrationalScenario Source #
Validate the execution result.
integrationalFail :: ValidationError -> IntegrationalScenarioM anything Source #
Just fail with given error.
setMaxSteps :: RemainingSteps -> IntegrationalScenarioM () Source #
Make all further interpreter calls (which are triggered by the
validate
function) use given gas limit.
modifyNow :: (Timestamp -> Timestamp) -> IntegrationalScenarioM () Source #
Make all further interpreter calls (which are triggered by the
validate
function) use modified timestamp as the current one.
setNow :: Timestamp -> IntegrationalScenarioM () Source #
Make all further interpreter calls (which are triggered by the
validate
function) use given timestamp as the current one.
rewindTime :: Integer -> IntegrationalScenarioM () Source #
Increase current time by the given number of seconds.
withSender :: Address -> IntegrationalScenarioM a -> IntegrationalScenarioM a Source #
Pretend that given address initiates all the transfers within the
code block (i.e. SENDER
instruction will return this address).
setChainId :: ChainId -> IntegrationalScenarioM () Source #
Make all further interpreter calls (which are triggered by the
validate
function) use given chain id.
branchout :: HasCallStack => [(Text, IntegrationalScenario)] -> IntegrationalScenario Source #
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.
(?-) :: Text -> a -> (Text, a) infixr 0 Source #
Make a tuple with name without extra syntactic noise.
offshoot :: Text -> IntegrationalScenario -> IntegrationalScenarioM () Source #
Test given scenario with the state gathered till this moment; if this scenario passes, go on as if it never happened.
Validators
composeValidators :: SuccessValidator -> SuccessValidator -> SuccessValidator Source #
Compose two success validators.
For example:
expectBalance bal addr composeValidators
expectStorageUpdateConst addr2 ValueUnit
composeValidatorsList :: [SuccessValidator] -> SuccessValidator Source #
Compose a list of success validators.
expectAnySuccess :: SuccessValidator Source #
SuccessValidator
that always passes.
expectNoUpdates :: SuccessValidator Source #
Check that there were no updates.
expectNoStorageUpdates :: SuccessValidator Source #
Check that there were no storage updates.
expectStorageUpdate :: Address -> (Value -> Either ValidationError ()) -> SuccessValidator Source #
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).
expectStorageUpdateConst :: Address -> Value -> SuccessValidator Source #
Like expectStorageUpdate
, but expects a constant.
expectBalance :: Address -> Mutez -> SuccessValidator Source #
Check that eventually address has some particular balance.
expectStorage :: Address -> (Value -> Either ValidationError ()) -> SuccessValidator Source #
Check that storage value satisfies the given predicate.
expectStorageConst :: Address -> Value -> SuccessValidator Source #
Check that eventually address has some particular storage value.
tExpectStorageConst :: forall st. StorageScope st => Address -> Value st -> SuccessValidator Source #
Similar to expectStorageConst
, for typed stuff.
expectGasExhaustion :: ExecutorError -> Bool Source #
Check that interpreter failed due to gas exhaustion.
expectMichelsonFailed :: (MichelsonFailed -> Bool) -> Address -> ExecutorError -> Bool Source #
Expect that interpretation of contract with given address ended with [FAILED].