1
1
mirror of https://github.com/github/semantic.git synced 2024-12-20 05:11:44 +03:00
semantic/test/DiffSummarySpec.hs

105 lines
4.2 KiB
Haskell
Raw Normal View History

{-# LANGUAGE DataKinds #-}
2016-05-17 20:09:14 +03:00
module DiffSummarySpec where
2016-05-16 21:43:53 +03:00
import Category
import Data.Functor.Both
import Data.List (partition)
import Data.RandomWalkSimilarity
import Data.Record
2016-05-17 22:59:07 +03:00
import Diff
import Diff.Arbitrary
import DiffSummary
2016-07-22 21:51:08 +03:00
import Info
import Interpreter
import Patch
import Prologue
2016-07-29 21:31:02 +03:00
import Source
import Syntax
import Term
import Term.Arbitrary
import Test.Hspec
import Test.Hspec.QuickCheck
2016-05-17 20:09:14 +03:00
arrayInfo :: Record '[Category, Range]
arrayInfo = ArrayLiteral .: Range 0 3 .: RNil
2016-05-17 22:59:07 +03:00
literalInfo :: Record '[Category, Range]
literalInfo = StringLiteral .: Range 1 2 .: RNil
2016-05-17 22:59:07 +03:00
testDiff :: Diff Text (Record '[Category, Range])
2016-05-17 22:59:07 +03:00
testDiff = free $ Free (pure arrayInfo :< Indexed [ free $ Pure (Insert (cofree $ literalInfo :< Leaf "a")) ])
2016-05-31 23:15:40 +03:00
testSummary :: DiffSummary DiffInfo
2016-08-08 21:59:51 +03:00
testSummary = DiffSummary { patch = Insert (LeafInfo "string" "a"), parentAnnotation = Nothing }
2016-05-17 20:09:14 +03:00
2016-05-31 23:15:40 +03:00
replacementSummary :: DiffSummary DiffInfo
2016-08-08 21:59:51 +03:00
replacementSummary = DiffSummary { patch = Replace (LeafInfo "string" "a") (LeafInfo "symbol" "b"), parentAnnotation = Just (Info.FunctionCall, "foo") }
2016-05-18 17:24:08 +03:00
2016-07-29 21:34:28 +03:00
sources :: Both (Source Char)
2016-07-29 21:31:02 +03:00
sources = both (fromText "[]") (fromText "[a]")
2016-05-17 20:09:14 +03:00
spec :: Spec
spec = parallel $ do
2016-07-30 01:37:41 +03:00
describe "diffSummaries" $ do
2016-05-17 22:59:07 +03:00
it "outputs a diff summary" $ do
2016-08-08 21:59:51 +03:00
diffSummaries sources testDiff `shouldBe` [ DiffSummary { patch = Insert (LeafInfo "string" "a"), parentAnnotation = Nothing } ]
prop "equal terms produce identity diffs" $
\ a -> let term = featureVectorDecorator (category . headF) 2 2 15 (toTerm (a :: ArbitraryTerm Text (Record '[Category, Range]))) in
2016-07-30 01:37:41 +03:00
diffSummaries sources (diffTerms wrap (==) diffCost term term) `shouldBe` []
describe "annotatedSummaries" $ do
2016-05-17 20:09:14 +03:00
it "should print adds" $
2016-07-16 00:11:45 +03:00
annotatedSummaries testSummary `shouldBe` ["Added the 'a' string"]
2016-05-18 17:24:08 +03:00
it "prints a replacement" $ do
2016-08-08 21:59:51 +03:00
annotatedSummaries replacementSummary `shouldBe` ["Replaced the 'a' string with the 'b' symbol in the foo function call"]
describe "DiffInfo" $ do
prop "patches in summaries match the patches in diffs" $
\a -> let
2016-07-29 21:31:02 +03:00
diff = (toDiff (a :: ArbitraryDiff Text (Record '[Category, Cost, Range])))
2016-07-30 01:37:41 +03:00
summaries = diffSummaries sources diff
patches = toList diff
in
case (partition isBranchNode (patch <$> summaries), partition isIndexedOrFixed patches) of
((branchPatches, otherPatches), (branchDiffPatches, otherDiffPatches)) ->
(() <$ branchPatches, () <$ otherPatches) `shouldBe` (() <$ branchDiffPatches, () <$ otherDiffPatches)
prop "generates one LeafInfo for each child in an arbitrary branch patch" $
\a -> let
2016-07-29 21:31:02 +03:00
diff = (toDiff (a :: ArbitraryDiff Text (Record '[Category, Range])))
2016-07-30 01:37:41 +03:00
diffInfoPatches = patch <$> diffSummaries sources diff
syntaxPatches = toList diff
extractLeaves :: DiffInfo -> [DiffInfo]
extractLeaves (BranchInfo children _ _) = join $ extractLeaves <$> children
extractLeaves leaf = [ leaf ]
2016-07-29 21:31:02 +03:00
extractDiffLeaves :: Term Text (Record '[Category, Range]) -> [ Term Text (Record '[Category, Range]) ]
extractDiffLeaves term = case unwrap term of
(Indexed children) -> join $ extractDiffLeaves <$> children
(Fixed children) -> join $ extractDiffLeaves <$> children
2016-07-26 20:45:50 +03:00
Commented children leaf -> children <> maybeToList leaf >>= extractDiffLeaves
_ -> [ term ]
in
case (partition isBranchNode diffInfoPatches, partition isIndexedOrFixed syntaxPatches) of
((branchPatches, _), (diffPatches, _)) ->
let listOfLeaves = foldMap extractLeaves (join $ toList <$> branchPatches)
2016-07-26 20:44:12 +03:00
listOfDiffLeaves = foldMap extractDiffLeaves (diffPatches >>= toList)
in
length listOfLeaves `shouldBe` length listOfDiffLeaves
isIndexedOrFixed :: Patch (Term a annotation) -> Bool
2016-07-26 23:44:33 +03:00
isIndexedOrFixed = any (isIndexedOrFixed' . unwrap)
2016-07-16 03:32:48 +03:00
isIndexedOrFixed' :: Syntax a f -> Bool
isIndexedOrFixed' syntax = case syntax of
(Indexed _) -> True
(Fixed _) -> True
_ -> False
2016-07-16 03:32:48 +03:00
isBranchInfo :: DiffInfo -> Bool
isBranchInfo info = case info of
(BranchInfo _ _ _) -> True
2016-08-05 17:16:18 +03:00
_ -> False
2016-07-16 03:32:48 +03:00
isBranchNode :: Patch DiffInfo -> Bool
2016-07-26 21:04:15 +03:00
isBranchNode = any isBranchInfo