blob: 342cad8b16e7728b68903f75cad6ca359f2c15d3 [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.equinox.common.tests.registry.simple;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue;
import org.eclipse.core.internal.registry.ExtensionRegistry;
import org.eclipse.core.runtime.ContributorFactorySimple;
import org.eclipse.core.runtime.IContributor;
import org.eclipse.core.runtime.IExtensionPoint;
import org.eclipse.core.runtime.IExtensionRegistry;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
/**
* Test simultaneous work of two extension registries.
* @since 3.2
*/
public class DirectExtensionCreateTwoRegistriesTest extends BaseExtensionRegistryRun {
private String extensionPointId = "AAAid"; //$NON-NLS-1$
private String extensionPointAltId = "BBBid"; //$NON-NLS-1$
private String extensionPointSchemaRef = "schema/schema.exsd"; //$NON-NLS-1$
private IExtensionRegistry theDeviceRegistryA;
private IExtensionRegistry theDeviceRegistryB;
@Override
@Before
public void setUp() throws Exception {
startRegistries();
}
@Override
@After
public void tearDown() throws Exception {
stopRegistries();
}
private void startRegistries() {
theDeviceRegistryA = startRegistry("A"); //$NON-NLS-1$
theDeviceRegistryB = startRegistry("B"); //$NON-NLS-1$
}
private void stopRegistries() {
assertNotNull(theDeviceRegistryA);
theDeviceRegistryA.stop(masterToken);
assertNotNull(theDeviceRegistryB);
theDeviceRegistryB.stop(masterToken);
}
@Test
public void testExtensionPointAddition() {
// Test with non-bundle contributor
IContributor nonBundleContributor = ContributorFactorySimple.createContributor("ABC"); //$NON-NLS-1$
String namespace = nonBundleContributor.getName();
checkEmptyRegistries(namespace); // make sure we don't have any leftovers
fillRegistries(nonBundleContributor); // add one extension point in each registry
checkRegistries(namespace); // check that they got into right places
stopRegistries(); // check caches
startRegistries();
checkEmptyRegistries(namespace); // confirm that both registries got re-populated from caches
}
private void checkEmptyRegistries(String namespace) {
// see what's in the registry A:
IExtensionPoint extensionPoint = theDeviceRegistryA.getExtensionPoint(qualifiedName(namespace, extensionPointId));
IExtensionPoint extensionPointAlt = theDeviceRegistryA.getExtensionPoint(qualifiedName(namespace, extensionPointAltId));
assertNull(extensionPoint);
assertNull(extensionPointAlt);
}
private void fillRegistries(IContributor contributor) {
assertTrue(((ExtensionRegistry) theDeviceRegistryA).addExtensionPoint(extensionPointId, contributor, false, "LabelA", extensionPointSchemaRef, userToken)); //$NON-NLS-1$
assertTrue(((ExtensionRegistry) theDeviceRegistryB).addExtensionPoint(extensionPointAltId, contributor, false, "LabelB", extensionPointSchemaRef, userToken)); //$NON-NLS-1$
}
private void checkRegistries(String namespace) {
// see what's in the registry A:
IExtensionPoint extensionPoint = theDeviceRegistryA.getExtensionPoint(qualifiedName(namespace, extensionPointId));
IExtensionPoint extensionPointAlt = theDeviceRegistryA.getExtensionPoint(qualifiedName(namespace, extensionPointAltId));
assertNotNull(extensionPoint);
assertNull(extensionPointAlt);
// see what's in the registry B:
extensionPoint = theDeviceRegistryB.getExtensionPoint(qualifiedName(namespace, extensionPointId));
extensionPointAlt = theDeviceRegistryB.getExtensionPoint(qualifiedName(namespace, extensionPointAltId));
assertNull(extensionPoint);
assertNotNull(extensionPointAlt);
}
}