blob: 3df900b116d9166c171e30fcae28d10971a86113 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011, 2017 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.equinox.p2.tests.touchpoint.eclipse;
import java.util.*;
import org.eclipse.equinox.internal.p2.engine.InstallableUnitOperand;
import org.eclipse.equinox.internal.p2.touchpoint.eclipse.EclipseTouchpoint;
import org.eclipse.equinox.internal.p2.touchpoint.eclipse.actions.ActionConstants;
import org.eclipse.equinox.internal.p2.touchpoint.eclipse.actions.AddProgramPropertyAction;
import org.eclipse.equinox.internal.provisional.frameworkadmin.ConfigData;
import org.eclipse.equinox.internal.provisional.frameworkadmin.Manipulator;
import org.eclipse.equinox.p2.engine.IProfile;
import org.eclipse.equinox.p2.tests.AbstractProvisioningTest;
public class AddProgramPropertyActionTest extends AbstractProvisioningTest {
public AddProgramPropertyActionTest(String name) {
super(name);
}
public AddProgramPropertyActionTest() {
super("");
}
public void testExecuteUndo() {
// setup
Map<String, Object> parameters = new HashMap<>();
parameters.put(ActionConstants.PARM_AGENT, getAgent());
EclipseTouchpoint touchpoint = new EclipseTouchpoint();
Properties profileProperties = new Properties();
profileProperties.setProperty(IProfile.PROP_INSTALL_FOLDER, getTempFolder().toString());
IProfile profile = createProfile("test", profileProperties);
InstallableUnitOperand operand = new InstallableUnitOperand(null, createIU("test"));
touchpoint.initializePhase(null, profile, "test", parameters);
parameters.put("iu", operand.second());
touchpoint.initializeOperand(profile, parameters);
Manipulator manipulator = (Manipulator) parameters.get(EclipseTouchpoint.PARM_MANIPULATOR);
assertNotNull(manipulator);
ConfigData data = manipulator.getConfigData();
String key = getUniqueString();
String value1 = "foo";
String value2 = "bar";
assertNull(data.getProperty(key));
parameters.put(ActionConstants.PARM_PROP_NAME, key);
parameters.put(ActionConstants.PARM_PROP_VALUE, value1);
// execute the action and check the values
AddProgramPropertyAction action = new AddProgramPropertyAction();
action.execute(parameters);
String current = data.getProperty(key);
assertNotNull(current);
assertEquals(value1, current);
// add another value. expecting a comma-separated list of values
parameters.put(ActionConstants.PARM_PROP_VALUE, value2);
action.execute(parameters);
current = data.getProperty(key);
assertNotNull(current);
assertEquals(value1 + "," + value2, current);
// remove a value
parameters.put(ActionConstants.PARM_PROP_VALUE, value2);
action.undo(parameters);
current = data.getProperty(key);
assertNotNull(current);
assertEquals(value1, current);
// cleanup
data.setProperty(key, null);
}
}