mirror of
https://github.com/github/semantic.git
synced 2024-12-03 13:56:04 +03:00
50 lines
2.5 KiB
Haskell
50 lines
2.5 KiB
Haskell
{-# LANGUAGE DataKinds, ImplicitParams, OverloadedStrings, TypeApplications #-}
|
|
{-# OPTIONS_GHC -O0 #-}
|
|
module Analysis.PHP.Spec (spec) where
|
|
|
|
import qualified Data.Abstract.ModuleTable as ModuleTable
|
|
import qualified Data.Abstract.Value.Concrete as Value
|
|
import qualified Data.Language as Language
|
|
import qualified Language.PHP.Term as PHP
|
|
import Source.Loc
|
|
import SpecHelpers
|
|
|
|
|
|
spec :: (?session :: TaskSession) => Spec
|
|
spec = do
|
|
describe "PHP" $ do
|
|
xit "evaluates include and require" $ do
|
|
(scopeGraph, (heap, res)) <- evaluate ["main.php", "foo.php", "bar.php"]
|
|
case ModuleTable.lookup "main.php" <$> res of
|
|
Right (Just (Module _ (scopeAndFrame, value))) -> do
|
|
value `shouldBe` Value.Unit
|
|
SpecHelpers.lookupDeclaration "bar" scopeAndFrame heap scopeGraph `shouldSatisfy` isJust
|
|
SpecHelpers.lookupDeclaration "foo" scopeAndFrame heap scopeGraph `shouldSatisfy` isJust
|
|
other -> expectationFailure (show other)
|
|
|
|
xit "evaluates include_once and require_once" $ do
|
|
(scopeGraph, (heap, res)) <- evaluate ["main_once.php", "foo.php", "bar.php"]
|
|
case ModuleTable.lookup "main_once.php" <$> res of
|
|
Right (Just (Module _ (scopeAndFrame, value))) -> do
|
|
value `shouldBe` Value.Unit
|
|
SpecHelpers.lookupDeclaration "bar" scopeAndFrame heap scopeGraph `shouldSatisfy` isJust
|
|
SpecHelpers.lookupDeclaration "foo" scopeAndFrame heap scopeGraph `shouldSatisfy` isJust
|
|
other -> expectationFailure (show other)
|
|
|
|
xit "evaluates namespaces" $ do
|
|
(scopeGraph, (heap, res)) <- evaluate ["namespaces.php"]
|
|
case ModuleTable.lookup "namespaces.php" <$> res of
|
|
Right (Just (Module _ (scopeAndFrame, _))) -> do
|
|
SpecHelpers.lookupDeclaration "Foo" scopeAndFrame heap scopeGraph `shouldSatisfy` isJust
|
|
SpecHelpers.lookupDeclaration "NS1" scopeAndFrame heap scopeGraph `shouldSatisfy` isJust
|
|
|
|
undefined
|
|
-- (derefQName heap ("NS1" :| []) env >>= deNamespace heap) `shouldBe` Just ("NS1", ["Sub1", "b", "c"])
|
|
-- (derefQName heap ("NS1" :| ["Sub1"]) env >>= deNamespace heap) `shouldBe` Just ("Sub1", ["Sub2"])
|
|
-- (derefQName heap ("NS1" :| ["Sub1", "Sub2"]) env >>= deNamespace heap) `shouldBe` Just ("Sub2", ["f"])
|
|
other -> expectationFailure (show other)
|
|
|
|
where
|
|
fixtures = "test/fixtures/php/analysis/"
|
|
evaluate = evaluateProject @'Language.PHP @(PHP.Term Loc) ?session Proxy . map (fixtures <>)
|