morley-0.1.0.0: test/Test/Interpreter/Conditionals.hs
-- | Module, containing spec to test conditionals.tz contract.
module Test.Interpreter.Conditionals
( conditionalsSpec
) where
import Test.Hspec (Spec, it, parallel)
import Test.Hspec.QuickCheck (prop)
import Test.QuickCheck (Property, (===))
import Test.QuickCheck.Instances.Text ()
import Test.QuickCheck.Property (withMaxSuccess)
import Michelson.Interpret (InterpreterState, MichelsonFailed)
import Michelson.Typed (CVal(..), ToT, Val(..))
import Morley.Test (contractProp, specWithTypedContract)
import Morley.Test.Dummy (dummyContractEnv)
import Morley.Test.Util (failedProp, qcIsLeft, qcIsRight)
import Morley.Types (MorleyLogs)
type Param = Either Text (Maybe Integer)
type ContractStorage instr = Val instr (ToT Text)
type ContractResult x instr
= ( Either MichelsonFailed ([x], ContractStorage instr)
, InterpreterState MorleyLogs)
-- | Spec to test conditionals.tz contract.
conditionalsSpec :: Spec
conditionalsSpec = parallel $ do
specWithTypedContract "contracts/conditionals.tz" $ \contract -> do
let
contractProp' inputParam =
contractProp contract (validate inputParam) dummyContractEnv inputParam
("storage" :: Text)
it "success 1 test" $
contractProp' $ Left "abc"
prop "Random check" $ withMaxSuccess 200 contractProp'
where
validate
:: Show x
=> Param
-> ContractResult x instr
-> Property
validate (Left a) (Right ([], VC (CvString 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