X-Git-Url: https://git.lukelau.me/?a=blobdiff_plain;f=src%2FLanguage%2FHaskell%2FLSP%2FTest%2FParsing.hs;h=12ef1a6281547c4fc73dd4ad812cb71c529e95f5;hb=af401b6d0439751d73ea230a219f37eb57286c90;hp=f292af579b5b94951f873e0c695a55cd1ec1bd69;hpb=a8e8371de3168f0faae2f33eae0d97f466c4786f;p=lsp-test.git diff --git a/src/Language/Haskell/LSP/Test/Parsing.hs b/src/Language/Haskell/LSP/Test/Parsing.hs index f292af5..12ef1a6 100644 --- a/src/Language/Haskell/LSP/Test/Parsing.hs +++ b/src/Language/Haskell/LSP/Test/Parsing.hs @@ -6,6 +6,7 @@ module Language.Haskell.LSP.Test.Parsing ( -- $receiving satisfy + , satisfyMaybe , message , anyRequest , anyResponse @@ -23,7 +24,8 @@ import Control.Monad.IO.Class import Control.Monad import Data.Aeson import qualified Data.ByteString.Lazy.Char8 as B -import Data.Conduit.Parser +import Data.Conduit.Parser hiding (named) +import qualified Data.Conduit.Parser (named) import qualified Data.Text as T import Data.Typeable import Language.Haskell.LSP.Messages @@ -73,7 +75,7 @@ satisfyMaybe :: (FromServerMessage -> Maybe a) -> Session a satisfyMaybe pred = do skipTimeout <- overridingTimeout <$> get - timeoutId <- curTimeoutId <$> get + timeoutId <- getCurTimeoutId unless skipTimeout $ do chan <- asks messageChan timeout <- asks (messageTimeout . config) @@ -83,8 +85,7 @@ satisfyMaybe pred = do x <- Session await - unless skipTimeout $ - modify $ \s -> s { curTimeoutId = timeoutId + 1 } + unless skipTimeout (bumpTimeoutId timeoutId) modify $ \s -> s { lastReceivedMessage = Just x } @@ -94,27 +95,31 @@ satisfyMaybe pred = do return a Nothing -> empty +named :: T.Text -> Session a -> Session a +named s (Session x) = Session (Data.Conduit.Parser.named s x) + -- | Matches a message of type @a@. message :: forall a. (Typeable a, FromJSON a) => Session a message = let parser = decode . encodeMsg :: FromServerMessage -> Maybe a - in satisfyMaybe parser + in named (T.pack $ show $ head $ snd $ splitTyConApp $ last $ typeRepArgs $ typeOf parser) $ + satisfyMaybe parser -- | Matches if the message is a notification. anyNotification :: Session FromServerMessage -anyNotification = satisfy isServerNotification +anyNotification = named "Any notification" $ satisfy isServerNotification -- | Matches if the message is a request. anyRequest :: Session FromServerMessage -anyRequest = satisfy isServerRequest +anyRequest = named "Any request" $ satisfy isServerRequest -- | Matches if the message is a response. anyResponse :: Session FromServerMessage -anyResponse = satisfy isServerResponse +anyResponse = named "Any response" $ satisfy isServerResponse -- | Matches a response for a specific id. responseForId :: forall a. FromJSON a => LspId -> Session (ResponseMessage a) -responseForId lid = do +responseForId lid = named (T.pack $ "Response for id: " ++ show lid) $ do let parser = decode . encodeMsg :: FromServerMessage -> Maybe (ResponseMessage a) satisfyMaybe $ \msg -> do z <- parser msg @@ -132,7 +137,7 @@ encodeMsg = encode . genericToJSON (defaultOptions { sumEncoding = UntaggedValue -- | Matches if the message is a log message notification or a show message notification/request. loggingNotification :: Session FromServerMessage -loggingNotification = satisfy shouldSkip +loggingNotification = named "Logging notification" $ satisfy shouldSkip where shouldSkip (NotLogMessage _) = True shouldSkip (NotShowMessage _) = True @@ -142,7 +147,7 @@ loggingNotification = satisfy shouldSkip -- | Matches a 'Language.Haskell.LSP.Test.PublishDiagnosticsNotification' -- (textDocument/publishDiagnostics) notification. publishDiagnosticsNotification :: Session PublishDiagnosticsNotification -publishDiagnosticsNotification = satisfyMaybe $ - \msg -> case msg of +publishDiagnosticsNotification = named "Publish diagnostics notification" $ + satisfyMaybe $ \msg -> case msg of NotPublishDiagnostics diags -> Just diags _ -> Nothing