package org.jboss.test.util.test;
import java.beans.PropertyEditor;
import java.beans.PropertyEditorManager;
import java.io.File;
import java.net.URL;
import java.net.InetAddress;
import java.util.Comparator;
import java.util.Properties;
import java.util.Date;
import java.util.Calendar;
import java.util.TimeZone;
import javax.management.ObjectName;
import org.jboss.test.JBossTestCase;
import org.jboss.util.propertyeditor.ElementEditor;
import org.jboss.util.propertyeditor.DocumentEditor;
public class PropertyEditorsUnitTestCase extends JBossTestCase
{
Calendar calendar = Calendar.getInstance();
static
{
Class c = org.jboss.util.propertyeditor.PropertyEditors.class;
}
static class StringArrayComparator implements Comparator
{
public int compare(Object o1, Object o2)
{
String[] a1 = (String[]) o1;
String[] a2 = (String[]) o2;
int compare = a1.length - a2.length;
for(int n = 0; n < a1.length; n ++)
compare += a1[n].compareTo(a2[n]);
return compare;
}
}
static class ClassArrayComparator implements Comparator
{
public int compare(Object o1, Object o2)
{
Class[] a1 = (Class[]) o1;
Class[] a2 = (Class[]) o2;
int compare = a1.length - a2.length;
for(int n = 0; n < a1.length; n ++)
{
int hash1 = a1[n].hashCode();
int hash2 = a2[n].hashCode();
compare += hash1 - hash2;
}
return compare;
}
}
static class IntArrayComparator implements Comparator
{
public int compare(Object o1, Object o2)
{
int[] a1 = (int[]) o1;
int[] a2 = (int[]) o2;
int compare = a1.length - a2.length;
for(int n = 0; n < a1.length; n ++)
compare += a1[n] - a2[n];
return compare;
}
}
public PropertyEditorsUnitTestCase(String name)
{
super(name);
}
public void testEditorSearchPath()
throws Exception
{
getLog().debug("+++ testEditorSearchPath");
String[] searchPath = PropertyEditorManager.getEditorSearchPath();
boolean foundJBossPath = false;
for(int p = 0; p < searchPath.length; p ++)
{
String path = searchPath[p];
getLog().debug("path["+p+"]="+path);
foundJBossPath |= path.equals("org.jboss.util.propertyeditor");
}
assertTrue("Found org.jboss.util.propertyeditor in search path", foundJBossPath);
}
public void testJavaLangEditors()
throws Exception
{
getLog().debug("+++ testJavaLangEditors");
Class[] types = {
Boolean.class,
Byte.class,
Short.class,
Integer.class,
Long.class,
Float.class,
Double.class,
Byte.class,
};
String[][] inputData = {
{"true", "false", "TRUE", "FALSE", "tRuE", "FaLsE", null},
{"1", "-1", "0", "0x1A"},
{"1", "-1", "0", "0xA0"},
{"1", "-1", "0", "0xA0"},
{"1", "-1", "0", "1000"},
{"1", "-1", "0", "1000.1"},
{"1", "-1", "0", "1000.1"},
{"0x1", "-#1", "0"},
};
Object[][] expectedData = {
{Boolean.TRUE, Boolean.FALSE, Boolean.TRUE, Boolean.FALSE, Boolean.TRUE, Boolean.FALSE, Boolean.FALSE},
{Byte.valueOf("1"), Byte.valueOf("-1"), Byte.valueOf("0"), Byte.decode("0x1A")},
{Short.valueOf("1"), Short.valueOf("-1"), Short.valueOf("0"), Short.decode("0xA0")},
{Integer.valueOf("1"), Integer.valueOf("-1"), Integer.valueOf("0"), Integer.decode("0xA0")},
{Long.valueOf("1"), Long.valueOf("-1"), Long.valueOf("0"), Long.valueOf("1000")},
{Float.valueOf("1"), Float.valueOf("-1"), Float.valueOf("0"), Float.valueOf("1000.1")},
{Double.valueOf("1"), Double.valueOf("-1"), Double.valueOf("0"), Double.valueOf("1000.1")},
{Byte.valueOf("1"), Byte.valueOf("-1"), Byte.valueOf("0")},
};
Comparator[] comparators = new Comparator[types.length];
doTests(types, inputData, expectedData, comparators);
}
public void testJBossEditors()
throws Exception
{
getLog().debug("+++ testJBossEditors");
Class[] types = {
javax.management.ObjectName.class,
java.util.Properties.class,
java.io.File.class,
java.net.URL.class,
java.lang.Class.class,
InetAddress.class,
String[].class,
Class[].class,
int[].class,
Date.class
};
String[][] inputData = {
{"jboss.test:test=1"},
{"prop1=value1\nprop2=value2\nprop3=value3\nprop32=${prop3}\nprop4=${user.home}"},
{"/tmp/test1", "/tmp/subdir/../test2"},
{"http://www.jboss.org"},
{"java.util.Arrays"},
{"127.0.0.1", "localhost"},
{"1,2,3", "a,b,c", "", "#,%,\\,,.,_$,\\,v"},
{"java.lang.Integer,java.lang.Float"},
{"0,#123,-123"},
{"Jan 4, 2005", "Tue Jan 4 23:38:21 PST 2005", "Tue, 04 Jan 2005 23:38:48 -0800"}
};
calendar.set(2005, 0, 4, 0, 0, 0);
calendar.set(Calendar.MILLISECOND, 0);
calendar.setTimeZone(TimeZone.getTimeZone("PST"));
Date date1 = calendar.getTime();
calendar.set(2005, 0, 4, 23, 38, 21);
Date date2 = calendar.getTime();
calendar.set(2005, 0, 4, 23, 38, 48);
Date date3 = calendar.getTime();
Properties props = new Properties();
props.setProperty("prop1", "value1");
props.setProperty("prop2", "value2");
props.setProperty("prop3", "value3");
props.setProperty("prop32", "value3");
props.setProperty("prop4", System.getProperty("user.home"));
Object[][] expectedData = {
{new ObjectName("jboss.test:test=1")},
{props},
{new File("/tmp/test1").getCanonicalFile(), new File("/tmp/test2").getCanonicalFile()},
{new URL("http://www.jboss.org")},
{java.util.Arrays.class},
{InetAddress.getByName("127.0.0.1"), InetAddress.getByName("localhost")},
{new String[]{"1", "2", "3"}, new String[] {"a", "b", "c"},
new String[]{}, new String[]{"#","%",",",".","_$", ",v"}},
{new Class[]{Integer.class, Float.class}},
{new int[]{0, 0x123, -123}},
{date1, date2, date3}
};
Comparator[] comparators = {
null, null, null, null, null, null, new StringArrayComparator(), new ClassArrayComparator(), new IntArrayComparator(), null };
doTests(types, inputData, expectedData, comparators);
}
private void doTests(Class[] types, String[][] inputData, Object[][] expectedData,
Comparator[] comparators)
{
for(int t = 0; t < types.length; t ++)
{
Class type = types[t];
getLog().debug("Checking property editor for: "+type);
PropertyEditor editor = PropertyEditorManager.findEditor(type);
assertTrue("Found property editor for: "+type, editor != null);
getLog().debug("Found property editor for: "+type+", editor="+editor);
assertTrue("inputData.length == expectedData.length", inputData[t].length == expectedData[t].length);
for(int i = 0; i < inputData[t].length; i ++)
{
String input = inputData[t][i];
editor.setAsText(input);
Object expected = expectedData[t][i];
Object output = editor.getValue();
Comparator c = comparators[t];
boolean equals = false;
if( c == null )
equals = output.equals(expected);
else
equals = c.compare(output, expected) == 0;
assertTrue("Transform of "+input+" equals "+expected+", output="+output, equals);
}
}
}
public void testDocumentElementEditors()
{
getLog().debug("+++ testDocumentElementEditors");
DocumentEditor de = new DocumentEditor();
String s = "<!-- document --><doc name=\"whatever\"></doc>";
de.setAsText(s);
assertTrue("Document :\n" + de.getAsText(), de.getAsText().trim().endsWith(s));
assertTrue(de.getValue() instanceof org.w3c.dom.Document);
s = "<element>\n\n<e2></e2> testing\n\n</element>";
de.setAsText(s);
assertTrue("Document :\n" + de.getAsText() + "\nvs\n" + s, de.getAsText().trim().endsWith(s));
ElementEditor ee = new ElementEditor();
s = "<element>text</element>";
ee.setAsText(s);
assertEquals(s, ee.getAsText());
assertTrue(ee.getValue() instanceof org.w3c.dom.Element);
}
public void testServerFound()
{
}
public void initDelegate()
{
}
}