我正在尝试飞镖,我正在服务器端编写一个客户端:
new HttpClient().post(InternetAddress.LOOPBACK_IP_V4.host, 7474, '/path').then((HttpClientRequest request) {
request.headers.contentType = ContentType.JSON;
request.headers.add(HttpHeaders.ACCEPT, ContentType.JSON);
request.write(JSON.encode(jsonData));
return request.close();
}).then((HttpClientResponse response) {
response.transform(UTF8.decoder).listen((contents) {
_logger(contents);
// stuff
});
});
我想模拟服务器响应。
什么是最好的解决方案?
- 在我的测试类中创建一个服务器,它将返回我期望的值?
- 或模拟 HttpClientResponse ?
谢谢你的帮助 !(代码将不胜感激;D)