mirror of
https://github.com/github/semantic.git
synced 2024-11-29 02:44:36 +03:00
8aa0f082a6
Figure it’s best if they use the same value for the parameter.
42 lines
1.5 KiB
Haskell
42 lines
1.5 KiB
Haskell
{-# LANGUAGE DataKinds #-}
|
|
module Diff.Spec where
|
|
|
|
import Category
|
|
import Data.RandomWalkSimilarity
|
|
import Data.Record
|
|
import Data.Text.Arbitrary ()
|
|
import Diff
|
|
import Diff.Arbitrary
|
|
import Info
|
|
import Interpreter
|
|
import Prologue
|
|
import Term.Arbitrary
|
|
import Test.Hspec
|
|
import Test.Hspec.QuickCheck
|
|
import Test.QuickCheck
|
|
|
|
spec :: Spec
|
|
spec = parallel $ do
|
|
let toTerm' = featureVectorDecorator (category . headF) 2 3 15 . toTerm
|
|
prop "equality is reflexive" $
|
|
\ a b -> let diff = diffTerms wrap (==) diffCost (toTerm' a) (toTerm' (b :: ArbitraryTerm Text (Record '[Category]))) in
|
|
diff `shouldBe` diff
|
|
|
|
prop "equal terms produce identity diffs" $
|
|
\ a -> let term = toTerm' (a :: ArbitraryTerm Text (Record '[Category])) in
|
|
diffCost (diffTerms wrap (==) diffCost term term) `shouldBe` 0
|
|
|
|
describe "beforeTerm" $ do
|
|
prop "recovers the before term" $
|
|
\ a b -> let diff = diffTerms wrap (==) diffCost (toTerm' a) (toTerm' (b :: ArbitraryTerm Text (Record '[Category]))) in
|
|
beforeTerm diff `shouldBe` Just (toTerm' a)
|
|
|
|
describe "afterTerm" $ do
|
|
prop "recovers the after term" $
|
|
\ a b -> let diff = diffTerms wrap (==) diffCost (toTerm' a) (toTerm' (b :: ArbitraryTerm Text (Record '[Category]))) in
|
|
afterTerm diff `shouldBe` Just (toTerm' b)
|
|
|
|
describe "ArbitraryDiff" $ do
|
|
prop "generates diffs of a specific size" . forAll ((arbitrary >>= \ n -> (,) n <$> diffOfSize n) `suchThat` ((> 0) . fst)) $
|
|
\ (n, diff) -> arbitraryDiffSize (diff :: ArbitraryDiff Text ()) `shouldBe` n
|