在Flutter中使用MockClient进行测试时遇到问题

时间:2019-02-05 06:16:21

标签: flutter flutter-test

我正在尝试使用MockClient在flutter中编写一个简单的测试,但是我似乎无法使其正常工作。

这是我要测试的代码:

getItemById(int id) async {
   final response = await client.get("$_host/item/$id.json");
   final decodedJson = json.decode(response.body);

   return Item.fromJson(decodedJson);
}

这是测试代码:

test("Test getting item by id", () async {
   final newsApi = NewsAPI();
   newsApi.client = MockClient((request) async {
      final jsonMap = {'id': 123};
      Response(json.encode(jsonMap), 200);
   });

   final item = await newsApi.getItemById(123);
   print("Items:  ${item.toString()}"); //<-- dosen't print anything. 
   expect(item.id , 123);
});

运行测试时,它失败并显示以下消息:

 NoSuchMethodError: The getter 'bodyBytes' was called on null.
 Receiver: null
 Tried calling: bodyBytes

我猜这里的问题是,当我调用getItemById方法时,MockClient没有返回任何内容,但是我不确定为什么。

2 个答案:

答案 0 :(得分:0)

模拟希望测试功能与实际功能完全相同(包括可选参数等)。如果两者都不匹配,则返回NULL,这就是代码所发生的情况。仔细检查一下您的测试功能与原始功能的不同之处。

答案 1 :(得分:0)

我有同样的问题。您必须返回响应

return Response(json.encode(jsonMap), 200);