测试Rest Api,它接受一个zip文件作为输入

时间:2015-05-26 14:06:37

标签: java rest testing jersey

我在下面休息一下。

@POST
@Path("/importFile")
@Consumes("application/zip")
@ApiOperation(value = "Importing File")
public List<String> importFile(InputStream is) throws IOException {
    ZipInputStream zipInputStream = new ZipInputStream(is);
    return importFile(zipInputStream);
}

我该如何测试?

1 个答案:

答案 0 :(得分:1)

您可以使用卷曲工具 -

curl -v -F file=@file1.txt -F http://testYouFile/endpoint

您还可以使用邮寄员或https://chrome.google.com/webstore/detail/advanced-rest-client/hgmloofddffdnphfgcellkdfbfbjeloo

等Chrome附加组件