summaryrefslogtreecommitdiff
path: root/java/src/test
diff options
context:
space:
mode:
authorfrsyuki <frsyuki@users.sourceforge.jp>2010-08-18 18:10:30 +0900
committerfrsyuki <frsyuki@users.sourceforge.jp>2010-08-18 18:10:30 +0900
commit8b79e6d3c72a02f4dc039799e3cd370c06e966b0 (patch)
treef9433b63c93a19e2eb058aec48956b61ac2b9e33 /java/src/test
parent8c67087a154da0e7cdc32c0b676d2956ce1d0f47 (diff)
downloadmsgpack-python-8b79e6d3c72a02f4dc039799e3cd370c06e966b0.tar.gz
java: uses MessagePackObject instead of Object for type of deserialized objects
Diffstat (limited to 'java/src/test')
-rw-r--r--java/src/test/java/org/msgpack/TestPackUnpack.java455
1 files changed, 219 insertions, 236 deletions
diff --git a/java/src/test/java/org/msgpack/TestPackUnpack.java b/java/src/test/java/org/msgpack/TestPackUnpack.java
index b02bbb4..ca3d235 100644
--- a/java/src/test/java/org/msgpack/TestPackUnpack.java
+++ b/java/src/test/java/org/msgpack/TestPackUnpack.java
@@ -8,240 +8,223 @@ import org.junit.Test;
import static org.junit.Assert.*;
public class TestPackUnpack {
- protected Object unpackOne(ByteArrayOutputStream out) {
- return unpackOne(out, null);
- }
- protected Object unpackOne(ByteArrayOutputStream out, Schema schema) {
- ByteArrayInputStream in = new ByteArrayInputStream(out.toByteArray());
- Unpacker upk = new Unpacker(in);
- if (schema != null)
- upk = upk.useSchema(schema);
- Iterator<Object> it = upk.iterator();
- assertEquals(true, it.hasNext());
- Object obj = it.next();
- assertEquals(false, it.hasNext());
- return obj;
- }
-
- @Test
- public void testInt() throws Exception {
- testInt(0);
- testInt(-1);
- testInt(1);
- testInt(Integer.MIN_VALUE);
- testInt(Integer.MAX_VALUE);
- Random rand = new Random();
- for (int i = 0; i < 1000; i++)
- testInt(rand.nextInt());
- }
- public void testInt(int val) throws Exception {
- ByteArrayOutputStream out = new ByteArrayOutputStream();
- new Packer(out).pack(val);
- Object obj = unpackOne(out);
- if (obj instanceof Byte)
- assertEquals(val, ((Byte)obj).intValue());
- else if (obj instanceof Integer)
- assertEquals(val, ((Integer)obj).intValue());
- else if (obj instanceof Short)
- assertEquals(val, ((Short)obj).intValue());
- else if (obj instanceof Long)
- assertEquals(val, ((Long)obj).intValue());
- else {
- System.out.println("Got unexpected class: " + obj.getClass());
- assertTrue(false);
- }
- }
-
- @Test
- public void testFloat() throws Exception {
- testFloat((float)0.0);
- testFloat((float)-0.0);
- testFloat((float)1.0);
- testFloat((float)-1.0);
- testFloat((float)Float.MAX_VALUE);
- testFloat((float)Float.MIN_VALUE);
- testFloat((float)Float.NaN);
- testFloat((float)Float.NEGATIVE_INFINITY);
- testFloat((float)Float.POSITIVE_INFINITY);
- Random rand = new Random();
- for (int i = 0; i < 1000; i++)
- testFloat(rand.nextFloat());
- }
- public void testFloat(float val) throws Exception {
- ByteArrayOutputStream out = new ByteArrayOutputStream();
- new Packer(out).pack(val);
- Object obj = unpackOne(out);
- if (obj instanceof Float)
- assertEquals(val, ((Float)obj).floatValue(), 10e-10);
- else {
- System.out.println("Got unexpected class: " + obj.getClass());
- assertTrue(false);
- }
- }
-
- @Test
- public void testDouble() throws Exception {
- testDouble((double)0.0);
- testDouble((double)-0.0);
- testDouble((double)1.0);
- testDouble((double)-1.0);
- testDouble((double)Double.MAX_VALUE);
- testDouble((double)Double.MIN_VALUE);
- testDouble((double)Double.NaN);
- testDouble((double)Double.NEGATIVE_INFINITY);
- testDouble((double)Double.POSITIVE_INFINITY);
- Random rand = new Random();
- for (int i = 0; i < 1000; i++)
- testDouble(rand.nextDouble());
- }
- public void testDouble(double val) throws Exception {
- ByteArrayOutputStream out = new ByteArrayOutputStream();
- new Packer(out).pack(val);
- Object obj = unpackOne(out);
- if (obj instanceof Double)
- assertEquals(val, ((Double)obj).doubleValue(), 10e-10);
- else {
- System.out.println("Got unexpected class: " + obj.getClass());
- assertTrue(false);
- }
- }
-
- @Test
- public void testNil() throws Exception {
- ByteArrayOutputStream out = new ByteArrayOutputStream();
- new Packer(out).packNil();
- Object obj = unpackOne(out);
- assertEquals(null, obj);
- }
-
- @Test
- public void testBoolean() throws Exception {
- testBoolean(false);
- testBoolean(true);
- }
- public void testBoolean(boolean val) throws Exception {
- ByteArrayOutputStream out = new ByteArrayOutputStream();
- new Packer(out).pack(val);
- Object obj = unpackOne(out);
- if (obj instanceof Boolean)
- assertEquals(val, ((Boolean)obj).booleanValue());
- else {
- System.out.println("Got unexpected class: " + obj.getClass());
- assertTrue(false);
- }
- }
-
- @Test
- public void testString() throws Exception {
- testString("");
- testString("a");
- testString("ab");
- testString("abc");
- // small size string
- for (int i = 0; i < 100; i++) {
- StringBuilder sb = new StringBuilder();
- int len = (int)Math.random() % 31 + 1;
- for (int j = 0; j < len; j++)
- sb.append('a' + ((int)Math.random()) & 26);
- testString(sb.toString());
- }
- // medium size string
- for (int i = 0; i < 100; i++) {
- StringBuilder sb = new StringBuilder();
- int len = (int)Math.random() % 100 + (1 << 15);
- for (int j = 0; j < len; j++)
- sb.append('a' + ((int)Math.random()) & 26);
- testString(sb.toString());
- }
- // large size string
- for (int i = 0; i < 10; i++) {
- StringBuilder sb = new StringBuilder();
- int len = (int)Math.random() % 100 + (1 << 31);
- for (int j = 0; j < len; j++)
- sb.append('a' + ((int)Math.random()) & 26);
- testString(sb.toString());
- }
- }
- public void testString(String val) throws Exception {
- ByteArrayOutputStream out = new ByteArrayOutputStream();
- new Packer(out).pack(val);
- Object obj = unpackOne(out);
- if (obj instanceof byte[])
- assertEquals(val, new String((byte[])obj));
- else {
- System.out.println("obj=" + obj);
- System.out.println("Got unexpected class: " + obj.getClass());
- assertTrue(false);
- }
- }
-
- @Test
- public void testArray() throws Exception {
- List<Integer> emptyList = new ArrayList<Integer>();
- testArray(emptyList, Schema.parse("(array int)"));
-
- for (int i = 0; i < 1000; i++) {
- Schema schema = Schema.parse("(array int)");
- List<Integer> l = new ArrayList<Integer>();
- int len = (int)Math.random() % 1000 + 1;
- for (int j = 0; j < len; j++)
- l.add(j);
- testArray(l, schema);
- }
- for (int i = 0; i < 1000; i++) {
- Schema schema = Schema.parse("(array string)");
- List<String> l = new ArrayList<String>();
- int len = (int)Math.random() % 1000 + 1;
- for (int j = 0; j < len; j++)
- l.add(Integer.toString(j));
- testArray(l, schema);
- }
- }
- public void testArray(List val, Schema schema) throws Exception {
- ByteArrayOutputStream out = new ByteArrayOutputStream();
- new Packer(out).pack(val);
- Object obj = unpackOne(out, schema);
- if (obj instanceof List)
- assertTrue(val.equals(obj));
- else {
- System.out.println("obj=" + obj);
- System.out.println("Got unexpected class: " + obj.getClass());
- assertTrue(false);
- }
- }
-
- @Test
- public void testMap() throws Exception {
- Map<Integer, Integer> emptyMap = new HashMap<Integer, Integer>();
- testMap(emptyMap, Schema.parse("(map int int)"));
-
- for (int i = 0; i < 1000; i++) {
- Schema schema = Schema.parse("(map int int)");
- Map<Integer, Integer> m = new HashMap<Integer, Integer>();
- int len = (int)Math.random() % 1000 + 1;
- for (int j = 0; j < len; j++)
- m.put(j, j);
- testMap(m, schema);
- }
- for (int i = 0; i < 1000; i++) {
- Schema schema = Schema.parse("(map string int)");
- Map<String, Integer> m = new HashMap<String, Integer>();
- int len = (int)Math.random() % 1000 + 1;
- for (int j = 0; j < len; j++)
- m.put(Integer.toString(j), j);
- testMap(m, schema);
- }
- }
- public void testMap(Map val, Schema schema) throws Exception {
- ByteArrayOutputStream out = new ByteArrayOutputStream();
- new Packer(out).pack(val);
- Object obj = unpackOne(out, schema);
- if (obj instanceof Map)
- assertTrue(val.equals(obj));
- else {
- System.out.println("obj=" + obj);
- System.out.println("Got unexpected class: " + obj.getClass());
- assertTrue(false);
- }
- }
+ public MessagePackObject unpackOne(ByteArrayOutputStream out) {
+ ByteArrayInputStream in = new ByteArrayInputStream(out.toByteArray());
+ Unpacker upk = new Unpacker(in);
+ Iterator<MessagePackObject> it = upk.iterator();
+ assertEquals(true, it.hasNext());
+ MessagePackObject obj = it.next();
+ assertEquals(false, it.hasNext());
+ return obj;
+ }
+
+ public void testInt(int val) throws Exception {
+ ByteArrayOutputStream out = new ByteArrayOutputStream();
+ new Packer(out).pack(val);
+ MessagePackObject obj = unpackOne(out);
+ assertEquals(val, obj.asInt());
+ }
+ @Test
+ public void testInt() throws Exception {
+ testInt(0);
+ testInt(-1);
+ testInt(1);
+ testInt(Integer.MIN_VALUE);
+ testInt(Integer.MAX_VALUE);
+ Random rand = new Random();
+ for (int i = 0; i < 1000; i++)
+ testInt(rand.nextInt());
+ }
+
+ public void testFloat(float val) throws Exception {
+ ByteArrayOutputStream out = new ByteArrayOutputStream();
+ new Packer(out).pack(val);
+ MessagePackObject obj = unpackOne(out);
+ assertEquals(val, obj.asFloat(), 10e-10);
+ }
+ @Test
+ public void testFloat() throws Exception {
+ testFloat((float)0.0);
+ testFloat((float)-0.0);
+ testFloat((float)1.0);
+ testFloat((float)-1.0);
+ testFloat((float)Float.MAX_VALUE);
+ testFloat((float)Float.MIN_VALUE);
+ testFloat((float)Float.NaN);
+ testFloat((float)Float.NEGATIVE_INFINITY);
+ testFloat((float)Float.POSITIVE_INFINITY);
+ Random rand = new Random();
+ for (int i = 0; i < 1000; i++)
+ testFloat(rand.nextFloat());
+ }
+
+ public void testDouble(double val) throws Exception {
+ ByteArrayOutputStream out = new ByteArrayOutputStream();
+ new Packer(out).pack(val);
+ MessagePackObject obj = unpackOne(out);
+ assertEquals(val, obj.asDouble(), 10e-10);
+ }
+ @Test
+ public void testDouble() throws Exception {
+ testDouble((double)0.0);
+ testDouble((double)-0.0);
+ testDouble((double)1.0);
+ testDouble((double)-1.0);
+ testDouble((double)Double.MAX_VALUE);
+ testDouble((double)Double.MIN_VALUE);
+ testDouble((double)Double.NaN);
+ testDouble((double)Double.NEGATIVE_INFINITY);
+ testDouble((double)Double.POSITIVE_INFINITY);
+ Random rand = new Random();
+ for (int i = 0; i < 1000; i++)
+ testDouble(rand.nextDouble());
+ }
+
+ @Test
+ public void testNil() throws Exception {
+ ByteArrayOutputStream out = new ByteArrayOutputStream();
+ new Packer(out).packNil();
+ MessagePackObject obj = unpackOne(out);
+ assertTrue(obj.isNull());
+ }
+
+ @Test
+ public void testBoolean() throws Exception {
+ testBoolean(false);
+ testBoolean(true);
+ }
+ public void testBoolean(boolean val) throws Exception {
+ ByteArrayOutputStream out = new ByteArrayOutputStream();
+ new Packer(out).pack(val);
+ MessagePackObject obj = unpackOne(out);
+ assertEquals(val, obj.asBoolean());
+ }
+
+ public void testString(String val) throws Exception {
+ ByteArrayOutputStream out = new ByteArrayOutputStream();
+ new Packer(out).pack(val);
+ MessagePackObject obj = unpackOne(out);
+ assertEquals(val, obj.asString());
+ }
+ @Test
+ public void testString() throws Exception {
+ testString("");
+ testString("a");
+ testString("ab");
+ testString("abc");
+
+ // small size string
+ for (int i = 0; i < 100; i++) {
+ StringBuilder sb = new StringBuilder();
+ int len = (int)Math.random() % 31 + 1;
+ for (int j = 0; j < len; j++)
+ sb.append('a' + ((int)Math.random()) & 26);
+ testString(sb.toString());
+ }
+
+ // medium size string
+ for (int i = 0; i < 100; i++) {
+ StringBuilder sb = new StringBuilder();
+ int len = (int)Math.random() % 100 + (1 << 15);
+ for (int j = 0; j < len; j++)
+ sb.append('a' + ((int)Math.random()) & 26);
+ testString(sb.toString());
+ }
+
+ // large size string
+ for (int i = 0; i < 10; i++) {
+ StringBuilder sb = new StringBuilder();
+ int len = (int)Math.random() % 100 + (1 << 31);
+ for (int j = 0; j < len; j++)
+ sb.append('a' + ((int)Math.random()) & 26);
+ testString(sb.toString());
+ }
+ }
+
+ @Test
+ public void testArray() throws Exception {
+ List<Integer> emptyList = new ArrayList<Integer>();
+ {
+ ByteArrayOutputStream out = new ByteArrayOutputStream();
+ new Packer(out).pack(emptyList);
+ MessagePackObject obj = unpackOne(out);
+ assertEquals(emptyList, obj.asList());
+ }
+
+ for (int i = 0; i < 1000; i++) {
+ List<Integer> l = new ArrayList<Integer>();
+ int len = (int)Math.random() % 1000 + 1;
+ for (int j = 0; j < len; j++)
+ l.add(j);
+ ByteArrayOutputStream out = new ByteArrayOutputStream();
+ new Packer(out).pack(l);
+ MessagePackObject obj = unpackOne(out);
+ List<MessagePackObject> list = obj.asList();
+ assertEquals(l.size(), list.size());
+ for (int j = 0; j < len; j++) {
+ assertEquals(l.get(j).intValue(), list.get(j).asInt());
+ }
+ }
+
+ for (int i = 0; i < 1000; i++) {
+ List<String> l = new ArrayList<String>();
+ int len = (int)Math.random() % 1000 + 1;
+ for (int j = 0; j < len; j++)
+ l.add(Integer.toString(j));
+ ByteArrayOutputStream out = new ByteArrayOutputStream();
+ new Packer(out).pack(l);
+ MessagePackObject obj = unpackOne(out);
+ List<MessagePackObject> list = obj.asList();
+ assertEquals(l.size(), list.size());
+ for (int j = 0; j < len; j++) {
+ assertEquals(l.get(j), list.get(j).asString());
+ }
+ }
+ }
+
+ @Test
+ public void testMap() throws Exception {
+ Map<Integer, Integer> emptyMap = new HashMap<Integer, Integer>();
+ {
+ ByteArrayOutputStream out = new ByteArrayOutputStream();
+ new Packer(out).pack(emptyMap);
+ MessagePackObject obj = unpackOne(out);
+ assertEquals(emptyMap, obj.asMap());
+ }
+
+ for (int i = 0; i < 1000; i++) {
+ Map<Integer, Integer> m = new HashMap<Integer, Integer>();
+ int len = (int)Math.random() % 1000 + 1;
+ for (int j = 0; j < len; j++)
+ m.put(j, j);
+ ByteArrayOutputStream out = new ByteArrayOutputStream();
+ new Packer(out).pack(m);
+ MessagePackObject obj = unpackOne(out);
+ Map<MessagePackObject, MessagePackObject> map = obj.asMap();
+ assertEquals(m.size(), map.size());
+ for (Map.Entry<MessagePackObject, MessagePackObject> pair : map.entrySet()) {
+ Integer val = m.get(pair.getKey().asInt());
+ assertNotNull(val);
+ assertEquals(val.intValue(), pair.getValue().asInt());
+ }
+ }
+
+ for (int i = 0; i < 1000; i++) {
+ Map<String, Integer> m = new HashMap<String, Integer>();
+ int len = (int)Math.random() % 1000 + 1;
+ for (int j = 0; j < len; j++)
+ m.put(Integer.toString(j), j);
+ ByteArrayOutputStream out = new ByteArrayOutputStream();
+ new Packer(out).pack(m);
+ MessagePackObject obj = unpackOne(out);
+ Map<MessagePackObject, MessagePackObject> map = obj.asMap();
+ assertEquals(m.size(), map.size());
+ for (Map.Entry<MessagePackObject, MessagePackObject> pair : map.entrySet()) {
+ Integer val = m.get(pair.getKey().asString());
+ assertNotNull(val);
+ assertEquals(val.intValue(), pair.getValue().asInt());
+ }
+ }
+ }
};
+