1
1
mirror of https://github.com/github/semantic.git synced 2024-12-22 22:31:36 +03:00
semantic/test/SemanticSpec.hs

30 lines
1.1 KiB
Haskell
Raw Normal View History

module SemanticSpec where
import Prologue
import Semantic
import Test.Hspec hiding (shouldBe, shouldNotBe, shouldThrow, errorCall)
import Test.Hspec.Expectations.Pretty
import Syntax
import Renderer
import Renderer.SExpression
import Source
spec :: Spec
spec = parallel $ do
describe "parseBlob" $ do
it "parses in the specified language" $ do
term <- parseBlob methodsBlob
void term `shouldBe` cofree (() :< Indexed [ cofree (() :< Method [] (cofree (() :< Leaf "foo")) Nothing [] []) ])
it "parses line by line if not given a language" $ do
term <- parseBlob methodsBlob { path = "methods" }
void term `shouldBe` cofree (() :< Indexed [ cofree (() :< Leaf "def foo\n"), cofree (() :< Leaf "end\n"), cofree (() :< Leaf "") ])
describe "parseBlobs" $ do
it "renders to ByteString output" $ do
output <- parseBlobs (SExpressionParseTreeRenderer TreeOnly) [methodsBlob]
output `shouldBe` "(Program\n (Method\n (Identifier)))"
where
methodsBlob = SourceBlob (Source "def foo\nend\n") "ff7bbbe9495f61d9e1e58c597502d152bab1761e" "methods.rb" (Just defaultPlainBlob)