tinytools-0.1.0.0: test/Potato/Flow/Deprecated/Controller/Manipulator/CartLineSpec.hs
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE RecursiveDo #-}
module Potato.Flow.Deprecated.Controller.Manipulator.CartLineSpec (
spec
) where
import Relude hiding (empty,
fromList)
import Test.Hspec
import Test.Hspec.Contrib.HUnit (fromHUnitTest)
import Test.HUnit
import Potato.Flow
import Potato.Flow.Common
test_basic :: Test
test_basic = constructTest "basic" emptyOwlPFState bs expected where
bs = [
EWCLabel "create <cartline>"
, EWCTool Tool_CartLine
, EWCMouse (LMouseData (V2 10 10) False MouseButton_Left [] False)
, EWCMouse (LMouseData (V2 10 10) True MouseButton_Left [] False)
, EWCMouse (LMouseData (V2 20 10) False MouseButton_Left [] False)
, EWCMouse (LMouseData (V2 20 10) True MouseButton_Left [] False)
, EWCMouse (LMouseData (V2 20 20) False MouseButton_Left [] False)
, EWCMouse (LMouseData (V2 20 20) True MouseButton_Left [] False)
-- click on same point to finish it
, EWCMouse (LMouseData (V2 20 20) False MouseButton_Left [] False)
, EWCMouse (LMouseData (V2 20 20) True MouseButton_Left [] False)
]
expected = [
LabelCheck "create <cartline>"
, EqPredicate goatState_selectedTool Tool_CartLine
, checkHandlerNameAndState handlerName_cartesianLine True
, checkHandlerNameAndState handlerName_cartesianLine True
, checkHandlerNameAndState handlerName_cartesianLine True
, checkHandlerNameAndState handlerName_cartesianLine True
, checkHandlerNameAndState handlerName_cartesianLine True
, checkHandlerNameAndState handlerName_cartesianLine True
, checkHandlerNameAndState handlerName_cartesianLine False
, checkHandlerNameAndState handlerName_cartesianLine False
]
spec :: Spec
spec = do
describe "CartLine" $ do
fromHUnitTest $ test_basic