package org.jboss.resteasy.test.spring.inmodule; 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.ResteasyClientBuilder; import org.jboss.resteasy.test.spring.inmodule.resource.JavaConfigResource; import org.jboss.resteasy.test.spring.inmodule.resource.JavaConfigService; import org.jboss.resteasy.test.spring.inmodule.resource.JavaConfigBeanConfiguration; import org.jboss.resteasy.util.HttpResponseCodes; import org.jboss.resteasy.utils.PortProviderUtil; import org.jboss.shrinkwrap.api.Archive; import org.jboss.shrinkwrap.api.ShrinkWrap; import org.jboss.shrinkwrap.api.asset.StringAsset; import org.jboss.shrinkwrap.api.spec.WebArchive; import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; import javax.ws.rs.client.Client; import javax.ws.rs.client.WebTarget; import javax.ws.rs.core.Response; /** * @tpSubChapter Spring * @tpChapter Integration tests * @tpTestCaseDetails This test will verify that the resource invoked by RESTEasy has been * initialized by spring when defined using spring's JavaConfig. * @tpSince RESTEasy 3.0.16 */ @RunWith(Arquillian.class) @RunAsClient public class JavaConfigTest { private static final String PATH = "/invoke"; private String generateURL(String path) { return PortProviderUtil.generateURL(path, JavaConfigTest.class.getSimpleName()); } @Deployment private static Archive<?> deploy() { WebArchive archive = ShrinkWrap.create(WebArchive.class, JavaConfigTest.class.getSimpleName() + ".war") .addClass(JavaConfigResource.class) .addClass(JavaConfigService.class) .addClass(JavaConfigBeanConfiguration.class) .addAsWebInfResource(JavaConfigTest.class.getPackage(), "javaConfig/web.xml", "web.xml"); archive.addAsManifestResource(new StringAsset("Dependencies: org.springframework.spring meta-inf\n"), "MANIFEST.MF"); return archive; } /** * @tpTestDetails This test will verify that the resource invoked by RESTEasy has been * initialized by spring when defined using spring's JavaConfig. * @tpSince RESTEasy 3.0.16 */ @Test public void test() throws Exception { Client client = ResteasyClientBuilder.newClient(); WebTarget target = client.target(generateURL(PATH)); Response response = target.request().get(); Assert.assertEquals(HttpResponseCodes.SC_OK, response.getStatus()); Assert.assertEquals("Unexpected response", "hello", response.readEntity(String.class)); } }