01: /**
02: * EasyBeans
03: * Copyright (C) 2007 Bull S.A.S.
04: * Contact: easybeans@ow2.org
05: *
06: * This library is free software; you can redistribute it and/or
07: * modify it under the terms of the GNU Lesser General Public
08: * License as published by the Free Software Foundation; either
09: * 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: TestSecurity.java 1970 2007-10-16 11:49:25Z benoitf $
23: * --------------------------------------------------------------------------
24: */package org.ow2.easybeans.tests.deploymentdesc;
25:
26: import javax.ejb.EJBAccessException;
27:
28: import org.ow2.easybeans.tests.common.ejbs.stateless.containermanaged.securityxml.ItfSecurityXML;
29: import org.ow2.easybeans.tests.common.ejbs.stateless.containermanaged.securityxml.SLSBSecurityXMLBean;
30: import org.ow2.easybeans.tests.common.helper.EJBHelper;
31: import org.testng.annotations.BeforeMethod;
32: import org.testng.annotations.Test;
33:
34: /**
35: * Verifies if the container can deploy an bean with the security attributes
36: * defined in the deployment description. Item 17.
37: * @reference JSR 220 - FINAL RELEASE
38: * @requirement the bean SLSBSecurityXMLBean and the SLSBSecurityXMLRunAsBean must be
39: * deployed to make the tests, and, the deployment descriptor must
40: * be used too.
41: * @setup gets an instance of the SLSBSecurityXMLBean.
42: * @author Florent Benoit
43: */
44: public class TestSecurity {
45:
46: /**
47: * Bean used to verify the local access.
48: */
49: private ItfSecurityXML tester;
50:
51: /**
52: * Creates the stateless bean used during the tests.
53: * @throws Exception if an error occurs during the lookup.
54: */
55: @BeforeMethod
56: public void setup() throws Exception {
57: tester = EJBHelper.getBeanRemoteInstance(
58: SLSBSecurityXMLBean.class, ItfSecurityXML.class);
59: }
60:
61: /**
62: * Verifies if the client can access to a method that everybody can call
63: * descriptor is read by the container.
64: * @input -
65: * @output the correct method execution.
66: * @throws Exception if an error occurs.
67: */
68: @Test
69: public void testAllRolesAllowed() throws Exception {
70: tester.allRolesAllowed();
71: }
72:
73: /**
74: * Verifies if the client is denied when accessing a method that nobody can call
75: * descriptor is read by the container.
76: * @input -
77: * @output the correct method execution.
78: * @throws Exception if an error occurs.
79: */
80: @Test(expectedExceptions={EJBAccessException.class})
81: public void testCallDeniedForCall() throws Exception {
82: tester.deniedForAll();
83: }
84:
85: /**
86: * Verifies if the client is using the run-as identity when calling it
87: * descriptor is read by the container.
88: * @input -
89: * @output the correct method execution.
90: * @throws Exception if an error occurs.
91: */
92: @Test
93: public void testCallWithRunAs() throws Exception {
94: tester.callRunAsBean();
95: }
96:
97: }
|