2016-06-27 22:28:11 +03:00
|
|
|
{-# LANGUAGE DataKinds #-}
|
2015-12-16 22:18:09 +03:00
|
|
|
module InterpreterSpec where
|
|
|
|
|
2017-09-27 19:41:41 +03:00
|
|
|
import Data.Diff
|
2017-06-01 18:10:47 +03:00
|
|
|
import Data.Functor.Both
|
2017-01-19 23:53:16 +03:00
|
|
|
import Data.Functor.Foldable hiding (Nil)
|
2017-01-09 22:20:11 +03:00
|
|
|
import Data.Functor.Listable
|
2016-06-17 20:33:50 +03:00
|
|
|
import Data.Record
|
2017-09-26 16:31:36 +03:00
|
|
|
import qualified Data.Syntax as Syntax
|
2017-09-27 19:37:37 +03:00
|
|
|
import Data.Term
|
2017-09-26 16:31:36 +03:00
|
|
|
import Data.Union
|
2016-06-27 20:08:12 +03:00
|
|
|
import Interpreter
|
2016-09-15 00:45:23 +03:00
|
|
|
import Test.Hspec (Spec, describe, it, parallel)
|
|
|
|
import Test.Hspec.Expectations.Pretty
|
2017-01-09 22:20:11 +03:00
|
|
|
import Test.Hspec.LeanCheck
|
2015-12-16 22:18:09 +03:00
|
|
|
|
|
|
|
spec :: Spec
|
2016-06-27 20:08:12 +03:00
|
|
|
spec = parallel $ do
|
2016-06-27 20:03:58 +03:00
|
|
|
describe "interpret" $ do
|
2015-12-16 22:18:09 +03:00
|
|
|
it "returns a replacement when comparing two unicode equivalent terms" $
|
2017-09-26 16:31:36 +03:00
|
|
|
let termA = termIn Nil (inj (Syntax.Identifier "t\776"))
|
|
|
|
termB = termIn Nil (inj (Syntax.Identifier "\7831")) in
|
2017-09-26 16:48:59 +03:00
|
|
|
diffTerms termA termB `shouldBe` replacing termA (termB :: Term ListableSyntax (Record '[]))
|
2016-06-27 22:28:11 +03:00
|
|
|
|
|
|
|
prop "produces correct diffs" $
|
2017-09-26 16:48:59 +03:00
|
|
|
\ a b -> let diff = diffTerms a b :: Diff ListableSyntax (Record '[]) (Record '[]) in
|
2017-09-14 02:34:27 +03:00
|
|
|
(beforeTerm diff, afterTerm diff) `shouldBe` (Just a, Just b)
|
2016-06-30 20:34:31 +03:00
|
|
|
|
|
|
|
prop "constructs zero-cost diffs of equal terms" $
|
2017-09-26 16:48:59 +03:00
|
|
|
\ a -> let diff = diffTerms a a :: Diff ListableSyntax (Record '[]) (Record '[]) in
|
2016-06-30 20:34:31 +03:00
|
|
|
diffCost diff `shouldBe` 0
|
2016-08-11 19:23:34 +03:00
|
|
|
|
2016-08-12 19:16:48 +03:00
|
|
|
it "produces unbiased insertions within branches" $
|
2017-09-26 16:48:59 +03:00
|
|
|
let term s = termIn Nil (inj [ termIn Nil (inj (Syntax.Identifier s)) ]) :: Term ListableSyntax (Record '[])
|
2017-09-26 16:31:36 +03:00
|
|
|
wrap = termIn Nil . inj in
|
2017-09-28 17:40:23 +03:00
|
|
|
diffTerms (wrap [ term "b" ]) (wrap [ term "a", term "b" ]) `shouldBe` merge (Nil, Nil) (inj [ inserting (term "a"), merging (term "b") ])
|
2017-09-28 18:24:51 +03:00
|
|
|
|
|
|
|
prop "compares nodes against context" $
|
|
|
|
\ a b -> diffTerms a (termIn Nil (inj (Syntax.Context (pure b) a))) `shouldBe` insertF (In Nil (inj (Syntax.Context (pure (inserting b)) (merging (a :: Term ListableSyntax (Record '[]))))))
|