Java tutorial
/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.openejb.arquillian.session; import org.apache.commons.httpclient.HttpClient; import org.apache.commons.httpclient.HttpMethod; import org.apache.commons.httpclient.methods.GetMethod; import org.jboss.arquillian.container.test.api.Deployment; import org.jboss.arquillian.junit.Arquillian; import org.jboss.shrinkwrap.api.ArchivePaths; import org.jboss.shrinkwrap.api.ShrinkWrap; import org.jboss.shrinkwrap.api.asset.EmptyAsset; import org.jboss.shrinkwrap.api.asset.StringAsset; import org.jboss.shrinkwrap.api.spec.WebArchive; import org.jboss.shrinkwrap.descriptor.api.Descriptors; import org.jboss.shrinkwrap.descriptor.api.webapp30.WebAppDescriptor; import org.junit.Ignore; import org.junit.Test; import org.junit.runner.RunWith; import java.io.File; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotSame; @RunWith(Arquillian.class) public class SessionScopeTest { public static final String TEST_SESSION_URL = "http://127.0.0.1:" + System.getProperty("tomee.httpPort", "10080") + "/test/session"; @Deployment public static WebArchive createDeployment() { return ShrinkWrap.create(WebArchive.class, "test.war").addClass(PojoSessionScoped.class) .addClass(PojoSessionScopedServletWrapper.class) .addAsLibraries(new File("target/test-libs/commons-httpclient.jar")) .addAsWebInfResource(EmptyAsset.INSTANCE, ArchivePaths.create("beans.xml")) .setWebXML(new StringAsset(Descriptors.create(WebAppDescriptor.class).version("3.0").createServlet() .servletName("servlet").servletClass(PojoSessionScopedServletWrapper.class.getName()).up() .createServletMapping().servletName("servlet").urlPattern("/session").up() .exportAsString())); } @Test public void testShouldBeAbleToAccessServletAndEjb() throws Exception { String[] sessionResult = new String[2]; for (int i = 0; i < sessionResult.length; i++) { HttpClient client = new HttpClient(); HttpMethod get = new GetMethod(TEST_SESSION_URL); String[] contents = new String[2]; try { for (int j = 0; j < contents.length; j++) { int out = client.executeMethod(get); if (out != 200) { throw new RuntimeException("get " + TEST_SESSION_URL + " returned " + out); } contents[j] = get.getResponseBodyAsString(); } assertEquals(contents[0], contents[1]); } finally { get.releaseConnection(); } sessionResult[i] = contents[0]; } assertNotSame(sessionResult[0], sessionResult[1]); } }