1
1
mirror of https://github.com/github/semantic.git synced 2024-12-21 05:41:54 +03:00
semantic/test/Analysis/Python/Spec.hs

47 lines
1.4 KiB
Haskell

{-# LANGUAGE OverloadedLists #-}
module Analysis.Python.Spec (spec) where
import Data.Abstract.Value
import Data.Map
import SpecHelpers
spec :: Spec
spec = parallel $ do
describe "evalutes Python" $ do
it "imports" $ do
env <- environment . snd <$> evaluate "main.py"
env `shouldBe` [ ("a.foo", addr 0) -- TODO
, ("b.c.baz", addr 1)
]
it "imports with aliases" $ do
env <- environment . snd <$> evaluate "main1.py"
env `shouldBe` [ ("b.foo", addr 0)
, ("e.baz", addr 1)
]
it "imports using 'from' syntax" $ do
env <- environment . snd <$> evaluate "main2.py"
env `shouldBe` [ ("foo", addr 0)
, ("bar", addr 1)
]
it "subclasses" $ do
v <- fst <$> evaluate "subclass.py"
v `shouldBe` Right (Right (Right (Right (Right (injValue (String "\"bar\""))))))
it "handles multiple inheritance left-to-right" $ do
v <- fst <$> evaluate "multiple_inheritance.py"
v `shouldBe` Right (Right (Right (Right (Right (injValue (String "\"foo!\""))))))
where
addr = Address . Precise
fixtures = "test/fixtures/python/analysis/"
evaluate entry = evaluateFiles pythonParser (takeDirectory entry)
[ fixtures <> entry
, fixtures <> "a.py"
, fixtures <> "b/c.py"
]