2017-02-14 22:29:24 +03:00
|
|
|
{-# LANGUAGE DataKinds #-}
|
|
|
|
module TOCSpec where
|
|
|
|
|
2017-02-15 21:15:57 +03:00
|
|
|
import Category as C
|
2017-02-14 22:29:24 +03:00
|
|
|
import Data.Functor.Both
|
2017-02-15 21:15:57 +03:00
|
|
|
import Data.Functor.Listable
|
2017-02-14 22:29:24 +03:00
|
|
|
import Data.RandomWalkSimilarity
|
|
|
|
import Data.Record
|
2017-02-15 21:15:57 +03:00
|
|
|
import Data.String
|
2017-02-14 22:29:24 +03:00
|
|
|
import Diff
|
2017-02-14 22:54:32 +03:00
|
|
|
import Diffing
|
2017-02-14 22:29:24 +03:00
|
|
|
import Info
|
2017-02-14 22:54:32 +03:00
|
|
|
import Interpreter
|
|
|
|
import Parse
|
2017-02-14 23:48:34 +03:00
|
|
|
import Patch
|
2017-02-14 22:29:24 +03:00
|
|
|
import Prologue hiding (fst, snd)
|
2017-02-14 22:54:32 +03:00
|
|
|
import Renderer.TOC
|
2017-02-14 22:29:24 +03:00
|
|
|
import Source
|
2017-02-17 02:22:46 +03:00
|
|
|
import Syntax as S
|
2017-02-15 21:15:57 +03:00
|
|
|
import Term
|
2017-02-14 22:29:24 +03:00
|
|
|
import Test.Hspec (Spec, describe, it, parallel)
|
|
|
|
import Test.Hspec.Expectations.Pretty
|
2017-02-15 21:15:57 +03:00
|
|
|
import Test.Hspec.LeanCheck
|
2017-02-16 03:13:34 +03:00
|
|
|
import Test.LeanCheck
|
2017-02-14 22:29:24 +03:00
|
|
|
|
|
|
|
spec :: Spec
|
|
|
|
spec = parallel $ do
|
|
|
|
describe "tocSummaries" $ do
|
|
|
|
it "blank if there are no methods" $
|
2017-02-17 02:47:18 +03:00
|
|
|
diffTOC blankDiffBlobs blankDiff `shouldBe` [ ]
|
2017-02-14 22:29:24 +03:00
|
|
|
|
2017-02-15 21:15:57 +03:00
|
|
|
it "summarizes changed methods" $ do
|
|
|
|
sourceBlobs <- blobsForPaths (both "ruby/methods.A.rb" "ruby/methods.B.rb")
|
|
|
|
diff <- testDiff sourceBlobs
|
2017-02-17 02:47:18 +03:00
|
|
|
diffTOC sourceBlobs diff `shouldBe`
|
2017-02-17 22:34:47 +03:00
|
|
|
[ JSONSummary $ Summarizable C.SingletonMethod "self.foo" (sourceSpanBetween (1, 1) (2, 4)) "added"
|
2017-02-17 02:47:18 +03:00
|
|
|
, JSONSummary $ InSummarizable C.Method "bar" (sourceSpanBetween (4, 1) (6, 4))
|
|
|
|
, JSONSummary $ Summarizable C.Method "baz" (sourceSpanBetween (4, 1) (5, 4)) "removed" ]
|
|
|
|
|
2017-02-14 22:53:25 +03:00
|
|
|
it "dedupes changes in same parent method" $ do
|
2017-02-17 19:46:56 +03:00
|
|
|
sourceBlobs <- blobsForPaths (both "javascript/duplicate-parent.A.js" "javascript/duplicate-parent.B.js")
|
2017-02-14 22:29:24 +03:00
|
|
|
diff <- testDiff sourceBlobs
|
2017-02-17 02:47:18 +03:00
|
|
|
diffTOC sourceBlobs diff `shouldBe`
|
|
|
|
[ JSONSummary $ InSummarizable C.Function "myFunction" (sourceSpanBetween (1, 1) (6, 2)) ]
|
2017-02-14 22:53:25 +03:00
|
|
|
|
|
|
|
it "dedupes similar methods" $ do
|
2017-02-17 19:46:56 +03:00
|
|
|
sourceBlobs <- blobsForPaths (both "javascript/erroneous-duplicate-method.A.js" "javascript/erroneous-duplicate-method.B.js")
|
2017-02-14 22:53:25 +03:00
|
|
|
diff <- testDiff sourceBlobs
|
2017-02-17 02:47:18 +03:00
|
|
|
diffTOC sourceBlobs diff `shouldBe`
|
|
|
|
[ JSONSummary $ Summarizable C.Function "performHealthCheck" (sourceSpanBetween (8, 1) (29, 2)) "modified" ]
|
2017-02-15 21:15:57 +03:00
|
|
|
|
2017-02-17 19:45:51 +03:00
|
|
|
it "summarizes Go methods with receivers with special formatting" $ do
|
|
|
|
sourceBlobs <- blobsForPaths (both "go/method-with-receiver.A.go" "go/method-with-receiver.B.go")
|
|
|
|
diff <- testDiff sourceBlobs
|
|
|
|
diffTOC sourceBlobs diff `shouldBe`
|
|
|
|
[ JSONSummary $ Summarizable C.Method "(*apiClient) CheckAuth" (sourceSpanBetween (3,1) (3,101)) "added" ]
|
|
|
|
|
2017-02-17 19:09:42 +03:00
|
|
|
it "summarizes Ruby methods that start with two identifiers" $ do
|
|
|
|
sourceBlobs <- blobsForPaths (both "ruby/method-starts-with-two-identifiers.A.rb" "ruby/method-starts-with-two-identifiers.B.rb")
|
|
|
|
diff <- testDiff sourceBlobs
|
|
|
|
diffTOC sourceBlobs diff `shouldBe`
|
|
|
|
[ JSONSummary $ InSummarizable C.Method "foo" (sourceSpanBetween (1, 1) (4, 4)) ]
|
|
|
|
|
2017-02-16 19:29:49 +03:00
|
|
|
it "handles unicode characters in file" $ do
|
|
|
|
sourceBlobs <- blobsForPaths (both "ruby/unicode.A.rb" "ruby/unicode.B.rb")
|
|
|
|
diff <- testDiff sourceBlobs
|
2017-02-17 02:47:18 +03:00
|
|
|
diffTOC sourceBlobs diff `shouldBe`
|
|
|
|
[ JSONSummary $ Summarizable C.Method "foo" (sourceSpanBetween (6, 1) (7, 4)) "added" ]
|
2017-02-16 19:29:49 +03:00
|
|
|
|
2017-02-17 01:20:22 +03:00
|
|
|
prop "inserts of methods and functions are summarized" $
|
2017-02-16 23:23:40 +03:00
|
|
|
\name body ->
|
2017-02-17 01:20:22 +03:00
|
|
|
let diff = programWithInsert name (unListableF body)
|
|
|
|
in numTocSummaries diff `shouldBe` 1
|
2017-02-16 23:23:40 +03:00
|
|
|
|
2017-02-17 01:20:22 +03:00
|
|
|
prop "deletes of methods and functions are summarized" $
|
2017-02-16 23:23:40 +03:00
|
|
|
\name body ->
|
2017-02-17 01:20:22 +03:00
|
|
|
let diff = programWithDelete name (unListableF body)
|
|
|
|
in numTocSummaries diff `shouldBe` 1
|
|
|
|
|
|
|
|
prop "replacements of methods and functions are summarized" $
|
|
|
|
\name body ->
|
|
|
|
let diff = programWithReplace name (unListableF body)
|
|
|
|
in numTocSummaries diff `shouldBe` 1
|
2017-02-16 03:13:34 +03:00
|
|
|
|
2017-02-17 02:22:46 +03:00
|
|
|
prop "changes inside methods and functions are summarizied" . forAll (isMeaningfulTerm `filterT` tiers) $
|
|
|
|
\body ->
|
|
|
|
let diff = programWithChange (unListableF body)
|
|
|
|
in numTocSummaries diff `shouldBe` 1
|
|
|
|
|
2017-02-17 02:41:13 +03:00
|
|
|
prop "other changes don't summarize" . forAll ((not . isMethodOrFunction) `filterT` tiers) $
|
|
|
|
\body ->
|
|
|
|
let diff = programWithChangeOutsideFunction (unListableF body)
|
|
|
|
in numTocSummaries diff `shouldBe` 0
|
|
|
|
|
2017-02-15 21:15:57 +03:00
|
|
|
prop "equal terms produce identity diffs" $
|
2017-02-17 01:20:22 +03:00
|
|
|
\a -> let term = defaultFeatureVectorDecorator (Info.category . headF) (unListableF a :: Term') in
|
2017-02-21 23:23:30 +03:00
|
|
|
diffTOC blankDiffBlobs (diffTerms term term) `shouldBe` []
|
2017-02-14 22:29:24 +03:00
|
|
|
|
2017-02-17 01:20:22 +03:00
|
|
|
type Diff' = SyntaxDiff String '[Range, Category, SourceSpan]
|
|
|
|
type Term' = SyntaxTerm String '[Range, Category, SourceSpan]
|
|
|
|
|
|
|
|
numTocSummaries :: Diff' -> Int
|
2017-02-17 02:47:18 +03:00
|
|
|
numTocSummaries diff = Prologue.length $ filter (not . isErrorSummary) (diffTOC blankDiffBlobs diff)
|
2017-02-17 01:20:22 +03:00
|
|
|
|
2017-02-17 02:41:13 +03:00
|
|
|
-- Return a diff where body is inserted in the expressions of a function. The function is present in both sides of the diff.
|
2017-02-17 02:22:46 +03:00
|
|
|
programWithChange :: Term' -> Diff'
|
|
|
|
programWithChange body = free $ Free (pure programInfo :< Indexed [ function' ])
|
|
|
|
where
|
2017-02-17 02:41:13 +03:00
|
|
|
function' = free $ Free (pure functionInfo :< S.Function name' [] Nothing [ free $ Pure (Insert body) ] )
|
|
|
|
name' = free $ Free (pure (Range 0 0 :. C.Identifier :. sourceSpanBetween (0,0) (0,0) :. Nil) :< Leaf "foo")
|
|
|
|
|
|
|
|
-- Return a diff where term is inserted in the program, below a function found on both sides of the diff.
|
|
|
|
programWithChangeOutsideFunction :: Term' -> Diff'
|
|
|
|
programWithChangeOutsideFunction term = free $ Free (pure programInfo :< Indexed [ function', term' ])
|
|
|
|
where
|
|
|
|
function' = free $ Free (pure functionInfo :< S.Function name' [] Nothing [] )
|
2017-02-17 02:22:46 +03:00
|
|
|
name' = free $ Free (pure (Range 0 0 :. C.Identifier :. sourceSpanBetween (0,0) (0,0) :. Nil) :< Leaf "foo")
|
2017-02-17 02:41:13 +03:00
|
|
|
term' = free $ Pure (Insert term)
|
2017-02-17 02:22:46 +03:00
|
|
|
|
2017-02-17 01:20:22 +03:00
|
|
|
programWithInsert :: String -> Term' -> Diff'
|
|
|
|
programWithInsert name body = programOf $ Insert (functionOf name body)
|
|
|
|
|
|
|
|
programWithDelete :: String -> Term' -> Diff'
|
|
|
|
programWithDelete name body = programOf $ Delete (functionOf name body)
|
2017-02-16 23:23:40 +03:00
|
|
|
|
2017-02-17 01:20:22 +03:00
|
|
|
programWithReplace :: String -> Term' -> Diff'
|
|
|
|
programWithReplace name body = programOf $ Replace (functionOf name body) (functionOf (name <> "2") body)
|
2017-02-16 23:23:40 +03:00
|
|
|
|
2017-02-17 01:20:22 +03:00
|
|
|
programOf :: Patch Term' -> Diff'
|
|
|
|
programOf patch = free $ Free (pure programInfo :< Indexed [ free $ Pure patch ])
|
2017-02-16 23:23:40 +03:00
|
|
|
|
2017-02-17 01:20:22 +03:00
|
|
|
functionOf :: String -> Term' -> Term'
|
2017-02-17 02:22:46 +03:00
|
|
|
functionOf name body = cofree $ functionInfo :< S.Function name' [] Nothing [body]
|
|
|
|
where
|
|
|
|
name' = cofree $ (Range 0 0 :. C.Identifier :. sourceSpanBetween (0,0) (0,0) :. Nil) :< Leaf name
|
2017-02-16 03:13:34 +03:00
|
|
|
|
2017-02-16 23:23:40 +03:00
|
|
|
programInfo :: Record '[Range, Category, SourceSpan]
|
|
|
|
programInfo = Range 0 0 :. C.Program :. sourceSpanBetween (0,0) (0,0) :. Nil
|
2017-02-16 03:13:34 +03:00
|
|
|
|
2017-02-16 23:23:40 +03:00
|
|
|
functionInfo :: Record '[Range, Category, SourceSpan]
|
|
|
|
functionInfo = Range 0 0 :. C.Function :. sourceSpanBetween (0,0) (0,0) :. Nil
|
2017-02-16 03:13:34 +03:00
|
|
|
|
2017-02-17 02:41:13 +03:00
|
|
|
-- Filter tiers for terms that we consider "meaniningful" in TOC summaries.
|
2017-02-17 02:22:46 +03:00
|
|
|
isMeaningfulTerm :: ListableF (Term (Syntax leaf)) (Record '[Range, Category, SourceSpan]) -> Bool
|
|
|
|
isMeaningfulTerm a = case runCofree (unListableF a) of
|
|
|
|
(_ :< S.Indexed _) -> False
|
|
|
|
(_ :< S.Fixed _) -> False
|
|
|
|
(_ :< S.Commented _ _) -> False
|
|
|
|
(_ :< S.ParseError _) -> False
|
|
|
|
_ -> True
|
2017-02-16 03:13:34 +03:00
|
|
|
|
2017-02-17 02:41:13 +03:00
|
|
|
-- Filter tiers for terms if the Syntax is a Method or a Function.
|
|
|
|
isMethodOrFunction :: ListableF (Term (Syntax leaf)) (Record '[Range, Category, SourceSpan]) -> Bool
|
|
|
|
isMethodOrFunction a = case runCofree (unListableF a) of
|
|
|
|
(_ :< S.Method{}) -> True
|
|
|
|
(_ :< S.Function{}) -> True
|
|
|
|
_ -> False
|
|
|
|
|
2017-02-21 22:53:42 +03:00
|
|
|
testDiff :: Both SourceBlob -> IO (Diff (Syntax Text) (Record '[Range, Category, SourceSpan]))
|
2017-02-14 22:29:24 +03:00
|
|
|
testDiff sourceBlobs = do
|
|
|
|
terms <- traverse (fmap (defaultFeatureVectorDecorator getLabel) . parser) sourceBlobs
|
|
|
|
pure $! stripDiff (diffTerms' terms sourceBlobs)
|
|
|
|
where
|
2017-02-21 22:53:42 +03:00
|
|
|
parser = parserForFilepath (path . fst $ sourceBlobs)
|
2017-02-14 22:29:24 +03:00
|
|
|
diffTerms' terms blobs = case runBothWith areNullOids blobs of
|
|
|
|
(True, False) -> pure $ Insert (snd terms)
|
|
|
|
(False, True) -> pure $ Delete (fst terms)
|
2017-02-21 23:23:30 +03:00
|
|
|
(_, _) -> runBothWith diffTerms terms
|
2017-02-14 22:29:24 +03:00
|
|
|
areNullOids a b = (hasNullOid a, hasNullOid b)
|
|
|
|
hasNullOid blob = oid blob == nullOid || Source.null (source blob)
|
|
|
|
|
|
|
|
blobsForPaths :: Both FilePath -> IO (Both SourceBlob)
|
|
|
|
blobsForPaths paths = do
|
2017-02-23 04:22:50 +03:00
|
|
|
sources <- mapM (readAndTranscodeFile . ("test/fixtures/toc/" <>)) paths
|
2017-02-14 22:29:24 +03:00
|
|
|
pure $ SourceBlob <$> sources <*> pure mempty <*> paths <*> pure (Just Source.defaultPlainBlob)
|
|
|
|
|
|
|
|
sourceSpanBetween :: (Int, Int) -> (Int, Int) -> SourceSpan
|
|
|
|
sourceSpanBetween (s1, e1) (s2, e2) = SourceSpan (SourcePos s1 e1) (SourcePos s2 e2)
|
|
|
|
|
|
|
|
blankDiff :: Diff (Syntax Text) (Record '[Category, Range, SourceSpan])
|
|
|
|
blankDiff = free $ Free (pure arrayInfo :< Indexed [ free $ Pure (Insert (cofree $ literalInfo :< Leaf "\"a\"")) ])
|
2017-02-17 02:22:46 +03:00
|
|
|
where
|
|
|
|
arrayInfo = ArrayLiteral :. Range 0 3 :. sourceSpanBetween (1, 1) (1, 5) :. Nil
|
|
|
|
literalInfo = StringLiteral :. Range 1 2 :. sourceSpanBetween (1, 2) (1, 4) :. Nil
|
2017-02-14 22:29:24 +03:00
|
|
|
|
2017-02-17 02:47:18 +03:00
|
|
|
blankDiffBlobs :: Both SourceBlob
|
|
|
|
blankDiffBlobs = both (SourceBlob (fromText "[]") nullOid "a.js" (Just defaultPlainBlob)) (SourceBlob (fromText "[a]") nullOid "b.js" (Just defaultPlainBlob))
|
2017-02-15 21:15:57 +03:00
|
|
|
|
|
|
|
unListableDiff :: Functor f => ListableF (Free (TermF f (ListableF (Join (,)) annotation))) (Patch (ListableF (Term f) annotation)) -> Diff f annotation
|
|
|
|
unListableDiff diff = hoistFree (first unListableF) $ fmap unListableF <$> unListableF diff
|