blob: 40fa7710e82717c3e8c802882f1328c9b09937ca [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 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 org.eclipse.core.runtime.*;
/**
* Tests merging static and dynamic contributions.
*
* @since 3.2
*/
public class MergeContribution extends BaseExtensionRegistryRun {
public MergeContribution() {
super();
}
public MergeContribution(String name) {
super(name);
}
public void testMergeStaticDynamic() {
// Test with non-bundle contributor
IContributor nonBundleContributor = ContributorFactorySimple.createContributor("ABC"); //$NON-NLS-1$
String namespace = nonBundleContributor.getName();
fillRegistryStatic(nonBundleContributor);
checkRegistry(namespace, 3);
fillRegistryDynamic(nonBundleContributor);
checkRegistry(namespace, 6);
stopRegistry();
simpleRegistry = startRegistry();
checkRegistry(namespace, 3);
fillRegistryDynamic(nonBundleContributor);
checkRegistry(namespace, 6);
}
private void fillRegistryStatic(IContributor contributor) {
processXMLContribution(contributor, getXML("MergeStatic.xml"), true); //$NON-NLS-1$
}
private void fillRegistryDynamic(IContributor contributor) {
processXMLContribution(contributor, getXML("MergeDynamic.xml"), false); //$NON-NLS-1$
}
private void checkRegistry(String namespace, int expectedExtensions) {
IExtensionPoint extensionPoint = simpleRegistry.getExtensionPoint(qualifiedName(namespace, "MergeStatic")); //$NON-NLS-1$
assertNotNull(extensionPoint);
IExtension[] extensions = simpleRegistry.getExtensions(namespace);
assertNotNull(extensions);
assertEquals(expectedExtensions, extensions.length);
}
}