001: /*
002: * $Header: /export/home/cvsroot/MyPersonalizerRepository/MyPersonalizer/Subsystems/Admin/Sources/es/udc/mypersonalizer/admin/model/actions/servicecfg/AddServiceConfigurationActionTest.java,v 1.1.1.1 2004/03/25 12:08:39 fbellas Exp $
003: * $Revision: 1.1.1.1 $
004: * $Date: 2004/03/25 12:08:39 $
005: *
006: * =============================================================================
007: *
008: * Copyright (c) 2003, The MyPersonalizer Development Group
009: * (http://www.tic.udc.es/~fbellas/mypersonalizer/index.html) at
010: * University Of A Coruna
011: * All rights reserved.
012: *
013: * Redistribution and use in source and binary forms, with or without
014: * modification, are permitted provided that the following conditions are met:
015: *
016: * - Redistributions of source code must retain the above copyright notice,
017: * this list of conditions and the following disclaimer.
018: *
019: * - Redistributions in binary form must reproduce the above copyright notice,
020: * this list of conditions and the following disclaimer in the documentation
021: * and/or other materials provided with the distribution.
022: *
023: * - Neither the name of the University Of A Coruna nor the names of its
024: * contributors may be used to endorse or promote products derived from
025: * this software without specific prior written permission.
026: *
027: * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
028: * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
029: * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
030: * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
031: * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
032: * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
033: * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
034: * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
035: * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
036: * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
037: * POSSIBILITY OF SUCH DAMAGE.
038: *
039: */
040:
041: package es.udc.mypersonalizer.admin.model.actions.servicecfg;
042:
043: import java.util.Map;
044: import java.util.HashMap;
045:
046: import es.udc.mypersonalizer.kernel.model.repository.interfaces.ServiceConfiguration;
047: import es.udc.mypersonalizer.kernel.model.actions.ActionProcessorSingleton;
048:
049: import junit.framework.TestCase;
050:
051: /**
052: * @author Abel Iago Toral Quiroga
053: *
054: * This class tests the <code>AddServiceConfigurationAction</code> class.
055: * The first argument is the service identifier.
056: * Next are like : parameter value parameter value ....
057: */
058:
059: public class AddServiceConfigurationActionTest extends TestCase {
060:
061: public static String serviceIdentifier = null;
062: public static ServiceConfiguration serviceConfiguration = null;
063:
064: /**
065: * Constructor for AddServiceConfigurationActionTest.
066: * @param arg0
067: */
068: public AddServiceConfigurationActionTest(String arg0) {
069: super (arg0);
070: }
071:
072: /**
073: * @see TestCase#setUp()
074: */
075: protected void setUp() throws Exception {
076:
077: super .setUp();
078: }
079:
080: public void testAddConfiguration() {
081: try {
082:
083: System.out.println("Adding configuration ...");
084: ActionProcessorSingleton.getInstance().execute(
085: "AddServiceConfigurationAction",
086: serviceConfiguration);
087: System.out.println("Configuration added !!!");
088:
089: } catch (Exception e) {
090: System.out.println("Exception catched!");
091: fail(e.getMessage());
092: }
093:
094: assertEquals(true, true);
095: }
096:
097: public static final void main(String args[]) throws Exception {
098:
099: serviceIdentifier = args[0];
100: Map parameters = new HashMap();
101: for (int i = 1; i < args.length; i += 2) {
102: parameters.put(args[i], args[i + 1]);
103: }
104: serviceConfiguration = new ServiceConfiguration(
105: serviceIdentifier, parameters);
106:
107: TestCase test = new AddServiceConfigurationActionTest("") {
108: public void runTest() {
109: testAddConfiguration();
110: }
111: };
112: test.run();
113: }
114: }
|