2016-06-23 16:52:15 +03:00
|
|
|
{-# LANGUAGE DataKinds #-}
|
2016-06-23 00:59:28 +03:00
|
|
|
module Data.RandomWalkSimilarity.Spec where
|
|
|
|
|
2016-06-28 21:09:51 +03:00
|
|
|
import Category
|
2016-06-23 00:59:28 +03:00
|
|
|
import Data.DList as DList hiding (toList)
|
|
|
|
import Data.RandomWalkSimilarity
|
|
|
|
import Data.RandomWalkSimilarity.Arbitrary ()
|
2016-06-29 18:28:08 +03:00
|
|
|
import qualified Data.Set as Set
|
2016-06-27 22:37:32 +03:00
|
|
|
import Diff
|
|
|
|
import Patch
|
2016-06-23 00:59:28 +03:00
|
|
|
import Prologue
|
2016-06-27 22:37:32 +03:00
|
|
|
import Syntax
|
2016-06-23 00:59:28 +03:00
|
|
|
import Term
|
|
|
|
import Term.Arbitrary
|
|
|
|
import Test.Hspec
|
|
|
|
import Test.Hspec.QuickCheck
|
2016-06-27 18:46:22 +03:00
|
|
|
import Test.QuickCheck
|
2016-06-23 00:59:28 +03:00
|
|
|
|
|
|
|
spec :: Spec
|
|
|
|
spec = parallel $ do
|
|
|
|
describe "pqGrams" $ do
|
2016-06-23 17:11:48 +03:00
|
|
|
prop "produces grams with stems of the specified length" . forAll (arbitrary `suchThat` (\ (_, p, q) -> p > 0 && q > 0)) $
|
2016-06-27 22:32:09 +03:00
|
|
|
\ (term, p, q) -> pqGrams p q identity (toTerm term :: Term Text Text) `shouldSatisfy` all ((== p) . length . stem)
|
2016-06-23 00:59:28 +03:00
|
|
|
|
2016-06-23 17:11:48 +03:00
|
|
|
prop "produces grams with bases of the specified length" . forAll (arbitrary `suchThat` (\ (_, p, q) -> p > 0 && q > 0)) $
|
2016-06-27 22:32:09 +03:00
|
|
|
\ (term, p, q) -> pqGrams p q identity (toTerm term :: Term Text Text) `shouldSatisfy` all ((== q) . length . base)
|
2016-06-23 00:59:28 +03:00
|
|
|
|
|
|
|
describe "featureVector" $ do
|
2016-06-27 22:37:32 +03:00
|
|
|
prop "produces a vector of the specified dimension" . forAll (arbitrary `suchThat` ((> 0) . Prologue.snd)) $
|
2016-06-27 22:32:09 +03:00
|
|
|
\ (grams, d) -> length (featureVector d (fromList (grams :: [Gram Text]))) `shouldBe` d
|
2016-06-27 22:37:32 +03:00
|
|
|
|
|
|
|
describe "rws" $ do
|
2016-06-28 22:02:41 +03:00
|
|
|
let compare a b = if extract a == extract b then Just (pure (Replace a b)) else Nothing
|
2016-06-27 22:37:32 +03:00
|
|
|
prop "produces correct diffs" $
|
2016-06-30 19:37:27 +03:00
|
|
|
\ (as, bs) -> let tas = toTerm <$> as
|
|
|
|
tbs = toTerm <$> bs
|
|
|
|
diff = free (Free (pure Program :< Indexed (rws compare identity tas tbs :: [Diff Text Category]))) in
|
2016-06-29 18:28:08 +03:00
|
|
|
(childrenOf <$> beforeTerm diff, childrenOf <$> afterTerm diff) `shouldBe` (Just (Set.fromList tas), Just (Set.fromList tbs))
|
|
|
|
|
|
|
|
childrenOf :: (Ord leaf, Ord annotation) => Term leaf annotation -> Set.Set (Term leaf annotation)
|
2016-06-30 18:28:18 +03:00
|
|
|
childrenOf = Set.fromList . toList . unwrap
|