blob: 15315d17fbc3d00c8edda29e00f7bfd6ad8a7b64 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2017 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.equinox.frameworkadmin.tests;
import static org.junit.Assert.assertTrue;
import java.io.File;
import java.io.IOException;
import org.eclipse.core.runtime.FileLocator;
import org.eclipse.core.runtime.URIUtil;
import org.eclipse.equinox.frameworkadmin.BundleInfo;
import org.eclipse.equinox.internal.provisional.frameworkadmin.*;
import org.junit.Before;
import org.junit.Test;
import org.osgi.framework.BundleException;
public class RemovingABundle extends FwkAdminAndSimpleConfiguratorTest {
@Override
@Before
public void setUp() throws Exception {
super.setUp();
Manipulator manipulator = createMinimalConfiguration(RemovingABundle.class.getName());
manipulator.getConfigData()
.addBundle(new BundleInfo("bundle_1", "1.0.0",
URIUtil.toURI(
FileLocator.resolve(Activator.getContext().getBundle().getEntry("dataFile/bundle_1"))),
4, false));
manipulator.save(false);
File fooINI = new File(getInstallFolder(), getLauncherName() + ".ini");
assertTrue(fooINI.exists());
assertContent(getBundleTxt(), "bundle_1");
}
@Test
public void testRemoveBundleWithoutURL()
throws IllegalStateException, FrameworkAdminRuntimeException, IOException, BundleException {
Manipulator m2 = getEquinoxFrameworkAdmin().getManipulator();
LauncherData launcherData2 = m2.getLauncherData();
launcherData2.setFwConfigLocation(getConfigurationFolder());
launcherData2.setLauncher(new File(getInstallFolder(), "eclipse"));
try {
m2.load();
} catch (IllegalStateException e) {
// TODO We ignore the framework JAR location not set exception
}
BundleInfo info = new BundleInfo("bundle_1", "1.0.0", null, 0, false);
m2.getConfigData().removeBundle(info);
m2.save(false);
assertNotContent(getBundleTxt(), "bundle_1");
}
}