X-Git-Url: http://git.lukelau.me/?a=blobdiff_plain;f=test%2FTest.hs;h=95e3d5e9eeb1dce39add9f5c89a104d7c54a9d17;hb=bf56f6dd8c0b0fc34770135819caa54a6410b1df;hp=703265ebc1e0bfcc7ea73972008df32368589cd6;hpb=35925b4a5a5e24e1611431106fd8ddd7c89a4436;p=opengl.git diff --git a/test/Test.hs b/test/Test.hs index 703265e..95e3d5e 100644 --- a/test/Test.hs +++ b/test/Test.hs @@ -1,13 +1,39 @@ +{-# 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.TH.DataTypesJSON main = hspec $ do - describe "Replay" $ do - it "passes a test" $ do - replay "test/recordings/renamePass/client.log" - "test/recordings/renamePass/server.log" - `shouldReturn` True - it "fails a test" $ - replay "test/recordings/documentSymbolFail/client.log" - "test/recordings/documentSymbolFail/server.log" - `shouldReturn` False + describe "manual session validation" $ + it "passes a test" $ + runSession "test/recordings/renamePass" $ do + docItem <- getDocItem "Desktop/simple.hs" "haskell" + docId <- TextDocumentIdentifier <$> getDocUri "Desktop/simple.hs" + + sendNotification TextDocumentDidOpen (DidOpenTextDocumentParams docItem) + + (NotificationMessage _ TextDocumentPublishDiagnostics (PublishDiagnosticsParams _ (List diags))) <- + getMessage :: Session PublishDiagnosticsNotification + + liftIO $ diags `shouldBe` [] + + sendRequest (Proxy :: Proxy DocumentSymbolRequest) + TextDocumentDocumentSymbol + (DocumentSymbolParams docId) + + (ResponseMessage _ _ (Just (List symbols)) Nothing) <- getMessage :: Session DocumentSymbolsResponse + 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