use of jakarta.ws.rs.client.CompletionStageRxInvoker in project jaxrs-api by eclipse-ee4j.
the class JAXRSClientIT method putWithGenericTypeThrowsWebApplicationExceptionTest.
/*
* @testName: putWithGenericTypeThrowsWebApplicationExceptionTest
*
* @assertion_ids: JAXRS:JAVADOC:1155; JAXRS:JAVADOC:1162; JAXRS:JAVADOC:1185;
*
* @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 putWithGenericTypeThrowsWebApplicationExceptionTest() throws Fault {
GenericType<String> generic = createGeneric(String.class);
Entity<String> entity = Entity.entity("put", MediaType.WILDCARD_TYPE);
CompletionStageRxInvoker rx = startRxInvokerForMethod("putnotok");
Future<String> future = rx.put(entity, generic).toCompletableFuture();
assertExceptionWithWebApplicationExceptionIsThrownAndLog(future);
}
use of jakarta.ws.rs.client.CompletionStageRxInvoker in project jaxrs-api by eclipse-ee4j.
the class JAXRSClientIT method methodWithClassThrowsWebApplicationExceptionTest.
/*
* @testName: methodWithClassThrowsWebApplicationExceptionTest
*
* @assertion_ids: JAXRS:JAVADOC:1142; JAXRS:JAVADOC:1162; JAXRS:JAVADOC:1172;
*
* @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 methodWithClassThrowsWebApplicationExceptionTest() throws Fault {
Future<String> future = null;
for (String method : METHODS) {
CompletionStageRxInvoker rx = startRxInvokerForMethod(method.toLowerCase() + "notok");
future = rx.method(method, String.class).toCompletableFuture();
assertExceptionWithWebApplicationExceptionIsThrownAndLog(future);
}
}
use of jakarta.ws.rs.client.CompletionStageRxInvoker in project jaxrs-api by eclipse-ee4j.
the class JAXRSClientIT method methodWithGenericTypeStringWithEntityTest.
/*
* @testName: methodWithGenericTypeStringWithEntityTest
*
* @assertion_ids: JAXRS:JAVADOC:1146; JAXRS:JAVADOC:1162; JAXRS:JAVADOC:1176;
*
* @test_Strategy: Invoke an arbitrary method for the current request
*/
@Test
public void methodWithGenericTypeStringWithEntityTest() throws Fault {
Future<String> future = null;
GenericType<String> generic = createGeneric(String.class);
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();
checkFutureString(future, method);
}
}
use of jakarta.ws.rs.client.CompletionStageRxInvoker in project jaxrs-api by eclipse-ee4j.
the class JAXRSClientIT method postThrowsProcessingExceptionTest.
/*
* @testName: postThrowsProcessingExceptionTest
*
* @assertion_ids: JAXRS:JAVADOC:1150; JAXRS:JAVADOC:1162; JAXRS:JAVADOC:1180;
*
* @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 postThrowsProcessingExceptionTest() throws Fault {
_hostname = NONEXISTING_SITE;
CompletionStageRxInvoker rx = startRxInvokerForMethod("post");
Entity<String> entity = Entity.entity("post", MediaType.WILDCARD_TYPE);
Future<Response> future = rx.post(entity).toCompletableFuture();
assertExceptionWithProcessingExceptionIsThrownAndLog(future);
}
use of jakarta.ws.rs.client.CompletionStageRxInvoker in project jaxrs-api by eclipse-ee4j.
the class JAXRSClientIT method putThrowsProcessingExceptionTest.
/*
* @testName: putThrowsProcessingExceptionTest
*
* @assertion_ids: JAXRS:JAVADOC:1153; JAXRS:JAVADOC:1162; JAXRS:JAVADOC:1183;
*
* @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 putThrowsProcessingExceptionTest() throws Fault {
_hostname = NONEXISTING_SITE;
CompletionStageRxInvoker rx = startRxInvokerForMethod("put");
Entity<String> entity = Entity.entity("put", MediaType.WILDCARD_TYPE);
Future<Response> future = rx.put(entity).toCompletableFuture();
assertExceptionWithProcessingExceptionIsThrownAndLog(future);
}
Aggregations