blob: 56fb65dd2dcfc772bd43567efbb2a0f19b7e0169 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2013 E.D.Willink and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* E.D.Willink - initial API and implementation
*******************************************************************************/
package org.eclipse.ocl.examples.test.label;
import junit.framework.TestCase;
import org.eclipse.emf.common.util.URI;
import org.eclipse.ocl.examples.common.label.ILabelGenerator;
import org.eclipse.ocl.examples.common.label.LabelGeneratorRegistry;
import org.eclipse.ocl.examples.common.label.generators.EcoreURILabelGenerator;
public class StandaloneLabelTests extends TestCase
{
public void testEcoreURILabel() {
String testURI = "http://xyzzy/jj";
URI uri = URI.createURI(testURI);
ILabelGenerator.Registry myRegistry = new LabelGeneratorRegistry(ILabelGenerator.Registry.INSTANCE);
String actualLabel = myRegistry.labelFor(uri);
String expectedLabel1 = "<unknown-URI " + testURI + ">"; // URI pre Kepler M6.
String expectedLabel2 = "<unknown-Hierarchical " + testURI + ">"; // URI post Kepler M6.
String expectedLabel = actualLabel.contains("URI") ? expectedLabel1 : expectedLabel2;
assertEquals(expectedLabel, actualLabel);
EcoreURILabelGenerator.initialize(myRegistry);
actualLabel = myRegistry.labelFor(uri);
expectedLabel = testURI;
assertEquals(expectedLabel, actualLabel);
EcoreURILabelGenerator.initialize(ILabelGenerator.Registry.INSTANCE);
actualLabel = myRegistry.labelFor(uri);
expectedLabel = testURI;
assertEquals(expectedLabel, actualLabel);
myRegistry.uninstall(URI.class);
actualLabel = myRegistry.labelFor(uri);
expectedLabel = testURI;
assertEquals(expectedLabel, actualLabel);
ILabelGenerator.Registry.INSTANCE.uninstall(URI.class);
actualLabel = myRegistry.labelFor(uri);
assertEquals(expectedLabel, actualLabel);
}
}