X-Git-Url: https://git.lukelau.me/?a=blobdiff_plain;ds=sidebyside;f=test%2FTest.hs;h=401fd9815fd09e81db4f3af8dafeff13ebc2f2ad;hb=f1238f8db54eafbf0e3352140818875ad4cfd997;hp=e24b1e1c75d333f2327ac273bdcf2d7d9d8e127e;hpb=37aa4a22ec691b45bbd1cd0dd23d70e90a0c4e40;p=opengl.git diff --git a/test/Test.hs b/test/Test.hs index e24b1e1..401fd98 100644 --- a/test/Test.hs +++ b/test/Test.hs @@ -1,15 +1,42 @@ +{-# LANGUAGE DuplicateRecordFields #-} +{-# LANGUAGE OverloadedStrings #-} import Test.Hspec -import Language.Haskell.LSP.Test.Recorded +import Data.Proxy +import Control.Monad.IO.Class +import Control.Lens hiding (List) +import Language.Haskell.LSP.Test +import Language.Haskell.LSP.Test.Replay +import Language.Haskell.LSP.Types +import Language.Haskell.LSP.Messages -main = hspec $ - describe "Replay" $ do +main = hspec $ do + describe "manual session validation" $ it "passes a test" $ - replay "test/recordings/renamePass/client.log" - "test/recordings/renamePass/server.log" - "test/recordings/renamePass" - `shouldReturn` True - it "fails a test" $ - replay "test/recordings/documentSymbolFail/client.log" - "test/recordings/documentSymbolFail/server.log" - "test/recordings/documentSymbolFail" - `shouldReturn` False + runSession "test/recordings/renamePass" $ do + docItem <- getDocItem "Desktop/simple.hs" "haskell" + docId <- TextDocumentIdentifier <$> getDocUri "Desktop/simple.hs" + + sendNotification TextDocumentDidOpen (DidOpenTextDocumentParams docItem) + + skipMany loggingNotification + + (NotPublishDiagnostics (NotificationMessage _ TextDocumentPublishDiagnostics (PublishDiagnosticsParams _ (List diags)))) <- notification + + liftIO $ diags `shouldBe` [] + + sendRequest (Proxy :: Proxy DocumentSymbolRequest) + TextDocumentDocumentSymbol + (DocumentSymbolParams docId) + + (RspDocumentSymbols (ResponseMessage _ _ (Just (List symbols)) Nothing)) <- response + + liftIO $ do + let 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 + + describe "replay session" $ + it "passes a test" $ + replaySession "test/recordings/renamePass" `shouldReturn` True \ No newline at end of file