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
|
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-06-25 18:51:17 +03:00
|
|
|
describe "Python" $ do
|
2018-03-10 02:16:07 +03:00
|
|
|
it "imports" $ do
|
2018-06-25 18:55:00 +03:00
|
|
|
((res@(~(Right [(_, env)])), heap), _) <- evaluate ["main.py", "a.py", "b/__init__.py", "b/c.py"]
|
|
|
|
fmap (() <$) res `shouldBe` Right [()]
|
2018-05-31 00:19:05 +03:00
|
|
|
Env.names env `shouldContain` [ "a", "b" ]
|
2018-04-02 21:07:09 +03:00
|
|
|
|
2018-06-21 20:22:58 +03:00
|
|
|
(derefQName heap ("a" :| []) env >>= deNamespace) `shouldBe` Just ("a", ["foo"])
|
|
|
|
(derefQName heap ("b" :| []) env >>= deNamespace) `shouldBe` Just ("b", ["c"])
|
|
|
|
(derefQName heap ("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-06-25 18:55:00 +03:00
|
|
|
((res@(~(Right [(_, env)])), _), _) <- evaluate ["main1.py", "a.py", "b/__init__.py", "b/c.py"]
|
|
|
|
fmap (() <$) res `shouldBe` Right [()]
|
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-06-25 18:55:00 +03:00
|
|
|
((res@(~(Right [(_, env)])), _), _) <- evaluate ["main2.py", "a.py", "b/__init__.py", "b/c.py"]
|
|
|
|
fmap (() <$) res `shouldBe` Right [()]
|
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-06-25 18:55:00 +03:00
|
|
|
((res@(~(Right [(_, env)])), heap), _) <- evaluate ["main3.py", "c/__init__.py", "c/utils.py"]
|
|
|
|
fmap (() <$) res `shouldBe` Right [()]
|
2018-05-31 00:19:05 +03:00
|
|
|
Env.names env `shouldContain` [ "utils" ]
|
2018-06-21 20:22:58 +03:00
|
|
|
(derefQName heap ("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-06-22 22:45:42 +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-06-22 22:45:42 +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-06-22 22:45:42 +03:00
|
|
|
evaluate = evalPythonProject . map (fixtures <>)
|
|
|
|
evalPythonProject = testEvaluating <=< evaluateProject (Proxy :: Proxy 'Language.Python) pythonParser Language.Python
|