2017-03-20 18:25:58 +03:00
|
|
|
module SES.Myers.Spec where
|
|
|
|
|
2017-03-20 18:29:16 +03:00
|
|
|
import Data.These
|
2017-03-20 18:25:58 +03:00
|
|
|
import Prologue
|
2017-03-20 18:29:16 +03:00
|
|
|
import SES.Myers
|
2017-03-20 18:25:58 +03:00
|
|
|
import Test.Hspec
|
2017-03-20 18:29:16 +03:00
|
|
|
import Test.Hspec.LeanCheck
|
2017-03-20 18:25:58 +03:00
|
|
|
|
|
|
|
spec :: Spec
|
2017-03-20 18:29:16 +03:00
|
|
|
spec = do
|
|
|
|
describe "ses" $ do
|
|
|
|
prop "returns equal lists in These" $
|
2017-03-23 21:14:03 +03:00
|
|
|
\ as -> (ses (==) as as :: EditScript Char Char) `shouldBe` zipWith These as as
|
2017-03-20 18:31:06 +03:00
|
|
|
|
|
|
|
prop "returns deletions in This" $
|
2017-03-23 21:14:03 +03:00
|
|
|
\ as -> (ses (==) as [] :: EditScript Char Char) `shouldBe` fmap This as
|
2017-03-20 18:32:03 +03:00
|
|
|
|
|
|
|
prop "returns insertions in That" $
|
2017-03-23 21:14:03 +03:00
|
|
|
\ bs -> (ses (==) [] bs :: EditScript Char Char) `shouldBe` fmap That bs
|
2017-03-22 22:38:57 +03:00
|
|
|
|
2017-03-23 00:20:37 +03:00
|
|
|
prop "returns all elements individually for disjoint inputs" $
|
2017-03-23 20:28:40 +03:00
|
|
|
\ as bs -> length (ses (==) ((,) 0 <$> as :: [(Int, Char)]) ((,) 1 <$> bs :: [(Int, Char)])) `shouldBe` length as + length bs
|
2017-03-23 00:26:05 +03:00
|
|
|
|
|
|
|
prop "is lossless w.r.t. both input elements & ordering" $
|
2017-03-23 21:14:03 +03:00
|
|
|
\ as bs -> foldr (\ each (as, bs) -> these (flip (,) bs. (:as)) ((,) as . (:bs)) (\ a b -> (a:as, b:bs)) each) ([], []) (ses (==) as bs :: EditScript Char Char) `shouldBe` (as, bs)
|