use of com.tvd12.ezyhttp.client.HttpClient in project ezyhttp by youngmonkeys.
the class HttpClientTest method postMethodUnauthorized.
@Test
public void postMethodUnauthorized() {
// given
HttpClient sut = HttpClient.builder().build();
PostRequest request = new PostRequest().setResponseType(TestResponse.class).setResponseType(StatusCodes.OK, TestResponse.class).setURL(URI.create("http://127.0.0.1:18081/401"));
// when
Throwable e = Asserts.assertThrows(() -> sut.call(request));
// then
Asserts.assertThat(e).isEqualsType(HttpUnauthorizedException.class);
}
use of com.tvd12.ezyhttp.client.HttpClient in project ezyhttp by youngmonkeys.
the class V018HttpClientTest method main.
public static void main(String[] args) throws Exception {
HttpClient client = HttpClient.builder().build();
PostRequest loveRequest = new PostRequest().setURL("http://localhost:8083/love");
System.out.println(client.request(loveRequest));
DeleteRequest deleteRequest = new DeleteRequest().setURL("http://localhost:8083/api/v1/customer/delete").setEntity(RequestEntity.builder().header("token", "123456").build());
System.out.println(client.request(deleteRequest));
System.out.println(client.request(deleteRequest).getBody().toString());
GetRequest textRequest = new GetRequest().setURL("http://localhost:8083/text");
System.out.println((String) client.call(textRequest));
GetRequest listRequest = new GetRequest().setResponseType(List.class).setURL("http://localhost:8083/list");
System.out.println(client.call(listRequest).toString());
}
Aggregations