package org.jboss.resteasy.test.core.encoding; 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.core.encoding.resource.SpecialCharactersResource; import org.jboss.resteasy.test.core.encoding.resource.SpecialCharactersProxy; 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.After; import org.junit.Assert; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import javax.ws.rs.core.Response; /** * @tpSubChapter Encoding * @tpChapter Integration tests * @tpTestCaseDetails Regression test for RESTEASY-208 and RESTEASY-214 * @tpSince RESTEasy 3.0.16 */ @RunWith(Arquillian.class) @RunAsClient public class SpecialCharactersTest { protected static ResteasyClient client; @Before public void setup() throws Exception { client = new ResteasyClientBuilder().build(); } @After public void shutdown() throws Exception { client.close(); } @Deployment public static Archive<?> deploy() { WebArchive war = TestUtil.prepareArchive(SpecialCharactersTest.class.getSimpleName()); war.addClass(SpecialCharactersProxy.class); return TestUtil.finishContainerPrepare(war, null, SpecialCharactersResource.class); } private String generateURL(String path) { return PortProviderUtil.generateURL(path, SpecialCharactersTest.class.getSimpleName()); } private static final String SPACES_REQUEST = "something something"; private static final String QUERY = "select p from VirtualMachineEntity p where guest.guestId = :id"; @Test public void testEcho() { SpecialCharactersProxy proxy = client.target(generateURL("")).proxy(SpecialCharactersProxy.class); Assert.assertEquals(SPACES_REQUEST, proxy.sayHi(SPACES_REQUEST)); Assert.assertEquals(QUERY, proxy.compile(QUERY)); } @Test public void testIt() throws Exception { Response response = client.target(generateURL("/sayhello/widget/08%2F26%2F2009")).request().get(); Assert.assertEquals(HttpResponseCodes.SC_OK, response.getStatus()); Assert.assertEquals("Wrong content of response", "08/26/2009", response.readEntity(String.class)); response.close(); } @Test public void testPlus() throws Exception { Response response = client.target(generateURL("/sayhello/plus/foo+bar")).request().get(); Assert.assertEquals(HttpResponseCodes.SC_OK, response.getStatus()); // assert is in resource response.close(); } @Test public void testPlus2() throws Exception { Response response = client.target(generateURL("/sayhello/plus/foo+bar")).request().get(); Assert.assertEquals(HttpResponseCodes.SC_OK, response.getStatus()); // assert is in resource response.close(); } }