01: /*
02: * JBoss, Home of Professional Open Source.
03: * Copyright 2006, Red Hat Middleware LLC, and individual contributors
04: * as indicated by the @author tags. See the copyright.txt file in the
05: * distribution for a full listing of individual contributors.
06: *
07: * This is free software; you can redistribute it and/or modify it
08: * under the terms of the GNU Lesser General Public License as
09: * published by the Free Software Foundation; either version 2.1 of
10: * the License, or (at your option) any later version.
11: *
12: * This software is distributed in the hope that it will be useful,
13: * but WITHOUT ANY WARRANTY; without even the implied warranty of
14: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15: * Lesser General Public License for more details.
16: *
17: * You should have received a copy of the GNU Lesser General Public
18: * License along with this software; if not, write to the Free
19: * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20: * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
21: */
22: package org.jboss.ejb3.test.regression.ejbthree316.unit;
23:
24: import org.jboss.test.JBossTestCase;
25: import org.jboss.ejb3.test.regression.ejbthree316.StatefulRemote;
26: import junit.framework.Test;
27:
28: /**
29: * Sample client for the jboss container.
30: *
31: * @author <a href="mailto:bill@burkecentral.com">Bill Burke</a>
32: * @version $Id: StatefulUnitTestCase.java 60233 2007-02-03 10:13:23Z wolfc $
33: */
34:
35: public class StatefulUnitTestCase extends JBossTestCase {
36: org.apache.log4j.Logger log = getLog();
37:
38: static boolean deployed = false;
39: static int test = 0;
40:
41: public StatefulUnitTestCase(String name) {
42:
43: super (name);
44:
45: }
46:
47: public void testStateful() throws Exception {
48: StatefulRemote remote = (StatefulRemote) getInitialContext()
49: .lookup("StatefulBean/remote");
50: System.out.println("Before DOIT testStateful");
51: int id = remote.doit();
52: System.out.println("After DOIT testStateful");
53: Thread.sleep(5000);
54: remote.find(id);
55: System.out.println("After find testStateful");
56: }
57:
58: public void testTransientStateful() throws Exception {
59: StatefulRemote remote = (StatefulRemote) getInitialContext()
60: .lookup("Transient");
61: int id = remote.doit();
62: Thread.sleep(5000);
63: remote.find(id);
64: }
65:
66: public void testNonExtended() throws Exception {
67: StatefulRemote remote = (StatefulRemote) getInitialContext()
68: .lookup("NonExtended");
69: int id = remote.doit();
70: Thread.sleep(5000);
71: remote.find(id);
72: }
73:
74: public static Test suite() throws Exception {
75: return getDeploySetup(StatefulUnitTestCase.class,
76: "regression-ejbthree316.jar");
77: }
78:
79: }
|