如何使用空手道测试下载api

时间:2018-03-03 05:50:26

标签: karate

我有一个api用于文件下载( txt, .doc,*。csv),在java.i中使用spring框架想要使用空手道进行验收测试。我可以这样做。

这是我的代码

@RequestMapping(path = "/download", method = RequestMethod.GET)
public ResponseEntity<Resource> download(String param) throws 
IOException {
InputStreamResource resource = new InputStreamResource(new FileInputStream(file));
return ResponseEntity.ok()
        .headers(headers)
        .contentLength(file.length())
        .contentType(MediaType.parseMediaType("application/octet-stream"))
        .body(resource);

}

1 个答案:

答案 0 :(得分:1)

请参阅此示例中的第16行upload.feature

这是正常get