我们有一个REST服务,我们想测试它。我想过为此目的使用HttpUnit。 我们将POST请求发送到资源URL,并在收到请求后从请求中检索文件。在我们的服务器代码中,我们有类似的东西:
MultipartFormData body = request().body().asMultipartFormData();
FilePart file = body.getFile("upfile");
File pictureFile = file.getFile();
在我的测试中,我写道:
WebConversation wc = new WebConversation();
WebRequest wr = new PostMethodWebRequest("http://linkToOurResource");
File f = new File("testFile.jpg");
wr.selectFile("upfile", f, "multipart/form-data;");
WebResponse response = wc.getResponse(wr);
但我收到以下错误:
Test functional.AcceptanceTests.testAddingNewClient failed: Parameter 'upfile' is not a file parameter and may not be set to a file value.
如何将POST请求中的文件发送到我们的服务器?
答案 0 :(得分:0)
您可能需要阅读httpunit开发人员常见问题解答 - 只需搜索httpunit的单元测试以找到合适的源代码示例: