tests
Safe HaskellSafe-Inferred
LanguageGHC2021

Hydra.API.ServerSpec

Synopsis

Documentation

spec :: Spec Source #

sendsAnErrorWhenInputCannotBeDecoded :: PortNumber -> Expectation Source #

waitForClients :: (MonadSTM m, Ord a, Num a) => TVar m a -> m () Source #

testClient :: TQueue IO Value -> TVar IO Int -> Connection -> IO () Source #

allowEverythingServerOutputFilter :: ServerOutputFilter tx Source #

noop :: Applicative m => a -> m () Source #

withTestAPIServer :: PortNumber -> Party -> EventSource (StateEvent SimpleTx) IO -> Tracer IO APIServerLog -> ((EventSink (StateEvent SimpleTx) IO, Server SimpleTx IO) -> IO ()) -> IO () Source #

withClient :: PortNumber -> String -> (Connection -> IO ()) -> IO () Source #

Connect to a websocket server running at given path. Fails if not connected within 2 seconds.

mockSource :: Monad m => [a] -> EventSource a m Source #

waitForValue :: HasCallStack => PortNumber -> (Value -> Maybe ()) -> IO () Source #

waitMatch :: HasCallStack => Natural -> Connection -> (Value -> Maybe a) -> IO a Source #

Wait up to some time for an API server output to match the given predicate.

shouldSatisfyAll :: HasCallStack => Show a => [a] -> [a -> Bool] -> Expectation Source #

genStateEventForApi :: Gen (StateEvent SimpleTx) Source #