org.apache.gobblin.http.ApacheHttpRequestBuilderTest.java Source code

Java tutorial

Introduction

Here is the source code for org.apache.gobblin.http.ApacheHttpRequestBuilderTest.java

Source

/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.apache.gobblin.http;

import java.io.IOException;
import java.util.Queue;

import org.apache.avro.generic.GenericRecord;
import org.apache.http.HttpHeaders;
import org.apache.http.client.methods.HttpUriRequest;
import org.apache.http.client.methods.RequestBuilder;
import org.apache.http.entity.ContentType;
import org.apache.http.entity.StringEntity;
import org.mockito.ArgumentCaptor;
import org.testng.Assert;
import org.testng.annotations.Test;

import org.apache.gobblin.HttpTestUtils;
import org.apache.gobblin.async.AsyncRequest;
import org.apache.gobblin.async.BufferedRecord;

import static org.mockito.Mockito.spy;
import static org.mockito.Mockito.verify;

@Test
public class ApacheHttpRequestBuilderTest {
    /**
     * Build a {@link HttpUriRequest} from a {@link GenericRecord}
     */
    public void testBuildWriteRequest() throws IOException {
        String urlTemplate = "http://www.test.com/a/part1:${part1}/a/part2:${part2}";
        String verb = "post";
        ApacheHttpRequestBuilder builder = spy(new ApacheHttpRequestBuilder(urlTemplate, verb, "application/json"));
        ArgumentCaptor<RequestBuilder> requestBuilderArgument = ArgumentCaptor.forClass(RequestBuilder.class);

        Queue<BufferedRecord<GenericRecord>> queue = HttpTestUtils.createQueue(1, false);
        AsyncRequest<GenericRecord, HttpUriRequest> request = builder.buildRequest(queue);
        verify(builder).build(requestBuilderArgument.capture());

        RequestBuilder expected = RequestBuilder.post();
        expected.setUri("http://www.test.com/a/part1:01/a/part2:02?param1=01");
        String payloadStr = "{\"id\":\"id0\"}";
        expected.addHeader(HttpHeaders.CONTENT_TYPE, ContentType.APPLICATION_JSON.getMimeType())
                .setEntity(new StringEntity(payloadStr, ContentType.APPLICATION_JSON));

        // Compare HttpUriRequest
        HttpTestUtils.assertEqual(requestBuilderArgument.getValue(), expected);
        Assert.assertEquals(request.getRecordCount(), 1);
        Assert.assertEquals(queue.size(), 0);
    }
}