servant-0.19.1: A family of combinators for defining webservices APIs
Safe Haskell None
Language Haskell2010

Servant.Test.ComprehensiveAPI

Description

This is a module containing an API with all API combinators. It is used for testing only (in particular, checking that instances exist for the core servant classes for each combinator).

Synopsis

Documentation

type ComprehensiveAPIWithoutStreamingOrRaw' endpoint = GET :<|> (("get-int" :> Get '[ JSON ] Int ) :<|> (("capture" :> ( Capture' '[ Description "example description"] "bar" Int :> GET )) :<|> (("capture-lenient" :> ( Capture' '[ Lenient ] "foo" Int :> GET )) :<|> (("header" :> ( Header "foo" Int :> GET )) :<|> (("header-lenient" :> ( Header' '[ Required , Lenient ] "bar" Int :> GET )) :<|> (("http-version" :> ( HttpVersion :> GET )) :<|> (("is-secure" :> ( IsSecure :> GET )) :<|> (("param" :> ( QueryParam "foo" Int :> GET )) :<|> (("param-lenient" :> ( QueryParam' '[ Required , Lenient ] "bar" Int :> GET )) :<|> (("params" :> ( QueryParams "foo" Int :> GET )) :<|> (("flag" :> ( QueryFlag "foo" :> GET )) :<|> (("remote-host" :> ( RemoteHost :> GET )) :<|> (("req-body" :> ( ReqBody '[ JSON ] Int :> GET )) :<|> (("req-body-lenient" :> ( ReqBody' '[ Lenient ] '[ JSON ] Int :> GET )) :<|> (("res-headers" :> Get '[ JSON ] ( Headers '[ Header "foo" Int ] NoContent )) :<|> (("foo" :> GET ) :<|> (("vault" :> ( Vault :> GET )) :<|> (("post-no-content" :> PostNoContent ) :<|> (("post-int" :> Verb ' POST 204 '[ JSON ] Int ) :<|> (("named-context" :> WithNamedContext "foo" '[] GET ) :<|> (("capture-all" :> ( CaptureAll "foo" Int :> GET )) :<|> (("summary" :> ( Summary "foo" :> GET )) :<|> (("description" :> ( Description "foo" :> GET )) :<|> (("alternative" :> (("left" :> GET ) :<|> ("right" :> GET ))) :<|> (("fragment" :> ( Fragment Int :> GET )) :<|> endpoint))))))))))))))))))))))))) Source #

:: API -> API , so we have linear structure of the API.