你有一个 Resteasy webservice 方法,它以 MultipartFormDataInput 对象作为参数,并从中提取大量信息。我想为此方法编写一个 jUnit 测试,但我一直无法找到任何方法来创建此对象并将虚拟数据放入其中,因此我可以直接调用我的 webservice 方法。服务方法从这样的表单中提取数据......
@POST
@Path("/requestDeviceCode")
@Produces({ MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON })
@Consumes("multipart/form-data")
public DeviceCodeModel requestDeviceCode(final MultipartFormDataInput inputMultipart) {
// process the form data - only field in the form is the token
Map<String, List<InputPart>> formData = null; // we'll put the form data in here
formData = inputMultipart.getFormDataMap();
String token = null;
try {
token = formData.get("Token").get(0).getBodyAsString();
this._logger.debug("Pulled encrypted token out of input form, it's " + token);
这很好用,但试图创建一个对象作为参数传递给“requestDeviceCode”让我受阻。我已经尝试过这种变化......
// create a multipartForm (input to the service POST) and add the "token" string to it
MultipartFormDataOutput newForm = new MultipartFormDataOutput();
newForm.addFormData("Token", encryptedXMLString, MediaType.APPLICATION_XML_TYPE);
_service.requestDeviceCode((MultipartFormDataInput) newForm);
但它只是没有这样做(这个特殊的错误是我无法将输出表单转换为输入表单)。我一直无法找到一种方法来创建新的 MultiPartFormDataInput 并向其中添加数据。
有人有建议吗?