X-Git-Url: http://git.lukelau.me/?a=blobdiff_plain;f=test%2FTest.hs;h=56bd01dd0a1a5ec4d2ae65418706acf19620f0e0;hb=35ce787a5458ffdce71923e40464448d6ea71801;hp=845f6e46aecdc732c5a465b51c42faead0907486;hpb=e2ae28cd825653b0cb8b982d113497e9ac795059;p=opengl.git diff --git a/test/Test.hs b/test/Test.hs index 845f6e4..56bd01d 100644 --- a/test/Test.hs +++ b/test/Test.hs @@ -7,7 +7,9 @@ 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 import Control.Monad.IO.Class import Control.Monad @@ -17,9 +19,12 @@ import Language.Haskell.LSP.Messages import Language.Haskell.LSP.Test import Language.Haskell.LSP.Test.Replay import Language.Haskell.LSP.Types.Capabilities -import Language.Haskell.LSP.Types hiding (message, capabilities) +import Language.Haskell.LSP.Types as LSP hiding (capabilities, message) import System.Timeout +{-# ANN module ("HLint: ignore Reduce duplication" :: String) #-} +{-# ANN module ("HLint: ignore Unnecessary hiding" :: String) #-} + main = hspec $ do describe "Session" $ do it "fails a test" $ @@ -157,7 +162,7 @@ main = hspec $ do noDiagnostics contents <- documentContents doc - liftIO $ contents `shouldBe` "main :: IO Int\nmain = return 42" + liftIO $ contents `shouldBe` "main :: IO Int\nmain = return 42\n" describe "getDocumentEdit" $ it "automatically consumes applyedit requests" $ @@ -170,7 +175,7 @@ main = hspec $ do reqParams = ExecuteCommandParams "applyrefact:applyOne" (Just (List [args])) sendRequest_ WorkspaceExecuteCommand reqParams contents <- getDocumentEdit doc - liftIO $ contents `shouldBe` "main :: IO Int\nmain = return 42" + liftIO $ contents `shouldBe` "main :: IO Int\nmain = return 42\n" noDiagnostics describe "getAllCodeActions" $ @@ -222,6 +227,69 @@ main = hspec $ do item ^. kind `shouldBe` Just CiFunction item ^. detail `shouldBe` Just "Items -> IO ()\nMain" + describe "getReferences" $ + it "works" $ runSession "hie --lsp" "test/data/renamePass" $ do + doc <- openDoc "Desktop/simple.hs" "haskell" + let pos = Position 40 3 -- interactWithUser + uri = doc ^. LSP.uri + refs <- getReferences doc pos True + liftIO $ refs `shouldContain` map (Location uri) [ + mkRange 41 0 41 16 + , mkRange 75 6 75 22 + , 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" + [diag] <- waitForDiagnosticsSource "ghcmod" + liftIO $ do + diag ^. severity `shouldBe` Just DsError + diag ^. source `shouldBe` Just "ghcmod" + + describe "rename" $ + it "works" $ runSession "hie --lsp" "test/data" $ do + doc <- openDoc "Rename.hs" "haskell" + 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 + + 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 didChangeCaps = def { _workspace = Just workspaceCaps }