2018-03-13 20:26:28 +03:00
|
|
|
module Analysis.Python.Spec (spec) where
|
2018-03-10 02:01:29 +03:00
|
|
|
|
2018-05-10 16:59:54 +03:00
|
|
|
import Data.Abstract.Environment as Env
|
2018-05-07 00:37:44 +03:00
|
|
|
import Data.Abstract.Evaluatable (EvalError(..))
|
2018-03-13 20:26:28 +03:00
|
|
|
import Data.Abstract.Value
|
|
|
|
import Data.Map
|
2018-04-21 17:22:09 +03:00
|
|
|
import qualified Language.Python.Assignment as Python
|
2018-04-24 02:47:13 +03:00
|
|
|
import qualified Data.Language as Language
|
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-05-31 00:19:05 +03:00
|
|
|
((Right [(_, env)], state), _) <- evaluate "main.py"
|
|
|
|
Env.names env `shouldContain` [ "a", "b" ]
|
2018-04-02 21:07:09 +03:00
|
|
|
|
2018-05-31 00:19:05 +03:00
|
|
|
(derefQName (heap state) ("a" :| []) env >>= deNamespace) `shouldBe` Just ("a", ["foo"])
|
|
|
|
(derefQName (heap state) ("b" :| []) env >>= deNamespace) `shouldBe` Just ("b", ["c"])
|
|
|
|
(derefQName (heap state) ("b" :| ["c"]) env >>= deNamespace) `shouldBe` Just ("c", ["baz"])
|
2018-03-10 02:01:29 +03:00
|
|
|
|
2018-03-10 02:16:07 +03:00
|
|
|
it "imports with aliases" $ do
|
2018-05-31 00:19:05 +03:00
|
|
|
((Right [(_, env)], _), _) <- evaluate "main1.py"
|
2018-05-10 17:59:38 +03:00
|
|
|
Env.names env `shouldContain` [ "b", "e" ]
|
2018-03-10 02:16:07 +03:00
|
|
|
|
|
|
|
it "imports using 'from' syntax" $ do
|
2018-05-31 00:19:05 +03:00
|
|
|
((Right [(_, env)], _), _) <- evaluate "main2.py"
|
2018-05-10 17:59:38 +03:00
|
|
|
Env.names env `shouldContain` [ "bar", "foo" ]
|
2018-03-10 02:16:07 +03:00
|
|
|
|
2018-05-15 21:26:16 +03:00
|
|
|
it "imports with relative syntax" $ do
|
2018-05-31 00:19:05 +03:00
|
|
|
((Right [(_, env)], state), _) <- evaluate "main3.py"
|
|
|
|
Env.names env `shouldContain` [ "utils" ]
|
|
|
|
(derefQName (heap state) ("utils" :| []) env >>= deNamespace) `shouldBe` Just ("utils", ["to_s"])
|
2018-05-15 21:26:16 +03:00
|
|
|
|
2018-03-23 18:01:13 +03:00
|
|
|
it "subclasses" $ do
|
2018-05-10 17:58:24 +03:00
|
|
|
((res, _), _) <- evaluate "subclass.py"
|
2018-05-31 00:19:05 +03:00
|
|
|
fmap fst <$> res `shouldBe` Right [String "\"bar\""]
|
2018-03-23 18:01:13 +03:00
|
|
|
|
|
|
|
it "handles multiple inheritance left-to-right" $ do
|
2018-05-10 17:58:24 +03:00
|
|
|
((res, _), _) <- evaluate "multiple_inheritance.py"
|
2018-05-31 00:19:05 +03:00
|
|
|
fmap fst <$> res `shouldBe` Right [String "\"foo!\""]
|
2018-03-23 18:01:13 +03:00
|
|
|
|
2018-03-10 02:01:29 +03:00
|
|
|
where
|
2018-05-28 15:54:33 +03:00
|
|
|
ns n = Just . Latest . Last . Just . Namespace n
|
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)
|
2018-06-18 18:10:44 +03:00
|
|
|
evalPythonProject path = testEvaluating <$> evaluateProject (Proxy :: Proxy 'Language.Python) pythonParser Language.Python path
|