X-Git-Url: http://git.lukelau.me/?a=blobdiff_plain;f=test%2FTest.hs;h=3c53aec67dd292859abc0285e939da6d3d3d532f;hb=bd6901688e6c9d8332fea161260d32666885f9ed;hp=604ea1c834978c7432b5eeb0db92ae2d3d49e301;hpb=df782ad008b840c0860173821226542e2e70f2e9;p=opengl.git diff --git a/test/Test.hs b/test/Test.hs index 604ea1c..3c53aec 100644 --- a/test/Test.hs +++ b/test/Test.hs @@ -1,34 +1,153 @@ {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE OverloadedStrings #-} +{-# LANGUAGE DeriveGeneric #-} +{-# LANGUAGE DeriveAnyClass #-} import Test.Hspec -import Data.Proxy +import Data.Aeson +import Data.Default +import qualified Data.HashMap.Strict as HM +import Data.Maybe +import Control.Concurrent import Control.Monad.IO.Class import Control.Lens hiding (List) +import GHC.Generics +import Language.Haskell.LSP.Messages import Language.Haskell.LSP.Test -import Language.Haskell.LSP.TH.DataTypesJSON +import Language.Haskell.LSP.Test.Replay +import Language.Haskell.LSP.TH.ClientCapabilities +import Language.Haskell.LSP.Types hiding (capabilities) +import ParsingTests -main = hspec $ - describe "manual session validation" $ +main = hspec $ do + describe "manual session" $ do it "passes a test" $ - runSession "test/recordings/renamePass" $ do - docItem <- getDocItem "Desktop/simple.hs" "haskell" - docId <- TextDocumentIdentifier <$> getDocUri "Desktop/simple.hs" + runSession "hie --lsp" "test/data/renamePass" $ do + doc <- openDoc "Desktop/simple.hs" "haskell" - sendNotification TextDocumentDidOpen (DidOpenTextDocumentParams docItem) + skipMany loggingNotification - (NotificationMessage _ TextDocumentPublishDiagnostics (PublishDiagnosticsParams _ (List diags))) <- - getMessage :: Session PublishDiagnosticsNotification + checkNoDiagnostics - liftIO $ diags `shouldBe` [] + rspSymbols <- documentSymbols doc - sendRequest (Proxy :: Proxy DocumentSymbolRequest) - TextDocumentDocumentSymbol - (DocumentSymbolParams docId) - - (ResponseMessage _ _ (Just (List symbols)) Nothing) <- getMessage :: Session DocumentSymbolsResponse liftIO $ do - let mainSymbol = head symbols + let (List symbols) = fromJust (rspSymbols ^. result) + mainSymbol = head symbols mainSymbol ^. name `shouldBe` "main" mainSymbol ^. kind `shouldBe` SkFunction mainSymbol ^. location . range `shouldBe` Range (Position 3 0) (Position 3 4) mainSymbol ^. containerName `shouldBe` Nothing + + it "fails a test" $ + -- TODO: Catch the exception in haskell-lsp-test and provide nicer output + let session = runSession "hie --lsp" "test/data/renamePass" $ do + openDoc "Desktop/simple.hs" "haskell" + skipMany loggingNotification + anyRequest + in session `shouldThrow` anyException + it "can get initialize response" $ runSession "hie --lsp" "test/data/renamePass" $ do + rsp <- getInitializeResponse + liftIO $ rsp ^. result `shouldNotBe` Nothing + + it "can register specific capabilities" $ do + let caps = def { _workspace = Just workspaceCaps } + workspaceCaps = def { _didChangeConfiguration = Just configCaps } + configCaps = DidChangeConfigurationClientCapabilities (Just True) + conf = def { capabilities = caps } + runSessionWithConfig conf "hie --lsp" "test/data/renamePass" $ return () + + describe "exceptions" $ do + it "throw on time out" $ + let sesh = runSessionWithConfig (def {timeout = 10}) "hie --lsp" "test/data/renamePass" $ do + skipMany loggingNotification + _ <- request :: Session ApplyWorkspaceEditRequest + return () + in sesh `shouldThrow` anySessionException + + it "don't throw when no time out" $ runSessionWithConfig (def {timeout = 5}) "hie --lsp" "test/data/renamePass" $ do + loggingNotification + liftIO $ threadDelay 10 + _ <- openDoc "Desktop/simple.hs" "haskell" + return () + + it "throw when there's an unexpected message" $ + let selector (UnexpectedMessageException "Publish diagnostics notification" (NotLogMessage _)) = True + selector _ = False + in runSession "hie --lsp" "test/data/renamePass" publishDiagnosticsNotification `shouldThrow` selector + + it "throw when there's an unexpected message 2" $ + let selector (UnexpectedMessageException "Response" (NotPublishDiagnostics _)) = True + selector _ = False + sesh = do + doc <- openDoc "Desktop/simple.hs" "haskell" + sendRequest TextDocumentDocumentSymbol (DocumentSymbolParams doc) + skipMany anyNotification + response :: Session RenameResponse -- the wrong type + in runSession "hie --lsp" "test/data/renamePass" sesh + `shouldThrow` selector + + describe "replay session" $ do + it "passes a test" $ + replaySession "hie --lsp" "test/data/renamePass" + it "fails a test" $ + let selector (ReplayOutOfOrderException _ _) = True + selector _ = False + in replaySession "hie --lsp" "test/data/renameFail" `shouldThrow` selector + + describe "manual javascript session" $ + it "passes a test" $ + runSession "javascript-typescript-stdio" "test/data/javascriptPass" $ do + doc <- openDoc "test.js" "javascript" + + checkNoDiagnostics + + rspSymbols <- documentSymbols doc + + let (List symbols) = fromJust (rspSymbols ^. result) + fooSymbol = head symbols + liftIO $ do + fooSymbol ^. name `shouldBe` "foo" + fooSymbol ^. kind `shouldBe` SkFunction + + describe "text document state" $ + it "sends back didChange notifications" $ + runSession "hie --lsp" "test/data/refactor" $ do + doc <- openDoc "Main.hs" "haskell" + + let args = toJSON $ AOP (doc ^. uri) + (Position 1 14) + "Redundant bracket" + reqParams = ExecuteCommandParams "applyrefact:applyOne" (Just (List [args])) + sendRequest WorkspaceExecuteCommand reqParams + skipMany anyNotification + _ <- response :: Session ExecuteCommandResponse + + editReq <- request :: Session ApplyWorkspaceEditRequest + liftIO $ do + let (Just cs) = editReq ^. params . edit . changes + [(u, List es)] = HM.toList cs + u `shouldBe` doc ^. uri + es `shouldBe` [TextEdit (Range (Position 1 0) (Position 1 18)) "main = return 42"] + + checkNoDiagnostics + + contents <- documentContents doc + liftIO $ contents `shouldBe` "main :: IO Int\nmain = return 42" + + parsingSpec + +data ApplyOneParams = AOP + { file :: Uri + , start_pos :: Position + , hintTitle :: String + } deriving (Generic, ToJSON) + +checkNoDiagnostics :: Session () +checkNoDiagnostics = do + diagsNot <- notification :: Session PublishDiagnosticsNotification + liftIO $ diagsNot ^. params . diagnostics `shouldBe` List [] + +documentSymbols :: TextDocumentIdentifier -> Session DocumentSymbolsResponse +documentSymbols doc = do + sendRequest TextDocumentDocumentSymbol (DocumentSymbolParams doc) + response