1
1
mirror of https://github.com/github/semantic.git synced 2024-12-19 04:41:47 +03:00
semantic/test/Analysis/Go/Spec.hs

34 lines
1.5 KiB
Haskell
Raw Normal View History

module Analysis.Go.Spec (spec) where
2018-03-12 23:52:50 +03:00
import Data.Abstract.Environment as Env
2018-05-07 00:37:44 +03:00
import Data.Abstract.Evaluatable (EvalError(..))
2018-06-26 00:38:52 +03:00
import qualified Data.Abstract.ModuleTable as ModuleTable
2018-04-24 02:47:13 +03:00
import qualified Data.Language as Language
import qualified Language.Go.Assignment as Go
2018-03-12 23:52:50 +03:00
import SpecHelpers
spec :: TaskConfig -> Spec
spec config = parallel $ do
2018-06-25 18:55:54 +03:00
describe "Go" $ do
2018-03-12 23:52:50 +03:00
it "imports and wildcard imports" $ do
(_, (heap, res)) <- evaluate ["main.go", "foo/foo.go", "bar/bar.go", "bar/rab.go"]
2018-06-26 00:38:52 +03:00
case ModuleTable.lookup "main.go" <$> res of
Right (Just (Module _ (env, addr) :| [])) -> do
2018-06-26 00:38:52 +03:00
Env.names env `shouldBe` [ "Bar", "Rab", "foo", "main" ]
(derefQName heap ("foo" :| []) env >>= deNamespace heap) `shouldBe` Just ("foo", ["New"])
2018-06-26 00:38:52 +03:00
other -> expectationFailure (show other)
2018-03-12 23:52:50 +03:00
it "imports with aliases (and side effects only)" $ do
(_, (heap, res)) <- evaluate ["main1.go", "foo/foo.go", "bar/bar.go", "bar/rab.go"]
2018-06-26 00:38:52 +03:00
case ModuleTable.lookup "main1.go" <$> res of
Right (Just (Module _ (env, addr) :| [])) -> do
2018-06-26 00:38:52 +03:00
Env.names env `shouldBe` [ "f", "main" ]
(derefQName heap ("f" :| []) env >>= deNamespace heap) `shouldBe` Just ("f", ["New"])
2018-06-26 00:38:52 +03:00
other -> expectationFailure (show other)
2018-03-12 23:52:50 +03:00
where
fixtures = "test/fixtures/go/analysis/"
evaluate = evalGoProject . map (fixtures <>)
2018-08-02 17:24:55 +03:00
evalGoProject = testEvaluating <=< evaluateProject' config (Proxy :: Proxy 'Language.Go) goParser