2016-08-05 02:19:03 +03:00
|
|
|
{-# LANGUAGE DataKinds #-}
|
2016-06-23 00:59:28 +03:00
|
|
|
module Data.RandomWalkSimilarity.Spec where
|
|
|
|
|
2017-01-08 07:27:01 +03:00
|
|
|
import Category
|
2016-08-18 18:37:55 +03:00
|
|
|
import Data.Functor.Both
|
2017-01-08 07:27:01 +03:00
|
|
|
import Data.Functor.Listable
|
2016-06-23 00:59:28 +03:00
|
|
|
import Data.RandomWalkSimilarity
|
2016-08-05 02:19:03 +03:00
|
|
|
import Data.Record
|
2017-01-08 07:27:01 +03:00
|
|
|
import Data.String
|
2016-09-16 01:32:57 +03:00
|
|
|
import qualified Data.Vector as Vector
|
2016-06-27 22:37:32 +03:00
|
|
|
import Diff
|
2016-08-10 16:38:41 +03:00
|
|
|
import Info
|
2016-06-27 22:37:32 +03:00
|
|
|
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
|
2016-10-13 23:16:50 +03:00
|
|
|
import Diffing (getLabel)
|
2016-06-23 00:59:28 +03:00
|
|
|
import Test.Hspec
|
2017-01-08 07:27:01 +03:00
|
|
|
import Test.Hspec.LeanCheck
|
2016-06-23 00:59:28 +03:00
|
|
|
|
|
|
|
spec :: Spec
|
|
|
|
spec = parallel $ do
|
2016-08-10 18:32:42 +03:00
|
|
|
let positively = succ . abs
|
2016-08-09 23:23:38 +03:00
|
|
|
describe "pqGramDecorator" $ do
|
2016-08-10 16:05:12 +03:00
|
|
|
prop "produces grams with stems of the specified length" $
|
2017-01-08 07:27:01 +03:00
|
|
|
\ (term, p, q) -> pqGramDecorator (rhead . headF) (positively p) (positively q) (unListableF term :: SyntaxTerm String '[Category]) `shouldSatisfy` all ((== positively p) . length . stem . rhead)
|
2016-06-23 00:59:28 +03:00
|
|
|
|
2016-08-10 16:05:12 +03:00
|
|
|
prop "produces grams with bases of the specified width" $
|
2017-01-08 07:27:01 +03:00
|
|
|
\ (term, p, q) -> pqGramDecorator (rhead . headF) (positively p) (positively q) (unListableF term :: SyntaxTerm String '[Category]) `shouldSatisfy` all ((== positively q) . length . base . rhead)
|
2016-06-23 00:59:28 +03:00
|
|
|
|
2016-08-09 23:34:10 +03:00
|
|
|
describe "featureVectorDecorator" $ do
|
|
|
|
prop "produces a vector of the specified dimension" $
|
2017-01-08 07:27:01 +03:00
|
|
|
\ (term, p, q, d) -> featureVectorDecorator (rhead . headF) (positively p) (positively q) (positively d) (unListableF term :: SyntaxTerm String '[Category]) `shouldSatisfy` all ((== positively d) . length . rhead)
|
2016-06-27 22:37:32 +03:00
|
|
|
|
|
|
|
describe "rws" $ do
|
2017-01-08 07:27:01 +03:00
|
|
|
prop "produces correct diffs" $
|
|
|
|
\ (as, bs) -> let tas = decorate <$> (unListableF <$> as :: [SyntaxTerm String '[Category]])
|
|
|
|
tbs = decorate <$> (unListableF <$> bs :: [SyntaxTerm String '[Category]])
|
2017-01-19 23:36:04 +03:00
|
|
|
root = cofree . ((Program .: Nil) :<) . Indexed
|
|
|
|
diff = wrap (pure (Program .: Nil) :< Indexed (stripDiff <$> rws compare getLabel tas tbs)) in
|
2016-08-11 19:54:14 +03:00
|
|
|
(beforeTerm diff, afterTerm diff) `shouldBe` (Just (root (stripTerm <$> tas)), Just (root (stripTerm <$> tbs)))
|
2016-08-11 18:53:51 +03:00
|
|
|
|
2016-08-12 18:59:09 +03:00
|
|
|
it "produces unbiased insertions within branches" $
|
2017-01-19 23:36:04 +03:00
|
|
|
let (a, b) = (decorate (cofree ((StringLiteral .: Nil) :< Indexed [ cofree ((StringLiteral .: Nil) :< Leaf ("a" :: Text)) ])), decorate (cofree ((StringLiteral .: Nil) :< Indexed [ cofree ((StringLiteral .: Nil) :< Leaf "b") ]))) in
|
2016-10-13 02:19:36 +03:00
|
|
|
fmap stripDiff (rws compare getLabel [ b ] [ a, b ]) `shouldBe` fmap stripDiff [ inserting a, copying b ]
|
2016-08-18 19:51:07 +03:00
|
|
|
|
2016-09-09 21:23:13 +03:00
|
|
|
where compare :: (HasField fields Category, Functor f, Eq (Cofree f Category)) => Term f (Record fields) -> Term f (Record fields) -> Maybe (Diff f (Record fields))
|
2016-08-18 18:40:33 +03:00
|
|
|
compare a b | (category <$> a) == (category <$> b) = Just (copying b)
|
2016-08-18 18:37:55 +03:00
|
|
|
| otherwise = if ((==) `on` category . extract) a b then Just (replacing a b) else Nothing
|
2016-08-18 18:40:33 +03:00
|
|
|
copying :: Functor f => Cofree f (Record fields) -> Free (CofreeF f (Both (Record fields))) (Patch (Cofree f (Record fields)))
|
|
|
|
copying = cata wrap . fmap pure
|
2016-09-16 01:32:57 +03:00
|
|
|
decorate :: SyntaxTerm leaf '[Category] -> SyntaxTerm leaf '[Vector.Vector Double, Category]
|
|
|
|
decorate = defaultFeatureVectorDecorator (category . headF)
|