use of jakarta.ws.rs.client.CompletionStageRxInvoker in project jaxrs-api by eclipse-ee4j.
the class JAXRSClientIT method deleteWithGenericTypeStringTest.
/*
* @testName: deleteWithGenericTypeStringTest
*
* @assertion_ids: JAXRS:JAVADOC:1136; JAXRS:JAVADOC:1162; JAXRS:JAVADOC:1166;
*
* @test_Strategy: Invoke HTTP DELETE method for the current request
*/
@Test
public void deleteWithGenericTypeStringTest() throws Fault {
CompletionStageRxInvoker rx = startRxInvokerForMethod("delete");
GenericType<String> generic = createGeneric(String.class);
Future<String> future = rx.delete(generic).toCompletableFuture();
checkFutureString(future, "delete");
}
use of jakarta.ws.rs.client.CompletionStageRxInvoker in project jaxrs-api by eclipse-ee4j.
the class JAXRSClientIT method postWithGenericTypeStringTest.
/*
* @testName: postWithGenericTypeStringTest
*
* @assertion_ids: JAXRS:JAVADOC:1152; JAXRS:JAVADOC:1162; JAXRS:JAVADOC:1182;
*
* @test_Strategy: Invoke HTTP post method for the current request
*/
@Test
public void postWithGenericTypeStringTest() throws Fault {
GenericType<String> generic = createGeneric(String.class);
Entity<String> entity = Entity.entity("post", MediaType.WILDCARD_TYPE);
CompletionStageRxInvoker rx = startRxInvokerForMethod("post");
Future<String> future = rx.post(entity, generic).toCompletableFuture();
checkFutureString(future, "post");
}
use of jakarta.ws.rs.client.CompletionStageRxInvoker in project jaxrs-api by eclipse-ee4j.
the class JAXRSClientIT method postWithGenericTypeThrowsProcessingExceptionTest.
/*
* @testName: postWithGenericTypeThrowsProcessingExceptionTest
*
* @assertion_ids: JAXRS:JAVADOC:1152; JAXRS:JAVADOC:1162; JAXRS:JAVADOC:1182;
*
* @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 postWithGenericTypeThrowsProcessingExceptionTest() throws Fault {
_hostname = NONEXISTING_SITE;
Entity<String> entity = Entity.entity("post", MediaType.WILDCARD_TYPE);
GenericType<String> generic = createGeneric(String.class);
CompletionStageRxInvoker rx = startRxInvokerForMethod("post");
Future<String> future = rx.post(entity, generic).toCompletableFuture();
assertExceptionWithProcessingExceptionIsThrownAndLog(future);
}
use of jakarta.ws.rs.client.CompletionStageRxInvoker in project jaxrs-api by eclipse-ee4j.
the class JAXRSClientIT method methodWithResponseClassWithEntityTest.
/*
* @testName: methodWithResponseClassWithEntityTest
*
* @assertion_ids: JAXRS:JAVADOC:1145; JAXRS:JAVADOC:1162; JAXRS:JAVADOC:1175;
*
* @test_Strategy: Invoke an arbitrary method for the current request
*/
@Test
public void methodWithResponseClassWithEntityTest() throws Fault {
Future<Response> 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, Response.class).toCompletableFuture();
checkFutureOkResponse(future);
}
}
use of jakarta.ws.rs.client.CompletionStageRxInvoker in project jaxrs-api by eclipse-ee4j.
the class JAXRSClientIT method putWithGenericTypeThrowsNoWebApplicationExceptionForResponseTest.
/*
* @testName: putWithGenericTypeThrowsNoWebApplicationExceptionForResponseTest
*
* @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 putWithGenericTypeThrowsNoWebApplicationExceptionForResponseTest() throws Fault {
Entity<String> entity = Entity.entity("put", MediaType.WILDCARD_TYPE);
CompletionStageRxInvoker rx = startRxInvokerForMethod("putnotok");
GenericType<Response> generic = createGeneric(Response.class);
Future<Response> future = rx.put(entity, generic).toCompletableFuture();
checkFutureResponseStatus(future, Status.NOT_ACCEPTABLE);
}
Aggregations