2018-03-20 00:53:55 +03:00
|
|
|
{-# LANGUAGE OverloadedLists #-}
|
2018-03-13 20:26:28 +03:00
|
|
|
module Analysis.Go.Spec (spec) where
|
2018-03-12 23:52:50 +03:00
|
|
|
|
2018-04-21 17:22:09 +03:00
|
|
|
import Data.Abstract.Evaluatable (EvalError(..), runAnalysis)
|
|
|
|
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-04-03 00:54:08 +03:00
|
|
|
res <- snd <$> evaluate "main.go"
|
|
|
|
environment res `shouldBe` [ ("foo", addr 0)
|
|
|
|
, ("Bar", addr 2)
|
|
|
|
, ("Rab", addr 3)
|
|
|
|
, ("main", addr 4)
|
|
|
|
]
|
|
|
|
|
|
|
|
heapLookup (Address (Precise 0)) (heap res) `shouldBe` ns "foo" [ ("New", addr 1) ]
|
2018-03-12 23:52:50 +03:00
|
|
|
|
|
|
|
it "imports with aliases (and side effects only)" $ do
|
2018-04-03 00:54:08 +03:00
|
|
|
res <- snd <$> evaluate "main1.go"
|
|
|
|
environment res `shouldBe` [ ("f", addr 0)
|
|
|
|
, ("main", addr 4) -- addr 4 is due to side effects of eval'ing `import _ "./bar"` which used addr 2 & 3. f defines New which got addr 1.
|
|
|
|
]
|
|
|
|
|
|
|
|
heapLookup (Address (Precise 0)) (heap res) `shouldBe` ns "f" [ ("New", addr 1) ]
|
2018-03-12 23:52:50 +03:00
|
|
|
|
|
|
|
where
|
|
|
|
fixtures = "test/fixtures/go/analysis/"
|
2018-04-03 00:54:08 +03:00
|
|
|
evaluate entry = evalGoProject (fixtures <> entry)
|
2018-04-22 17:47:59 +03:00
|
|
|
evalGoProject path = runAnalysis @(TestEvaluating Go.Term) <$> evaluateProject goParser Nothing path
|