/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.openejb.test.singleton; import org.apache.openejb.test.beans.TimerSync; import org.apache.openejb.test.object.OperationsPolicy; import javax.ejb.EJBObject; /** * [9] Should be run as the nineth test suite of the BasicSingletonTestClients * <p/> * <PRE> * ========================================================================= * Operations allowed in the methods of a singleton SessionBean with * container-managed transaction demarcation * ========================================================================= * <p/> * Bean method | Bean method can perform the following operations * ______________________|__________________________________________________ * | * constructor | - * ______________________|__________________________________________________ * | * setSessionContext | SessionContext methods: * | - getEJBHome * | JNDI access to java:comp/env * ______________________|__________________________________________________ * | * ejbCreate | SessionContext methods: * ejbRemove | - getEJBHome * | - getEJBObject * | JNDI access to java:comp/env * ______________________|__________________________________________________ * | * business method | SessionContext methods: * from remote interface | - getEJBHome * | - getCallerPrincipal * | - getRollbackOnly * | - isCallerInRole * | - setRollbackOnly * | - getEJBObject * | JNDI access to java:comp/env * | Resource manager access * | Enterprise bean access * ______________________|__________________________________________________ * </PRE> */ public class SingletonAllowedOperationsTests extends BasicSingletonTestClient { protected TimerSync timerSync; public SingletonAllowedOperationsTests() { super("AllowedOperations."); } protected void setUp() throws Exception { super.setUp(); final Object obj = initialContext.lookup("client/tests/singleton/BasicSingletonHome"); ejbHome = (BasicSingletonHome) obj; ejbObject = ejbHome.createObject(); ejbHandle = ejbObject.getHandle(); timerSync = (TimerSync) initialContext.lookup("TimerSyncBeanBusinessRemote"); //setUp_ejbActivate_Passivate(); /* These tests will only work if the specified * method has already been called by the container. * * TO DO: * Implement a little application senario to ensure * that all methods tested for below have been called * by the container. */ ejbObject.businessMethod("activate me please"); } private void setUp_ejbActivate_Passivate() throws Exception { /* Create more instances to fill the pool size * causing instances to be passivated */ final EJBObject[] ejbObjects = new EJBObject[10]; for (int i = 0; i < ejbObjects.length; i++) { ejbObjects[i] = ejbHome.createObject(); } ejbObject.businessMethod("activate me please"); } protected void tearDown() throws Exception { try { ejbObject.remove(); } catch (final Exception e) { throw e; } finally { super.tearDown(); } } //===================================== // Test EJBContext allowed operations // /** * <PRE> * Bean method | Bean method can perform the following operations * ______________________|__________________________________________________ * | * setSessionContext | SessionContext methods: * | - getEJBHome * | - lookup * | JNDI access to java:comp/env * ______________________|__________________________________________________ * </PRE> */ public void test01_setSessionContext() { try { final OperationsPolicy policy = new OperationsPolicy(); policy.allow(OperationsPolicy.Context_getEJBHome); policy.allow(OperationsPolicy.Context_lookup); policy.allow(OperationsPolicy.JNDI_access_to_java_comp_env); final Object expected = policy; final Object actual = ejbObject.getAllowedOperationsReport("setSessionContext"); assertNotNull("The OperationsPolicy is null", actual); assertEquals(expected, actual); } catch (final Exception e) { fail("Received Exception " + e.getClass() + " : " + e.getMessage()); } } /** * <PRE> * Bean method | Bean method can perform the following operations * ______________________|__________________________________________________ * | * ejbCreate | SessionContext methods: * ejbRemove | - getEJBHome * | - getEJBObject * | - getTimerService * | - lookup * | JNDI access to java:comp/env * ______________________|__________________________________________________ * </PRE> */ public void test02_ejbCreate() { // The singleton session bean has container managed transactions // so, the test Context_getUserTransaction should fail, but, // it does not. Someone should see why it does not fail. try { final OperationsPolicy policy = new OperationsPolicy(); policy.allow(OperationsPolicy.Context_getEJBHome); policy.allow(OperationsPolicy.Context_getEJBObject); policy.allow(OperationsPolicy.Context_getTimerService); policy.allow(OperationsPolicy.Context_lookup); policy.allow(OperationsPolicy.JNDI_access_to_java_comp_env); final Object expected = policy; final Object actual = ejbObject.getAllowedOperationsReport("ejbCreate"); assertNotNull("The OperationsPolicy is null", actual); assertEquals(expected, actual); } catch (final Exception e) { fail("Received Exception " + e.getClass() + " : " + e.getMessage()); } } /** * <PRE> * Bean method | Bean method can perform the following operations * ______________________|__________________________________________________ * | * ejbCreate | SessionContext methods: * ejbRemove | - getEJBHome * | - getEJBObject * | - getTimerService * | - lookup * | JNDI access to java:comp/env * ______________________|__________________________________________________ * </PRE> */ public void TODO_test03_ejbRemove() { try { /* TO DO: This test needs unique functionality to work */ final OperationsPolicy policy = new OperationsPolicy(); policy.allow(OperationsPolicy.Context_getEJBHome); policy.allow(OperationsPolicy.Context_getEJBObject); policy.allow(OperationsPolicy.Context_getTimerService); policy.allow(OperationsPolicy.Context_lookup); policy.allow(OperationsPolicy.JNDI_access_to_java_comp_env); final Object expected = policy; final Object actual = ejbObject.getAllowedOperationsReport("ejbRemove"); assertNotNull("The OperationsPolicy is null", actual); assertEquals(expected, actual); } catch (final Exception e) { fail("Received Exception " + e.getClass() + " : " + e.getMessage()); } } /** * <PRE> * Bean method | Bean method can perform the following operations * ______________________|__________________________________________________ * | * business method | SessionContext methods: * from remote interface | - getEJBHome * | - getCallerPrincipal * | - getRollbackOnly * | - isCallerInRole * | - setRollbackOnly * | - getEJBObject * | - getTimerService * | - lookup * | JNDI access to java:comp/env * | Resource manager access * | Enterprise bean access * ______________________|__________________________________________________ * </PRE> */ public void test04_businessMethod() { try { final OperationsPolicy policy = new OperationsPolicy(); policy.allow(OperationsPolicy.Context_getEJBHome); policy.allow(OperationsPolicy.Context_getCallerPrincipal); policy.allow(OperationsPolicy.Context_getRollbackOnly); policy.allow(OperationsPolicy.Context_setRollbackOnly); policy.allow(OperationsPolicy.Context_isCallerInRole); policy.allow(OperationsPolicy.Context_getEJBObject); policy.allow(OperationsPolicy.Context_getTimerService); policy.allow(OperationsPolicy.Context_lookup); policy.allow(OperationsPolicy.JNDI_access_to_java_comp_env); final Object expected = policy; final Object actual = ejbObject.getAllowedOperationsReport("businessMethod"); assertNotNull("The OperationsPolicy is null", actual); assertEquals(expected, actual); } catch (final Exception e) { fail("Received Exception " + e.getClass() + " : " + e.getMessage()); } } public void _test05_ejbTimeout() { try { ejbObject.scheduleTimer("SingletonAllowedOperationsTests"); timerSync.waitFor("SingletonAllowedOperationsTests"); final OperationsPolicy policy = new OperationsPolicy(); policy.allow(OperationsPolicy.Context_getEJBHome); policy.allow(OperationsPolicy.Context_getCallerPrincipal); policy.allow(OperationsPolicy.Context_getRollbackOnly); policy.allow(OperationsPolicy.Context_setRollbackOnly); policy.allow(OperationsPolicy.Context_isCallerInRole); policy.allow(OperationsPolicy.Context_getEJBObject); policy.allow(OperationsPolicy.Context_getTimerService); policy.allow(OperationsPolicy.Context_lookup); policy.allow(OperationsPolicy.JNDI_access_to_java_comp_env); final Object expected = policy; final Object actual = ejbObject.getAllowedOperationsReport("ejbTimeout"); assertNotNull("The OperationsPolicy is null", actual); assertEquals(expected, actual); } catch (final Exception e) { fail("Received Exception " + e.getClass() + " : " + e.getMessage()); } } // // Test EJBContext allowed operations //===================================== }