blob: 669c7b3b8ab034e5cdead6a4a215060ec446e10d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2009 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.ui.operations;
import org.eclipse.equinox.internal.p2.ui.model.IIUElement;
import org.eclipse.equinox.internal.provisional.p2.core.ProvisionException;
import org.eclipse.equinox.internal.provisional.p2.director.ProfileChangeRequest;
import org.eclipse.equinox.internal.provisional.p2.director.ProvisioningPlan;
import org.eclipse.equinox.internal.provisional.p2.engine.IProfile;
import org.eclipse.equinox.internal.provisional.p2.engine.ProvisioningContext;
import org.eclipse.equinox.internal.provisional.p2.metadata.IInstallableUnit;
import org.eclipse.equinox.internal.provisional.p2.ui.operations.ProvisioningUtil;
import org.eclipse.equinox.p2.tests.ui.AbstractProvisioningUITest;
/**
*
*/
public class SizingTest extends AbstractProvisioningUITest {
public void testEmptySizing() {
String profileId = "testEmptySizing";
IProfile profile = createProfile(profileId);
ProfileChangeRequest request = new ProfileChangeRequest(profile);
ProvisioningPlan plan = null;
try {
plan = ProvisioningUtil.getProvisioningPlan(request, new ProvisioningContext(), getMonitor());
} catch (ProvisionException e) {
fail("0.99", e);
return;
}
long size = IIUElement.SIZE_NOTAPPLICABLE;
try {
size = ProvisioningUtil.getSize(plan, profileId, new ProvisioningContext(), getMonitor());
} catch (ProvisionException e) {
fail("1.99", e);
}
assertEquals("1.0", 0, size);
}
/**
* Tests a simple sizing operation with an IU containing no artifacts
*/
public void testSimpleSizing() {
IInstallableUnit f1 = createIU("f1", DEFAULT_VERSION, true);
String profileId = "testSimpleSizing";
IProfile profile = createProfile(profileId);
ProfileChangeRequest request = new ProfileChangeRequest(profile);
request.addInstallableUnits(new IInstallableUnit[] {f1});
ProvisioningPlan plan = null;
try {
plan = ProvisioningUtil.getProvisioningPlan(request, new ProvisioningContext(), getMonitor());
} catch (ProvisionException e) {
fail("0.99", e);
return;
}
long size = IIUElement.SIZE_NOTAPPLICABLE;
try {
size = ProvisioningUtil.getSize(plan, profileId, new ProvisioningContext(), getMonitor());
} catch (ProvisionException e) {
fail("1.99", e);
}
assertEquals("1.0", 0, size);
}
}