use of jakarta.ws.rs.client.CompletionStageRxInvoker in project jaxrs-api by eclipse-ee4j.
the class JAXRSClientIT method traceWithGenericTypeStringTest.
/*
* @testName: traceWithGenericTypeStringTest
*
* @assertion_ids: JAXRS:JAVADOC:1158; JAXRS:JAVADOC:1162; JAXRS:JAVADOC:1188;
*
* @test_Strategy: Invoke HTTP trace method for the current request
*/
@Test
public void traceWithGenericTypeStringTest() throws Fault {
GenericType<String> generic = createGeneric(String.class);
CompletionStageRxInvoker rx = startRxInvokerForMethod("trace");
Future<String> future = rx.trace(generic).toCompletableFuture();
checkFutureString(future, "trace");
}
use of jakarta.ws.rs.client.CompletionStageRxInvoker in project jaxrs-api by eclipse-ee4j.
the class JAXRSClientIT method optionsWithGenericTypeThrowsProcessingExceptionTest.
/*
* @testName: optionsWithGenericTypeThrowsProcessingExceptionTest
*
* @assertion_ids: JAXRS:JAVADOC:1149; JAXRS:JAVADOC:1162; JAXRS:JAVADOC:1179;
*
* @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 optionsWithGenericTypeThrowsProcessingExceptionTest() throws Fault {
_hostname = NONEXISTING_SITE;
CompletionStageRxInvoker rx = startRxInvokerForMethod("options");
GenericType<String> generic = createGeneric(String.class);
Future<String> future = rx.options(generic).toCompletableFuture();
assertExceptionWithProcessingExceptionIsThrownAndLog(future);
}
use of jakarta.ws.rs.client.CompletionStageRxInvoker in project jaxrs-api by eclipse-ee4j.
the class JAXRSClientIT method methodWithGenericTypeThrowsWebApplicationExceptionTest.
/*
* @testName: methodWithGenericTypeThrowsWebApplicationExceptionTest
*
* @assertion_ids: JAXRS:JAVADOC:1143; JAXRS:JAVADOC:1162; JAXRS:JAVADOC:1173;
*
* @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 methodWithGenericTypeThrowsWebApplicationExceptionTest() throws Fault {
Future<String> future = null;
GenericType<String> generic = createGeneric(String.class);
for (String method : METHODS) {
CompletionStageRxInvoker rx = startRxInvokerForMethod(method.toLowerCase() + "notok");
future = rx.method(method, generic).toCompletableFuture();
assertExceptionWithWebApplicationExceptionIsThrownAndLog(future);
}
}
use of jakarta.ws.rs.client.CompletionStageRxInvoker in project jaxrs-api by eclipse-ee4j.
the class JAXRSClientIT method traceTest.
// ------------------------------------------------------------------
// ---------------------------TRACE -----------------------------------
// ------------------------------------------------------------------
/*
* @testName: traceTest
*
* @assertion_ids: JAXRS:JAVADOC:1156; JAXRS:JAVADOC:1162; JAXRS:JAVADOC:1186;
*
* @test_Strategy: Invoke HTTP trace method for the current request
*/
@Test
public void traceTest() throws Fault {
CompletionStageRxInvoker rx = startRxInvokerForMethod("trace");
Future<Response> future = rx.trace().toCompletableFuture();
checkFutureOkResponse(future);
}
use of jakarta.ws.rs.client.CompletionStageRxInvoker in project jaxrs-api by eclipse-ee4j.
the class JAXRSClientIT method optionsThrowsProcessingExceptionTest.
/*
* @testName: optionsThrowsProcessingExceptionTest
*
* @assertion_ids: JAXRS:JAVADOC:1147; JAXRS:JAVADOC:1162; JAXRS:JAVADOC:1177;
*
* @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 optionsThrowsProcessingExceptionTest() throws Fault {
_hostname = NONEXISTING_SITE;
CompletionStageRxInvoker rx = startRxInvokerForMethod("options");
Future<Response> future = rx.options().toCompletableFuture();
assertExceptionWithProcessingExceptionIsThrownAndLog(future);
}
Aggregations