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
53 lines (43 loc) · 1.55 KB
/
TestMap.java
File metadata and controls
53 lines (43 loc) · 1.55 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
package com.jsoniter.output;
import com.jsoniter.spi.TypeLiteral;
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());
}
}