blob: 6dd1e4f6f0be00e3231f2fd1da31aaa582dc2e7e [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 IUProperties extends AbstractProvisioningTest {
private IInstallableUnit a1;
private IInstallableUnit b1;
private IInstallableUnit b11;
private IInstallableUnit c;
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);
b11 = createIU("B1", new Version("1.1.0"), createRequiredCapabilities(IInstallableUnit.NAMESPACE_IU_ID, "C", new VersionRange("[1.0.0, 3.0.0)"), null), NO_PROPERTIES, true);
c = createIU("C", new Version(2, 0, 0), true);
createTestMetdataRepository(new IInstallableUnit[] {a1, b1, b11, c});
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());
IStatus s = engine.perform(profile, new DefaultPhaseSet(), pp1.getOperands(), null, null);
System.out.println(s);
Collector c = getProfile(profileId).query(new IUProfilePropertyQuery(getProfile(profileId), "FOO", null), new Collector(), null);
assertEquals(1, c.size());
ProfileChangeRequest req2 = new ProfileChangeRequest(profile);
req2.removeInstallableUnitProfileProperty(b1, "FOO");
ProvisioningPlan pp2 = planner.getProvisioningPlan(req2, null, null);
assertEquals(1, pp2.getOperands().length);
}
}