blob: f6f5d494e371ee5e19281ee77e02a6230b3078b0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 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.planner;
import java.util.Map;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.equinox.internal.p2.director.ProfileChangeRequest;
import org.eclipse.equinox.internal.provisional.p2.director.PlannerStatus;
import org.eclipse.equinox.internal.provisional.p2.director.RequestStatus;
import org.eclipse.equinox.p2.engine.*;
import org.eclipse.equinox.p2.metadata.*;
import org.eclipse.equinox.p2.planner.IPlanner;
import org.eclipse.equinox.p2.planner.ProfileInclusionRules;
import org.eclipse.equinox.p2.query.QueryUtil;
import org.eclipse.equinox.p2.tests.AbstractProvisioningTest;
public class ActualChangeRequestTest2 extends AbstractProvisioningTest {
IInstallableUnit a;
IInstallableUnit b;
IInstallableUnit b2;
IInstallableUnit c;
IProfile profile1;
IPlanner planner;
IEngine engine;
@Override
protected void setUp() throws Exception {
super.setUp();
a = createIU("A", Version.create("1.0.0"), new IRequirement[] {MetadataFactory.createRequirement(IInstallableUnit.NAMESPACE_IU_ID, "B", new VersionRange("[1.0.0, 1.0.0]"), null, false, false, true)}, NO_PROPERTIES, true);
b = createIU("B", Version.create("1.0.0"), true);
b2 = createIU("B", Version.create("2.0.0"), true);
createTestMetdataRepository(new IInstallableUnit[] {a, b2, b});
planner = createPlanner();
engine = createEngine();
}
public void testRequestStatus() {
//Install B
profile1 = createProfile("TestProfile." + getName());
ProfileChangeRequest req = new ProfileChangeRequest(profile1);
req.addInstallableUnits(new IInstallableUnit[] {b});
req.setInstallableUnitInclusionRules(b, ProfileInclusionRules.createStrictInclusionRule(b));
req.addInstallableUnits(new IInstallableUnit[] {a});
req.setInstallableUnitInclusionRules(a, ProfileInclusionRules.createOptionalInclusionRule(a));
IProvisioningPlan plan = planner.getProvisioningPlan(req, null, null);
assertEquals(IStatus.OK, ((PlannerStatus) plan.getStatus()).getRequestChanges().get(b).getSeverity());
assertEquals(IStatus.OK, plan.getStatus().getSeverity());
engine.perform(plan, null);
assertProfileContainsAll("B is missing", profile1, new IInstallableUnit[] {a, b});
assertEquals(2, queryResultSize(profile1.query(QueryUtil.createIUAnyQuery(), null)));
//Install B2
ProfileChangeRequest req2 = new ProfileChangeRequest(profile1);
req2.addInstallableUnits(new IInstallableUnit[] {b2});
req2.setInstallableUnitInclusionRules(b2, ProfileInclusionRules.createStrictInclusionRule(b2));
req2.removeInstallableUnits(new IInstallableUnit[] {b});
IProvisioningPlan plan2 = planner.getProvisioningPlan(req2, null, null);
assertEquals(IStatus.OK, plan2.getStatus().getSeverity());
assertNotNull(((PlannerStatus) plan2.getStatus()).getRequestChanges().get(b));
assertNotNull(((PlannerStatus) plan2.getStatus()).getRequestChanges().get(b2));
Map<IInstallableUnit, RequestStatus> m = ((PlannerStatus) plan2.getStatus()).getRequestSideEffects();
assertEquals(1, m.size());
assertNotNull(m.get(a));
assertEquals(IStatus.INFO, m.get(a).getSeverity());
assertEquals(RequestStatus.REMOVED, m.get(a).getInitialRequestType());
engine.perform(plan2, null);
assertProfileContainsAll("A is missing", profile1, new IInstallableUnit[] {b2});
assertEquals(1, queryResultSize(profile1.query(QueryUtil.createIUAnyQuery(), null)));
//Try to Install A
ProfileChangeRequest req3 = new ProfileChangeRequest(profile1);
req3.addInstallableUnits(new IInstallableUnit[] {a});
req3.setInstallableUnitInclusionRules(a, ProfileInclusionRules.createOptionalInclusionRule(a));
IProvisioningPlan plan3 = planner.getProvisioningPlan(req3, null, null);
assertNotNull(((PlannerStatus) plan3.getStatus()).getRequestChanges().get(a));
assertEquals(IStatus.ERROR, ((PlannerStatus) plan3.getStatus()).getRequestChanges().get(a).getSeverity());
assertEquals(RequestStatus.ADDED, ((PlannerStatus) plan3.getStatus()).getRequestChanges().get(a).getInitialRequestType());
//Try to Install A
ProfileChangeRequest req4 = new ProfileChangeRequest(profile1);
req4.addInstallableUnits(new IInstallableUnit[] {a});
req4.setInstallableUnitInclusionRules(a, ProfileInclusionRules.createStrictInclusionRule(a));
IProvisioningPlan plan4 = planner.getProvisioningPlan(req4, null, null);
assertNotNull(((PlannerStatus) plan4.getStatus()).getRequestChanges().get(a));
assertEquals(IStatus.ERROR, ((PlannerStatus) plan4.getStatus()).getRequestChanges().get(a).getSeverity());
assertEquals(RequestStatus.ADDED, ((PlannerStatus) plan4.getStatus()).getRequestChanges().get(a).getInitialRequestType());
}
}