1
1
mirror of https://github.com/github/semantic.git synced 2024-12-19 21:01:35 +03:00
semantic/test/Analysis/Ruby/Spec.hs

105 lines
5.2 KiB
Haskell
Raw Normal View History

{-# OPTIONS_GHC -O0 #-}
2019-06-16 14:00:47 +03:00
{-# LANGUAGE ImplicitParams #-}
2018-03-14 02:19:26 +03:00
module Analysis.Ruby.Spec (spec) where
2019-06-12 19:52:11 +03:00
import Control.Abstract (Declaration (..), ScopeError (..))
import Control.Effect.Resumable (SomeError (..))
import Data.Abstract.Evaluatable
2018-06-26 00:28:35 +03:00
import qualified Data.Abstract.ModuleTable as ModuleTable
import Data.Abstract.Number as Number
import Data.Abstract.Value.Concrete as Value
2018-04-24 02:47:13 +03:00
import qualified Data.Language as Language
import Data.Sum
2018-03-14 02:19:26 +03:00
import SpecHelpers
spec :: (?session :: TaskSession) => Spec
spec = parallel $ do
describe "Ruby" $ do
2018-06-26 00:28:35 +03:00
it "evaluates require_relative" $ do
(scopeGraph, (heap, res)) <- evaluate ["main.rb", "foo.rb"]
2018-06-26 00:28:35 +03:00
case ModuleTable.lookup "main.rb" <$> res of
Right (Just (Module _ (scopeAndFrame, value))) -> do
2018-12-07 23:23:03 +03:00
value `shouldBe` Value.Integer (Number.Integer 1)
() <$ SpecHelpers.lookupDeclaration "foo" scopeAndFrame heap scopeGraph `shouldBe` Just ()
2018-06-26 00:28:35 +03:00
other -> expectationFailure (show other)
it "evaluates load" $ do
2018-11-29 03:59:05 +03:00
(scopeGraph, (heap, res)) <- evaluate ["load.rb", "foo.rb"]
2018-06-26 00:28:35 +03:00
case ModuleTable.lookup "load.rb" <$> res of
Right (Just (Module _ (scopeAndFrame, value))) -> do
2018-12-07 23:23:03 +03:00
value `shouldBe` Value.Integer (Number.Integer 1)
() <$ SpecHelpers.lookupDeclaration "foo" scopeAndFrame heap scopeGraph `shouldBe` Just ()
2018-06-26 00:28:35 +03:00
other -> expectationFailure (show other)
it "evaluates load with wrapper" $ do
2018-11-29 03:59:05 +03:00
(_, (_, res)) <- evaluate ["load-wrap.rb", "foo.rb"]
2019-03-28 01:57:55 +03:00
res `shouldBe` Left (SomeError (inject @(BaseError (ScopeError Precise)) (BaseError (ModuleInfo "load-wrap.rb" Language.Ruby mempty) (Span (Pos 3 1) (Pos 3 7)) (LookupPathError (Declaration "foo")))))
2018-06-26 00:28:35 +03:00
it "evaluates subclass" $ do
2018-11-29 03:59:05 +03:00
(scopeGraph, (heap, res)) <- evaluate ["subclass.rb"]
2018-06-26 00:28:35 +03:00
case ModuleTable.lookup "subclass.rb" <$> res of
Right (Just (Module _ (scopeAndFrame, value))) -> do
2018-12-07 23:23:03 +03:00
value `shouldBe` String "\"<bar>\""
() <$ SpecHelpers.lookupDeclaration "Bar" scopeAndFrame heap scopeGraph `shouldBe` Just ()
() <$ SpecHelpers.lookupDeclaration "Foo" scopeAndFrame heap scopeGraph `shouldBe` Just ()
2018-12-05 20:44:52 +03:00
SpecHelpers.lookupMembers "Bar" Superclass scopeAndFrame heap scopeGraph `shouldBe` Just ["baz", "foo", "inspect"]
2018-06-26 00:28:35 +03:00
other -> expectationFailure (show other)
it "evaluates modules" $ do
2018-11-29 03:59:05 +03:00
(scopeGraph, (heap, res)) <- evaluate ["modules.rb"]
2018-06-26 00:28:35 +03:00
case ModuleTable.lookup "modules.rb" <$> res of
Right (Just (Module _ (scopeAndFrame, _))) -> do
2019-06-16 14:00:47 +03:00
() <$ SpecHelpers.lookupDeclaration "Bar" scopeAndFrame heap scopeGraph `shouldBe` Just ()
2018-06-26 00:28:35 +03:00
other -> expectationFailure (show other)
it "handles break correctly" $ do
2018-11-29 03:59:05 +03:00
(_, (_, res)) <- evaluate ["break.rb"]
2018-06-26 00:28:35 +03:00
case ModuleTable.lookup "break.rb" <$> res of
Right (Just (Module _ (_, value))) -> value `shouldBe` Value.Integer (Number.Integer 3)
other -> expectationFailure (show other)
2018-06-26 00:28:35 +03:00
it "handles next correctly" $ do
2018-11-29 03:59:05 +03:00
(_, (_, res)) <- evaluate ["next.rb"]
2018-06-26 00:28:35 +03:00
case ModuleTable.lookup "next.rb" <$> res of
Right (Just (Module _ (_, value))) -> value `shouldBe` Value.Integer (Number.Integer 8)
other -> expectationFailure (show other)
2018-06-26 00:28:35 +03:00
it "calls functions with arguments" $ do
2018-11-29 03:59:05 +03:00
(_, (_, res)) <- evaluate ["call.rb"]
2018-06-26 00:28:35 +03:00
case ModuleTable.lookup "call.rb" <$> res of
Right (Just (Module _ (_, value))) -> value `shouldBe` Value.Integer (Number.Integer 579)
other -> expectationFailure (show other)
2018-06-26 00:28:35 +03:00
it "evaluates early return statements" $ do
2018-11-29 03:59:05 +03:00
(_, (_, res)) <- evaluate ["early-return.rb"]
2018-06-26 00:28:35 +03:00
case ModuleTable.lookup "early-return.rb" <$> res of
Right (Just (Module _ (_, value))) -> value `shouldBe` Value.Integer (Number.Integer 123)
other -> expectationFailure (show other)
2018-06-26 00:28:35 +03:00
it "has prelude" $ do
2018-11-29 03:59:05 +03:00
(_, (_, res)) <- evaluate ["preluded.rb"]
2018-06-26 00:28:35 +03:00
case ModuleTable.lookup "preluded.rb" <$> res of
Right (Just (Module _ (_, value))) -> value `shouldBe` String "\"<foo>\""
other -> expectationFailure (show other)
2018-06-26 00:28:35 +03:00
it "evaluates __LINE__" $ do
2018-11-29 03:59:05 +03:00
(_, (_, res)) <- evaluate ["line.rb"]
2018-06-26 00:28:35 +03:00
case ModuleTable.lookup "line.rb" <$> res of
Right (Just (Module _ (_, value))) -> value `shouldBe` Value.Integer (Number.Integer 4)
other -> expectationFailure (show other)
2018-06-26 00:28:35 +03:00
it "resolves builtins used in the prelude" $ do
2018-11-29 03:59:05 +03:00
(scopeGraph, (heap, res)) <- evaluate ["puts.rb"]
2018-06-26 00:28:35 +03:00
case ModuleTable.lookup "puts.rb" <$> res of
Right (Just (Module _ (scopeAndFrame, value))) -> do
2018-12-07 23:23:03 +03:00
value `shouldBe` Unit
2019-06-16 14:00:47 +03:00
() <$ SpecHelpers.lookupDeclaration "puts" scopeAndFrame heap scopeGraph `shouldBe` Just ()
2018-06-26 00:28:35 +03:00
other -> expectationFailure (show other)
2018-05-10 18:03:42 +03:00
2018-03-14 02:19:26 +03:00
where
fixtures = "test/fixtures/ruby/analysis/"
evaluate = evalRubyProject . map (fixtures <>)
evalRubyProject = testEvaluating <=< evaluateProject' ?session (Proxy :: Proxy 'Language.Ruby) rubyParser