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.client.jaxrs.ResteasyClient; import org.jboss.resteasy.client.jaxrs.ResteasyClientBuilder; import org.jboss.resteasy.test.resource.basic.resource.CollectionDefaultValueResource; 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 Resteasy-client * @tpChapter Integration tests * @tpTestCaseDetails Test that empty QueryParam list is empty * @tpSince RESTEasy 3.0.16 */ @RunWith(Arquillian.class) @RunAsClient public class CollectionDefaultValueTest { static ResteasyClient client; @Deployment public static Archive<?> deploy() { WebArchive war = TestUtil.prepareArchive(CollectionDefaultValueTest.class.getSimpleName()); return TestUtil.finishContainerPrepare(war, null, CollectionDefaultValueResource.class); } @Before public void init() { client = new ResteasyClientBuilder().build(); } @After public void after() throws Exception { client.close(); } private String generateURL(String path) { return PortProviderUtil.generateURL(path, CollectionDefaultValueTest.class.getSimpleName()); } /** * @tpTestDetails Test that empty QueryParam list is empty * @tpSince RESTEasy 3.0.16 */ @Test public void testEmpty() throws Exception { Response response = client.target(generateURL("/collection")).request().get(); Assert.assertEquals(HttpResponseCodes.SC_OK, response.getStatus()); response.close(); } }