X-Git-Url: http://git.lukelau.me/?a=blobdiff_plain;f=test%2FTest.hs;h=e34244041de3fbbdaf36d8973d479cffd0cf287f;hb=0d03bbc4a85a2d625fa663a47bcd079883bf7900;hp=6353e09b99ca5b59503bdad8d65bca5e2ee7ecec;hpb=b39cc258cdffae26e2a783470995df73e4099070;p=lsp-test.git diff --git a/test/Test.hs b/test/Test.hs index 6353e09..e342440 100644 --- a/test/Test.hs +++ b/test/Test.hs @@ -7,6 +7,7 @@ import Test.Hspec import Data.Aeson import Data.Default import qualified Data.HashMap.Strict as HM +import Data.Maybe import qualified Data.Text as T import Control.Applicative.Combinators import Control.Concurrent @@ -238,6 +239,13 @@ main = hspec $ do , mkRange 71 6 71 22 ] + describe "getDefinitions" $ + it "works" $ runSession "hie --lsp" "test/data/renamePass" $ do + doc <- openDoc "Desktop/simple.hs" "haskell" + let pos = Position 49 25 -- addItem + defs <- getDefinitions doc pos + liftIO $ defs `shouldBe` [Location (doc ^. uri) (mkRange 28 0 28 7)] + describe "waitForDiagnosticsSource" $ it "works" $ runSession "hie --lsp" "test/data" $ do openDoc "Error.hs" "haskell" @@ -252,6 +260,14 @@ main = hspec $ do rename doc (Position 1 0) "bar" documentContents doc >>= liftIO . shouldBe "main = bar\nbar = return 42\n" + describe "getHover" $ + it "works" $ runSession "hie --lsp" "test/data/renamePass" $ do + doc <- openDoc "Desktop/simple.hs" "haskell" + -- hover returns nothing until module is loaded + skipManyTill loggingNotification $ count 2 noDiagnostics + hover <- getHover doc (Position 45 9) -- putStrLn + liftIO $ hover `shouldSatisfy` isJust + mkRange sl sc el ec = Range (Position sl sc) (Position el ec) didChangeCaps :: ClientCapabilities