/* * Copyright (C) 2010 Brockmann Consult GmbH (info@brockmann-consult.de) * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the Free * Software Foundation; either version 3 of the License, or (at your option) * any later version. * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, see http://www.gnu.org/licenses/ */ package com.bc.ceres.binding.converters; import com.bc.ceres.binding.ConversionException; import com.bc.ceres.binding.Converter; import junit.framework.TestCase; import java.lang.reflect.Array; public abstract class AbstractConverterTest extends TestCase { protected AbstractConverterTest() { } public abstract Converter getConverter(); public abstract void testConverter() throws ConversionException; protected void testValueType(Class<?> expectedType) { assertEquals(expectedType, getConverter().getValueType()); } protected void testParseSuccess(Object expectedValue, String text) throws ConversionException { if (expectedValue != null && expectedValue.getClass().isArray()) { Object actualValue = getConverter().parse(text); assertTrue(actualValue.getClass().isArray()); int expectedLength = Array.getLength(expectedValue); int actualLength = Array.getLength(actualValue); assertEquals(expectedLength, actualLength); for (int i = 0; i < expectedLength; i++) { Object expectedElem = Array.get(expectedValue, i); Object actualElem = Array.get(actualValue, i); assertEquals("index=" + i, expectedElem, actualElem); } } else { final Object actualValue = getConverter().parse(text); if (expectedValue instanceof Float && actualValue instanceof Float) { float ev = (Float) expectedValue; float av = (Float) actualValue; if (Float.isNaN(ev)) { assertTrue("Float.NaN expected", Float.isNaN(av)); } else { assertEquals(ev, av, 1.0e-10F); } } else if (expectedValue instanceof Double && actualValue instanceof Double) { double ev = (Double) expectedValue; double av = (Double) actualValue; if (Double.isNaN(ev)) { assertTrue("Double.NaN expected", Double.isNaN(av)); } else { assertEquals(ev, av, 1.0e-10D); } } else { assertEquals(expectedValue, actualValue); } } if (expectedValue != null) { assertTrue(getConverter().getValueType().isAssignableFrom(expectedValue.getClass())); } } protected void testParseFailed(String text) { try { getConverter().parse(text); fail("ConversionException expected: " + text + " should not be convertible"); } catch (ConversionException e) { // OK! } } protected void testFormatSuccess(String expectedText, Object value) throws ConversionException { if (value != null) { assertTrue(getConverter().getValueType().isAssignableFrom(value.getClass())); } assertEquals(expectedText, getConverter().format(value)); } public void assertNullCorrectlyHandled() { try { getConverter().parse(null); fail("NullPointerException expected"); } catch (ConversionException e) { fail("ConversionException not expected"); } catch (NullPointerException e) { // expected } String text = getConverter().format(null); // if null is supported, returned text shall not be null assertNotNull(text); } }