use of jakarta.ws.rs.client.CompletionStageRxInvoker in project jaxrs-api by eclipse-ee4j.
the class JAXRSClientIT method methodWithGenericTypeWithEntityThrowsProcessingExceptionTest.
/*
* @testName: methodWithGenericTypeWithEntityThrowsProcessingExceptionTest
*
* @assertion_ids: JAXRS:JAVADOC:1146; JAXRS:JAVADOC:1162; JAXRS:JAVADOC:1176;
*
* @test_Strategy: ResponseProcessingException - in case processing of a
* received HTTP response fails (e.g. in a filter or during conversion of the
* response entity data to an instance of a particular Java type).
*/
@Test
public void methodWithGenericTypeWithEntityThrowsProcessingExceptionTest() throws Fault {
_hostname = NONEXISTING_SITE;
GenericType<String> generic = createGeneric(String.class);
Future<String> future = null;
for (String method : ENTITY_METHODS) {
CompletionStageRxInvoker rx = startRxInvokerForMethod(method.toLowerCase());
Entity<String> entity = Entity.entity(method, MediaType.WILDCARD_TYPE);
future = rx.method(method, entity, generic).toCompletableFuture();
assertExceptionWithProcessingExceptionIsThrownAndLog(future);
}
}
use of jakarta.ws.rs.client.CompletionStageRxInvoker in project jaxrs-api by eclipse-ee4j.
the class JAXRSClientIT method postWithClassThrowsNoWebApplicationExceptionForResponseTest.
/*
* @testName: postWithClassThrowsNoWebApplicationExceptionForResponseTest
*
* @assertion_ids: JAXRS:JAVADOC:1151; JAXRS:JAVADOC:1162; JAXRS:JAVADOC:1181;
*
* @test_Strategy: WebApplicationException - in case the response status code
* of the response returned by the server is not successful and the specified
* response type is not Response.
*/
@Test
public void postWithClassThrowsNoWebApplicationExceptionForResponseTest() throws Fault {
CompletionStageRxInvoker rx = startRxInvokerForMethod("postnotok");
Entity<String> entity = Entity.entity("post", MediaType.WILDCARD_TYPE);
Future<Response> future = rx.post(entity, Response.class).toCompletableFuture();
checkFutureResponseStatus(future, Status.NOT_ACCEPTABLE);
}
use of jakarta.ws.rs.client.CompletionStageRxInvoker in project jaxrs-api by eclipse-ee4j.
the class JAXRSClientIT method deleteWithGenericTypeResponseTest.
/*
* @testName: deleteWithGenericTypeResponseTest
*
* @assertion_ids: JAXRS:JAVADOC:1136; JAXRS:JAVADOC:1162; JAXRS:JAVADOC:1166;
*
* @test_Strategy: Invoke HTTP DELETE method for the current request
*/
@Test
public void deleteWithGenericTypeResponseTest() throws Fault {
CompletionStageRxInvoker rx = startRxInvokerForMethod("delete");
GenericType<Response> generic = createGeneric(Response.class);
Future<Response> future = rx.delete(generic).toCompletableFuture();
checkFutureOkResponse(future);
}
use of jakarta.ws.rs.client.CompletionStageRxInvoker in project jaxrs-api by eclipse-ee4j.
the class JAXRSClientIT method putWithClassThrowsProcessingExceptionTest.
/*
* @testName: putWithClassThrowsProcessingExceptionTest
*
* @assertion_ids: JAXRS:JAVADOC:1154; JAXRS:JAVADOC:1162; JAXRS:JAVADOC:1184;
*
* @test_Strategy: ResponseProcessingException - in case processing of a
* received HTTP response fails (e.g. in a filter or during conversion of the
* response entity data to an instance of a particular Java type).
*/
@Test
public void putWithClassThrowsProcessingExceptionTest() throws Fault {
_hostname = NONEXISTING_SITE;
Entity<String> entity = Entity.entity("put", MediaType.WILDCARD_TYPE);
CompletionStageRxInvoker rx = startRxInvokerForMethod("put");
Future<String> future = rx.put(entity, String.class).toCompletableFuture();
assertExceptionWithProcessingExceptionIsThrownAndLog(future);
}
use of jakarta.ws.rs.client.CompletionStageRxInvoker in project jaxrs-api by eclipse-ee4j.
the class JAXRSClientIT method traceThrowsProcessingExceptionTest.
/*
* @testName: traceThrowsProcessingExceptionTest
*
* @assertion_ids: JAXRS:JAVADOC:1156; JAXRS:JAVADOC:1162; JAXRS:JAVADOC:1186;
*
* @test_Strategy: ResponseProcessingException - in case processing of a
* received HTTP response fails (e.g. in a filter or during conversion of the
* response entity data to an instance of a particular Java type).
*/
@Test
public void traceThrowsProcessingExceptionTest() throws Fault {
_hostname = NONEXISTING_SITE;
CompletionStageRxInvoker rx = startRxInvokerForMethod("trace");
Future<Response> future = rx.trace().toCompletableFuture();
assertExceptionWithProcessingExceptionIsThrownAndLog(future);
}
Aggregations