2018-04-02 21:07:09 +03:00
|
|
|
{-# LANGUAGE OverloadedLists, OverloadedStrings #-}
|
2018-03-13 20:26:28 +03:00
|
|
|
module Analysis.Python.Spec (spec) where
|
2018-03-10 02:01:29 +03:00
|
|
|
|
2018-03-13 20:26:28 +03:00
|
|
|
import Data.Abstract.Value
|
|
|
|
import Data.Map
|
2018-03-13 20:59:06 +03:00
|
|
|
|
2018-03-10 02:01:29 +03:00
|
|
|
import SpecHelpers
|
|
|
|
|
2018-03-10 03:24:23 +03:00
|
|
|
|
2018-03-10 02:01:29 +03:00
|
|
|
spec :: Spec
|
|
|
|
spec = parallel $ do
|
2018-04-02 21:07:09 +03:00
|
|
|
describe "evaluates Python" $ do
|
2018-03-10 02:16:07 +03:00
|
|
|
it "imports" $ do
|
2018-04-02 21:07:09 +03:00
|
|
|
res <- snd <$> evaluate "main.py"
|
|
|
|
environment res `shouldBe` [ ("a", addr 0)
|
|
|
|
, ("b", addr 2)
|
|
|
|
]
|
|
|
|
|
|
|
|
heapLookup (Address (Precise 0)) (heap res) `shouldBe` ns "a" [ ("foo", addr 1) ]
|
|
|
|
heapLookup (Address (Precise 2)) (heap res) `shouldBe` ns "b" [ ("c", addr 3) ]
|
|
|
|
heapLookup (Address (Precise 3)) (heap res) `shouldBe` ns "c" [ ("baz", addr 4) ]
|
2018-03-10 02:01:29 +03:00
|
|
|
|
2018-03-10 02:16:07 +03:00
|
|
|
it "imports with aliases" $ do
|
2018-03-27 22:23:26 +03:00
|
|
|
env <- environment . snd <$> evaluate "main1.py"
|
2018-04-02 21:07:09 +03:00
|
|
|
env `shouldBe` [ ("b", addr 0)
|
|
|
|
, ("e", addr 2)
|
2018-03-23 20:11:29 +03:00
|
|
|
]
|
2018-03-10 02:16:07 +03:00
|
|
|
|
|
|
|
it "imports using 'from' syntax" $ do
|
2018-03-27 22:23:26 +03:00
|
|
|
env <- environment . snd <$> evaluate "main2.py"
|
2018-04-02 20:40:52 +03:00
|
|
|
env `shouldBe` [ ("foo", addr 0)
|
|
|
|
, ("bar", addr 1)
|
2018-03-23 20:11:29 +03:00
|
|
|
]
|
2018-03-10 02:16:07 +03:00
|
|
|
|
2018-03-23 18:01:13 +03:00
|
|
|
it "subclasses" $ do
|
2018-03-27 22:23:26 +03:00
|
|
|
v <- fst <$> evaluate "subclass.py"
|
2018-03-28 19:58:12 +03:00
|
|
|
v `shouldBe` Right (Right (Right (Right (Right (injValue (String "\"bar\""))))))
|
2018-03-23 18:01:13 +03:00
|
|
|
|
|
|
|
it "handles multiple inheritance left-to-right" $ do
|
2018-03-27 22:23:26 +03:00
|
|
|
v <- fst <$> evaluate "multiple_inheritance.py"
|
2018-03-28 19:58:12 +03:00
|
|
|
v `shouldBe` Right (Right (Right (Right (Right (injValue (String "\"foo!\""))))))
|
2018-03-23 18:01:13 +03:00
|
|
|
|
2018-03-10 02:01:29 +03:00
|
|
|
where
|
2018-04-02 21:07:09 +03:00
|
|
|
ns n = Just . Latest . Just . injValue . Namespace n
|
2018-03-10 02:01:29 +03:00
|
|
|
addr = Address . Precise
|
2018-03-10 03:24:23 +03:00
|
|
|
fixtures = "test/fixtures/python/analysis/"
|
2018-04-02 21:07:09 +03:00
|
|
|
evaluate entry = evalPythonProject (fixtures <> entry)
|