blob: be383f5e23e4f002adee41581ca6877731f70076 [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.*;
import org.eclipse.equinox.p2.tests.AbstractProvisioningTest;
import org.eclipse.osgi.service.resolver.VersionRange;
import org.osgi.framework.Version;
public class PatchTest3 extends AbstractProvisioningTest {
IInstallableUnit f1;
IInstallableUnit f2;
IInstallableUnit a1;
IInstallableUnit a3;
IInstallableUnit b1, b2;
IInstallableUnitPatch p1;
IProfile profile1;
IPlanner planner;
IEngine engine;
protected void setUp() throws Exception {
super.setUp();
f1 = createIU("F", new Version(1, 0, 0), new RequiredCapability[] {MetadataFactory.createRequiredCapability(IInstallableUnit.NAMESPACE_IU_ID, "A", new VersionRange("[1.0.0, 1.1.0]"), null, false, false, true)});
f2 = createIU("F", new Version(2, 0, 0), new RequiredCapability[] {MetadataFactory.createRequiredCapability(IInstallableUnit.NAMESPACE_IU_ID, "A", new VersionRange("[3.0.0, 4.0.0)"), null, false, false, true)});
ProvidedCapability[] cap = new ProvidedCapability[] {MetadataFactory.createProvidedCapability("foo", "bar", new Version(1, 0, 0))};
a1 = createIU("A", new Version("1.0.0"), null, new RequiredCapability[] {MetadataFactory.createRequiredCapability(IInstallableUnit.NAMESPACE_IU_ID, "B", new VersionRange("[1.0.0, 1.1.0)"), null, false, false)}, cap, NO_PROPERTIES, TouchpointType.NONE, NO_TP_DATA, false, null);
a3 = createIU("A", new Version(3, 0, 0), true);
b1 = createIU("B", new Version(1, 0, 0), true);
b2 = createIU("B", new Version(2, 0, 0), true);
RequirementChange change = new RequirementChange(MetadataFactory.createRequiredCapability(IInstallableUnit.NAMESPACE_IU_ID, "B", VersionRange.emptyRange, null, false, false, false), MetadataFactory.createRequiredCapability(IInstallableUnit.NAMESPACE_IU_ID, "B", new VersionRange("[2.0.0, 2.1.0)"), null, false, false, true));
RequiredCapability lifeCycle = MetadataFactory.createRequiredCapability(IInstallableUnit.NAMESPACE_IU_ID, "F", new VersionRange("[1.0.0, 1.1.0)"), null, false, false, false);
p1 = createIUPatch("P", new Version("1.0.0"), true, new RequirementChange[] {change}, new RequiredCapability[][] {{MetadataFactory.createRequiredCapability(IInstallableUnit.NAMESPACE_IU_ID, "A", new VersionRange("[1.0.0, 1.1.0]"), null, false, false, false)}}, lifeCycle);
createTestMetdataRepository(new IInstallableUnit[] {a1, b1, b2, p1, a3, f1, f2});
profile1 = createProfile("TestProfile." + getName());
planner = createPlanner();
engine = createEngine();
}
public void testCompleteScenario() {
// Install a1
ProfileChangeRequest req1 = new ProfileChangeRequest(profile1);
req1.addInstallableUnits(new IInstallableUnit[] {f1});
ProvisioningPlan plan1 = planner.getProvisioningPlan(req1, null, null);
assertEquals(IStatus.OK, plan1.getStatus().getSeverity());
assertInstallOperand(plan1, b1);
assertInstallOperand(plan1, a1);
assertInstallOperand(plan1, f1);
engine.perform(profile1, new DefaultPhaseSet(), plan1.getOperands(), null, null);
assertProfileContainsAll("A1 is missing", profile1, new IInstallableUnit[] {a1});
assertProfileContainsAll("B1 is missing", profile1, new IInstallableUnit[] {b1});
assertProfileContainsAll("B1 is missing", profile1, new IInstallableUnit[] {f1});
//Install p1, this should cause b1 to be uninstalled and b2 to be used instead
ProfileChangeRequest req2 = new ProfileChangeRequest(profile1);
req2.addInstallableUnits(new IInstallableUnit[] {p1});
req2.setInstallableUnitInclusionRules(p1, PlannerHelper.createOptionalInclusionRule(p1));
ProvisioningPlan plan2 = planner.getProvisioningPlan(req2, null, null);
assertTrue(IStatus.ERROR != plan2.getStatus().getSeverity());
assertInstallOperand(plan2, p1);
assertInstallOperand(plan2, b2);
engine.perform(profile1, new DefaultPhaseSet(), plan2.getOperands(), null, null);
assertProfileContainsAll("A1 is missing", profile1, new IInstallableUnit[] {a1});
assertProfileContainsAll("B2 is missing", profile1, new IInstallableUnit[] {b2});
assertProfileContainsAll("P1 is missing", profile1, new IInstallableUnit[] {p1});
assertProfileContainsAll("P1 is missing", profile1, new IInstallableUnit[] {f1});
//Try to uninstall p1, this causes b1 to come back and b2 to go away
ProfileChangeRequest req3 = new ProfileChangeRequest(profile1);
req3.removeInstallableUnits(new IInstallableUnit[] {p1});
ProvisioningPlan plan3 = planner.getProvisioningPlan(req3, null, null);
assertTrue(IStatus.ERROR != plan3.getStatus().getSeverity());
assertInstallOperand(plan3, b1);
assertUninstallOperand(plan3, b2);
assertUninstallOperand(plan3, p1);
//Try to uninstall f should not be blocked by p1 since it is installed optionally
ProfileChangeRequest req4 = new ProfileChangeRequest(profile1);
req4.removeInstallableUnits(new IInstallableUnit[] {f1});
ProvisioningPlan plan4 = planner.getProvisioningPlan(req4, null, null);
assertTrue(IStatus.ERROR != plan4.getStatus().getSeverity());
assertUninstallOperand(plan4, b2);
assertUninstallOperand(plan4, a1);
assertUninstallOperand(plan4, f1);
assertUninstallOperand(plan4, p1);
//update from f1 to f2. This should cause p1 to go away
ProfileChangeRequest req5 = new ProfileChangeRequest(profile1);
req5.removeInstallableUnits(new IInstallableUnit[] {f1});
req5.addInstallableUnits(new IInstallableUnit[] {f2});
ProvisioningPlan plan5 = planner.getProvisioningPlan(req5, null, null);
assertTrue(IStatus.ERROR != plan5.getStatus().getSeverity());
assertUninstallOperand(plan5, b2);
assertUninstallOperand(plan5, a1);
assertUninstallOperand(plan5, f1);
assertUninstallOperand(plan5, p1);
assertInstallOperand(plan5, f2);
assertInstallOperand(plan5, a3);
engine.perform(profile1, new DefaultPhaseSet(), plan5.getOperands(), null, null);
assertProfileContainsAll("", profile1, new IInstallableUnit[] {f2, a3});
}
}