5

何が起こっているのかわからない、完全なエラーは次のとおりです。

Problem with i/o No serializer found for class org.json.JSONObject and no properties        discovered to create BeanSerializer (to avoid exception, disable SerializationConfig.Feature.FAIL_ON_EMPTY_BEANS) )

PUTリクエストをRESTfulサービスに送信しようとしています。POSTを解析し、PUTの「ID」と「enabled」の変更されたキーと値のペアを送信しています。

@Test(dependsOnMethods= {"Post"})
public void Put() throws IOException  {

logger.logTestActivity("Testing FORM data POST using Excel file");
requestBuilder = new RequestSpecBuilder();

String jsonString = "";
boolean enabledModify = false;

try {
 BufferedReader in = new BufferedReader(new FileReader(
 xmlTest.getParameter("json-post")));

String str;

while ((str = in.readLine()) != null) {
      jsonString += str;
        }

JSONObject jsonObjPut = new JSONObject(jsonString);
jsonObjPut.put("_id", createUserId);
jsonObjPut.put("enabled",enabledModify);

    System.out.println(jsonObjPut.toString());
in.close();

    requestBuilder.setContentType(ContentType.JSON);
    requestSpecification = requestBuilder.build();
    responseBuilder.expectStatusCode(Integer.parseInt(xmlTest
    .getParameter("http-status-code-200")));
    responseBuilder.expectContentType(ContentType.JSON);
    responseSpecification = responseBuilder.build();    
System.out.println(createUserId);

String responseJson = given().body(jsonObjPut).         
when().put("/" + createUserId).asString();

    System.out.println(responseJson);

logger.logTestActivity("Finished testing FORM data POST using Excel file");
} catch (AssertionError e ) {
  logger.logTestActivity(
        "Error testing FORM data post: " + e.getMessage(),logger.ERROR);

      System.out.println("REST URL: " + RestAssured.baseURI + " "
                + RestAssured.port + " " + RestAssured.basePath );
  Assert.fail("Error testing FORM data POST: " + e.getMessage());
        throw e;
} catch (IOException | JSONException e) {
   System.out.println("Problem with i/o" + e.getMessage()); 
    }
}

createUserIDは、POSTから解析されたIDであるグローバル変数です。

解析されるJSONファイルは次のようになります。

{
"enabled" : false,
"_id" : "fdse332a-22432d-4432b"
}

テスト前の方法では、すべての適切なURLエンドポイントで安心を設定しています...

また、PUTも失敗し、NULLPointerExceptionエラーが発生します。それは将来別の投稿になるかもしれません!

4

2 に答える 2

11

解決策:安心して渡すときに、JSONオブジェクトを文字列に変換していませんでした。

String responseJson = given().body(jsonObjPut.toString).

これでうまくいきました。ここで、生成されたIDを使用して既存のjsonを変更し、RESTfulサービスでPUTを成功させます。

于 2012-11-06T17:42:52.063 に答える
0

また、Java SpringRestApiでも同じ問題に直面していました。BeanSerializerExcptionをスローしていました。JsonNODEの代わりにクラスを使用してくださいJSONObject

于 2017-03-20T11:05:20.630 に答える