模仿Http请求和响应:MockServer
MockServer是一个API能够模仿任何通过HTTP连接的服务器或服务,如REST 或 RPC service。提供Java和JavaScript两种API。
Requests 可匹配于:
- path (regex or plain text)
- body (regex or plain text)
- headers
- cookies
- query parameters (GET)
- body parameters (POST)
Responses 可包含:
- status code
- body
- headers
- cookies
示例:
HttpResponse httpResponse = new HttpResponse().withStatusCode(200) .withHeaders( new Header("Content-Type", "application/json; charset=utf-8"), new Header("Cache-Control", "public, max-age=86400") ) .withBody("{ message: 'a simple json response' }");
本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
转载本站原创文章,请注明出处,并保留原始链接、图片水印。
本站是一个以用户分享为主的开源技术平台,欢迎各类分享!