Search in sources :

Example 6 with ErrorTransport

use of com.google.api.client.googleapis.json.GoogleJsonErrorTest.ErrorTransport in project google-api-java-client by google.

the class GoogleJsonResponseExceptionTest method testFrom_detailsArbitraryXmlContent.

public void testFrom_detailsArbitraryXmlContent() throws Exception {
    HttpTransport transport = new ErrorTransport("<foo>", "application/atom+xml; charset=utf-8");
    HttpRequest request = transport.createRequestFactory().buildGetRequest(HttpTesting.SIMPLE_GENERIC_URL);
    request.setThrowExceptionOnExecuteError(false);
    HttpResponse response = request.execute();
    GoogleJsonResponseException ge = GoogleJsonResponseException.from(GoogleJsonErrorTest.FACTORY, response);
    assertNull(ge.getDetails());
    assertTrue(ge.getMessage(), ge.getMessage().startsWith("403" + StringUtils.LINE_SEPARATOR + "<"));
}
Also used : HttpRequest(com.google.api.client.http.HttpRequest) MockHttpTransport(com.google.api.client.testing.http.MockHttpTransport) HttpTransport(com.google.api.client.http.HttpTransport) HttpResponse(com.google.api.client.http.HttpResponse) ErrorTransport(com.google.api.client.googleapis.json.GoogleJsonErrorTest.ErrorTransport)

Aggregations

ErrorTransport (com.google.api.client.googleapis.json.GoogleJsonErrorTest.ErrorTransport)6 HttpRequest (com.google.api.client.http.HttpRequest)6 HttpResponse (com.google.api.client.http.HttpResponse)6 HttpTransport (com.google.api.client.http.HttpTransport)6 MockHttpTransport (com.google.api.client.testing.http.MockHttpTransport)6