blob: c5b7b2a9592d570bc58d4c42046c423e8f15f1e2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 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.engine;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.equinox.internal.p2.engine.*;
import org.eclipse.equinox.p2.engine.*;
import org.eclipse.equinox.p2.tests.AbstractProvisioningTest;
/**
* Simple test of the engine API.
*/
public class PhaseSetTest extends AbstractProvisioningTest {
public PhaseSetTest(String name) {
super(name);
}
public PhaseSetTest() {
super("");
}
public void testNullPhases() {
try {
new PhaseSet(null) {
// empty PhaseSet
};
} catch (IllegalArgumentException exepcted) {
return;
}
fail();
}
public void testNoTrustCheck() {
IPhaseSet set1 = PhaseSetFactory.createDefaultPhaseSet();
IPhaseSet set2 = PhaseSetFactory.createDefaultPhaseSetExcluding(new String[] {PhaseSetFactory.PHASE_CHECK_TRUST});
assertTrue("1.0", !set1.equals(set2));
}
public void testEmptyPhases() {
IProfile profile = createProfile("PhaseSetTest");
PhaseSet phaseSet = new PhaseSet(new Phase[] {}) {
// empty PhaseSet
};
InstallableUnitOperand op = new InstallableUnitOperand(createResolvedIU(createIU("iu")), null);
InstallableUnitOperand[] operands = new InstallableUnitOperand[] {op};
ProvisioningContext context = new ProvisioningContext(getAgent());
IStatus result = phaseSet.perform(new EngineSession(null, profile, context), operands, new NullProgressMonitor());
assertTrue(result.isOK());
}
}