class MockRequestHandleScope
Scope for MockRequestHandler.
MockRequestHandleScope(callContext: <ERROR CLASS>)
Scope for MockRequestHandler. |
fun MockRequestHandleScope.respond(content: String, status: HttpStatusCode = HttpStatusCode.OK, headers: Headers = headersOf()): HttpResponseData
Send response with specified string content, status and headers. fun MockRequestHandleScope.respond(content: ByteArray, status: HttpStatusCode = HttpStatusCode.OK, headers: Headers = headersOf()): HttpResponseData
Send response with specified bytes content, status and headers. fun MockRequestHandleScope.respond(content: ByteReadChannel, status: HttpStatusCode = HttpStatusCode.OK, headers: Headers = headersOf()): HttpResponseData
Send response with specified ByteReadChannel, status and headers. |
|
fun MockRequestHandleScope.respondBadRequest(): HttpResponseData
Send HttpStatusCode.BadRequest response. |
|
fun MockRequestHandleScope.respondError(status: HttpStatusCode, content: String = status.description, headers: Headers = headersOf()): HttpResponseData
Send error response. |
|
fun MockRequestHandleScope.respondOk(content: String = ""): HttpResponseData
Send ok response. |
|
fun MockRequestHandleScope.respondRedirect(location: String = ""): HttpResponseData
Respond redirect with location in Location header. |