-
Notifications
You must be signed in to change notification settings - Fork 113
/
Copy pathJsonDataConverterTest.java
288 lines (249 loc) · 11 KB
/
JsonDataConverterTest.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
/*
* Copyright 2012-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Modifications copyright (C) 2017 Uber Technologies, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not
* use this file except in compliance with the License. A copy of the License is
* located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed on
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package com.uber.cadence.converter;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import com.uber.cadence.EventType;
import com.uber.cadence.History;
import com.uber.cadence.HistoryEvent;
import com.uber.cadence.TaskList;
import com.uber.cadence.WorkflowExecutionStartedEventAttributes;
import com.uber.cadence.WorkflowType;
import com.uber.cadence.activity.Activity;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.lang.reflect.Method;
import java.lang.reflect.Type;
import java.nio.charset.StandardCharsets;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
import java.util.UUID;
import org.junit.Test;
public class JsonDataConverterTest {
private final DataConverter converter = JsonDataConverter.getInstance();
static class TestData {
String val1;
// TBase value;
HistoryEvent val2;
// TEnum value;
EventType val3;
public TestData(String val1, HistoryEvent val2, EventType val3) {
this.val1 = val1;
this.val2 = val2;
this.val3 = val3;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (!(o instanceof TestData)) return false;
TestData testData = (TestData) o;
return Objects.equals(val1, testData.val1)
&& Objects.equals(val2, testData.val2)
&& val3 == testData.val3;
}
@Override
public int hashCode() {
return Objects.hash(val1, val2, val3);
}
}
@Test
public void testThrift() {
List<HistoryEvent> events = new ArrayList<>();
WorkflowExecutionStartedEventAttributes started =
new WorkflowExecutionStartedEventAttributes()
.setExecutionStartToCloseTimeoutSeconds(11)
.setIdentity("testIdentity")
.setInput("input".getBytes(StandardCharsets.UTF_8))
.setWorkflowType(new WorkflowType().setName("workflowType1"))
.setTaskList(new TaskList().setName("taskList1"));
events.add(
new HistoryEvent()
.setTimestamp(1234567)
.setEventId(321)
.setWorkflowExecutionStartedEventAttributes(started));
History history = new History().setEvents(events);
byte[] converted = converter.toData(history);
History fromConverted = converter.fromData(converted, History.class, History.class);
assertEquals(new String(converted, StandardCharsets.UTF_8), history, fromConverted);
}
@Test
public void testThriftArray() {
List<HistoryEvent> events = new ArrayList<>();
WorkflowExecutionStartedEventAttributes started =
new WorkflowExecutionStartedEventAttributes()
.setExecutionStartToCloseTimeoutSeconds(11)
.setIdentity("testIdentity")
.setInput("input".getBytes(StandardCharsets.UTF_8))
.setWorkflowType(new WorkflowType().setName("workflowType1"))
.setTaskList(new TaskList().setName("taskList1"));
events.add(
new HistoryEvent()
.setTimestamp(1234567)
.setEventId(321)
.setWorkflowExecutionStartedEventAttributes(started));
History history = new History().setEvents(events);
byte[] converted = converter.toData("abc", history);
Object[] fromConverted = converter.fromDataArray(converted, String.class, History.class);
assertEquals(new String(converted, StandardCharsets.UTF_8), "abc", fromConverted[0]);
assertEquals(new String(converted, StandardCharsets.UTF_8), history, fromConverted[1]);
}
@Test
public void testThriftFieldsInPOJO() {
WorkflowExecutionStartedEventAttributes started =
new WorkflowExecutionStartedEventAttributes()
.setExecutionStartToCloseTimeoutSeconds(11)
.setIdentity("testIdentity")
.setInput("input".getBytes(StandardCharsets.UTF_8))
.setWorkflowType(new WorkflowType().setName("workflowType1"))
.setTaskList(new TaskList().setName("taskList1"));
HistoryEvent historyEvent =
new HistoryEvent()
.setTimestamp(1234567)
.setEventId(321)
.setWorkflowExecutionStartedEventAttributes(started);
TestData testData = new TestData("test-thrift", historyEvent, EventType.ActivityTaskCompleted);
byte[] converted = converter.toData(testData);
TestData fromConverted = converter.fromData(converted, TestData.class, TestData.class);
assertEquals(new String(converted, StandardCharsets.UTF_8), testData, fromConverted);
}
@Test
public void testThriftFieldsInPOJOArray() {
WorkflowExecutionStartedEventAttributes started =
new WorkflowExecutionStartedEventAttributes()
.setExecutionStartToCloseTimeoutSeconds(11)
.setIdentity("testIdentity")
.setInput("input".getBytes(StandardCharsets.UTF_8))
.setWorkflowType(new WorkflowType().setName("workflowType1"))
.setTaskList(new TaskList().setName("taskList1"));
HistoryEvent historyEvent =
new HistoryEvent()
.setTimestamp(1234567)
.setEventId(321)
.setWorkflowExecutionStartedEventAttributes(started);
TestData testData = new TestData("test-thrift", historyEvent, EventType.ActivityTaskCompleted);
byte[] converted = converter.toData("abc", testData);
Object[] fromConverted = converter.fromDataArray(converted, String.class, TestData.class);
assertEquals(new String(converted, StandardCharsets.UTF_8), "abc", fromConverted[0]);
assertEquals(new String(converted, StandardCharsets.UTF_8), testData, fromConverted[1]);
}
@Test
public void testProto() {
TestProtos.Person person =
TestProtos.Person.newBuilder()
.setName("abc")
.setId(1)
.setEmail("[email protected]")
.addPhones(TestProtos.Person.PhoneNumber.newBuilder().setNumber("123456").build())
.build();
TestProtos.AddressBook book = TestProtos.AddressBook.newBuilder().addPeople(person).build();
byte[] converted = converter.toData(book);
TestProtos.AddressBook fromConverted =
converter.fromData(converted, TestProtos.AddressBook.class, TestProtos.AddressBook.class);
assertEquals(book, fromConverted);
}
public static void foo(List<UUID> arg) {}
@Test
public void testUUIDList() throws NoSuchMethodException {
Method m = JsonDataConverterTest.class.getDeclaredMethod("foo", List.class);
Type arg = m.getGenericParameterTypes()[0];
List<UUID> list = new ArrayList<>();
for (int i = 0; i < 2; i++) {
list.add(UUID.randomUUID());
}
DataConverter converter = JsonDataConverter.getInstance();
byte[] data = converter.toData(list);
@SuppressWarnings("unchecked")
List<UUID> result = (List<UUID>) converter.fromDataArray(data, arg)[0];
assertEquals(result.toString(), list, result);
}
public static void threeArguments(int one, int two, String three) {}
public static void aLotOfArguments(int one, int two, String three, Object obj, int[] intArr) {}
@Test
public void AdditionalInputArgumentsAreIgnored() throws NoSuchMethodException {
Method m =
JsonDataConverterTest.class.getDeclaredMethod(
"threeArguments", int.class, int.class, String.class);
Type[] arg = m.getGenericParameterTypes();
DataConverter converter = JsonDataConverter.getInstance();
byte[] data = converter.toData(1, 2, "a string", "an extra string :o!!!");
@SuppressWarnings("unchecked")
Object[] deserializedArguments = converter.fromDataArray(data, arg);
assertEquals(3, deserializedArguments.length);
assertEquals(1, (int) deserializedArguments[0]);
assertEquals(2, (int) deserializedArguments[1]);
assertEquals("a string", deserializedArguments[2]);
}
@Test
public void MissingInputArgumentsArePopulatedWithDefaultValues() throws NoSuchMethodException {
Method m =
JsonDataConverterTest.class.getDeclaredMethod(
"aLotOfArguments", int.class, int.class, String.class, Object.class, int[].class);
Type[] arg = m.getGenericParameterTypes();
DataConverter converter = JsonDataConverter.getInstance();
byte[] data = converter.toData(1);
@SuppressWarnings("unchecked")
Object[] deserializedArguments = converter.fromDataArray(data, arg);
assertEquals(5, deserializedArguments.length);
assertEquals(1, (int) deserializedArguments[0]);
assertEquals(0, (int) deserializedArguments[1]);
assertEquals(null, deserializedArguments[2]);
assertEquals(null, deserializedArguments[3]);
assertEquals(null, deserializedArguments[4]);
}
@Test
public void testClass() {
DataConverter converter = JsonDataConverter.getInstance();
byte[] data = converter.toData(this.getClass());
@SuppressWarnings("unchecked")
Class result = converter.fromData(data, Class.class, Class.class);
assertEquals(result.toString(), this.getClass(), result);
}
public static class NonSerializableException extends RuntimeException {
@SuppressWarnings("unused")
private final InputStream file; // gson chokes on this field
public NonSerializableException(Throwable cause) {
super(cause);
try {
file = new FileInputStream(File.createTempFile("foo", "bar"));
} catch (IOException e) {
throw Activity.wrap(e);
}
}
}
@Test
public void testException() {
RuntimeException rootException = new RuntimeException("root exception");
NonSerializableException nonSerializableCause = new NonSerializableException(rootException);
RuntimeException e = new RuntimeException("application exception", nonSerializableCause);
byte[] converted = converter.toData(e);
RuntimeException fromConverted =
converter.fromData(converted, RuntimeException.class, RuntimeException.class);
assertEquals(RuntimeException.class, fromConverted.getClass());
assertEquals("application exception", fromConverted.getMessage());
Throwable causeFromConverted = fromConverted.getCause();
assertNotNull(causeFromConverted);
assertEquals(DataConverterException.class, causeFromConverted.getClass());
assertNotNull(causeFromConverted.getCause());
assertEquals(StackOverflowError.class, causeFromConverted.getCause().getClass());
assertNotNull(causeFromConverted.getSuppressed());
assertEquals(1, causeFromConverted.getSuppressed().length);
assertEquals("root exception", causeFromConverted.getSuppressed()[0].getMessage());
}
}