Search in sources :

Example 6 with HttpTransport

use of org.apache.servicecomb.http.client.common.HttpTransport in project incubator-servicecomb-java-chassis by apache.

the class ServiceCenterRawClientTest method TestDefaultParameter.

@Test
public void TestDefaultParameter() throws IOException {
    HttpTransport httpTransport = Mockito.mock(HttpTransport.class);
    AddressManager addressManager = new AddressManager(PROJECT_NAME, Arrays.asList("http://127.0.0.1:30100"), new EventBus());
    ServiceCenterRawClient client = new ServiceCenterRawClient.Builder().setHttpTransport(httpTransport).setAddressManager(addressManager).setTenantName(TENANT_NAME).build();
    HttpResponse httpResponse = new HttpResponse();
    httpResponse.setStatusCode(200);
    httpResponse.setContent("ok");
    Mockito.when(httpTransport.doRequest(Mockito.any())).thenReturn(httpResponse);
    HttpResponse actualGetResponse = client.getHttpRequest(null, null, null);
    HttpResponse actualPostResponse = client.postHttpRequest(null, null, null);
    HttpResponse actualPutResponse = client.putHttpRequest(null, null, null);
    HttpResponse actualDeleteResponse = client.putHttpRequest(null, null, null);
    Assert.assertNotNull(actualGetResponse);
    Assert.assertEquals("ok", actualGetResponse.getContent());
    Assert.assertNotNull(actualPostResponse);
    Assert.assertEquals("ok", actualPostResponse.getContent());
    Assert.assertNotNull(actualPutResponse);
    Assert.assertEquals("ok", actualPutResponse.getContent());
    Assert.assertNotNull(actualDeleteResponse);
    Assert.assertEquals("ok", actualDeleteResponse.getContent());
}
Also used : HttpTransport(org.apache.servicecomb.http.client.common.HttpTransport) HttpResponse(org.apache.servicecomb.http.client.common.HttpResponse) EventBus(com.google.common.eventbus.EventBus) Test(org.junit.Test)

Aggregations

HttpTransport (org.apache.servicecomb.http.client.common.HttpTransport)6 ConfigConverter (org.apache.servicecomb.config.common.ConfigConverter)4 EventBus (com.google.common.eventbus.EventBus)2 RequestConfig (org.apache.http.client.config.RequestConfig)2 AddressManager (org.apache.servicecomb.config.center.client.AddressManager)2 ConfigCenterClient (org.apache.servicecomb.config.center.client.ConfigCenterClient)2 ConfigCenterManager (org.apache.servicecomb.config.center.client.ConfigCenterManager)2 QueryConfigurationsRequest (org.apache.servicecomb.config.center.client.model.QueryConfigurationsRequest)2 KieClient (org.apache.servicecomb.config.kie.client.KieClient)2 KieConfigManager (org.apache.servicecomb.config.kie.client.KieConfigManager)2 KieAddressManager (org.apache.servicecomb.config.kie.client.model.KieAddressManager)2 KieConfiguration (org.apache.servicecomb.config.kie.client.model.KieConfiguration)2 HttpResponse (org.apache.servicecomb.http.client.common.HttpResponse)2 Test (org.junit.Test)2