forked from tcalmant/python-javaobj
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOneTest.java
More file actions
458 lines (380 loc) · 10 KB
/
OneTest.java
File metadata and controls
458 lines (380 loc) · 10 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
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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.io.ByteArrayOutputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.Serializable;
import java.time.Duration;
import java.time.Instant;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.LocalTime;
import java.time.ZoneId;
import java.time.ZonedDateTime;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Hashtable;
import java.util.LinkedHashSet;
import java.util.Map;
import java.util.Set;
import java.util.TreeSet;
import java.util.Vector;
import java.util.Random;
import javax.swing.JScrollPane;
import javax.swing.SwingUtilities;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.TestName;
class ClassWithEnum implements Serializable {
/**
*
*/
private static final long serialVersionUID = 1L;
public Color color = Color.GREEN;
public Color[] colors = { Color.GREEN, Color.BLUE, Color.RED };
}
class ClassWithByteArray implements Serializable {
private static final long serialVersionUID = 1L;
public byte[] myArray = new byte[]{1,3,7,11};
}
enum Color {
BLUE("BLUE"), GREEN("GREEN"), RED("RED"), UNKNOWN("UNKNOWN");
private final String value;
Color(final String value) {
this.value = value;
}
public String getValue() {
return value;
}
}
class MyExceptionWhenDumping implements java.io.Serializable {
protected static class MyException extends java.io.IOException {
/**
*
*/
private static final long serialVersionUID = 1L;
}
/**
*
*/
private static final long serialVersionUID = 1L;;
public boolean anInstanceVar = false;
public MyExceptionWhenDumping() {
super();
}
private void readObject(final java.io.ObjectInputStream in)
throws java.io.IOException, ClassNotFoundException {
in.defaultReadObject();
}
private void writeObject(final java.io.ObjectOutputStream out)
throws java.io.IOException, ClassNotFoundException {
throw new MyException();
}
}
public class OneTest {
public static class A1 implements Serializable {
private static final long serialVersionUID = 5942584913446079661L;
B1 b1 = new B1();
B1 b2 = b1;
Vector<Object> v = new Vector<Object>();
}
public static class B1 implements Serializable {
/**
*
*/
private static final long serialVersionUID = 1L;
Hashtable<Object, Object> h = new Hashtable<Object, Object>();
int i = 5;
}
public class SerializableTestHelper implements Serializable {
/**
*
*/
private static final long serialVersionUID = 0x7F0941F5L;
public String aField1;
public String aField2;
SerializableTestHelper() {
aField1 = null;
aField2 = null;
}
SerializableTestHelper(final String s, final String t) {
aField1 = s;
aField2 = t;
}
public String getText1() {
return aField1;
}
public String getText2() {
return aField2;
}
private void readObject(final ObjectInputStream ois) throws Exception {
// note aField2 is not read
final ObjectInputStream.GetField fields = ois.readFields();
aField1 = (String) fields.get("aField1", "Zap");
}
public void setText1(final String s) {
aField1 = s;
}
public void setText2(final String s) {
aField2 = s;
}
private void writeObject(final ObjectOutputStream oos)
throws IOException {
// note aField2 is not written
final ObjectOutputStream.PutField fields = oos.putFields();
fields.put("aField1", aField1);
oos.writeFields();
}
}
ByteArrayOutputStream bao;
FileOutputStream fos;
@Rule
public TestName name = new TestName();
ObjectOutputStream oos;
@Before
public void setUp() throws Exception {
oos = new ObjectOutputStream(fos = new FileOutputStream(
name.getMethodName() + ".ser"));
}
@Test
public void test_readFields() throws Exception {
oos.writeObject(new SerializableTestHelper("Gabba", "Jabba"));
oos.flush();
}
@Test
public void testBoolean() throws IOException {
oos.writeBoolean(false);
oos.close();
}
@Test
public void testByte() throws IOException {
oos.writeByte(127);
oos.close();
}
@Test
public void testBytes() throws IOException {
oos.writeBytes("HelloWorld");
oos.close();
}
@Test
public void testChar() throws IOException {
oos.writeChar('C');
oos.close();
}
@Test
public void testChars() throws IOException {
oos.writeChars("python-javaobj");
oos.close();
}
@Test
public void testCharArray() throws IOException {
char[] array = new char[] {
'\u0000', '\ud800',
'\u0001', '\udc00',
'\u0002', '\uffff',
'\u0003'
};
oos.writeObject(array);
oos.close();
}
@Test
public void testJapan() throws IOException {
String stateOfJapan = "日本国";
oos.writeObject(stateOfJapan);
oos.close();
}
@Test
public void testClass() throws Exception {
oos.writeObject(String.class);
oos.flush();
}
@Test
public void testDouble() throws IOException {
oos.writeDouble(Double.MAX_VALUE);
oos.close();
}
@Test
public void testEnums() throws Exception {
oos = new ObjectOutputStream(fos = new FileOutputStream("objEnums.ser"));
final ClassWithEnum ts = new ClassWithEnum();
oos.writeObject(ts);
oos.flush();
}
@Test
public void testException() throws Exception {
oos = new ObjectOutputStream(fos = new FileOutputStream(
"objException.ser"));
final MyExceptionWhenDumping ts = new MyExceptionWhenDumping();
try {
oos.writeObject(ts);
oos.flush();
} catch (final MyExceptionWhenDumping.MyException ex) {
// Was intended
return;
}
}
@Test
public void testClassWithByteArray() throws Exception {
final ClassWithByteArray cwba = new ClassWithByteArray();
oos.writeObject(cwba);
oos.flush();
}
@Test
public void testSuper() throws Exception {
oos = new ObjectOutputStream(fos = new FileOutputStream("objSuper.ser"));
final TestConcrete ts = new TestConcrete();
// ts.setChild("and Child!!!!");
oos.writeObject(ts);
oos.flush();
}
@Test
public void testHashSet() throws Exception {
final Set<Integer> set = new HashSet<Integer>();
set.add(1);
set.add(2);
set.add(1);
set.add(42);
oos.writeObject(set);
oos.flush();
}
@Test
public void testLinkedHashSet() throws Exception {
final Set<Integer> set = new LinkedHashSet<Integer>();
set.add(1);
set.add(2);
set.add(1);
set.add(42);
oos.writeObject(set);
oos.flush();
}
@Test
public void testTreeSet() throws Exception {
final Set<Integer> set = new TreeSet<Integer>();
set.add(1);
set.add(2);
set.add(1);
set.add(42);
oos.writeObject(set);
oos.flush();
}
@Test
public void testTime() throws Exception {
oos.writeObject(new Object[] {
Duration.ofSeconds(10),
Instant.now(),
LocalDate.now(),
LocalTime.now(),
LocalDateTime.now(),
ZoneId.systemDefault(),
ZonedDateTime.now(),
});
oos.flush();
}
/**
* Tests th pull request #27 by @qistoph:
* Add support for java.lang.Bool, Integer and Long classes
*/
@Test
public void testBoolIntLong() throws Exception {
Map<String, Object> hm1 = new HashMap<String, Object>();
hm1.put("key1", "value1");
hm1.put("key2", "value2");
hm1.put("int", 9);
hm1.put("int2", new Integer(10));
hm1.put("bool", true);
hm1.put("bool2", new Boolean(true));
oos.writeObject(hm1);
oos.flush();
Map<String, Object> hm2 = new HashMap<String, Object>();
hm2.put("subMap", hm1);
ObjectOutputStream oos2 = new ObjectOutputStream(new FileOutputStream(name.getMethodName() + "-2.ser"));
try {
oos2.writeObject(hm2);
} finally {
oos2.close();
}
}
@Test
public void testSwingObject() throws Exception {
// Start the frame in the UI thread
SwingUtilities.invokeAndWait(new Runnable() {
@Override
public void run() {
final JFrameTest frame = new JFrameTest();
frame.addWindowListener(new WindowAdapter() {
@Override
public void windowClosing(final WindowEvent e) {
System.exit(0);
}
});
frame.setSize(300, 200);
frame.setVisible(true);
try {
oos.writeObject(((JScrollPane) frame.getRootPane()
.getContentPane().getComponent(0)).getComponent(1));
oos.flush();
} catch (final IOException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
}
});
}
/**
* Tests the pull request #38 by @UruDev:
* Add support for custom writeObject
*/
@Test
public void testCustomWriteObject() throws Exception {
CustomClass writer = new CustomClass();
writer.start(oos);
}
}
class SuperAaaa implements Serializable {
private static final long serialVersionUID = 1L;
public boolean bool = true;
public int integer = -1;
public String superString = "Super!!";
}
class TestConcrete extends SuperAaaa implements Serializable {
private static final long serialVersionUID = 1L;
public String childString = "Child!!";
TestConcrete() {
super();
}
}
//Custom writeObject section
class CustomClass implements Serializable {
private static final long serialVersionUID = 1;
public void start(ObjectOutputStream out) throws Exception {
this.writeObject(out);
}
private void writeObject(ObjectOutputStream out) throws IOException {
CustomWriter custom = new CustomWriter(42);
out.writeObject(custom);
out.flush();
}
}
class RandomChild extends Random {
private static final long serialVersionUID = 1;
private int num = 1;
private double doub = 4.5;
RandomChild(int seed) {
super(seed);
}
}
class CustomWriter implements Serializable {
protected RandomChild custom_obj = null;
CustomWriter(int seed) {
custom_obj = new RandomChild(seed);
}
private static final long serialVersionUID = 1;
private static final int CURRENT_SERIAL_VERSION = 0;
private void writeObject(ObjectOutputStream out) throws IOException {
out.writeInt(CURRENT_SERIAL_VERSION);
out.writeObject(custom_obj);
}
}