Update recorded playback to build upon new session
[lsp-test.git] / test / Test.hs
index 703265ebc1e0bfcc7ea73972008df32368589cd6..2bd8f4e83b8bf75cef7d32a6f0bc808ae7e6379e 100644 (file)
@@ -1,13 +1,39 @@
+{-# LANGUAGE DuplicateRecordFields #-}
+{-# LANGUAGE OverloadedStrings #-}
 import           Test.Hspec
+import           Data.Proxy
+import           Control.Monad.IO.Class
+import           Control.Lens hiding (List)
+import           Language.Haskell.LSP.Test
 import           Language.Haskell.LSP.Test.Recorded
+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