1
1
mirror of https://github.com/github/semantic.git synced 2024-11-28 10:15:55 +03:00
semantic/test/Spec.hs

231 lines
11 KiB
Haskell
Raw Normal View History

2015-12-03 19:44:28 +03:00
module Main where
2015-12-03 19:38:49 +03:00
2015-12-12 00:01:40 +03:00
import Categorizable
import Diff
import Interpreter
2015-12-10 23:11:56 +03:00
import Patch
import Range
2015-12-03 19:44:42 +03:00
import Split
import Syntax
2015-12-11 07:45:05 +03:00
import Term
2015-12-10 23:11:56 +03:00
import Control.Comonad.Cofree
2015-12-11 23:03:19 +03:00
import Control.Monad
2015-12-11 17:14:54 +03:00
import Control.Monad.Free hiding (unfold)
2015-12-11 19:15:21 +03:00
import qualified Data.List as List
2015-12-11 08:32:59 +03:00
import qualified Data.Map as Map
import qualified Data.Set as Set
import GHC.Generics
2015-12-03 19:38:49 +03:00
import Test.Hspec
2015-12-11 07:59:19 +03:00
import Test.Hspec.QuickCheck
2015-12-11 22:05:46 +03:00
import Test.QuickCheck hiding (Fixed)
2015-12-03 19:38:49 +03:00
newtype ArbitraryTerm a annotation = ArbitraryTerm (annotation, (Syntax a (ArbitraryTerm a annotation)))
deriving (Show, Eq, Generic)
2015-12-11 07:45:05 +03:00
2015-12-11 17:14:54 +03:00
unTerm :: ArbitraryTerm a annotation -> Term a annotation
unTerm arbitraryTerm = unfold unpack arbitraryTerm
where unpack (ArbitraryTerm (annotation, syntax)) = (annotation, syntax)
instance (Eq a, Eq annotation, Arbitrary a, Arbitrary annotation) => Arbitrary (ArbitraryTerm a annotation) where
arbitrary = sized (\ x -> boundedTerm x x) -- first indicates the square of the max length of lists, second indicates the cube of the max depth of the tree
where boundedTerm m n = ArbitraryTerm <$> ((,) <$> arbitrary <*> boundedSyntax m n)
boundedSyntax _ n | n <= 0 = liftM Leaf arbitrary
boundedSyntax m n = frequency
2015-12-11 23:47:23 +03:00
[ (6, liftM Leaf arbitrary),
(1, liftM Indexed $ take n <$> listOf (boundedTerm (div m 2) (div n 3))),
(1, liftM Fixed $ take n <$> listOf (boundedTerm (div m 2) (div n 3))),
(1, liftM (Keyed . Map.fromList) $ take n <$> listOf (arbitrary >>= (\x -> ((,) x) <$> boundedTerm (div m 2) (div n 3)))) ]
2015-12-11 23:01:44 +03:00
shrink term@(ArbitraryTerm (annotation, syntax)) = (++) (subterms term) $ filter (/= term) $
ArbitraryTerm <$> ((,) <$> shrink annotation <*> case syntax of
Leaf a -> Leaf <$> shrink a
Indexed i -> Indexed <$> (List.subsequences i >>= recursivelyShrink)
Fixed f -> Fixed <$> (List.subsequences f >>= recursivelyShrink)
Keyed k -> Keyed . Map.fromList <$> (List.subsequences (Map.toList k) >>= recursivelyShrink))
2015-12-12 00:03:04 +03:00
newtype ArbitraryDiff a annotation = ArbitraryDiff (ArbitraryTerm a annotation, ArbitraryTerm a annotation)
deriving (Show, Eq)
2015-12-12 00:04:41 +03:00
unDiff :: (Eq a, Eq annotation, Categorizable annotation) => ArbitraryDiff a annotation -> Diff a annotation
unDiff (ArbitraryDiff (a, b)) = interpret comparable (unTerm a) (unTerm b)
2015-12-12 00:06:14 +03:00
instance (Eq a, Eq annotation, Categorizable annotation, Arbitrary a, Arbitrary annotation) => Arbitrary (ArbitraryDiff a annotation) where
arbitrary = ArbitraryDiff <$> ((,) <$> arbitrary <*> arbitrary)
instance (Eq a, Eq annotation, Categorizable annotation, Arbitrary a, Arbitrary annotation) => Arbitrary (Diff a annotation) where
arbitrary = interpret comparable <$> (unTerm <$> arbitrary) <*> (unTerm <$> arbitrary)
2015-12-12 00:01:28 +03:00
data CategorySet = A | B | C | D deriving (Eq, Show)
2015-12-12 00:01:40 +03:00
instance Categorizable CategorySet where
categories A = Set.fromList [ "a" ]
categories B = Set.fromList [ "b" ]
categories C = Set.fromList [ "c" ]
categories D = Set.fromList [ "d" ]
2015-12-12 00:01:46 +03:00
instance Arbitrary CategorySet where
arbitrary = elements [ A, B, C, D ]
2015-12-11 08:19:07 +03:00
instance Arbitrary HTML where
arbitrary = oneof [
Text <$> arbitrary,
Span <$> arbitrary <*> arbitrary,
const Break <$> (arbitrary :: Gen ()) ]
2015-12-11 08:19:48 +03:00
instance Arbitrary Line where
arbitrary = oneof [
Line <$> arbitrary,
const EmptyLine <$> (arbitrary :: Gen ()) ]
2015-12-11 08:20:25 +03:00
instance Arbitrary Row where
arbitrary = oneof [
Row <$> arbitrary <*> arbitrary ]
2015-11-18 01:44:16 +03:00
main :: IO ()
2015-12-03 19:44:42 +03:00
main = hspec $ do
2015-12-11 07:55:31 +03:00
describe "Term" $ do
2015-12-11 07:59:19 +03:00
prop "equality is reflexive" $
\ a -> unTerm a == unTerm (a :: ArbitraryTerm String ())
2015-12-11 07:55:31 +03:00
2015-12-12 00:02:08 +03:00
describe "Diff" $ do
prop "equality is reflexive" $
\ a -> a == (a :: Diff String CategorySet)
describe "annotatedToRows" $ do
it "outputs one row for single-line unchanged leaves" $
2015-12-08 20:35:40 +03:00
annotatedToRows (unchanged "a" "leaf" (Leaf "")) "a" "a" `shouldBe` ([ Row (Line [ span "a" ]) (Line [ span "a" ]) ], (Range 0 1, Range 0 1))
it "outputs one row for single-line empty unchanged indexed nodes" $
2015-12-08 20:35:40 +03:00
annotatedToRows (unchanged "[]" "branch" (Indexed [])) "[]" "[]" `shouldBe` ([ Row (Line [ Ul (Just "category-branch") [ Text "[]" ] ]) (Line [ Ul (Just "category-branch") [ Text "[]" ] ]) ], (Range 0 2, Range 0 2))
it "outputs one row for single-line non-empty unchanged indexed nodes" $
annotatedToRows (unchanged "[ a, b ]" "branch" (Indexed [
2015-12-04 19:37:01 +03:00
Free . offsetAnnotated 2 2 $ unchanged "a" "leaf" (Leaf ""),
Free . offsetAnnotated 5 5 $ unchanged "b" "leaf" (Leaf "")
2015-12-08 20:35:40 +03:00
])) "[ a, b ]" "[ a, b ]" `shouldBe` ([ Row (Line [ Ul (Just "category-branch") [ Text "[ ", span "a", Text ", ", span "b", Text " ]" ] ]) (Line [ Ul (Just "category-branch") [ Text "[ ", span "a", Text ", ", span "b", Text " ]" ] ]) ], (Range 0 8, Range 0 8))
2015-12-04 19:37:01 +03:00
it "outputs one row for single-line non-empty formatted indexed nodes" $
annotatedToRows (formatted "[ a, b ]" "[ a, b ]" "branch" (Indexed [
Free . offsetAnnotated 2 2 $ unchanged "a" "leaf" (Leaf ""),
Free . offsetAnnotated 5 6 $ unchanged "b" "leaf" (Leaf "")
2015-12-08 20:35:40 +03:00
])) "[ a, b ]" "[ a, b ]" `shouldBe` ([ Row (Line [ Ul (Just "category-branch") [ Text "[ ", span "a", Text ", ", span "b", Text " ]" ] ]) (Line [ Ul (Just "category-branch") [ Text "[ ", span "a", Text ", ", span "b", Text " ]" ] ]) ], (Range 0 8, Range 0 9))
2015-12-04 19:37:01 +03:00
2015-12-04 20:02:41 +03:00
it "outputs two rows for two-line non-empty unchanged indexed nodes" $
annotatedToRows (unchanged "[ a,\nb ]" "branch" (Indexed [
Free . offsetAnnotated 2 2 $ unchanged "a" "leaf" (Leaf ""),
Free . offsetAnnotated 5 5 $ unchanged "b" "leaf" (Leaf "")
])) "[ a,\nb ]" "[ a,\nb ]" `shouldBe`
([
2015-12-10 22:21:50 +03:00
Row (Line [ Ul (Just "category-branch") [ Text "[ ", span "a", Text ",", Break ] ])
(Line [ Ul (Just "category-branch") [ Text "[ ", span "a", Text ",", Break] ]),
Row (Line [ Ul (Just "category-branch") [ span "b", Text " ]" ] ])
(Line [ Ul (Just "category-branch") [ span "b", Text " ]" ] ])
2015-12-04 20:02:41 +03:00
], (Range 0 8, Range 0 8))
2015-12-04 22:18:53 +03:00
it "outputs two rows for two-line non-empty formatted indexed nodes" $
annotatedToRows (formatted "[ a,\nb ]" "[\na,\nb ]" "branch" (Indexed [
Free . offsetAnnotated 2 2 $ unchanged "a" "leaf" (Leaf ""),
Free . offsetAnnotated 5 5 $ unchanged "b" "leaf" (Leaf "")
])) "[ a,\nb ]" "[\na,\nb ]" `shouldBe`
([
2015-12-10 22:21:50 +03:00
Row (Line [ Ul (Just "category-branch") [ Text "[ ", span "a", Text ",", Break ] ])
(Line [ Ul (Just "category-branch") [ Text "[", Break ] ]),
2015-12-08 20:35:40 +03:00
Row EmptyLine
2015-12-10 22:21:50 +03:00
(Line [ Ul (Just "category-branch") [ span "a", Text ",", Break ] ]),
Row (Line [ Ul (Just "category-branch") [ span "b", Text " ]" ] ])
(Line [ Ul (Just "category-branch") [ span "b", Text " ]" ] ])
2015-12-04 22:18:53 +03:00
], (Range 0 8, Range 0 8))
it "" $
let (sourceA, sourceB) = ("[\na\n,\nb]", "[a,b]") in
annotatedToRows (formatted sourceA sourceB "branch" (Indexed [
Free . offsetAnnotated 2 1 $ unchanged "a" "leaf" (Leaf ""),
2015-12-09 23:54:31 +03:00
Free . offsetAnnotated 6 3 $ unchanged "b" "leaf" (Leaf "")
])) sourceA sourceB `shouldBe`
([
2015-12-10 22:21:50 +03:00
Row (Line [ Ul (Just "category-branch") [ Text "[", Break ] ])
(Line [ Ul (Just "category-branch") [ Text "[", span "a", Text ",", span "b", Text "]" ] ]),
2015-12-10 22:21:50 +03:00
Row (Line [ Ul (Just "category-branch") [ span "a", Break ] ])
EmptyLine,
2015-12-10 22:21:50 +03:00
Row (Line [ Ul (Just "category-branch") [ Text ",", Break ] ])
EmptyLine,
2015-12-10 22:21:50 +03:00
Row (Line [ Ul (Just "category-branch") [ span "b", Text "]" ] ])
EmptyLine
], (Range 0 8, Range 0 5))
2015-12-10 23:11:56 +03:00
it "should split multi-line deletions across multiple rows" $
let (sourceA, sourceB) = ("/*\n*/\na", "a") in
annotatedToRows (formatted sourceA sourceB "branch" (Indexed [
2015-12-11 00:47:10 +03:00
Pure . Delete $ (Info (Range 0 5) (Range 0 2) (Set.fromList ["leaf"]) :< (Leaf "")),
2015-12-10 23:11:56 +03:00
Free . offsetAnnotated 6 0 $ unchanged "a" "leaf" (Leaf "")
])) sourceA sourceB `shouldBe`
([
Row (Line [ Ul (Just "category-branch") [ Div (Just "delete") [ span "/*", Break ] ] ]) EmptyLine,
Row (Line [ Ul (Just "category-branch") [ Div (Just "delete") [ span "*/" ], Break ] ]) EmptyLine,
Row (Line [ Ul (Just "category-branch") [ span "a" ] ]) (Line [ Ul (Just "category-branch") [ span "a" ] ])
], (Range 0 7, Range 0 1))
describe "adjoin2" $ do
prop "is idempotent for additions of empty rows" $
\ a -> adjoin2 (adjoin2 [ a ] mempty) mempty == (adjoin2 [ a ] mempty)
prop "is identity on top of empty rows" $
\ a -> adjoin2 [ mempty ] a == [ a ]
prop "is identity on top of no rows" $
\ a -> adjoin2 [] a == [ a ]
2015-12-10 22:26:49 +03:00
it "appends appends HTML onto incomplete lines" $
2015-12-10 22:21:50 +03:00
adjoin2 [ rightRowText "[" ] (rightRowText "a") `shouldBe`
[ rightRow [ Text "[", Text "a" ] ]
2015-12-09 22:47:10 +03:00
2015-12-10 22:26:49 +03:00
it "does not append HTML onto complete lines" $
2015-12-10 19:35:46 +03:00
adjoin2 [ leftRow [ Break ] ] (leftRowText ",") `shouldBe`
2015-12-10 22:21:50 +03:00
[ leftRowText ",", leftRow [ Break ] ]
2015-12-09 22:47:10 +03:00
2015-12-10 22:26:49 +03:00
it "appends breaks onto incomplete lines" $
2015-12-10 19:35:46 +03:00
adjoin2 [ leftRowText "a" ] (leftRow [ Break ]) `shouldBe`
2015-12-10 22:21:50 +03:00
[ leftRow [ Text "a", Break ] ]
2015-12-09 22:56:26 +03:00
2015-12-10 22:21:50 +03:00
it "does not promote HTML through empty lines onto complete lines" $
2015-12-10 19:35:46 +03:00
adjoin2 [ rightRowText "b", leftRow [ Break ] ] (leftRowText "a") `shouldBe`
2015-12-10 22:21:50 +03:00
[ leftRowText "a", rightRowText "b", leftRow [ Break ] ]
2015-12-10 01:38:40 +03:00
2015-12-10 22:21:50 +03:00
it "promotes breaks through empty lines onto incomplete lines" $
2015-12-10 19:35:46 +03:00
adjoin2 [ rightRowText "c", rowText "a" "b" ] (leftRow [ Break ]) `shouldBe`
2015-12-10 22:21:50 +03:00
[ rightRowText "c", Row (Line [ Text "a", Break ]) (Line [ Text "b" ]) ]
2015-12-10 23:47:34 +03:00
describe "termToLines" $ do
it "splits multi-line terms into multiple lines" $
termToLines (Info (Range 0 5) (Range 0 2) (Set.singleton "leaf") :< (Leaf "")) "/*\n*/"
2015-12-10 23:47:34 +03:00
`shouldBe`
([
Line [ span "/*", Break ],
Line [ span "*/" ]
], Range 0 5)
describe "openLine" $ do
2015-12-11 00:30:52 +03:00
it "should produce the earliest non-empty line in a list, if open" $
openLine [
Line [ Div (Just "delete") [ span "*/" ] ],
Line [ Div (Just "delete") [ span " * Debugging", Break ] ],
Line [ Div (Just "delete") [ span "/*", Break ] ]
] `shouldBe` (Just $ Line [ Div (Just "delete") [ span "*/" ] ])
it "should return Nothing if the earliest non-empty line is closed" $
openLine [
Line [ Div (Just "delete") [ span " * Debugging", Break ] ]
] `shouldBe` Nothing
where
2015-12-10 01:29:25 +03:00
rightRowText text = rightRow [ Text text ]
rightRow xs = Row EmptyLine (Line xs)
leftRowText text = leftRow [ Text text ]
leftRow xs = Row (Line xs) EmptyLine
rowText a b = Row (Line [ Text a ]) (Line [ Text b ])
info source category = Info (totalRange source) (Range 0 0) (Set.fromList [ category ])
2015-12-04 19:37:01 +03:00
unchanged source category = formatted source source category
formatted source1 source2 category = Annotated (info source1 category, info source2 category)
2015-12-04 18:26:15 +03:00
offsetInfo by (Info (Range start end) lineRange categories) = Info (Range (start + by) (end + by)) lineRange categories
2015-12-04 19:37:01 +03:00
offsetAnnotated by1 by2 (Annotated (left, right) syntax) = Annotated (offsetInfo by1 left, offsetInfo by2 right) syntax
2015-12-07 22:39:00 +03:00
span = Span (Just "category-leaf")