KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > easybeans > tests > transaction > containermanaged > stateless > TestDefaultRemoteSLSB


1 /**
2  * EasyBeans
3  * Copyright (C) 2006 Bull S.A.S.
4  * Contact: easybeans@objectweb.org
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19  * USA
20  *
21  * --------------------------------------------------------------------------
22  * $Id: TestDefaultRemoteSLSB.java 980 2006-07-28 13:20:32Z studzine $
23  * --------------------------------------------------------------------------
24  */

25 package org.objectweb.easybeans.tests.transaction.containermanaged.stateless;
26
27 import java.sql.SQLException JavaDoc;
28
29 import org.objectweb.easybeans.tests.common.ejbs.stateless.containermanaged.transaction.SLSBContainerTransactionDefault;
30 import org.objectweb.easybeans.tests.transaction.containermanaged.base.TestRequired;
31 import org.testng.annotations.BeforeClass;
32 import org.testng.annotations.BeforeMethod;
33 import org.testng.annotations.Test;
34
35 /**
36  * Verifies if the container-managed transaction in the stateful bean is
37  * following the JSR 220.The items covered in this test are: 12.3.7.
38  * @reference JSR 220-PROPOSED FINAL
39  * @requirement Application Server must be running; the bean
40  * org.objectweb.easybeans.tests.common.ejbs.stateless.containermanaged.SLSBContainerTransactionDefault
41  * must be deployed.
42  * @setup gets the reference of the bean and binds the
43  * databases specified in the EmbeddedTest.
44  * @author Gisele Pinheiro Souza
45  * @author Eduardo Studzinski Estima de Castro
46  */

47 public class TestDefaultRemoteSLSB extends TestRequired {
48
49     /**
50      * Creates a new instance of the bean.
51      * @throws Exception if a lookup error occurs.
52      */

53     @BeforeMethod
54     public void createBean() throws Exception JavaDoc {
55         super.createBean(SLSBContainerTransactionDefault.class);
56     }
57
58     /**
59      * @see org.objectweb.easybeans.tests.transaction.containermanaged.base.TestRequired
60      * @throws Exception if an error during the test startup occurs.
61      */

62     @BeforeClass
63     @Override JavaDoc
64     public void setup() throws Exception JavaDoc {
65         super.setup();
66     }
67
68    /**
69      * @see org.objectweb.easybeans.tests.transaction.containermanaged.base.TestRequired
70      * @throws Exception if an error during the tests occurs.
71      */

72     @Test(groups = {"default attribute features"}, expectedExceptions = SQLException JavaDoc.class)
73     @Override JavaDoc
74     public void testUsingClientTrans() throws Exception JavaDoc {
75         super.testUsingClientTrans();
76     }
77
78     /**
79      * @see org.objectweb.easybeans.tests.transaction.containermanaged.base.TestRequired
80      * @throws Exception if an error occurs during the tests.
81      */

82     @Test(groups = {"rollback"}, expectedExceptions = SQLException JavaDoc.class)
83     @Override JavaDoc
84     public void testSetRollbackOnly() throws Exception JavaDoc {
85         super.testSetRollbackOnly();
86     }
87
88     /**
89      * @see org.objectweb.easybeans.tests.transaction.containermanaged.base.TestRequired
90      * @throws Exception if an error occurs during the tests.
91      */

92     @Test(groups = {"rollback"})
93     @Override JavaDoc
94     public void testGetRollbackOnly() throws Exception JavaDoc {
95         super.testGetRollbackOnly();
96     }
97
98     /**
99      * @see org.objectweb.easybeans.tests.transaction.containermanaged.base.TestRequired
100      */

101     @BeforeMethod
102     @Override JavaDoc
103     public void deleteTable() {
104         super.deleteTable();
105     }
106
107     /**
108      * @see org.objectweb.easybeans.tests.transaction.containermanaged.base.TestRequired
109      * @throws Exception if an error during the tests occurs.
110      */

111     @Test(groups = {"general attribute features"}, expectedExceptions = java.lang.IllegalStateException JavaDoc.class)
112     @Override JavaDoc
113     public void testGetUserTransactionWithEJBContext() throws Exception JavaDoc {
114         super.testGetUserTransactionWithEJBContext();
115     }
116
117     /**
118      * @see org.objectweb.easybeans.tests.transaction.containermanaged.base.TestRequired
119      * @throws Exception if an error during the tests occurs.
120      */

121     @Test(groups = {"general attribute features"}, expectedExceptions = javax.naming.NameNotFoundException JavaDoc.class)
122     @Override JavaDoc
123     public void testGetUserTransactionWithLookup() throws Exception JavaDoc {
124         super.testGetUserTransactionWithLookup();
125     }
126
127    /**
128      * Makes a rollback in the active transaction.
129      * @throws Exception if a transaction exception occurs.
130      */

131     @BeforeMethod
132     @Override JavaDoc
133     public void cleanTransaction() throws Exception JavaDoc{
134         super.cleanTransaction();
135     }
136
137 }
138
Popular Tags