/**
* EasyBeans
* Copyright (C) 2006 Bull S.A.S.
* Contact: easybeans@ow2.org
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
* USA
*
* --------------------------------------------------------------------------
* $Id$
* --------------------------------------------------------------------------
*/
package org.ow2.easybeans.tests.common.ejbs.stateless.containermanaged.callbacklogger;
import static org.ow2.easybeans.tests.common.helper.EJBHelper.getBeanRemoteInstance;
import java.util.ArrayList;
import java.util.List;
import org.ow2.easybeans.tests.common.ejbs.entity.callbacklogger.CallbackType;
/**
* This class encapsulates the verification using the bean logger.
* @author Eduardo Studzinski Estima de Castro
* @author Gisele Pinheiro Souza
*
*/
public class CallbackChecker {
/**
* Logger bean.
*/
private ItfCallbackLoggerAccess opLog;
/**
* Creates a logger checker.
*/
public CallbackChecker(){
try {
opLog = getBeanRemoteInstance(SLSBCallbackLoggerAccess.class, ItfCallbackLoggerAccess.class);
} catch (Exception e) {
e.printStackTrace();
throw new IllegalStateException("Bean instance not found.");
}
}
/**
* Verifies if the specified callback was invoked.
* @param className the bean class.
* @param event the event type.
*/
public void check(final String className, final CallbackType event) {
// Verifies if the message was received
List<String> arEvent = new ArrayList<String>();
arEvent.add(className);
this.check(className, event, arEvent);
}
/**
* Verifies if the specified callback was invoked.
* @param className the bean class.
* @param event the event type.
* @param eventClassNames the list of where the event methods are defined in
* the correct invocation order.
*/
public void check(final String className, final CallbackType event, final List<String> eventClassNames) {
opLog.verifyCallbackOrder(className, event, eventClassNames.toArray(new String[0]));
}
/**
* Clears logs.
* @throws Exception if a problem occurs.
*/
public void deleteAll() throws Exception {
opLog.deleteAll();
}
}
|