KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > cts > test > StatelessSessionStressTestCase


1 /*
2   * JBoss, Home of Professional Open Source
3   * Copyright 2005, JBoss Inc., and individual contributors as indicated
4   * by the @authors tag. See the copyright.txt in the distribution for a
5   * full listing of individual contributors.
6   *
7   * This is free software; you can redistribute it and/or modify it
8   * under the terms of the GNU Lesser General Public License as
9   * 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.test.cts.test;
23
24
25 import java.rmi.RemoteException JavaDoc;
26 import java.rmi.server.UnicastRemoteObject JavaDoc;
27 import javax.naming.InitialContext JavaDoc;
28 import javax.rmi.PortableRemoteObject JavaDoc;
29 import org.jboss.test.cts.interfaces.ClientCallback;
30 import org.jboss.test.cts.interfaces.StatelessSession;
31 import org.jboss.test.cts.interfaces.StatelessSessionHome;
32
33 import junit.framework.Test;
34
35 import org.jboss.test.JBossTestCase;
36
37 /**
38  * Class StatelessSessionStressTestCase
39  *
40  *
41  * @author d_jencks converted to JBossTestCase and logging.
42  * @author Scott.Stark@jboss.org
43  * @version $Revision: 37406 $
44  */

45 public class StatelessSessionStressTestCase
46    extends JBossTestCase
47 {
48    StatelessSession sessionBean;
49
50    public StatelessSessionStressTestCase (String JavaDoc name)
51    {
52       super(name);
53    }
54
55    protected void setUp() throws Exception JavaDoc
56    {
57       InitialContext JavaDoc ctx = new InitialContext JavaDoc();
58       StatelessSessionHome home =
59          ( StatelessSessionHome ) ctx.lookup("ejbcts/StatelessSessionHome");
60       sessionBean = home.create();
61    }
62    protected void tearDown() throws Exception JavaDoc
63    {
64       if( sessionBean != null )
65          sessionBean.remove();
66    }
67
68    public void testBasicStatelessSession()
69       throws Exception JavaDoc
70    {
71       getLog().debug("+++ testBasicStatelessSession()");
72       String JavaDoc result = sessionBean.method1("testBasicStatelessSession");
73       // Test response
74
assertTrue(result.equals("testBasicStatelessSession"));
75       sessionBean.remove();
76    }
77
78    public void testClientCallback()
79       throws Exception JavaDoc
80    {
81       getLog().debug("+++ testClientCallback()");
82       ClientCallbackImpl callback = new ClientCallbackImpl();
83       UnicastRemoteObject.exportObject(callback);
84       sessionBean.callbackTest(callback, "testClientCallback");
85       // Test callback data
86
this.assertTrue(callback.wasCalled());
87       UnicastRemoteObject.unexportObject(callback, true);
88       sessionBean.remove();
89    }
90
91    public void testRuntimeError()
92       throws Exception JavaDoc
93    {
94       getLog().debug("+++ testRuntimeError()");
95       try
96       {
97          sessionBean.npeError();
98          fail("npeError should have thrown an exception");
99       }
100       catch(Exception JavaDoc e)
101       {
102          getLog().debug("Call threw exception", e);
103       }
104       sessionBean.remove();
105    }
106
107    public static Test suite() throws Exception JavaDoc
108    {
109       return getDeploySetup(StatelessSessionStressTestCase.class, "cts.jar");
110    }
111
112 }
113
114
Popular Tags