blob: 86610b1758ea750b407eee80e43d3efa292ac7a9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2021 Red Hat Inc. 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:
* Red Hat Inc. - initial API and implementation
*******************************************************************************/
package org.eclipse.equinox.internal.security.tests.storage;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import java.util.List;
import org.eclipse.equinox.internal.security.storage.friends.InternalExchangeUtils;
import org.eclipse.equinox.internal.security.storage.friends.PasswordProviderDescription;
import org.eclipse.equinox.internal.security.tests.SecurityTestsActivator;
import org.junit.Before;
import org.junit.Test;
import org.osgi.framework.Bundle;
import org.osgi.framework.BundleContext;
public class ObsoletesTest {
final private static String LINUX_BUNDLE = "org.eclipse.equinox.security.linux";
@Before
public void setUp() {
org.junit.Assume.assumeTrue(hasBundle(LINUX_BUNDLE));
}
@Test
public void testObsoletes() {
List<PasswordProviderDescription> descs = InternalExchangeUtils
.passwordProvidersFind("org.eclipse.equinox.security.linuxkeystoreintegration");
assertNotNull(descs);
assertEquals(1, descs.size());
PasswordProviderDescription desc = descs.get(0);
assertEquals("org.eclipse.equinox.security.linuxkeystoreintegrationjna", desc.getId());
}
static private boolean hasBundle(String symbolicID) {
BundleContext context = SecurityTestsActivator.getDefault().getBundleContext();
Bundle[] bundles = context.getBundles();
for (Bundle bundle : bundles) {
String bundleName = bundle.getSymbolicName();
if (!symbolicID.equals(bundleName))
continue;
int bundleState = bundle.getState();
return (bundleState != Bundle.INSTALLED) && (bundleState != Bundle.UNINSTALLED);
}
return false;
}
}