1
1
mirror of https://github.com/github/semantic.git synced 2024-11-28 18:23:44 +03:00
semantic/test/DiffSummarySpec.hs

104 lines
4.5 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 (Spec, describe, it, parallel)
import Test.Hspec.Expectations.Pretty
import Test.Hspec.QuickCheck
2016-10-06 22:12:14 +03:00
import Data.These
2016-05-17 20:09:14 +03:00
2016-10-06 21:20:58 +03:00
sourceSpanBetween :: (Int, Int) -> (Int, Int) -> SourceSpan
2016-10-11 22:12:48 +03:00
sourceSpanBetween (s1, e1) (s2, e2) = SourceSpan (SourcePos s1 e1) (SourcePos s2 e2)
2016-10-06 21:20:58 +03:00
2016-10-06 00:41:00 +03:00
arrayInfo :: Record '[Category, Range, SourceSpan]
2016-10-06 22:12:14 +03:00
arrayInfo = ArrayLiteral .: Range 0 3 .: sourceSpanBetween (1, 1) (1, 5) .: RNil
2016-05-17 22:59:07 +03:00
2016-10-06 00:41:00 +03:00
literalInfo :: Record '[Category, Range, SourceSpan]
2016-10-06 22:12:14 +03:00
literalInfo = StringLiteral .: Range 1 2 .: sourceSpanBetween (1, 2) (1, 4) .: RNil
2016-05-17 22:59:07 +03:00
2016-10-06 00:41:00 +03:00
testDiff :: Diff (Syntax Text) (Record '[Category, Range, SourceSpan])
2016-10-01 00:15:02 +03:00
testDiff = free $ Free (pure arrayInfo :< Indexed [ free $ Pure (Insert (cofree $ literalInfo :< Leaf "\"a\"")) ])
2016-05-17 22:59:07 +03:00
2016-05-31 23:15:40 +03:00
testSummary :: DiffSummary DiffInfo
2016-10-06 21:20:58 +03:00
testSummary = DiffSummary { patch = Insert (LeafInfo "string" "a" $ sourceSpanBetween (1,1) (1, 2)), parentAnnotation = [] }
2016-05-17 20:09:14 +03:00
2016-05-31 23:15:40 +03:00
replacementSummary :: DiffSummary DiffInfo
2016-10-06 22:12:14 +03:00
replacementSummary = DiffSummary { patch = Replace (LeafInfo "string" "a" $ sourceSpanBetween (1, 2) (1, 4)) (LeafInfo "symbol" "b" $ sourceSpanBetween (1,1) (1, 2)), parentAnnotation = [Left (Info.FunctionCall, "foo")] }
2016-05-18 17:24:08 +03:00
2016-08-22 17:33:26 +03:00
blobs :: Both SourceBlob
blobs = both (SourceBlob (fromText "[]") nullOid "a.js" (Just defaultPlainBlob)) (SourceBlob (fromText "[a]") nullOid "b.js" (Just defaultPlainBlob))
2016-07-29 21:31:02 +03:00
2016-10-13 02:19:36 +03:00
getLabel (h :< t) = (category h, case t of
Leaf s -> Just s
_ -> Nothing)
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
diffSummaries blobs testDiff `shouldBe` [ JSONSummary "Added the \"a\" string" (SourceSpans . That $ sourceSpanBetween (1, 2) (1, 4)) ]
prop "equal terms produce identity diffs" $
2016-10-06 00:41:00 +03:00
\ a -> let term = defaultFeatureVectorDecorator (category . headF) (toTerm (a :: ArbitraryTerm Text (Record '[Category, Range, SourceSpan]))) in
2016-10-13 02:19:36 +03:00
diffSummaries blobs (diffTerms wrap (==) diffCost getLabel term term) `shouldBe` []
describe "DiffInfo" $ do
prop "patches in summaries match the patches in diffs" $
\a -> let
2016-10-06 00:41:00 +03:00
diff = (toDiff (a :: ArbitraryDiff Text (Record '[Category, Cost, Range, SourceSpan])))
summaries = diffToDiffSummaries (source <$> blobs) 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-10-06 00:41:00 +03:00
diff = (toDiff (a :: ArbitraryDiff Text (Record '[Category, Range, SourceSpan])))
diffInfoPatches = patch <$> diffToDiffSummaries (source <$> blobs) diff
syntaxPatches = toList diff
extractLeaves :: DiffInfo -> [DiffInfo]
extractLeaves (BranchInfo children _ _) = join $ extractLeaves <$> children
extractLeaves leaf = [ leaf ]
2016-10-06 00:41:00 +03:00
extractDiffLeaves :: Term (Syntax Text) (Record '[Category, Range, SourceSpan]) -> [ Term (Syntax Text) (Record '[Category, Range, SourceSpan]) ]
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 (Syntax 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
isBranchNode :: Patch DiffInfo -> Bool
2016-07-26 21:04:15 +03:00
isBranchNode = any isBranchInfo