Search in sources :

Example 1 with ProtoObjectParser

use of com.google.api.client.protobuf.ProtoObjectParser in project google-api-java-client by google.

the class BatchRequestTest method getBatchPopulatedWithRequests.

private BatchRequest getBatchPopulatedWithRequests(boolean testServerError, boolean testAuthenticationError, boolean returnSuccessAuthenticatedContent, boolean testExponentialBackOff, boolean testRedirect, boolean testBinary, boolean testMissingLength) throws Exception {
    transport = new MockTransport(testServerError, testAuthenticationError, testExponentialBackOff, testRedirect, testBinary, testMissingLength);
    MockGoogleClient client = new MockGoogleClient.Builder(transport, ROOT_URL, SERVICE_PATH, null, null).setApplicationName("Test Application").build();
    MockGoogleClientRequest<String> jsonHttpRequest1 = new MockGoogleClientRequest<String>(client, METHOD1, URI_TEMPLATE1, null, String.class);
    MockGoogleClientRequest<String> jsonHttpRequest2 = new MockGoogleClientRequest<String>(client, METHOD2, URI_TEMPLATE2, null, String.class);
    credential = new MockCredential();
    ObjectParser parser = testBinary ? new ProtoObjectParser() : new JsonObjectParser(new JacksonFactory());
    BatchRequest batchRequest = new BatchRequest(transport, credential).setBatchUrl(new GenericUrl(TEST_BATCH_URL));
    HttpRequest request1 = jsonHttpRequest1.buildHttpRequest();
    request1.setParser(parser);
    HttpRequest request2 = jsonHttpRequest2.buildHttpRequest();
    request2.setParser(parser);
    if (testAuthenticationError) {
        request2.setUnsuccessfulResponseHandler(new MockUnsuccessfulResponseHandler(transport, returnSuccessAuthenticatedContent));
    }
    if (testExponentialBackOff) {
        request2.setBackOffPolicy(new MockExponentialBackOffPolicy());
    }
    if (testBinary) {
        batchRequest.queue(request1, MockData.Class1.class, ErrorOutput.ErrorBody.class, new TestCallback1Adapter(callback1));
        batchRequest.queue(request2, MockData.Class2.class, ErrorOutput.ErrorBody.class, new TestCallback2Adapter(callback2));
    } else {
        batchRequest.queue(request1, MockDataClass1.class, GoogleJsonErrorContainer.class, callback1);
        batchRequest.queue(request2, MockDataClass2.class, GoogleJsonErrorContainer.class, callback2);
    }
    return batchRequest;
}
Also used : ObjectParser(com.google.api.client.util.ObjectParser) JsonObjectParser(com.google.api.client.json.JsonObjectParser) ProtoObjectParser(com.google.api.client.protobuf.ProtoObjectParser) LowLevelHttpRequest(com.google.api.client.http.LowLevelHttpRequest) HttpRequest(com.google.api.client.http.HttpRequest) MockLowLevelHttpRequest(com.google.api.client.testing.http.MockLowLevelHttpRequest) MockGoogleClient(com.google.api.client.googleapis.testing.services.MockGoogleClient) GenericUrl(com.google.api.client.http.GenericUrl) JacksonFactory(com.google.api.client.json.jackson2.JacksonFactory) JsonObjectParser(com.google.api.client.json.JsonObjectParser) MockGoogleClientRequest(com.google.api.client.googleapis.testing.services.MockGoogleClientRequest) ProtoObjectParser(com.google.api.client.protobuf.ProtoObjectParser)

Aggregations

MockGoogleClient (com.google.api.client.googleapis.testing.services.MockGoogleClient)1 MockGoogleClientRequest (com.google.api.client.googleapis.testing.services.MockGoogleClientRequest)1 GenericUrl (com.google.api.client.http.GenericUrl)1 HttpRequest (com.google.api.client.http.HttpRequest)1 LowLevelHttpRequest (com.google.api.client.http.LowLevelHttpRequest)1 JsonObjectParser (com.google.api.client.json.JsonObjectParser)1 JacksonFactory (com.google.api.client.json.jackson2.JacksonFactory)1 ProtoObjectParser (com.google.api.client.protobuf.ProtoObjectParser)1 MockLowLevelHttpRequest (com.google.api.client.testing.http.MockLowLevelHttpRequest)1 ObjectParser (com.google.api.client.util.ObjectParser)1