use of jakarta.ws.rs.client.AsyncInvoker in project jaxrs-api by eclipse-ee4j.
the class JAXRSClientIT method putThrowsProcessingExceptionTest.
/*
* @testName: putThrowsProcessingExceptionTest
*
* @assertion_ids: JAXRS:JAVADOC:401;
*
* @test_Strategy: Note that calling the Future.get() method on the returned
* Future instance may throw an ExecutionException that wraps an
* jakarta.ws.rs.ProcessingException thrown in case of an invocation processing
* failure.
*/
@Test
public void putThrowsProcessingExceptionTest() throws Fault {
_hostname = NONEXISTING_SITE;
AsyncInvoker async = startAsyncInvokerForMethod("put");
Entity<String> entity = Entity.entity("put", MediaType.WILDCARD_TYPE);
Future<Response> future = async.put(entity);
assertExceptionWithProcessingExceptionIsThrownAndLog(future);
}
use of jakarta.ws.rs.client.AsyncInvoker in project jaxrs-api by eclipse-ee4j.
the class JAXRSClientIT method methodWithClassWithEntityThrowsWebApplicationExceptionTest.
/*
* @testName: methodWithClassWithEntityThrowsWebApplicationExceptionTest
*
* @assertion_ids: JAXRS:JAVADOC:390;
*
* @test_Strategy: Note that calling the Future.get() method on the returned
* Future instance may throw an ExecutionException that wraps a
* WebApplicationException or one of its subclasses thrown in case the
* received response status code is not successful and the specified response
* type is not Response.
*/
@Test
public void methodWithClassWithEntityThrowsWebApplicationExceptionTest() throws Fault {
Future<String> future = null;
for (String method : ENTITY_METHODS) {
AsyncInvoker async = startAsyncInvokerForMethod(method.toLowerCase() + "notok");
Entity<String> entity = Entity.entity(method, MediaType.WILDCARD_TYPE);
future = async.method(method, entity, String.class);
assertExceptionWithWebApplicationExceptionIsThrownAndLog(future);
}
}
use of jakarta.ws.rs.client.AsyncInvoker in project jaxrs-api by eclipse-ee4j.
the class JAXRSClientIT method postWithClassThrowsProcessingExceptionTest.
/*
* @testName: postWithClassThrowsProcessingExceptionTest
*
* @assertion_ids: JAXRS:JAVADOC:398;
*
* @test_Strategy: Note that calling the Future.get() method on the returned
* Future instance may throw an ExecutionException that wraps an
* jakarta.ws.rs.ProcessingException thrown in case of an invocation processing
* failure.
*/
@Test
public void postWithClassThrowsProcessingExceptionTest() throws Fault {
_hostname = NONEXISTING_SITE;
Entity<String> entity = Entity.entity("post", MediaType.WILDCARD_TYPE);
AsyncInvoker async = startAsyncInvokerForMethod("post");
Future<String> future = async.post(entity, String.class);
assertExceptionWithProcessingExceptionIsThrownAndLog(future);
}
use of jakarta.ws.rs.client.AsyncInvoker in project jaxrs-api by eclipse-ee4j.
the class JAXRSClientIT method putWhileServerWaitTest.
/*
* @testName: putWhileServerWaitTest
*
* @assertion_ids: JAXRS:JAVADOC:401;
*
* @test_Strategy: Invoke HTTP PUT method for the current request
* asynchronously.
*/
@Test
public void putWhileServerWaitTest() throws Fault {
AsyncInvoker async = startAsyncInvokerForMethod("putandwait");
Entity<String> entity = Entity.entity("put", MediaType.WILDCARD_TYPE);
Future<Response> future = async.put(entity);
checkFutureOkResponse(future);
// return future;
}
use of jakarta.ws.rs.client.AsyncInvoker in project jaxrs-api by eclipse-ee4j.
the class JAXRSClientIT method getWithCallbackStringThrowsProcessingExceptionTest.
/*
* @testName: getWithCallbackStringThrowsProcessingExceptionTest
*
* @assertion_ids: JAXRS:JAVADOC:382;
*
* @test_Strategy: Note that calling the Future.get() method on the returned
* Future instance may throw an ExecutionException that wraps an
* jakarta.ws.rs.ProcessingException thrown in case of an invocation processing
* failure.
*/
@Test
public void getWithCallbackStringThrowsProcessingExceptionTest() throws Fault {
_hostname = NONEXISTING_SITE;
AsyncInvoker async = startAsyncInvokerForMethod("get");
InvocationCallback<String> callback = createStringCallback(false);
Future<String> future = async.get(callback);
assertExceptionWithProcessingExceptionIsThrownAndLog(future);
}
Aggregations