Search in sources :

Example 1 with ClientErrorException

use of jakarta.ws.rs.ClientErrorException in project jaxrs-api by eclipse-ee4j.

the class JAXRSClientIT method constructorResponseThrowableThrowsExceptionTest.

/*
   * @testName: constructorResponseThrowableThrowsExceptionTest
   * 
   * @assertion_ids: JAXRS:JAVADOC:315;
   * 
   * @test_Strategy: Construct a new client error exception.
   * java.lang.IllegalArgumentException - in case the response status code is
   * not from the Response.Status.Family.CLIENT_ERROR status code family.
   */
@Test
public void constructorResponseThrowableThrowsExceptionTest() throws Fault {
    for (Status status : Status.values()) if (Status.Family.familyOf(status.getStatusCode()) != Status.Family.CLIENT_ERROR)
        try {
            Response response = Response.status(status).build();
            ClientErrorException e = new ClientErrorException(response, new Throwable());
            fault("IllegalArgumentException has not been thrown for status", status, "; exception", e);
        } catch (IllegalArgumentException e) {
            logMsg("IllegalArgumentException has been thrown as expected for status", status);
        }
}
Also used : Status(jakarta.ws.rs.core.Response.Status) Response(jakarta.ws.rs.core.Response) ClientErrorException(jakarta.ws.rs.ClientErrorException) Test(org.junit.jupiter.api.Test)

Example 2 with ClientErrorException

use of jakarta.ws.rs.ClientErrorException in project jaxrs-api by eclipse-ee4j.

the class JAXRSClientIT method constructorStringStatusNullThrowsIAETest.

/*
   * @testName: constructorStringStatusNullThrowsIAETest
   * 
   * @assertion_ids: JAXRS:JAVADOC:1060;
   * 
   * @test_Strategy: Construct a new client error exception.
   * java.lang.IllegalArgumentException - in case the status code is null or if
   * it is not from the Response.Status.Family.CLIENT_ERROR status code family.
   */
@Test
public void constructorStringStatusNullThrowsIAETest() throws Fault {
    try {
        ClientErrorException e = new ClientErrorException(MESSAGE, (Status) null);
        fault("IllegalArgumentException has not been thrown for null status; exception", e);
    } catch (IllegalArgumentException e) {
        logMsg("IllegalArgumentException has been thrown as expected for null status");
    }
}
Also used : ClientErrorException(jakarta.ws.rs.ClientErrorException) Test(org.junit.jupiter.api.Test)

Example 3 with ClientErrorException

use of jakarta.ws.rs.ClientErrorException in project jaxrs-api by eclipse-ee4j.

the class JAXRSClientIT method constructorStatusThrowableThrowsExceptionTest.

/*
   * @testName: constructorStatusThrowableThrowsExceptionTest
   * 
   * @assertion_ids: JAXRS:JAVADOC:313;
   * 
   * @test_Strategy: Construct a new client error exception.
   * java.lang.IllegalArgumentException - in case the status code is null or if
   * it is not from the Response.Status.Family.CLIENT_ERROR status code family.
   */
@Test
public void constructorStatusThrowableThrowsExceptionTest() throws Fault {
    for (Status status : Status.values()) if (Status.Family.familyOf(status.getStatusCode()) != Status.Family.CLIENT_ERROR)
        try {
            ClientErrorException e = new ClientErrorException(status, new Throwable());
            fault("IllegalArgumentException has not been thrown for status", status, "exception", e);
        } catch (IllegalArgumentException e) {
            logMsg("IllegalArgumentException has been thrown as expected for status", status);
        }
}
Also used : Status(jakarta.ws.rs.core.Response.Status) ClientErrorException(jakarta.ws.rs.ClientErrorException) Test(org.junit.jupiter.api.Test)

Example 4 with ClientErrorException

use of jakarta.ws.rs.ClientErrorException in project jaxrs-api by eclipse-ee4j.

the class JAXRSClientIT method constructorStatusThrowsExceptionTest.

/*
   * @testName: constructorStatusThrowsExceptionTest
   * 
   * @assertion_ids: JAXRS:JAVADOC:310;
   * 
   * @test_Strategy: Construct a new client error exception.
   * java.lang.IllegalArgumentException - in case the status code is null or if
   * it is not from the Response.Status.Family.CLIENT_ERROR status code family.
   */
@Test
public void constructorStatusThrowsExceptionTest() throws Fault {
    for (Status status : Status.values()) if (Status.Family.familyOf(status.getStatusCode()) != Status.Family.CLIENT_ERROR)
        try {
            ClientErrorException e = new ClientErrorException(status);
            fault("IllegalArgumentException has not been thrown for status", status, "; exception", e);
        } catch (IllegalArgumentException e) {
            logMsg("IllegalArgumentException has been thrown as expected for status", status);
        }
}
Also used : Status(jakarta.ws.rs.core.Response.Status) ClientErrorException(jakarta.ws.rs.ClientErrorException) Test(org.junit.jupiter.api.Test)

Example 5 with ClientErrorException

use of jakarta.ws.rs.ClientErrorException in project jaxrs-api by eclipse-ee4j.

the class JAXRSClientIT method constructorResponseThrowsExceptionTest.

/*
   * @testName: constructorResponseThrowsExceptionTest
   * 
   * @assertion_ids: JAXRS:JAVADOC:312;
   * 
   * @test_Strategy: Construct a new client error exception.
   * java.lang.IllegalArgumentException - in case the response status code is
   * not from the Response.Status.Family.CLIENT_ERROR status code family.
   */
@Test
public void constructorResponseThrowsExceptionTest() throws Fault {
    for (Status status : Status.values()) if (Status.Family.familyOf(status.getStatusCode()) != Status.Family.CLIENT_ERROR)
        try {
            Response response = Response.status(status).build();
            ClientErrorException e = new ClientErrorException(response);
            fault("IllegalArgumentException has not been thrown for status", status, "; exception", e);
        } catch (IllegalArgumentException e) {
            logMsg("IllegalArgumentException has been thrown as expected for status", status);
        }
}
Also used : Status(jakarta.ws.rs.core.Response.Status) Response(jakarta.ws.rs.core.Response) ClientErrorException(jakarta.ws.rs.ClientErrorException) Test(org.junit.jupiter.api.Test)

Aggregations

ClientErrorException (jakarta.ws.rs.ClientErrorException)16 Test (org.junit.jupiter.api.Test)16 Status (jakarta.ws.rs.core.Response.Status)12 Response (jakarta.ws.rs.core.Response)4