Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 669c7b3b8ab034e5cdead6a4a215060ec446e10d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/*******************************************************************************
 *  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);
	}
}

Back to the top