01: /******************************************************************************
02: * Copyright (C) Lars Ivar Almli. All rights reserved. *
03: * ---------------------------------------------------------------------------*
04: * This file is part of MActor. *
05: * *
06: * MActor is free software; you can redistribute it and/or modify *
07: * it under the terms of the GNU General Public License as published by *
08: * the Free Software Foundation; either version 2 of the License, or *
09: * (at your option) any later version. *
10: * *
11: * MActor 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 *
14: * GNU General Public License for more details. *
15: * *
16: * You should have received a copy of the GNU General Public License *
17: * along with MActor; if not, write to the Free Software *
18: * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA *
19: ******************************************************************************/package org.mactor.framework.extensioninterface;
20:
21: import java.util.List;
22: import org.mactor.framework.MactorException;
23: import org.mactor.framework.TestContext;
24:
25: /**
26: * The interface that must be must be implemented by action commands.
27: * <p>
28: * From a testspec: <action name="MyAction" command="java:<i>class that
29: * implements the ActionCommand interface</i>"/>
30: * </p>
31: *
32: * @author Lars Ivar Almli
33: */
34: public interface ActionCommand {
35: /**
36: * The method invoked by the testrunner to perform the action node.
37: *
38: * @param context
39: * contains information about the context of the test that might
40: * be useful (such as all messages sent/received so far in the
41: * test)
42: * @param params
43: * the list of parameteres specifed for the given node in the
44: * test-spec xml (after the ##{...} substitution has been
45: * performed)
46: * @throws MactorException
47: * to indicate that the action failed for a functional or
48: * non-funtional reason (this will case the test to fail)
49: */
50: void perform(TestContext context, List<String> params)
51: throws MactorException;
52: }
|