package org.jboss.resteasy.test.resource.basic; 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.test.TestPortProvider; import org.jboss.resteasy.test.resource.basic.resource.ConstructedInjectionResource; 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.Client; import javax.ws.rs.client.ClientBuilder; import javax.ws.rs.client.WebTarget; import javax.ws.rs.core.Response; /** * @tpSubChapter Resource * @tpChapter Integration tests * @tpSince RESTEasy 3.0.16 */ @RunWith(Arquillian.class) @RunAsClient public class ConstructedInjectionTest { static Client client; @Deployment public static Archive<?> deploy() { WebArchive war = TestUtil.prepareArchive(ConstructedInjectionTest.class.getSimpleName()); war.addClass(TestPortProvider.class); return TestUtil.finishContainerPrepare(war, null, ConstructedInjectionResource.class); } @BeforeClass public static void init() { client = ClientBuilder.newClient(); } @AfterClass public static void after() throws Exception { client.close(); } private String generateURL(String path) { return PortProviderUtil.generateURL(path, ConstructedInjectionTest.class.getSimpleName()); } private void _test(String path) { WebTarget base = client.target(generateURL(path)); try { Response response = base.request().get(); Assert.assertEquals(HttpResponseCodes.SC_OK, response.getStatus()); response.close(); } catch (Exception e) { throw new RuntimeException(e); } } /** * @tpTestDetails Test with the resource containing custom constructor with @Context and @QueryParam injection * @tpSince RESTEasy 3.0.16 */ @Test public void testUriInfo() throws Exception { _test("/simple"); } }