KickJava   Java API By Example, From Geeks To Geeks.

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


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 import javax.naming.InitialContext JavaDoc;
25 import javax.rmi.PortableRemoteObject JavaDoc;
26
27 import junit.framework.Test;
28
29 import org.jboss.test.JBossTestCase;
30 import org.jboss.test.cts.interfaces.CallerSession;
31 import org.jboss.test.cts.interfaces.CallerSessionHome;
32 import org.jboss.test.cts.interfaces.CalleeException;
33
34 /** Tests of ejbs in seperate jars interacting
35  *
36  * @author Scott.Stark@jboss.org
37  * @version $Revision: 37406 $
38  */

39 public class IndependentJarsUnitTestCase
40       extends JBossTestCase
41 {
42    CallerSession sessionBean;
43
44    public IndependentJarsUnitTestCase(String JavaDoc name)
45    {
46       super(name);
47    }
48
49    protected void setUp() throws Exception JavaDoc
50    {
51       InitialContext JavaDoc ctx = new InitialContext JavaDoc();
52       Object JavaDoc ref = ctx.lookup("ejbcts/CallerSessionHome");
53       CallerSessionHome home = (CallerSessionHome)
54             PortableRemoteObject.narrow(ref, CallerSessionHome.class);
55       sessionBean = home.create();
56    }
57
58    protected void tearDown() throws Exception JavaDoc
59    {
60       if (sessionBean != null)
61          sessionBean.remove();
62    }
63
64
65    /** A test of two ejb deployments cts.jar and cts2.jar(scoped) with an EJB
66     * in cts.jar calling an EJB in cts2.jar. The cts2.jar EJB is deployed with
67     * the ByValueInvokerInterceptor to isolate the two type namespaces.
68     * @throws Exception
69     */

70    public void testInterJarCall() throws Exception JavaDoc
71    {
72       // Deploy the cts2.jar
73
deploy("cts2.jar");
74       sessionBean.simpleCall(true);
75       sessionBean.simpleCall2(true);
76       try
77       {
78          sessionBean.callAppEx();
79       }
80       catch(CalleeException e)
81       {
82          log.info("Saw excpected exception", e);
83       }
84       undeploy("cts2.jar");
85       deploy("cts2.jar");
86       sessionBean.simpleCall(true);
87       sessionBean.simpleCall2(true);
88       try
89       {
90          sessionBean.callAppEx();
91       }
92       catch(CalleeException e)
93       {
94          log.info("Saw excpected exception", e);
95       }
96       undeploy("cts2.jar");
97    }
98
99    /** A test of two ejb deployments cts.jar and cts2.jar(scoped) with an EJB
100     * in cts.jar calling an EJB in cts2.jar. The cts2.jar EJB is deployed with
101     * the ByValueInvokerInterceptor to isolate the two type namespaces.
102     * @throws Exception
103     */

104    public void testCallByValueInSameJar() throws Exception JavaDoc
105    {
106       sessionBean.callByValueInSameJar();
107    }
108
109    public static Test suite() throws Exception JavaDoc
110    {
111       return getDeploySetup(IndependentJarsUnitTestCase.class, "cts.jar");
112    }
113
114 }
115
Popular Tags