/* * 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; 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.teiid.core.designer.util.PluginUtilImpl; import org.teiid.core.util.SmartTestDesignerSuite; /** * TestJdbcPlugin */ public class TestJdbcPlugin extends TestCase { public final static String[] REAL_KEYS = new String[] {"JdbcManagerImpl.The_name_is_empty", //$NON-NLS-1$ }; public final static String[] REAL_VALUES = new String[] {"The name is empty", //$NON-NLS-1$ }; /** * Constructor for TestJdbcPlugin.Util. * * @param name */ public TestJdbcPlugin( 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("TestJdbcPlugin"); //$NON-NLS-1$ suite.addTestSuite(TestJdbcPlugin.class); // One-time setup and teardown return new TestSetup(suite) { @Override public void setUp() { JdbcPlugin plugin = new JdbcPlugin(); SmartTestDesignerSuite.mockStartBundle(plugin, JdbcPlugin.PLUGIN_ID); ((PluginUtilImpl)JdbcPlugin.Util).initializePlatformLogger(plugin); } @Override public void tearDown() { } }; } public void helpTestGetString( final String key, final String expectedValue ) { final String actualValue = JdbcPlugin.Util.getString(key); // may throw exception if (actualValue == null) { fail("JdbcPlugin.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.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); JdbcPlugin.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); JdbcPlugin.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); JdbcPlugin.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); JdbcPlugin.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$ JdbcPlugin.Util.log(obj); } /* * Test for void log(Object) */ public void testNonPlatformLogDateObject() { final Object obj = new Date(); JdbcPlugin.Util.log(obj); } /* * Test for void log(Object) */ public void testNonPlatformLogNullObject() { final Object obj = null; JdbcPlugin.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(); JdbcPlugin.Util.log(t); } }