2017-04-22 00:10:50 +03:00
|
|
|
module SemanticSpec where
|
|
|
|
|
2017-06-24 17:09:50 +03:00
|
|
|
import Data.Blob
|
2017-07-28 21:37:02 +03:00
|
|
|
import Data.Functor (void)
|
2017-05-30 17:33:48 +03:00
|
|
|
import Data.Functor.Both as Both
|
2017-09-09 16:18:08 +03:00
|
|
|
import Diff
|
2017-05-30 17:33:48 +03:00
|
|
|
import Language
|
|
|
|
import Patch
|
|
|
|
import Renderer
|
2017-04-22 00:10:50 +03:00
|
|
|
import Semantic
|
2017-05-30 17:33:48 +03:00
|
|
|
import Semantic.Task
|
|
|
|
import Syntax
|
2017-09-09 16:18:08 +03:00
|
|
|
import Term
|
2017-04-22 00:10:50 +03:00
|
|
|
import Test.Hspec hiding (shouldBe, shouldNotBe, shouldThrow, errorCall)
|
|
|
|
import Test.Hspec.Expectations.Pretty
|
|
|
|
|
|
|
|
spec :: Spec
|
|
|
|
spec = parallel $ do
|
2017-05-31 19:25:40 +03:00
|
|
|
describe "parseBlob" $ do
|
2017-04-22 00:10:50 +03:00
|
|
|
it "parses in the specified language" $ do
|
2017-05-31 19:25:40 +03:00
|
|
|
Just term <- runTask $ parseBlob IdentityTermRenderer methodsBlob
|
2017-09-11 22:48:58 +03:00
|
|
|
void term `shouldBe` Term (() `In` Indexed [ Term (() `In` Method [] (Term (() `In` Leaf "foo")) Nothing [] []) ])
|
2017-04-22 00:10:50 +03:00
|
|
|
|
|
|
|
it "parses line by line if not given a language" $ do
|
2017-05-31 19:25:40 +03:00
|
|
|
Just term <- runTask $ parseBlob IdentityTermRenderer methodsBlob { blobLanguage = Nothing }
|
2017-09-11 22:48:58 +03:00
|
|
|
void term `shouldBe` Term (() `In` Indexed [ Term (() `In` Leaf "def foo\n"), Term (() `In` Leaf "end\n"), Term (() `In` Leaf "") ])
|
2017-04-22 00:10:50 +03:00
|
|
|
|
2017-05-30 17:33:48 +03:00
|
|
|
it "renders with the specified renderer" $ do
|
2017-05-31 19:25:40 +03:00
|
|
|
output <- runTask $ parseBlob SExpressionTermRenderer methodsBlob
|
2017-08-24 21:46:26 +03:00
|
|
|
output `shouldBe` "(Program\n (Method\n (Empty)\n (Identifier)\n ([])))\n"
|
2017-04-22 00:10:50 +03:00
|
|
|
|
2017-05-31 19:40:27 +03:00
|
|
|
describe "diffTermPair" $ do
|
2017-06-01 18:33:12 +03:00
|
|
|
it "produces an Insert when the first blob is missing" $ do
|
2017-09-11 22:48:58 +03:00
|
|
|
result <- runTask (diffTermPair (both (emptyBlob "/foo") (sourceBlob "/foo" Nothing "")) (runBothWith replacing) (pure (Term (() `In` []))))
|
|
|
|
result `shouldBe` Diff (Patch (Insert (Term (() `In` []))))
|
2017-06-01 18:33:12 +03:00
|
|
|
|
|
|
|
it "produces a Delete when the second blob is missing" $ do
|
2017-09-11 22:48:58 +03:00
|
|
|
result <- runTask (diffTermPair (both (sourceBlob "/foo" Nothing "") (emptyBlob "/foo")) (runBothWith replacing) (pure (Term (() `In` []))))
|
|
|
|
result `shouldBe` Diff (Patch (Delete (Term (() `In` []))))
|
2017-05-30 17:33:59 +03:00
|
|
|
|
2017-04-22 00:10:50 +03:00
|
|
|
where
|
2017-06-24 17:15:31 +03:00
|
|
|
methodsBlob = Blob "def foo\nend\n" "ff7bbbe9495f61d9e1e58c597502d152bab1761e" "methods.rb" (Just defaultPlainBlob) (Just Ruby)
|