blob: cf57076ad9b9ceec63fb34d2e5d5c8aea38b67aa [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 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.director;
import java.util.Iterator;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.equinox.p2.director.IDirector;
import org.eclipse.equinox.p2.engine.Profile;
import org.eclipse.equinox.p2.metadata.IInstallableUnit;
import org.eclipse.equinox.p2.metadata.RequiredCapability;
import org.eclipse.equinox.p2.tests.AbstractProvisioningTest;
import org.eclipse.osgi.service.resolver.VersionRange;
import org.osgi.framework.Version;
public class UpdateTest extends AbstractProvisioningTest {
IInstallableUnit f1;
IInstallableUnit f1_1;
IInstallableUnit f1_4;
IInstallableUnit fa;
IInstallableUnit fap;
IDirector director;
Profile profile;
protected void setUp() throws Exception {
f1 = createIU("f1", DEFAULT_VERSION, true);
f1_1 = createIU("f1", new Version(1, 1, 0), true);
f1_4 = createIU("f1", new Version(1, 4, 0), true);
RequiredCapability[] requires = createRequiredCapabilities(IInstallableUnit.NAMESPACE_IU, "f1", new VersionRange("[1.0.0, 1.3.0)"), null);
fa = createIU("fa", requires, false);
requires = createRequiredCapabilities(IInstallableUnit.NAMESPACE_IU, "f1", new VersionRange("[1.0.0, 1.4.0)"), null);
fap = createIU("fa", new Version(1, 1, 0), requires, NO_PROPERTIES, false);
createTestMetdataRepository(new IInstallableUnit[] {f1, fa});
profile = new Profile("TestProfile." + getName());
director = createDirector();
director.install(new IInstallableUnit[] {fa}, profile, null);
createTestMetdataRepository(new IInstallableUnit[] {f1_1, f1_4});
}
public void testInstall() {
assertEquals(IStatus.OK, director.install(new IInstallableUnit[] {f1_1}, profile, new NullProgressMonitor()).getSeverity());
for (Iterator iterator = profile.getInstallableUnits(); iterator.hasNext();) {
System.out.println(iterator.next());
}
assertEquals(IStatus.ERROR, director.install(new IInstallableUnit[] {f1_4}, profile, new NullProgressMonitor()).getSeverity());
// director.replace(new IInstallableUnit[] {fap}, profile, new NullProgressMonitor());
}
}