我有一个场景,我需要执行负面的测试场景。
此PUT调用更新客户对象。
我需要将对象转换为JSON,并在应用于有效负载之前删除强制属性。
现在,当我提供缺少属性的有效负载时,我期待400响应和错误消息。
我使用了以下代码但有InvalidDefinitionException
错误
com.fasterxml.jackson.databind.exc.InvalidDefinitionException: No serializer found for class org.json.JSONObject and no properties discovered to create BeanSerializer (to avoid exception, disable SerializationFeature.FAIL_ON_EMPTY_BEANS)
代码:
UpdateCustomerModel updateCustomerModel = new UpdateCustomerModel()
updateCustomerModel.setFirstName("abc");
updateCustomerModel.setLastName("abc");
updateCustomerModel.setEmail("a@a.com");
ObjectMapper mapper = new ObjectMapper();
String json = mapper.writeValueAsString(updateCustomerModel);
JSONObject updateCustomerJson = new JSONObject(json);
updateCustomerJson.getJSONObject("customer").remove("email");
Response response =
given().filter(new RequestLoggingFilter(this.requestCapture))
.header("Authorization", getSession().getToken()).body(updateCustomerJson)
.body(updateCustomerJson)
.when()
.put(Resource.updateCustomer)
.then()
.extract().response();
PAYLOAD: 有效载荷中的强制属性是;
firstname, lastname and email
{
"customer": {
"id": null,
"firstname": "Chuck",
"lastname": "Patterson",
"store_id": null,
"website_id": 1,
"addresses": [
],
"default_billing": null,
"default_shipping": null
}
}
尝试过R& D许多配置,但没有快乐
e.g
mapper.disable(SerializationFeature.FAIL_ON_EMPTY_BEANS);
有人可以指出任何方向吗?
答案 0 :(得分:0)
杰克逊似乎无法将您试图传入的JSONObject
序列化为正文。删除不需要的字段后,为什么不尝试将其转换回String?