X-Git-Url: http://git.lukelau.me/?a=blobdiff_plain;f=test%2FTest.hs;h=56bd01dd0a1a5ec4d2ae65418706acf19620f0e0;hb=35ce787a5458ffdce71923e40464448d6ea71801;hp=e34244041de3fbbdaf36d8973d479cffd0cf287f;hpb=0d03bbc4a85a2d625fa663a47bcd079883bf7900;p=lsp-test.git diff --git a/test/Test.hs b/test/Test.hs index e342440..56bd01d 100644 --- a/test/Test.hs +++ b/test/Test.hs @@ -268,6 +268,27 @@ main = hspec $ do hover <- getHover doc (Position 45 9) -- putStrLn liftIO $ hover `shouldSatisfy` isJust + describe "getHighlights" $ + it "works" $ runSession "hie --lsp" "test/data/renamePass" $ do + doc <- openDoc "Desktop/simple.hs" "haskell" + skipManyTill loggingNotification $ count 2 noDiagnostics + highlights <- getHighlights doc (Position 27 4) -- addItem + liftIO $ length highlights `shouldBe` 4 + + describe "formatDoc" $ + it "works" $ runSession "hie --lsp" "test/data" $ do + doc <- openDoc "Format.hs" "haskell" + oldContents <- documentContents doc + formatDoc doc (FormattingOptions 4 True) + documentContents doc >>= liftIO . (`shouldNotBe` oldContents) + + describe "formatRange" $ + it "works" $ runSession "hie --lsp" "test/data" $ do + doc <- openDoc "Format.hs" "haskell" + oldContents <- documentContents doc + formatRange doc (FormattingOptions 4 True) (Range (Position 1 10) (Position 2 10)) + documentContents doc >>= liftIO . (`shouldNotBe` oldContents) + mkRange sl sc el ec = Range (Position sl sc) (Position el ec) didChangeCaps :: ClientCapabilities