package org.jboss.resteasy.test.exception; import org.jboss.arquillian.container.test.api.Deployment; import org.jboss.arquillian.container.test.api.RunAsClient; import org.jboss.arquillian.junit.Arquillian; import org.jboss.resteasy.client.jaxrs.ResteasyClient; import org.jboss.resteasy.client.jaxrs.ResteasyClientBuilder; import org.jboss.resteasy.test.exception.resource.ExceptionMapperCustomRuntimeException; import org.jboss.resteasy.test.exception.resource.ExceptionMapperInjectionCustomMapper; import org.jboss.resteasy.test.exception.resource.ExceptionMapperInjectionCustomSimpleMapper; import org.jboss.resteasy.test.exception.resource.ExceptionMapperInjectionException; import org.jboss.resteasy.test.exception.resource.ExceptionMapperInjectionNotFoundMapper; import org.jboss.resteasy.test.exception.resource.ExceptionMapperInjectionResource; import org.jboss.resteasy.util.HttpResponseCodes; import org.jboss.resteasy.utils.PortProviderUtil; import org.jboss.resteasy.utils.TestUtil; import org.jboss.shrinkwrap.api.Archive; import org.jboss.shrinkwrap.api.spec.WebArchive; import org.junit.AfterClass; import org.junit.Assert; import org.junit.BeforeClass; import org.junit.Test; import org.junit.runner.RunWith; import javax.ws.rs.client.WebTarget; import javax.ws.rs.core.Response; /** * @tpSubChapter Resteasy-client * @tpChapter Integration tests * @tpSince RESTEasy 3.0.16 * @tpTestCaseDetails ExceptionMapper testing. Regression test for RESTEASY-300 and RESTEASY-396 */ @RunWith(Arquillian.class) @RunAsClient public class ExceptionMapperInjectionTest { static ResteasyClient client; @Deployment public static Archive<?> createTestArchive() { WebArchive war = TestUtil.prepareArchive(ExceptionMapperInjectionTest.class.getSimpleName()); war.addClass(ExceptionMapperCustomRuntimeException.class); war.addClass(ExceptionMapperInjectionException.class); return TestUtil.finishContainerPrepare(war, null, ExceptionMapperInjectionCustomMapper.class, ExceptionMapperInjectionCustomSimpleMapper.class, ExceptionMapperInjectionNotFoundMapper.class, ExceptionMapperInjectionResource.class); } @BeforeClass public static void init() { client = new ResteasyClientBuilder().build(); } @AfterClass public static void after() throws Exception { client.close(); } public String generateUrl(String path) { return PortProviderUtil.generateURL(path, ExceptionMapperInjectionTest.class.getSimpleName()); } /** * @tpTestDetails Check non-existent path * @tpSince RESTEasy 3.0.16 */ @Test public void testNotFound() throws Exception { WebTarget base = client.target(generateUrl("/test/nonexistent")); Response response = base.request().get(); Assert.assertEquals(HttpResponseCodes.SC_HTTP_VERSION_NOT_SUPPORTED, response.getStatus()); response.close(); } /** * @tpTestDetails Check correct path * @tpSince RESTEasy 3.0.16 */ @Test public void testMapper() throws Exception { WebTarget base = client.target(generateUrl("/test")); Response response = base.request().get(); Assert.assertEquals(Response.Status.PRECONDITION_FAILED.getStatusCode(), response.getStatus()); response.close(); } /** * @tpTestDetails Check correct path, no content is excepted * @tpSince RESTEasy 3.0.16 */ @Test public void testMapper2() throws Exception { WebTarget base = client.target(generateUrl("/test/null")); Response response = base.request().get(); Assert.assertEquals(HttpResponseCodes.SC_NO_CONTENT, response.getStatus()); response.close(); } }