blob: 73038cb7a2bdfb975dcfee10dd8eb1cc651ec29c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 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.planner;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.equinox.internal.provisional.p2.director.*;
import org.eclipse.equinox.internal.provisional.p2.engine.*;
import org.eclipse.equinox.internal.provisional.p2.metadata.IInstallableUnit;
import org.eclipse.equinox.internal.provisional.p2.query.Collector;
import org.eclipse.equinox.p2.tests.AbstractProvisioningTest;
import org.eclipse.osgi.service.resolver.VersionRange;
import org.osgi.framework.Version;
public class IUPropertyRemoval extends AbstractProvisioningTest {
private IInstallableUnit a1;
private IInstallableUnit b1;
private IProfile profile;
private IPlanner planner;
private IEngine engine;
private String profileId;
protected void setUp() throws Exception {
super.setUp();
a1 = createIU("A", new Version("1.0.0"), createRequiredCapabilities(IInstallableUnit.NAMESPACE_IU_ID, "B1", new VersionRange("[1.0.0, 2.0.0)"), null));
b1 = createIU("B1", new Version("1.0.0"), true);
createTestMetdataRepository(new IInstallableUnit[] {a1, b1});
profileId = "TestProfile." + getName();
profile = createProfile(profileId);
planner = createPlanner();
engine = createEngine();
}
public void testRemoveIUProperty() {
ProfileChangeRequest req1 = new ProfileChangeRequest(profile);
req1.addInstallableUnits(new IInstallableUnit[] {a1});
req1.setInstallableUnitProfileProperty(a1, "FOO", "BAR");
req1.setInstallableUnitProfileProperty(b1, "FOO", "BAR");
ProvisioningPlan pp1 = planner.getProvisioningPlan(req1, null, null);
assertEquals(IStatus.OK, pp1.getStatus().getSeverity());
engine.perform(profile, new DefaultPhaseSet(), pp1.getOperands(), null, null);
Collector res = getProfile(profileId).query(new IUProfilePropertyQuery(getProfile(profileId), "FOO", null), new Collector(), null);
assertEquals(2, res.size());
ProfileChangeRequest req2 = new ProfileChangeRequest(profile);
req2.removeInstallableUnitProfileProperty(b1, "FOO");
ProvisioningPlan pp2 = planner.getProvisioningPlan(req2, null, null);
assertEquals(1, pp2.getOperands().length);
engine.perform(getProfile(profileId), new DefaultPhaseSet(), pp2.getOperands(), null, null);
Collector res2 = getProfile(profileId).query(new IUProfilePropertyQuery(getProfile(profileId), "FOO", null), new Collector(), null);
assertEquals(1, res2.size());
}
}