我们有一个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请求到我们的服务器?