2018-03-13 21:10:50 +03:00
|
|
|
module Semantic.Spec (spec) where
|
2017-04-22 00:10:50 +03:00
|
|
|
|
2017-09-27 19:41:41 +03:00
|
|
|
import Data.Diff
|
2017-09-27 19:29:07 +03:00
|
|
|
import Data.Patch
|
2019-02-12 23:49:34 +03:00
|
|
|
import Semantic.Api hiding (Blob)
|
2019-06-06 05:07:48 +03:00
|
|
|
import Semantic.Git
|
2017-09-29 22:09:58 +03:00
|
|
|
import System.Exit
|
2018-03-13 21:10:50 +03:00
|
|
|
|
|
|
|
import SpecHelpers
|
|
|
|
|
2019-05-22 05:28:32 +03:00
|
|
|
-- we need some lenses here, oof
|
|
|
|
setBlobLanguage :: Language -> Blob -> Blob
|
2019-05-22 05:58:25 +03:00
|
|
|
setBlobLanguage lang b = b { blobFile = (blobFile b) { fileLanguage = lang }}
|
2017-04-22 00:10:50 +03:00
|
|
|
|
|
|
|
spec :: Spec
|
|
|
|
spec = parallel $ do
|
2017-05-31 19:25:40 +03:00
|
|
|
describe "parseBlob" $ do
|
2018-08-30 22:51:29 +03:00
|
|
|
it "returns error if given an unknown language (json)" $ do
|
2019-05-22 05:28:32 +03:00
|
|
|
output <- fmap runBuilder . runTaskOrDie $ parseTermBuilder TermJSONTree [ setBlobLanguage Unknown methodsBlob ]
|
2018-11-13 22:02:23 +03:00
|
|
|
output `shouldBe` "{\"trees\":[{\"path\":\"methods.rb\",\"error\":\"NoLanguageForBlob \\\"methods.rb\\\"\",\"language\":\"Unknown\"}]}\n"
|
2018-08-30 22:51:29 +03:00
|
|
|
|
2018-09-25 22:04:58 +03:00
|
|
|
it "throws if given an unknown language for sexpression output" $ do
|
2019-05-22 05:28:32 +03:00
|
|
|
runTaskOrDie (parseTermBuilder TermSExpression [setBlobLanguage Unknown methodsBlob]) `shouldThrow` (== ExitFailure 1)
|
2017-04-22 00:10:50 +03:00
|
|
|
|
2017-05-30 17:33:48 +03:00
|
|
|
it "renders with the specified renderer" $ do
|
2019-02-02 02:04:23 +03:00
|
|
|
output <- fmap runBuilder . runTaskOrDie $ parseTermBuilder TermSExpression [methodsBlob]
|
2018-06-01 21:44:03 +03:00
|
|
|
output `shouldBe` "(Statements\n (Method\n (Empty)\n (Identifier)\n (Statements)))\n"
|
2019-06-06 05:07:48 +03:00
|
|
|
|
|
|
|
describe "gitParsing" $ do
|
|
|
|
it "parses a git output string" $ do
|
|
|
|
let input = "100644 tree ThisIsTheOid\t/this/is/the/path"
|
|
|
|
let expected = TreeEntry NormalMode TreeObject (OID "ThisIsTheOid") "/this/is/the/path"
|
|
|
|
parseEntry input `shouldBe` expected
|
|
|
|
|
|
|
|
it "parses nonsense into a default value" $ do
|
|
|
|
let input = "iel jgh\nf2 8i4p\r8f2y4fpoxin u3y2 unz"
|
|
|
|
let expected = TreeEntry OtherMode OtherObjectType (OID mempty) mempty
|
|
|
|
parseEntry input `shouldBe` expected
|
|
|
|
|
|
|
|
it "parses many outputs separated by \\NUL" $ do
|
|
|
|
let input = "100644 tree ThisIsTheOid\t/this/is/the/path\NULiel jgh\nf2 8i4p\r8f2y4fpoxin u3y2 unz\NUL120000 blob 17776\t/dev/urandom"
|
|
|
|
let expected = [ TreeEntry NormalMode TreeObject (OID "ThisIsTheOid") "/this/is/the/path", TreeEntry OtherMode OtherObjectType (OID mempty) mempty, TreeEntry SymlinkMode BlobObject (OID "17776") "/dev/urandom"]
|
|
|
|
parseEntries input `shouldBe` expected
|
|
|
|
|
2017-04-22 00:10:50 +03:00
|
|
|
where
|
2019-05-24 18:52:35 +03:00
|
|
|
methodsBlob = makeBlob "def foo\nend\n" "methods.rb" Ruby mempty
|