-
Notifications
You must be signed in to change notification settings - Fork 523
/
Copy pathTestGson.java
299 lines (265 loc) · 11 KB
/
TestGson.java
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
package com.jsoniter.output;
import com.google.gson.*;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Since;
import com.google.gson.annotations.Until;
import com.jsoniter.extra.GsonCompatibilityMode;
import com.jsoniter.spi.JsoniterSpi;
import junit.framework.TestCase;
import org.json.JSONException;
import org.skyscreamer.jsonassert.JSONAssert;
import java.lang.reflect.Field;
import java.text.DateFormat;
import java.util.Date;
import java.util.TimeZone;
public class TestGson extends TestCase {
public static class TestObject1 {
@SerializedName("field-1")
public String field1;
}
public void test_SerializedName_on_field() {
Gson gson = new GsonBuilder().create();
TestObject1 obj = new TestObject1();
obj.field1 = "hello";
String output = gson.toJson(obj);
assertEquals("{\"field-1\":\"hello\"}", output);
output = JsonStream.serialize(new GsonCompatibilityMode.Builder().build(), obj);
assertEquals("{\"field-1\":\"hello\"}", output);
}
public static class TestObject2 {
@Expose(serialize = false)
public String field1;
}
public void test_Expose() {
Gson gson = new GsonBuilder().excludeFieldsWithoutExposeAnnotation().create();
TestObject2 obj = new TestObject2();
obj.field1 = "hello";
String output = gson.toJson(obj);
assertEquals("{}", output);
GsonCompatibilityMode config = new GsonCompatibilityMode.Builder()
.excludeFieldsWithoutExposeAnnotation().build();
output = JsonStream.serialize(config, obj);
assertEquals("{}", output);
}
public static class TestObject3 {
public String getField1() {
return "hello";
}
}
public void test_getter_should_be_ignored() {
Gson gson = new GsonBuilder().create();
TestObject3 obj = new TestObject3();
String output = gson.toJson(obj);
assertEquals("{}", output);
output = JsonStream.serialize(new GsonCompatibilityMode.Builder().build(), obj);
assertEquals("{}", output);
}
public static class TestObject4 {
public String field1;
}
public void test_excludeFieldsWithoutExposeAnnotation() {
Gson gson = new GsonBuilder().excludeFieldsWithoutExposeAnnotation().create();
TestObject4 obj = new TestObject4();
obj.field1 = "hello";
String output = gson.toJson(obj);
assertEquals("{}", output);
GsonCompatibilityMode config = new GsonCompatibilityMode.Builder()
.excludeFieldsWithoutExposeAnnotation().build();
output = JsonStream.serialize(config, obj);
assertEquals("{}", output);
}
public static class TestObject5 {
public String field1;
public int field2;
}
public void test_serializeNulls() throws JSONException {
TestObject5 obj = new TestObject5();
Gson gson = new GsonBuilder().create();
String output = gson.toJson(obj);
assertEquals("{\"field2\":0}", output);
gson = new GsonBuilder().serializeNulls().create();
output = gson.toJson(obj);
JSONAssert.assertEquals("{\"field1\":null,\"field2\":0}", output, false);
GsonCompatibilityMode config = new GsonCompatibilityMode.Builder()
.build();
output = JsonStream.serialize(config, obj);
assertEquals("{\"field2\":0}", output);
config = new GsonCompatibilityMode.Builder()
.serializeNulls().build();
output = JsonStream.serialize(config, obj);
JSONAssert.assertEquals("{\"field1\":null,\"field2\":0}", output, false);
}
public void test_setDateFormat_with_style() {
TimeZone orig = TimeZone.getDefault();
try {
TimeZone.setDefault(TimeZone.getTimeZone("UTC"));
Gson gson = new GsonBuilder()
.setDateFormat(DateFormat.LONG, DateFormat.LONG)
.create();
String output = gson.toJson(new Date(0));
assertEquals("\"January 1, 1970 12:00:00 AM UTC\"", output);
GsonCompatibilityMode config = new GsonCompatibilityMode.Builder()
.setDateFormat(DateFormat.LONG, DateFormat.LONG)
.build();
output = JsonStream.serialize(config, new Date(0));
assertEquals("\"January 1, 1970 12:00:00 AM UTC\"", output);
} finally {
TimeZone.setDefault(orig);
}
}
public void test_setDateFormat_with_format() {
TimeZone orig = TimeZone.getDefault();
try {
TimeZone.setDefault(TimeZone.getTimeZone("UTC"));
Gson gson = new GsonBuilder()
.setDateFormat("EEE, MMM d, yyyy hh:mm:ss a z")
.create();
String output = gson.toJson(new Date(0));
assertEquals("\"Thu, Jan 1, 1970 12:00:00 AM UTC\"", output);
GsonCompatibilityMode config = new GsonCompatibilityMode.Builder()
.setDateFormat("EEE, MMM d, yyyy hh:mm:ss a z")
.build();
output = JsonStream.serialize(config, new Date(0));
assertEquals("\"Thu, Jan 1, 1970 12:00:00 AM UTC\"", output);
} finally {
TimeZone.setDefault(orig);
}
}
public void test_setFieldNamingStrategy() {
FieldNamingStrategy fieldNamingStrategy = new FieldNamingStrategy() {
@Override
public String translateName(Field f) {
return "_" + f.getName();
}
};
Gson gson = new GsonBuilder()
.setFieldNamingStrategy(fieldNamingStrategy)
.create();
TestObject4 obj = new TestObject4();
obj.field1 = "hello";
String output = gson.toJson(obj);
assertEquals("{\"_field1\":\"hello\"}", output);
GsonCompatibilityMode config = new GsonCompatibilityMode.Builder()
.setFieldNamingStrategy(fieldNamingStrategy)
.build();
output = JsonStream.serialize(config, obj);
assertEquals("{\"_field1\":\"hello\"}", output);
}
public void test_setFieldNamingPolicy() {
Gson gson = new GsonBuilder()
.setFieldNamingPolicy(FieldNamingPolicy.UPPER_CAMEL_CASE)
.create();
TestObject4 obj = new TestObject4();
obj.field1 = "hello";
String output = gson.toJson(obj);
assertEquals("{\"Field1\":\"hello\"}", output);
GsonCompatibilityMode config = new GsonCompatibilityMode.Builder()
.setFieldNamingPolicy(FieldNamingPolicy.UPPER_CAMEL_CASE)
.build();
output = JsonStream.serialize(config, obj);
assertEquals("{\"Field1\":\"hello\"}", output);
}
public void test_setPrettyPrinting() {
if (JsoniterSpi.getCurrentConfig().encodingMode() != EncodingMode.REFLECTION_MODE) {
return;
}
Gson gson = new GsonBuilder()
.setPrettyPrinting()
.create();
TestObject4 obj = new TestObject4();
obj.field1 = "hello";
String output = gson.toJson(obj);
assertEquals("{\n" +
" \"field1\": \"hello\"\n" +
"}", output);
GsonCompatibilityMode config = new GsonCompatibilityMode.Builder()
.setPrettyPrinting()
.build();
output = JsonStream.serialize(config, obj);
assertEquals("{\n" +
" \"field1\": \"hello\"\n" +
"}", output);
}
public void test_disableHtmlEscaping_off() {
Gson gson = new GsonBuilder()
.disableHtmlEscaping()
.create();
String output = gson.toJson("<html>中文</html>");
assertEquals("\"<html>中文</html>\"", output);
GsonCompatibilityMode config = new GsonCompatibilityMode.Builder()
.disableHtmlEscaping()
.build();
output = JsonStream.serialize(config, "<html>中文</html>");
assertEquals("\"<html>中文</html>\"", output);
}
public void test_disableHtmlEscaping_on() {
Gson gson = new GsonBuilder()
.create();
String output = gson.toJson("<html> </html>");
assertEquals("\"\\u003chtml\\u003e\\u0026nbsp;\\u003c/html\\u003e\"", output);
GsonCompatibilityMode config = new GsonCompatibilityMode.Builder()
.build();
output = JsonStream.serialize(config, "<html> </html>");
assertEquals("\"\\u003chtml\\u003e\\u0026nbsp;\\u003c/html\\u003e\"", output);
}
public static class TestObject6 {
@Since(3.0)
public String field1 = "field1";
@Until(1.0)
public String field2 = "field2";
@Since(2.0)
public String field3 = "field3";
@Until(2.0)
public String field4 = "field4";
}
public void test_setVersion() {
TestObject6 obj = new TestObject6();
Gson gson = new GsonBuilder()
.setVersion(2.0)
.create();
String output = gson.toJson(obj);
assertEquals("{\"field3\":\"field3\"}", output);
GsonCompatibilityMode config = new GsonCompatibilityMode.Builder()
.setVersion(2.0)
.build();
output = JsonStream.serialize(config, obj);
assertEquals("{\"field3\":\"field3\"}", output);
}
public void test_addSerializationExclusionStrategy() {
TestObject6 obj = new TestObject6();
ExclusionStrategy exclusionStrategy = new ExclusionStrategy() {
@Override
public boolean shouldSkipField(FieldAttributes f) {
return !f.getName().equals("field3");
}
@Override
public boolean shouldSkipClass(Class<?> clazz) {
return false;
}
};
Gson gson = new GsonBuilder()
.addSerializationExclusionStrategy(exclusionStrategy)
.create();
String output = gson.toJson(obj);
assertEquals("{\"field3\":\"field3\"}", output);
GsonCompatibilityMode config = new GsonCompatibilityMode.Builder()
.addSerializationExclusionStrategy(exclusionStrategy)
.build();
output = JsonStream.serialize(config, obj);
assertEquals("{\"field3\":\"field3\"}", output);
}
private static class TestObject {
private String test;
}
public void test_surrogate() {
GsonCompatibilityMode gsonConfig =
new GsonCompatibilityMode.Builder()
.disableHtmlEscaping()
.build();
String input = "{\"test\":\"lorem-\uD83D\uDC44\uD83D\uDC40\"}";
TestObject testObject = new Gson().fromJson(input, TestObject.class);
System.out.println("Gson: " + new Gson().toJson(testObject));
System.out.println("jsoniter: " + JsonStream.serialize(gsonConfig, testObject));
}
}