Search in sources :

Example 31 with HttpClientProxy

use of com.tvd12.ezyhttp.client.HttpClientProxy in project ezyhttp by youngmonkeys.

the class HttpClientProxyTest method executeExceptionTest.

@Test
public void executeExceptionTest() throws Exception {
    // given
    HttpClientProxy sut = newClientProxy();
    GetRequest request = new GetRequest().setConnectTimeout(15000).setResponseType(TestResponse.class).setResponseType(StatusCodes.OK, TestResponse.class).setURL("http://127.0.0.1.0:18081/greet");
    // when
    CountDownLatch countDownLatch = new CountDownLatch(1);
    EzyWrap<Exception> wrap = new EzyWrap<>();
    sut.execute(request, new RequestCallback<ResponseEntity>() {

        @Override
        public void onResponse(ResponseEntity response) {
            System.out.println(response);
        }

        @Override
        public void onException(Exception e) {
            wrap.setValue(e);
            countDownLatch.countDown();
        }
    });
    countDownLatch.await();
    // then
    Asserts.assertEquals(UnknownHostException.class, wrap.getValue().getClass());
    sut.close();
    sut.stop();
}
Also used : EzyWrap(com.tvd12.ezyfox.util.EzyWrap) ResponseEntity(com.tvd12.ezyhttp.core.response.ResponseEntity) HttpClientProxy(com.tvd12.ezyhttp.client.HttpClientProxy) CountDownLatch(java.util.concurrent.CountDownLatch) DownloadCancelledException(com.tvd12.ezyhttp.client.exception.DownloadCancelledException) RequestQueueFullException(com.tvd12.ezyhttp.client.exception.RequestQueueFullException) UnknownHostException(java.net.UnknownHostException) BadRequestException(com.tvd12.ezyfox.exception.BadRequestException) ClientNotActiveException(com.tvd12.ezyhttp.client.exception.ClientNotActiveException) Test(org.testng.annotations.Test) BeforeTest(org.testng.annotations.BeforeTest) BaseTest(com.tvd12.test.base.BaseTest)

Example 32 with HttpClientProxy

use of com.tvd12.ezyhttp.client.HttpClientProxy in project ezyhttp by youngmonkeys.

the class HttpClientProxyTest method postJsonTest.

@Test
public void postJsonTest() throws Exception {
    // given
    HttpClientProxy sut = newClientProxy();
    PostRequest request = new PostRequest().setConnectTimeout(15000).setEntity(new TestRequest("Monkey")).setResponseType(TestResponse.class).setResponseType(StatusCodes.OK, TestResponse.class).setURL("http://127.0.0.1:18081/greet").setURL(new URL("http://127.0.0.1:18081/greet")).setURL(URI.create("http://127.0.0.1:18081/greet"));
    // when
    TestResponse actual = sut.call(request, 15000);
    // then
    TestResponse expectation = new TestResponse("Greet Monkey!");
    Asserts.assertEquals(expectation, actual);
    sut.close();
    sut.stop();
}
Also used : HttpClientProxy(com.tvd12.ezyhttp.client.HttpClientProxy) URL(java.net.URL) Test(org.testng.annotations.Test) BeforeTest(org.testng.annotations.BeforeTest) BaseTest(com.tvd12.test.base.BaseTest)

Example 33 with HttpClientProxy

use of com.tvd12.ezyhttp.client.HttpClientProxy in project ezyhttp by youngmonkeys.

the class HttpClientProxyTest method startTest.

@Test
public void startTest() {
    // given
    HttpClientProxy proxy = HttpClientProxy.builder().build();
    // when
    proxy.start();
    // then
    proxy.stop();
}
Also used : HttpClientProxy(com.tvd12.ezyhttp.client.HttpClientProxy) Test(org.testng.annotations.Test) BeforeTest(org.testng.annotations.BeforeTest) BaseTest(com.tvd12.test.base.BaseTest)

Aggregations

HttpClientProxy (com.tvd12.ezyhttp.client.HttpClientProxy)31 BaseTest (com.tvd12.test.base.BaseTest)27 BeforeTest (org.testng.annotations.BeforeTest)27 Test (org.testng.annotations.Test)27 File (java.io.File)11 BadRequestException (com.tvd12.ezyfox.exception.BadRequestException)8 ClientNotActiveException (com.tvd12.ezyhttp.client.exception.ClientNotActiveException)8 DownloadCancelledException (com.tvd12.ezyhttp.client.exception.DownloadCancelledException)8 RequestQueueFullException (com.tvd12.ezyhttp.client.exception.RequestQueueFullException)8 UnknownHostException (java.net.UnknownHostException)8 DownloadCancellationToken (com.tvd12.ezyhttp.client.concurrent.DownloadCancellationToken)6 EzyWrap (com.tvd12.ezyfox.util.EzyWrap)5 FileOutputStream (java.io.FileOutputStream)5 OutputStream (java.io.OutputStream)5 CountDownLatch (java.util.concurrent.CountDownLatch)5 URL (java.net.URL)4 HelloRequest (com.tvd12.ezyhttp.client.test.request.HelloRequest)3 ResponseEntity (com.tvd12.ezyhttp.core.response.ResponseEntity)3 DownloadRequest (com.tvd12.ezyhttp.client.request.DownloadRequest)2 Request (com.tvd12.ezyhttp.client.request.Request)2