1
1
mirror of https://github.com/github/semantic.git synced 2024-12-01 09:15:01 +03:00
semantic/test/Diff/Spec.hs

39 lines
1.4 KiB
Haskell
Raw Normal View History

{-# LANGUAGE DataKinds #-}
2016-06-27 20:12:06 +03:00
module Diff.Spec where
import Category
import Data.Bifunctor.Join
import Data.Functor.Listable
import Data.String
2016-06-27 20:12:06 +03:00
import Diff
2016-10-13 02:19:36 +03:00
import Diffing (getLabel)
import Interpreter
import Patch
2016-06-27 20:12:06 +03:00
import Prologue
import Term
2016-06-27 20:12:06 +03:00
import Test.Hspec
import Test.Hspec.LeanCheck
2016-06-27 20:12:06 +03:00
spec :: Spec
spec = parallel $ do
2016-06-27 20:18:20 +03:00
prop "equality is reflexive" $
\ a -> let diff = unListableDiff a :: SyntaxDiff String '[Category] in
2016-06-27 20:21:32 +03:00
diff `shouldBe` diff
2016-06-27 20:18:20 +03:00
prop "equal terms produce identity diffs" $
\ a -> let term = unListableF a :: SyntaxTerm String '[Category] in
2016-10-13 02:19:36 +03:00
diffCost (diffTerms wrap (==) diffCost getLabel term term) `shouldBe` 0
2016-06-27 20:18:20 +03:00
describe "beforeTerm" $ do
prop "recovers the before term" $
\ a b -> let diff = diffTerms wrap (==) diffCost getLabel (unListableF a) (unListableF b :: SyntaxTerm String '[Category]) in
beforeTerm diff `shouldBe` Just (unListableF a)
describe "afterTerm" $ do
prop "recovers the after term" $
\ a b -> let diff = diffTerms wrap (==) diffCost getLabel (unListableF a) (unListableF b :: SyntaxTerm String '[Category]) in
afterTerm diff `shouldBe` Just (unListableF b)
unListableDiff :: Functor f => ListableF (Free (TermF f (ListableF (Join (,)) annotation))) (Patch (ListableF (Term f) annotation)) -> Diff f annotation
unListableDiff diff = transFreeT (first unListableF) $ fmap unListableF <$> unListableF diff