package org.jboss.weld.tests.contexts.conversation.alreadyActive; import java.net.URL; import org.junit.Assert; import org.jboss.arquillian.container.test.api.Deployment; import org.jboss.arquillian.junit.Arquillian; import org.jboss.arquillian.test.api.ArquillianResource; import org.jboss.shrinkwrap.api.ShrinkWrap; import org.jboss.shrinkwrap.api.asset.EmptyAsset; import org.jboss.shrinkwrap.api.spec.WebArchive; import org.jboss.weld.test.util.Utils; import org.jboss.weld.tests.category.Integration; import org.junit.Test; import org.junit.experimental.categories.Category; import org.junit.runner.RunWith; import com.gargoylesoftware.htmlunit.FailingHttpStatusCodeException; import com.gargoylesoftware.htmlunit.WebClient; /** * @author <a href="mailto:lincolnbaxter@gmail.com">Lincoln Baxter, III</a> */ @Category(Integration.class) @RunWith(Arquillian.class) public class ConversationSupportsServletForwardsTest { @Deployment(testable = false) public static WebArchive deployment() { return ShrinkWrap .create(WebArchive.class, Utils.getDeploymentNameAsHash(ConversationSupportsServletForwardsTest.class, Utils.ARCHIVE_TYPE.WAR)) .addAsWebResource(ConversationSupportsServletForwardsTest.class.getPackage(), "conversations.xhtml", "conversations.xhtml") .addAsWebResource(ConversationSupportsServletForwardsTest.class.getPackage(), "conversations.xhtml", "result.xhtml") .addAsWebInfResource(ConversationSupportsServletForwardsTest.class.getPackage(), "conversation-faces-config.xml", "faces-config.xml") .addAsWebInfResource(ConversationSupportsServletForwardsTest.class.getPackage(), "conversation-web.xml", "web.xml") .addClass(ForwardingPhaseListener.class) .addAsWebInfResource(EmptyAsset.INSTANCE, "beans.xml"); } @Test public void testConversationSupportsForwards(@ArquillianResource URL baseURL) throws Exception { WebClient client = new WebClient(); try { client.getPage(new URL(baseURL, "conversations.jsf")); } catch (FailingHttpStatusCodeException e) { Assert.fail("Expected HTTP status code 200 but was " + e.getStatusCode()); } } @Test public void testConversationSupportsErrorPages(@ArquillianResource URL baseURL) throws Exception { WebClient client = new WebClient(); try { client.getPage(new URL(baseURL, "missing-page.jsf")); } catch (FailingHttpStatusCodeException e) { Assert.assertEquals(404, e.getStatusCode()); } } @Test public void testConversationSupportsForwardingToErrorPages(@ArquillianResource URL baseURL) throws Exception { WebClient client = new WebClient(); try { client.getPage(new URL(baseURL, "missing-page-error.jsf")); } catch (FailingHttpStatusCodeException e) { Assert.assertEquals(404, e.getStatusCode()); } } }