morley-1.2.0: test/Test/Interpreter/Conditionals.hs
-- | Module, containing spec to test conditionals.tz contract.
module Test.Interpreter.Conditionals
( test_conditionals
) where
import Test.QuickCheck (Property, (===))
import Test.QuickCheck.Instances.Text ()
import Test.QuickCheck.Property (withMaxSuccess)
import Test.Tasty (TestTree)
import Test.Tasty.QuickCheck (testProperty)
import Michelson.Interpret (InterpreterState, MichelsonFailed)
import Michelson.Test (contractProp, testTreesWithTypedContract)
import Michelson.Test.Dummy (dummyContractEnv)
import Michelson.Test.Util (failedProp, qcIsLeft, qcIsRight)
import Michelson.Text
import qualified Michelson.Typed as T
import Test.Util.Contracts
type Param = Either MText (Maybe Integer)
type ContractStorage = T.Value (T.ToT MText)
type ContractResult x
= ( Either MichelsonFailed ([x], ContractStorage)
, InterpreterState)
-- | Spec to test conditionals.tz contract.
test_conditionals :: IO [TestTree]
test_conditionals =
testTreesWithTypedContract (inContractsDir "tezos_examples/attic/conditionals.tz") $ \contract ->
let
contractProp' inputParam =
contractProp contract (validate inputParam) dummyContractEnv inputParam
[mt|storage|]
in pure
[ testProperty "success 1 test" $
contractProp' $ Left [mt|abc|]
, testProperty "Random check" $
withMaxSuccess 200 contractProp'
]
where
validate
:: Show x
=> Param
-> ContractResult x
-> Property
validate (Left a) (Right ([], T.VString b), _) = a === b
validate (Right Nothing) r = qcIsLeft $ fst r
validate (Right (Just a)) r
| a < 0 = qcIsLeft $ fst r
| otherwise = qcIsRight $ fst r
validate _ res = failedProp $ "Unexpected result: " <> show res