Start work on swapping out files
[opengl.git] / src / Language / Haskell / LSP / Test / Recorded.hs
index d109d9a74a9140abfec989b20120b5105db3c21e..488499ac1bee9c2cf9494ae9eb4cb04490b74057 100644 (file)
@@ -1,11 +1,15 @@
 {-# LANGUAGE OverloadedStrings #-}
 {-# LANGUAGE FlexibleContexts #-}
+-- | A testing tool for replaying recorded client logs back to a server,
+-- and validating that the server output matches up with another log.
 module Language.Haskell.LSP.Test.Recorded
   ( replay
   )
 where
 
 import           Control.Concurrent
+import           Control.Monad.Trans.Class
+import           Control.Monad.Trans.Reader
 import           Data.Default
 import           Language.Haskell.LSP.Control  as Control
 import qualified Data.ByteString.Lazy.Char8    as B
@@ -17,95 +21,133 @@ import           Data.Maybe
 import           Control.Lens
 import           Control.Monad
 import           System.IO
+import           System.Directory
 import           System.Process
+import           Language.Haskell.LSP.Test.Files
 
 -- | Replays a recorded client output and 
 -- makes sure it matches up with an expected response.
-replay :: FilePath -- ^ The client output to replay to the server.
+replay
+  :: FilePath -- ^ The client output to replay to the server.
   -> FilePath -- ^ The expected response from the server.
-       -> IO Int
+  -> IO Bool
 replay cfp sfp = do
 
-  (Just serverIn, Just serverOut, _, _) <- createProcess
-    (proc "hie" ["--lsp", "-l", "/tmp/hie.log", "-d"]) { std_in  = CreatePipe
-                                                       , std_out = CreatePipe
-                                                       }
+  -- need to keep hold of current directory since haskell-lsp changes it
+  prevDir <- getCurrentDirectory
+
+  (Just serverIn, Just serverOut, _, serverProc) <- createProcess 
+    (proc "hie" ["--lsp", "-l", "/tmp/hie.log"]) { std_in  = CreatePipe , std_out = CreatePipe }
 
   hSetBuffering serverIn  NoBuffering
   hSetBuffering serverOut NoBuffering
 
-  -- todo: use qsem
   -- whether to send the next request
   reqSema <- newEmptyMVar :: IO (MVar LSP.LspIdRsp)
   -- whether to send the next response
   rspSema <- newEmptyMVar :: IO (MVar LSP.LspId)
   let semas = (reqSema, rspSema)
 
+  didPass      <- newEmptyMVar
+
   -- the recorded client input to the server
   clientRecIn  <- openFile cfp ReadMode
   serverRecIn  <- openFile sfp ReadMode
   null         <- openFile "/dev/null" WriteMode
 
 
-  expectedMsgs <- getAllMessages serverRecIn
+  (clientMsgs, fileMap) <- loadSwappedFiles emptyFileMap clientRecIn
 
-  -- listen to server
-  forkIO $ listenServer expectedMsgs serverOut semas
+  tmpDir <- getTemporaryDirectory
+  (_, mappedClientRecIn) <- openTempFile tmpDir "clientRecInMapped"
+  mapM_ (B.hPut mappedClientRecIn) $ map addHeader clientMsgs
+  hSeek mappedClientRecIn AbsoluteSeek 0
 
-  -- send initialize request ourselves since haskell-lsp consumes it
-  -- rest are handled via `handlers`
-  sendInitialize clientRecIn serverIn
   
-  -- wait for initialize response
-  putStrLn "Waiting for initialzie response"
-  takeMVar reqSema
-  putStrLn "Got initialize response"
+  (expectedMsgs, _) <- loadSwappedFiles fileMap serverRecIn
 
-  Control.runWithHandles clientRecIn
+  -- listen to server
+  forkIO $ runReaderT (listenServer expectedMsgs serverOut semas) didPass
+
+  -- start client replay
+  forkIO $ do
+    Control.runWithHandles mappedClientRecIn
                            null
                            (const $ Right (), const $ return Nothing)
                            (handlers serverIn semas)
                            def
                            Nothing
                            Nothing
- where
-  listenServer :: [B.ByteString] -> Handle -> (MVar LSP.LspIdRsp, MVar LSP.LspId) -> IO ()
+
+    -- todo: we shouldn't do this, we should check all notifications were delivered first
+    putMVar didPass True
+
+  result <- takeMVar didPass
+  terminateProcess serverProc
+
+  -- restore directory
+  setCurrentDirectory prevDir
+
+  return result
+
+-- | The internal monad for tests that can fail or pass,
+-- ending execution early.
+type Session = ReaderT (MVar Bool) IO
+
+failSession :: String -> Session ()
+failSession reason = do
+  lift $ putStrLn reason
+  passVar <- ask
+  lift $ putMVar passVar False
+
+passSession :: Session ()
+passSession = do
+  passVar <- ask
+  lift $ putMVar passVar True
+
+-- | Listens to the server output, makes sure it matches the record and
+-- signals any semaphores
+listenServer :: [B.ByteString] -> Handle -> (MVar LSP.LspIdRsp, MVar LSP.LspId) -> Session ()
+listenServer [] _ _ = passSession
 listenServer expectedMsgs h semas@(reqSema, rspSema) = do
-    msg <- getNextMessage h
-    putStrLn $ "Remaining messages "  ++ show (length expectedMsgs)
+  msg <- lift $ getNextMessage h
+  lift $ putStrLn $ "Remaining messages " ++ show (length expectedMsgs)
   if inRightOrder msg expectedMsgs
     then do
 
-        -- if we got a request response unblock the replay waiting for a response
-        whenResponse msg $ \res -> do
-          putStrLn ("Got response for id " ++ show (res ^. LSP.id))
-          putMVar reqSema (res ^. LSP.id)
+      whenResponse msg $ \res -> lift $ do
+        putStrLn $ "Got response for id " ++ show (res ^. LSP.id)
+        putMVar reqSema (res ^. LSP.id) -- unblock the handler waiting to send a request
 
-        whenRequest msg $ \req -> do
-          putStrLn ("Got request for id " ++ show (req ^. LSP.id) ++ " " ++ show (req ^. LSP.method))
-          putMVar rspSema (req ^. LSP.id)
+      whenRequest msg $ \req -> lift $ do
+        putStrLn $ "Got request for id " ++ show (req ^. LSP.id) ++ " " ++ show (req ^. LSP.method)
+        putMVar rspSema (req ^. LSP.id) -- unblock the handler waiting for a response
 
-        listenServer (delete msg expectedMsgs) h semas
-      else error $ "Got: " ++ show msg ++ "\n Expected: " ++ show (head (filter (not . isNotification) expectedMsgs))
+      whenNotification msg $ \n -> lift $ putStrLn $ "Got notification " ++ show (n ^. LSP.method)
 
-  sendInitialize recH serverH = do
-    message <- getNextMessage recH
-    B.hPut serverH (addHeader message)
-    putStrLn $ "Sent initialize response " ++ show message
-    -- bring the file back to the start for haskell-lsp
-    hSeek recH AbsoluteSeek 0
+      unless (msg `elem` expectedMsgs) $ failSession "Got an unexpected message"
+
+      listenServer (delete msg expectedMsgs) h semas
+    else
+      let reason = "Got: " ++ show msg ++ "\n Expected: " ++ show (head (filter (not . isNotification) expectedMsgs))
+        in failSession reason
 
 isNotification :: B.ByteString -> Bool
-isNotification msg = isJust (decode msg :: Maybe (LSP.NotificationMessage Value Value))
+isNotification msg =
+  isJust (decode msg :: Maybe (LSP.NotificationMessage Value Value))
 
-whenResponse :: B.ByteString -> (LSP.ResponseMessage Value -> IO ()) -> IO ()
-whenResponse msg f =
-  case decode msg :: Maybe (LSP.ResponseMessage Value) of
+whenResponse :: B.ByteString -> (LSP.ResponseMessage Value -> Session ()) -> Session ()
+whenResponse msg f = case decode msg :: Maybe (LSP.ResponseMessage Value) of
   Just msg' -> when (isJust (msg' ^. LSP.result)) (f msg')
   _         -> return ()
 
-whenRequest :: B.ByteString -> (LSP.RequestMessage Value Value Value -> IO ()) -> IO ()
-whenRequest msg = forM_ (decode msg :: (Maybe (LSP.RequestMessage Value Value Value)))
+whenRequest
+  :: B.ByteString -> (LSP.RequestMessage Value Value Value -> Session ()) -> Session ()
+whenRequest msg =
+  forM_ (decode msg :: (Maybe (LSP.RequestMessage Value Value Value)))
+
+whenNotification :: B.ByteString -> (LSP.NotificationMessage Value Value -> Session ()) -> Session ()
+whenNotification msg = forM_ (decode msg :: (Maybe (LSP.NotificationMessage Value Value)))
 
 -- TODO: QuickCheck tests?
 -- | Checks wether or not the message appears in the right order
@@ -120,12 +162,12 @@ whenRequest msg = forM_ (decode msg :: (Maybe (LSP.RequestMessage Value Value Va
 inRightOrder :: B.ByteString -> [B.ByteString] -> Bool
 inRightOrder _        []   = error "why is this empty"
 inRightOrder received msgs = received `elem` valid
-  where valid = takeWhile canSkip msgs ++ firstNonSkip
+ where
+  valid   = takeWhile canSkip msgs ++ firstNonSkip
   -- we don't care about the order of notifications
   canSkip = isNotification
   nonSkip = dropWhile canSkip msgs
-        firstNonSkip
-          | null nonSkip = []
+  firstNonSkip | null nonSkip = []
                | otherwise    = [head nonSkip]
 
 getAllMessages :: Handle -> IO [B.ByteString]
@@ -135,6 +177,7 @@ getAllMessages h = do
     then return []
     else do
       msg <- getNextMessage h
+     
       (msg :) <$> getAllMessages h
 
 -- | Fetches the next message bytes based on
@@ -146,7 +189,6 @@ getNextMessage h = do
     Nothing   -> error "Couldn't read Content-Length header"
     Just size -> B.hGet h size
 
-
 handlers :: Handle -> (MVar LSP.LspIdRsp, MVar LSP.LspId) -> Handlers
 handlers serverH (reqSema, rspSema) = def
   {
@@ -170,6 +212,7 @@ handlers serverH (reqSema, rspSema) = def
   , documentLinkHandler                      = Just request
   , documentLinkResolveHandler               = Just request
   , executeCommandHandler                    = Just request
+  , initializeRequestHandler                 = Just request
     -- Notifications
   , didChangeConfigurationParamsHandler      = Just notification
   , didOpenTextDocumentNotificationHandler   = Just notification
@@ -180,23 +223,36 @@ handlers serverH (reqSema, rspSema) = def
   , initializedHandler                       = Just notification
   , willSaveTextDocumentNotificationHandler  = Just notification
   , cancelNotificationHandler                = Just notification
+  , exitNotificationHandler                  = Just notification
     -- Responses
   , responseHandler                          = Just response
   }
  where
-  notification m = do
-    B.hPut serverH $ addHeader (encode m)
-    putStrLn "Sent a notification"
+
+  -- TODO: May need to prevent premature exit notification being sent
+  -- notification msg@(LSP.NotificationMessage _ LSP.Exit _) = do
+  --   putStrLn "Will send exit notification soon"
+  --   threadDelay 10000000
+  --   B.hPut serverH $ addHeader (encode msg)
+  notification msg@(LSP.NotificationMessage _ m _) = do
+    B.hPut serverH $ addHeader (encode msg)
+
+    putStrLn $ "Sent a notification " ++ show m
 
   request msg@(LSP.RequestMessage _ id m _) = do
 
+    when (m == LSP.TextDocumentDocumentSymbol) $ threadDelay 5000000
+
     B.hPut serverH $ addHeader (encode msg)
     putStrLn $  "Sent a request id " ++ show id ++ ": " ++ show m ++ "\nWaiting for a response"
 
     rspId <- takeMVar reqSema
-    if LSP.responseId id /= rspId
-      then error $ "Expected id " ++ show id ++ ", got " ++ show rspId
-      else putStrLn $ "Got a response for request id " ++ show id ++ ": " ++ show m
+    when (LSP.responseId id /= rspId)
+      $  error
+      $  "Expected id "
+      ++ show id
+      ++ ", got "
+      ++ show rspId
 
   response msg@(LSP.ResponseMessage _ id _ _) = do
     putStrLn $ "Waiting for request id " ++ show id ++ " from the server"