/* * JBoss, Home of Professional Open Source. * * See the LEGAL.txt file distributed with this work for information regarding copyright ownership and licensing. * * See the AUTHORS.txt file distributed with this work for a full listing of individual contributors. */ package org.teiid.designer.jdbc.relational; import java.util.Date; import junit.extensions.TestSetup; import junit.framework.Test; import junit.framework.TestCase; import junit.framework.TestSuite; import org.eclipse.core.runtime.IStatus; import org.eclipse.core.runtime.MultiStatus; import org.eclipse.core.runtime.Status; import org.eclipse.emf.ecore.EObject; import org.teiid.core.designer.util.PluginUtilImpl; import org.teiid.core.util.SmartTestDesignerSuite; import org.teiid.designer.core.ModelerCore; import org.teiid.designer.core.spi.RegistrySPI; import org.teiid.designer.jdbc.relational.impl.RelationalModelProcessorImpl; import org.teiid.designer.jdbc.relational.util.JdbcModelProcessorManager; import org.teiid.designer.metamodels.relational.RelationalPlugin; import org.teiid.designer.metamodels.relational.SearchabilityType; import org.teiid.designer.metamodels.relational.util.RelationalTypeMapping; /** * TestJdbcRelationalPlugin */ public class TestJdbcRelationalPlugin extends TestCase { public final static String[] REAL_KEYS = new String[] {"JdbcNodeToRelationalMappingImpl.ViewTableType", //$NON-NLS-1$ }; public final static String[] REAL_VALUES = new String[] {"View", //$NON-NLS-1$ }; /** * Constructor for TestJdbcRelationalPlugin.Util. * * @param name */ public TestJdbcRelationalPlugin( String name ) { super(name); } /* * @see TestCase#setUp() */ @Override protected void setUp() throws Exception { super.setUp(); } /* * @see TestCase#tearDown() */ @Override protected void tearDown() throws Exception { super.tearDown(); } /** * Test suite, with one-time setup. */ public static Test suite() { TestSuite suite = new TestSuite("TestJdbcRelationalPlugin"); //$NON-NLS-1$ suite.addTestSuite(TestJdbcRelationalPlugin.class); // One-time setup and teardown return new TestSetup(suite) { @Override public void setUp() { JdbcRelationalPlugin jdbcRelationalPlugin = new JdbcRelationalPlugin(); SmartTestDesignerSuite.mockStartBundle(jdbcRelationalPlugin, ModelerJdbcRelationalConstants.PLUGIN_ID); ((PluginUtilImpl)ModelerJdbcRelationalConstants.Util).initializePlatformLogger(jdbcRelationalPlugin); RelationalPlugin relationalPlugin = new RelationalPlugin(); SmartTestDesignerSuite.mockStartBundle(relationalPlugin, RelationalPlugin.PLUGIN_ID); ((PluginUtilImpl)RelationalPlugin.Util).initializePlatformLogger(relationalPlugin); ((RegistrySPI) ModelerCore.getRegistry()).unregister(ModelerCore.DEFAULT_CONTAINER_KEY); } @Override public void tearDown() { } }; } public void helpTestGetString( final String key, final String expectedValue ) { final String actualValue = org.teiid.designer.jdbc.relational.ModelerJdbcRelationalConstants.Util.getString(key); if (actualValue == null) { fail("TestJdbcRelationalPlugin.Util.getString(\"" + key + //$NON-NLS-1$ "\") should not return null"); //$NON-NLS-1$ } if (!actualValue.equals(expectedValue)) { fail("Expected \"" + expectedValue + //$NON-NLS-1$ "\" but got \"" + actualValue + //$NON-NLS-1$ "\""); //$NON-NLS-1$ } } public void testNonPlatformGetStringWithNullKey() { final String key = null; final String expectedValue = "<No message available>"; //$NON-NLS-1$ helpTestGetString(key, expectedValue); } public void testNonPlatformGetStringWithZeroLengthKey() { final String key = ""; //$NON-NLS-1$ final String expectedValue = "<Missing message for key \"\" in: org.teiid.designer.jdbc.relational.i18n>"; //$NON-NLS-1$ helpTestGetString(key, expectedValue); } public void testNonPlatformGetStringThatShouldBeFound() { for (int i = 0; i != REAL_KEYS.length; ++i) { final String key = REAL_KEYS[i]; final String expectedValue = REAL_VALUES[i]; helpTestGetString(key, expectedValue); } } /* * Test for void log(IStatus) */ public void testNonPlatformLogIStatus_ErrorWithMessageWithoutThrowable() { final int severity = IStatus.ERROR; final int code = 100; final String message = "This is an error message"; //$NON-NLS-1$ final Throwable t = null; final String pluginID = "my.plugin.id"; //$NON-NLS-1$ final IStatus status = new Status(severity, pluginID, code, message, t); org.teiid.designer.jdbc.relational.ModelerJdbcRelationalConstants.Util.log(status); } /* * Test for void log(IStatus) */ public void testNonPlatformLogIStatus_ErrorMultiStatusWithMessageWithThrowable() { final int embeddedSeverity1 = IStatus.WARNING; final int embeddedSeverity2 = IStatus.ERROR; final int code = 100; final String embeddedMessage1 = "This is the embedded warning message 1"; //$NON-NLS-1$ final String embeddedMessage2 = "This is the embedded error message 2"; //$NON-NLS-1$ final String message = "This is the message for the outter multistatus"; //$NON-NLS-1$ final Throwable t = new Throwable("This is the throwable"); //$NON-NLS-1$ t.fillInStackTrace(); final String pluginID = "my.plugin.id"; //$NON-NLS-1$ final IStatus embeddedStatus1 = new Status(embeddedSeverity1, pluginID, code + 1, embeddedMessage1, t); final IStatus embeddedStatus2 = new Status(embeddedSeverity2, pluginID, code, embeddedMessage2, t); final IStatus[] embedded = new IStatus[] {embeddedStatus1, embeddedStatus2}; final IStatus status = new MultiStatus(pluginID, code, embedded, message, t); org.teiid.designer.jdbc.relational.ModelerJdbcRelationalConstants.Util.log(status); } /* * Test for void log(IStatus) */ public void testNonPlatformLogIStatus_WarningWithMessageWithoutThrowable() { final int severity = IStatus.WARNING; final int code = 100; final String message = "This is a warning message"; //$NON-NLS-1$ final Throwable t = null; final String pluginID = "my.plugin.id"; //$NON-NLS-1$ final IStatus status = new Status(severity, pluginID, code, message, t); org.teiid.designer.jdbc.relational.ModelerJdbcRelationalConstants.Util.log(status); } /* * Test for void log(IStatus) */ public void testNonPlatformLogIStatus_WarningMultiStatusWithMessageWithThrowable() { final int embeddedSeverity1 = IStatus.INFO; final int embeddedSeverity2 = IStatus.WARNING; final int code = 100; final String embeddedMessage1 = "This is the embedded info message 1"; //$NON-NLS-1$ final String embeddedMessage2 = "This is the embedded warning message 2"; //$NON-NLS-1$ final String message = "This is the message for the outter multistatus"; //$NON-NLS-1$ final Throwable t = new Throwable("This is the throwable"); //$NON-NLS-1$ t.fillInStackTrace(); final String pluginID = "my.plugin.id"; //$NON-NLS-1$ final IStatus embeddedStatus1 = new Status(embeddedSeverity1, pluginID, code + 1, embeddedMessage1, t); final IStatus embeddedStatus2 = new Status(embeddedSeverity2, pluginID, code, embeddedMessage2, t); final IStatus[] embedded = new IStatus[] {embeddedStatus1, embeddedStatus2}; final IStatus status = new MultiStatus(pluginID, code, embedded, message, t); org.teiid.designer.jdbc.relational.ModelerJdbcRelationalConstants.Util.log(status); } /* * Test for void log(IStatus) */ public void testNonPlatformLogIStatus_ErrorWithNullMessageWithoutThrowable() { final int severity = IStatus.ERROR; final int code = 100; final String message = null; final Throwable t = null; final String pluginID = "my.plugin.id"; //$NON-NLS-1$ try { new Status(severity, pluginID, code, message, t); } catch (IllegalArgumentException e) { fail("Should have been able to create a Status " + //$NON-NLS-1$ "with a null message"); //$NON-NLS-1$ } } /* * Test for void log(IStatus) */ public void testNonPlatformLogIStatus_ErrorWithoutMessageWithThrowable() { final int severity = IStatus.ERROR; final int code = 100; final String message = null; final Throwable t = new Throwable("This is the throwable"); //$NON-NLS-1$ t.fillInStackTrace(); final String pluginID = "my.plugin.id"; //$NON-NLS-1$ try { new Status(severity, pluginID, code, message, t); } catch (IllegalArgumentException e) { fail("Should have been able to create a Status " + //$NON-NLS-1$ "with a null message"); //$NON-NLS-1$ } } /* * Test for void log(Object) */ public void testNonPlatformLogStringObject() { final Object obj = "This is a string object that is output"; //$NON-NLS-1$ org.teiid.designer.jdbc.relational.ModelerJdbcRelationalConstants.Util.log(obj); } /* * Test for void log(Object) */ public void testNonPlatformLogDateObject() { final Object obj = new Date(); org.teiid.designer.jdbc.relational.ModelerJdbcRelationalConstants.Util.log(obj); } /* * Test for void log(Object) */ public void testNonPlatformLogNullObject() { final Object obj = null; org.teiid.designer.jdbc.relational.ModelerJdbcRelationalConstants.Util.log(obj); } /* * Test for void log(Throwable) */ public void testNonPlatformLogThrowable() { final Throwable t = new Throwable("This is the throwable"); //$NON-NLS-1$ t.fillInStackTrace(); org.teiid.designer.jdbc.relational.ModelerJdbcRelationalConstants.Util.log(t); } public void testCreateRelationalModelProcessor() { final RelationalModelProcessor processor = JdbcModelProcessorManager.createRelationalModelProcessor(null); assertNotNull(processor); assertTrue(processor instanceof RelationalModelProcessorImpl); } public void testCreateRelationalModelProcessorWithTypeMapping() { RelationalTypeMapping fakeMapping = new RelationalTypeMapping() { @Override public EObject getDatatype( String jdbcTypeName ) { return null; } @Override public EObject getDatatype( int jdbcType ) { return null; } @Override public SearchabilityType getSearchabilityType( EObject datatype ) { return null; } }; final RelationalModelProcessor processor = JdbcModelProcessorManager.createRelationalModelProcessor(fakeMapping, "JDBC"); //$NON-NLS-1$ assertNotNull(processor); assertTrue(processor instanceof RelationalModelProcessorImpl); } }