【发布时间】:2019-11-18 21:46:45
【问题描述】:
我一直在尝试使用 resttemplate 或 Restassured 库来自动化一些 API 测试,但我在发布请求时遇到了问题。我似乎无法弄清楚如何处理这个问题。我不断收到 415 unsupported type error ,我已经尝试了很多想法并阅读了数百个线程。如果有人有解决方案,请告诉我。 这是开发者代码
@POST
@Consumes(MediaType.MULTIPART_FORM_DATA)
@Produces(MediaType.APPLICATION_JSON)
public Response postData(@FormDataParam("file") InputStream is,
@FormDataParam("file") FormDataContentDisposition fileName,
@FormDataParam("checkInCommInfoInput") String checkInCommInfoInput,
@HeaderParam("authorization") String authString) { }
这是我尝试使用 resttemplate 字符串 addURI = "https://myURI"; HttpHeaders 标头 = 新的 HttpHeaders();
//headers.add("Accept","*/*");
headers.setContentType(MediaType.APPLICATION_JSON);
headers.add("Authorization", " a values will be here ");
System.out.println("**************************"+headers.getContentType());
String jsonBody = "my json file will be here";
//System.out.println("\n\n" + jsonBody);
HttpEntity<String> entity = new HttpEntity<String>(jsonBody, headers);
//POST Method to Add New Employee
response = this.restTemplate.postForEntity(addURI, entity, String.class);
responseBodyPOST = response.getBody();
// Write response to file
responseBody = response.getBody().toString();
我对 RestAssured 的尝试
RestAssured.useRelaxedHTTPSValidation();
RestAssured.baseURI ="https://myURI";
EncoderConfig encoderconfig = new EncoderConfig();
Response response = RestAssured.given()
.header("Content-Type","application/json" )
.header("Authorization", "a vvalues will be here")
.header("Accept",ContentType.JSON )
.config(RestAssured.config()
.encoderConfig(encoderconfig.appendDefaultContentCharsetToContentTypeIfUndefined(false)))
//.contentType(ContentType.JSON)
// .accept("application/json")
.log().all().body(jsonBody).post()
.then()
.assertThat()
.log().ifError()
.statusCode(200)
.extract().response();
System.out.println("-------------"+ response.getBody().asString());
【问题讨论】:
标签: automated-tests resttemplate rest-assured web-api-testing