blob: 4e5176719378cfb3fe8ace8e51eb4b5bb2f734c1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2018 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.core.tests.internal.registry.simple;
import java.io.IOException;
import java.net.URL;
import org.eclipse.core.internal.registry.ExtensionRegistry;
import org.eclipse.core.runtime.*;
import org.eclipse.core.tests.runtime.RuntimeTestsPlugin;
import org.osgi.framework.Bundle;
/**
* Check dynamic contribution into the Eclipse registry itself.
* @since 3.2
*/
public class XMLExtensionCreateEclipse extends BaseExtensionRegistryRun {
public void testDynamicContribution() {
// specify this bundle as a contributor
Bundle thisBundle = RuntimeTestsPlugin.getContext().getBundle();
IContributor thisContributor = ContributorFactoryOSGi.createContributor(thisBundle);
fillRegistry(thisContributor);
checkRegistry(thisContributor.getName());
}
private void fillRegistry(IContributor contributor) {
try {
Object userKey = ((ExtensionRegistry) RegistryFactory.getRegistry()).getTemporaryUserToken();
URL xmlURL = getXML("DynamicExtension.xml"); //$NON-NLS-1$
RegistryFactory.getRegistry().addContribution(xmlURL.openStream(), contributor, false, xmlURL.getFile(), null, userKey);
} catch (IOException eFile) {
fail(eFile.getMessage());
return;
}
}
private void checkRegistry(String namespace) {
IExtensionRegistry eclipseRegistry = RegistryFactory.getRegistry();
String uniqueId = qualifiedName(namespace, "XMLDirectExtPoint"); //$NON-NLS-1$
IExtensionPoint dynamicExtensionPoint = eclipseRegistry.getExtensionPoint(uniqueId);
assertNotNull(dynamicExtensionPoint);
IConfigurationElement[] elements = eclipseRegistry.getConfigurationElementsFor(uniqueId);
assertTrue(elements.length == 1);
for (IConfigurationElement element : elements) {
assertTrue("org.eclipse.core.tests.internal.registry.simple.utils.ExecutableRegistryObject".equals(element.getAttribute("class")));
}
}
}