Add openDoc convenience function
[lsp-test.git] / test / Test.hs
index 986b4c5202e16da4b8e187b77a2db2db38b541ee..fd2466677b3c80702f25482dc5e515225e8eb142 100644 (file)
@@ -1,13 +1,41 @@
+{-# LANGUAGE DuplicateRecordFields #-}
+{-# LANGUAGE OverloadedStrings #-}
 import           Test.Hspec
-import Language.Haskell.LSP.Test.Recorded
+import           Data.Maybe
+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 $ 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
+        doc <- openDoc "Desktop/simple.hs" "haskell"
+
+        skipMany loggingNotification
+
+        NotPublishDiagnostics diagsNot <- notification
+
+        liftIO $ diagsNot ^. params . diagnostics `shouldBe` List []
+        
+        sendRequest (Proxy :: Proxy DocumentSymbolRequest)
+                    TextDocumentDocumentSymbol
+                    (DocumentSymbolParams doc)
+
+        RspDocumentSymbols rspSymbols <- response
+        
+        liftIO $ do
+          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
+  
+  describe "replay session" $
+    it "passes a test" $
+      replaySession "test/recordings/renamePass" `shouldReturn` True
\ No newline at end of file