2018-03-13 20:26:28 +03:00
|
|
|
module Analysis.Go.Spec (spec) where
|
2018-03-12 23:52:50 +03:00
|
|
|
|
2018-05-10 17:07:11 +03:00
|
|
|
import Data.Abstract.Environment as Env
|
2018-05-07 00:37:44 +03:00
|
|
|
import Data.Abstract.Evaluatable (EvalError(..))
|
2018-04-24 02:47:13 +03:00
|
|
|
import qualified Data.Language as Language
|
2018-05-28 16:35:42 +03:00
|
|
|
import qualified Language.Go.Assignment as Go
|
2018-03-12 23:52:50 +03:00
|
|
|
import SpecHelpers
|
|
|
|
|
|
|
|
|
|
|
|
spec :: Spec
|
|
|
|
spec = parallel $ do
|
2018-04-02 21:18:58 +03:00
|
|
|
describe "evaluates Go" $ do
|
2018-03-12 23:52:50 +03:00
|
|
|
it "imports and wildcard imports" $ do
|
2018-06-22 22:45:42 +03:00
|
|
|
((Right [(_, env)], heap), _) <- evaluate ["main.go"]
|
2018-05-31 00:19:05 +03:00
|
|
|
Env.names env `shouldBe` [ "Bar", "Rab", "foo", "main" ]
|
2018-04-03 00:54:08 +03:00
|
|
|
|
2018-06-21 20:22:58 +03:00
|
|
|
(derefQName heap ("foo" :| []) env >>= deNamespace) `shouldBe` Just ("foo", ["New"])
|
2018-03-12 23:52:50 +03:00
|
|
|
|
|
|
|
it "imports with aliases (and side effects only)" $ do
|
2018-06-22 22:45:42 +03:00
|
|
|
((Right [(_, env)], heap), _) <- evaluate ["main1.go"]
|
2018-05-31 00:19:05 +03:00
|
|
|
Env.names env `shouldBe` [ "f", "main" ]
|
2018-04-03 00:54:08 +03:00
|
|
|
|
2018-06-21 20:22:58 +03:00
|
|
|
(derefQName heap ("f" :| []) env >>= deNamespace) `shouldBe` Just ("f", ["New"])
|
2018-03-12 23:52:50 +03:00
|
|
|
|
|
|
|
where
|
|
|
|
fixtures = "test/fixtures/go/analysis/"
|
2018-06-22 22:45:42 +03:00
|
|
|
evaluate = evalGoProject . map (fixtures <>)
|
|
|
|
evalGoProject = testEvaluating <=< evaluateProject (Proxy :: Proxy 'Language.Go) goParser Language.Go
|