forked from json-iterator/java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTestMap.java
More file actions
83 lines (70 loc) · 2.54 KB
/
TestMap.java
File metadata and controls
83 lines (70 loc) · 2.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package com.jsoniter.output;
import com.jsoniter.spi.*;
import junit.framework.TestCase;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
public class TestMap extends TestCase {
static {
// JsonStream.setMode(EncodingMode.DYNAMIC_MODE);
}
private ByteArrayOutputStream baos;
private JsonStream stream;
public void setUp() {
baos = new ByteArrayOutputStream();
stream = new JsonStream(baos, 4096);
}
public void test() throws IOException {
HashMap<String, Object> map = new HashMap<String, Object>();
map.put("hello", "world");
stream.writeVal(map);
stream.close();
assertEquals("{'hello':'world'}".replace('\'', '"'), baos.toString());
}
public void test_empty() throws IOException {
HashMap<String, Object> map = new HashMap<String, Object>();
stream.writeVal(map);
stream.close();
assertEquals("{}".replace('\'', '"'), baos.toString());
}
public void test_null() throws IOException {
stream.writeVal(new TypeLiteral<HashMap>() {
}, null);
stream.close();
assertEquals("null".replace('\'', '"'), baos.toString());
}
public void test_value_is_null() throws IOException {
HashMap<String, int[]> obj = new HashMap<String, int[]>();
obj.put("hello", null);
stream.writeVal(new TypeLiteral<Map<String, int[]>>() {
}, obj);
stream.close();
assertEquals("{\"hello\":null}", baos.toString());
}
public void test_integer_key() throws IOException {
HashMap<Integer, Object> obj = new HashMap<Integer, Object>();
obj.put(100, null);
stream.writeVal(new TypeLiteral<Map<Integer, Object>>() {
}, obj);
stream.close();
assertEquals("{\"100\":null}", baos.toString());
}
public static class TestObject1 {
public int Field;
}
public void test_MapKeyCodec() {
JsoniterSpi.registerMapKeyEncoder(TestObject1.class, new MapKeyEncoder() {
@Override
public String encode(Object mapKey) {
TestObject1 obj = (TestObject1) mapKey;
return String.valueOf(obj.Field);
}
});
HashMap<TestObject1, Object> obj = new HashMap<TestObject1, Object>();
obj.put(new TestObject1(), null);
String output = JsonStream.serialize(new TypeLiteral<Map<TestObject1, Object>>() {
}, obj);
assertEquals("{\"0\":null}", output);
}
}