1
1
mirror of https://github.com/github/semantic.git synced 2024-12-01 00:33:59 +03:00
semantic/test/Diffing/Interpreter/Spec.hs

92 lines
4.3 KiB
Haskell
Raw Normal View History

2019-10-30 20:16:17 +03:00
{-# LANGUAGE DataKinds, OverloadedStrings, TypeApplications #-}
2018-12-01 03:23:29 +03:00
module Diffing.Interpreter.Spec (spec, afterTerm, beforeTerm) where
2018-07-20 16:56:33 +03:00
import Control.Applicative ((<|>))
2017-09-27 19:41:41 +03:00
import Data.Diff
2018-07-20 16:56:33 +03:00
import Data.Foldable (asum)
2018-07-20 17:04:34 +03:00
import Data.Functor.Foldable (cata)
import Data.Functor.Listable
2018-06-04 19:18:02 +03:00
import Data.Maybe
2018-07-20 16:53:52 +03:00
import Data.Mergeable
2018-05-02 19:00:15 +03:00
import Data.Sum
2017-09-27 19:37:37 +03:00
import Data.Term
import Diffing.Interpreter
import qualified Data.Syntax as Syntax
2019-06-20 00:35:37 +03:00
import Test.Hspec (Spec, describe, it)
import Test.Hspec.Expectations
import Test.Hspec.LeanCheck
2018-06-04 19:18:02 +03:00
import Test.LeanCheck.Core
2019-10-18 18:28:03 +03:00
import SpecHelpers (Edit(..), edit)
spec :: Spec
2019-06-20 00:22:09 +03:00
spec = do
2017-10-23 18:58:31 +03:00
describe "diffTerms" $ do
it "returns a replacement when comparing two unicode equivalent terms" $
2018-09-25 19:18:51 +03:00
let termA = termIn emptyAnnotation (inject (Syntax.Identifier "t\776"))
termB = termIn emptyAnnotation (inject (Syntax.Identifier "\7831")) in
2019-10-18 05:18:48 +03:00
diffTerms termA termB `shouldBe` comparing termA (termB :: Term ListableSyntax ())
prop "produces correct diffs" $
2018-09-26 00:52:40 +03:00
\ a b -> let diff = diffTerms a b :: Diff ListableSyntax () () in
2017-09-14 02:34:27 +03:00
(beforeTerm diff, afterTerm diff) `shouldBe` (Just a, Just b)
2017-10-23 18:58:43 +03:00
prop "produces identity diffs for equal terms " $
2018-09-26 00:52:40 +03:00
\ a -> let diff = diffTerms a a :: Diff ListableSyntax () () in
length (diffPatches diff) `shouldBe` 0
it "produces unbiased insertions within branches" $
2018-09-26 00:52:40 +03:00
let term s = termIn emptyAnnotation (inject [ termIn emptyAnnotation (inject (Syntax.Identifier s)) ]) :: Term ListableSyntax ()
2018-09-25 19:18:51 +03:00
wrap = termIn emptyAnnotation . inject in
diffTerms (wrap [ term "b" ]) (wrap [ term "a", term "b" ]) `shouldBe` merge (emptyAnnotation, emptyAnnotation) (inject [ inserting (term "a"), merging (term "b") ])
2018-06-04 19:18:02 +03:00
let noContext :: Term ListableSyntax a -> Bool
noContext = isNothing . project @Syntax.Context . termOut
prop "compares nodes against context" . forAll (filterT (noContext . fst) tiers) $
2018-09-26 00:52:40 +03:00
\ (a, b) -> diffTerms a (termIn emptyAnnotation (inject (Syntax.Context (pure b) a))) `shouldBe` insertF (In emptyAnnotation (inject (Syntax.Context (pure (inserting b)) (merging (a :: Term ListableSyntax ())))))
prop "diffs forward permutations as changes" $
2018-09-25 19:18:51 +03:00
\ a -> let wrap = termIn emptyAnnotation . inject
b = wrap [a]
c = wrap [a, b] in
2018-09-26 00:52:40 +03:00
diffTerms (wrap [a, b, c]) (wrap [c, a, b :: Term ListableSyntax ()]) `shouldBe` merge (emptyAnnotation, emptyAnnotation) (inject [ inserting c, merging a, merging b, deleting c ])
prop "diffs backward permutations as changes" $
2018-09-25 19:18:51 +03:00
\ a -> let wrap = termIn emptyAnnotation . inject
b = wrap [a]
c = wrap [a, b] in
2018-09-26 00:52:40 +03:00
diffTerms (wrap [a, b, c]) (wrap [b, c, a :: Term ListableSyntax ()]) `shouldBe` merge (emptyAnnotation, emptyAnnotation) (inject [ deleting a, merging b, merging c, inserting a ])
describe "diffTermPair" $ do
prop "produces an Insert when the first term is missing" $ do
2019-10-18 18:28:03 +03:00
\ after -> let diff = diffTermPair (Insert after) :: Diff ListableSyntax () () in
diff `shouldBe` inserting after
prop "produces a Delete when the second term is missing" $ do
2019-10-18 18:28:03 +03:00
\ before -> let diff = diffTermPair (Delete before) :: Diff ListableSyntax () () in
diff `shouldBe` deleting before
-- | Recover the before state of a diff.
beforeTerm :: (Foldable syntax, Mergeable syntax) => Diff syntax ann1 ann2 -> Maybe (Term syntax ann1)
beforeTerm = cata $ \ diff -> case diff of
Patch patch -> (before patch >>= \ (In a l) -> termIn a <$> sequenceAlt l) <|> (after patch >>= asum)
Merge (In (a, _) l) -> termIn a <$> sequenceAlt l
-- | Recover the after state of a diff.
afterTerm :: (Foldable syntax, Mergeable syntax) => Diff syntax ann1 ann2 -> Maybe (Term syntax ann2)
afterTerm = cata $ \ diff -> case diff of
Patch patch -> (after patch >>= \ (In b r) -> termIn b <$> sequenceAlt r) <|> (before patch >>= asum)
Merge (In (_, b) r) -> termIn b <$> sequenceAlt r
2018-09-25 19:18:51 +03:00
2019-10-18 05:43:03 +03:00
-- | Return the item from the after side of the patch.
2019-10-18 05:48:19 +03:00
after :: Edit l r -> Maybe r
2019-10-18 05:43:03 +03:00
after = edit (const Nothing) Just (\ _ b -> Just b)
-- | Return the item from the before side of the patch.
2019-10-18 05:48:19 +03:00
before :: Edit l r -> Maybe l
2019-10-18 05:43:03 +03:00
before = edit Just (const Nothing) (\ a _ -> Just a)
2018-09-26 00:52:40 +03:00
emptyAnnotation :: ()
emptyAnnotation = ()