001: /**
002: * EasyBeans
003: * Copyright (C) 2006 Bull S.A.S.
004: * Contact: easybeans@ow2.org
005: *
006: * This library is free software; you can redistribute it and/or
007: * modify it under the terms of the GNU Lesser General Public
008: * License as published by the Free Software Foundation; either
009: * version 2.1 of the License, or any later version.
010: *
011: * This library is distributed in the hope that it will be useful,
012: * but WITHOUT ANY WARRANTY; without even the implied warranty of
013: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
014: * Lesser General Public License for more details.
015: *
016: * You should have received a copy of the GNU Lesser General Public
017: * License along with this library; if not, write to the Free Software
018: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
019: * USA
020: *
021: * --------------------------------------------------------------------------
022: * $Id: TestRemoteAnnotation.java 1970 2007-10-16 11:49:25Z benoitf $
023: * --------------------------------------------------------------------------
024: */package org.ow2.easybeans.tests.sessionbean.misc;
025:
026: import org.ow2.easybeans.tests.common.ejbs.stateless.containermanaged.basic.ItfSessionBeanTester;
027: import org.ow2.easybeans.tests.common.ejbs.stateless.containermanaged.basic.SLSBSessionBeanTester;
028: import org.ow2.easybeans.tests.common.helper.EJBHelper;
029: import org.testng.annotations.BeforeMethod;
030: import org.testng.annotations.Test;
031:
032: /**
033: * Verifies the annotation remote when a bean has only one interface and has the annotation without value defined.
034: * @reference JSR 220-FINAL RELEASE
035: * @requirement Application Server must be running; the beans SLSBSessionBeanTester, SLSBDeployTest and SFSBDeployTest
036: * must be deployed.
037: * @setup gets a reference of the bean SLSBSessionBeanTester.
038: * @author Gisele Pinheiro Souza
039: * @author Eduardo Studzinski Estima de Castro
040: */
041: public class TestRemoteAnnotation {
042:
043: /**
044: * Bean used during the test.
045: */
046: private ItfSessionBeanTester bean;
047:
048: /**
049: * Gets an instance of the bean.
050: * @throws Exception if an error occurs.
051: */
052: @BeforeMethod
053: public void setup() throws Exception {
054: // Gets a bean instance.
055: bean = EJBHelper
056: .getBeanRemoteInstance(SLSBSessionBeanTester.class,
057: ItfSessionBeanTester.class);
058: }
059:
060: /**
061: * Verifies if the container sets a stateful bean interface as remote when the bean
062: * has only one interface and the annotation Remote without value. The bean
063: * was goten by annotation.
064: * @input the bean injected
065: * @output the correct method execution
066: */
067: @Test
068: public void testSFByInjection() {
069: bean.testSFSBByInjection();
070: }
071:
072: /**
073: * Verifies if the container sets a stateful bean interface as remote when the bean
074: * has only one interface and the annotation Remote without value. The bean
075: * was goten by lookup.
076: * @input the bean injected
077: * @output the correct method execution
078: * @throws Exception if a lookup error occurs.
079: */
080: @Test
081: public void testSFByLookup() throws Exception {
082: bean.testSFSBByLookup();
083: }
084:
085: /**
086: * Verifies if the container sets a stateless bean interface as remote when the bean
087: * has only one interface and the annotation Remote without value. The bean
088: * was goten by annotation.
089: * @input the bean injected
090: * @output the correct method execution
091: */
092: @Test
093: public void testSLByInjection() {
094: bean.testSLSBByInjection();
095: }
096:
097: /**
098: * Verifies if the container sets a stateless bean interface as remote when the bean
099: * has only one interface and the annotation Remote without value. The bean
100: * was goten by annotation.
101: * @input the bean injected
102: * @output the correct method execution
103: * @throws Exception if a lookup error occurs.
104: */
105: @Test
106: public void testSLByLookup() throws Exception {
107: bean.testSLSBByLookup();
108: }
109: }
|