1
1
mirror of https://github.com/github/semantic.git synced 2024-11-29 02:44:36 +03:00
semantic/test/Diff/Spec.hs

34 lines
1.0 KiB
Haskell
Raw Normal View History

{-# LANGUAGE DataKinds #-}
2016-06-27 20:12:06 +03:00
module Diff.Spec where
import Category
import Data.Record
import Data.Record.Arbitrary ()
2016-06-27 20:16:48 +03:00
import Data.Text.Arbitrary ()
2016-06-27 20:12:06 +03:00
import Diff
import Diff.Arbitrary
import Interpreter
2016-06-27 20:12:06 +03:00
import Prologue
import Term.Arbitrary
2016-06-27 20:12:06 +03:00
import Test.Hspec
import Test.Hspec.QuickCheck
import Test.QuickCheck
2016-06-27 20:12:06 +03:00
spec :: Spec
spec = parallel $ do
describe "mergeMaybe" $ do
it "is symmetrical" $ pending
describe "ArbitraryDiff" $ do
prop "generates diffs of a specific size" . forAll ((arbitrary >>= \ n -> (,) n <$> diffOfSize n) `suchThat` ((> 0) . fst)) $
2016-06-27 20:16:48 +03:00
\ (n, diff) -> arbitraryDiffSize (diff :: ArbitraryDiff Text ()) `shouldBe` n
describe "Diff" $ do
prop "equality is reflexive" $
2016-06-27 20:16:48 +03:00
\ a b -> let diff = diffTerms (free . Free) (==) diffCost (toTerm a) (toTerm (b :: ArbitraryTerm Text (Record '[Category]))) in
diff == diff
prop "equal terms produce identity diffs" $
2016-06-27 20:16:48 +03:00
\ a -> let term = toTerm (a :: ArbitraryTerm Text (Record '[Category])) in
diffCost (diffTerms (free . Free) (==) diffCost term term) == 0