package org.jboss.resteasy.test.validation.cdi; 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.api.validation.ResteasyConstraintViolation; import org.jboss.resteasy.api.validation.ResteasyViolationException; import org.jboss.resteasy.client.jaxrs.ResteasyClient; import org.jboss.resteasy.client.jaxrs.ResteasyClientBuilder; import org.jboss.resteasy.client.jaxrs.internal.ClientResponse; import org.jboss.resteasy.test.validation.cdi.resource.CDIValidationSessionBeanProxy; import org.jboss.resteasy.test.validation.cdi.resource.CDIValidationSessionBeanResource; 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.asset.EmptyAsset; 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.Invocation; import static org.junit.Assert.assertEquals; /** * @tpSubChapter Response * @tpChapter Integration tests * @tpTestCaseDetails Regression test for RESTEASY-1008 * @tpSince RESTEasy 3.0.16 */ @RunWith(Arquillian.class) @RunAsClient public class CDIValidationSessionBeanTest { @Deployment public static Archive<?> createTestArchive() { WebArchive war = TestUtil.prepareArchive(CDIValidationSessionBeanTest.class.getSimpleName()) .addClass(CDIValidationSessionBeanProxy.class) .addAsWebInfResource(EmptyAsset.INSTANCE, "beans.xml"); return TestUtil.finishContainerPrepare(war, null, CDIValidationSessionBeanResource.class); } private String generateURL(String path) { return PortProviderUtil.generateURL(path, CDIValidationSessionBeanTest.class.getSimpleName()); } /** * @tpTestDetails Check for invalid parameter * @tpSince RESTEasy 3.0.16 */ @Test public void testInvalidParam() throws Exception { ResteasyClient client = new ResteasyClientBuilder().build(); Invocation.Builder request = client.target(generateURL("/test/resource/0")).request(); ClientResponse response = (ClientResponse) request.get(); String answer = response.readEntity(String.class); assertEquals(HttpResponseCodes.SC_BAD_REQUEST, response.getStatus()); ResteasyViolationException e = new ResteasyViolationException(String.class.cast(answer)); TestUtil.countViolations(e, 1, 0, 0, 0, 1, 0); ResteasyConstraintViolation cv = e.getParameterViolations().iterator().next(); Assert.assertTrue("Expected validation error is not in response", cv.getMessage().equals("must be greater than or equal to 7")); } }