-
Notifications
You must be signed in to change notification settings - Fork 4
/
serialize_property_test.ts
555 lines (516 loc) · 13.7 KB
/
serialize_property_test.ts
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
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
// Copyright 2018-2022 Gamebridge.ai authors. All rights reserved. MIT license.
import {
assert,
assertEquals,
assertStrictEquals,
fail,
test,
} from "./test_deps.ts";
import { JSONObject, Serializable } from "./serializable.ts";
import { SerializeProperty } from "./serialize_property.ts";
import {
ERROR_DUPLICATE_SERIALIZE_KEY,
ERROR_SYMBOL_PROPERTY_NAME,
} from "./error_messages.ts";
test({
name: "Serializes properties as propertyName without options",
fn() {
class Test extends Serializable {
@SerializeProperty()
testName = "toJSON";
}
assertEquals(new Test().toJSON(), `{"testName":"toJSON"}`);
const testObj = new Test().fromJSON(`{"testName":"fromJSON"}`);
assertEquals(testObj.testName, "fromJSON");
},
});
test({
name: "Serializes properties with a string name",
fn() {
class Test extends Serializable {
@SerializeProperty("test_name")
testName = "toJSON";
}
assertEquals(new Test().toJSON(), `{"test_name":"toJSON"}`);
const testObj = new Test().fromJSON({ test_name: "fromJSON" });
assertEquals(testObj.testName, "fromJSON");
},
});
test({
name: "Serializes properties with a string name option",
fn() {
class Test extends Serializable {
@SerializeProperty({ serializedKey: "test_name" })
testName = "toJSON";
}
assertEquals(new Test().toJSON(), `{"test_name":"toJSON"}`);
const testObj = new Test().fromJSON(`{"test_name":"fromJSON"}`);
assertEquals(testObj.testName, "fromJSON");
},
});
test({
name: "Errors on Symbol named properties",
fn() {
try {
const TEST = Symbol("test");
class _Test extends Serializable {
@SerializeProperty()
[TEST] = "toJSON";
}
fail("Allowed Symbol name without propertyName");
} catch (e) {
assertEquals(e.message, ERROR_SYMBOL_PROPERTY_NAME);
}
},
});
test({
name: "Allows Symbol named properties with a string option name",
fn() {
const TEST = Symbol("test");
const TEST2 = Symbol("test");
class Test extends Serializable {
@SerializeProperty("test_name")
[TEST] = "toJSON";
@SerializeProperty({ serializedKey: "test_name2" })
[TEST2] = "toJSON2";
}
assertEquals(
new Test().toJSON(),
`{"test_name":"toJSON","test_name2":"toJSON2"}`,
);
const testObj = new Test().fromJSON(
`{"test_name":"fromJSON","test_name2":"fromJSON2"}`,
);
assertEquals(testObj[TEST], "fromJSON");
assertEquals(testObj[TEST2], "fromJSON2");
},
});
test({
name: "Uses a provided fromJSONStrategy",
fn() {
const change = () => `hello world`;
class Test extends Serializable {
@SerializeProperty({
fromJSONStrategy: change,
})
change!: string;
}
const testObj = new Test().fromJSON(`{"change":"hi earth"}`);
assertEquals(testObj.change, "hello world");
},
});
test({
name: "Uses a provided replacer strategy",
fn() {
const change = () => `hello world`;
class Test extends Serializable {
@SerializeProperty({
fromJSONStrategy: change,
})
change!: string;
}
const testObj = new Test().fromJSON(`{"change":"hi earth"}`);
assertEquals(testObj.change, "hello world");
},
});
test({
name: "Preserves string type",
fn() {
class Test extends Serializable {
@SerializeProperty()
test!: string;
}
assertEquals(
typeof new Test().fromJSON(`{"test":"string"}`).test,
"string",
);
},
});
test({
name: "Preserves number type",
fn() {
class Test extends Serializable {
@SerializeProperty()
zero!: number;
@SerializeProperty()
one!: number;
}
const testObj = new Test().fromJSON(`{"zero":0,"one":1}`);
assertEquals(typeof testObj.zero, "number");
assertEquals(typeof testObj.one, "number");
},
});
test({
name: "Preserves boolean type",
fn() {
class Test extends Serializable {
@SerializeProperty()
true!: boolean;
@SerializeProperty()
false!: boolean;
}
const testObj = new Test().fromJSON(`{"true":true,"false":false}`);
assertEquals(typeof testObj.true, "boolean");
assertEquals(typeof testObj.false, "boolean");
},
});
test({
name: "Preserves null type",
fn() {
class Test extends Serializable {
@SerializeProperty()
null!: null;
}
const testObj = new Test().fromJSON(`{"null":null}`);
assertStrictEquals(testObj.null, null);
},
});
test({
name: "Preserves object type",
fn() {
class Test extends Serializable {
@SerializeProperty()
object!: Record<string | symbol, unknown>;
}
const testObj = new Test().fromJSON(`{"object":{"test":"worked"}}`);
assertEquals(testObj.object.test, "worked");
},
});
test({
name: "Preserves array type",
fn() {
class Test extends Serializable {
@SerializeProperty()
array!: unknown[];
}
const testObj = new Test().fromJSON(
`{"array":["worked",0,{"subObj":["cool"]}]}`,
);
assert(Array.isArray(testObj.array));
assertEquals(testObj.array.length, 3);
assert(Array.isArray(testObj.array[2].subObj));
assertEquals(typeof testObj.array[1], "number");
},
});
test({
name: "Revives an array of `type`",
fn() {
class OtherClass extends Serializable {
@SerializeProperty()
id!: number;
}
class Test extends Serializable {
@SerializeProperty({
fromJSONStrategy: (arr) =>
arr.map((v: JSONObject) => new OtherClass().fromJSON(v)),
})
array!: OtherClass[];
}
const testObj = new Test().fromJSON(
`{"array":[{"id":1},{"id":2},{"id":3},{"id":4},{"id":5}]}`,
);
assertEquals(testObj.array.length, 5);
assert(testObj.array[0] instanceof OtherClass);
assertEquals(testObj.array[4].id, 5);
},
});
test({
name: "custom toJSONStrategy with an array of data",
fn() {
class Test extends Serializable {
@SerializeProperty({
toJSONStrategy: (v) => v.join("."),
})
public test_property = [0, 1];
}
assertEquals(new Test().toJSON(), `{"test_property":"0.1"}`);
},
});
test({
name: "Will not serialize properties that are not decorated",
fn() {
class Test extends Serializable {
@SerializeProperty("serialize_me")
serializeMe = "nice";
dontSerializeMe = "great";
}
const testObj = new Test();
assertEquals(testObj.serializeMe, "nice");
assertEquals(testObj.dontSerializeMe, "great");
assertEquals(testObj.toJSON(), `{"serialize_me":"nice"}`);
},
});
test({
name: "Errors on duplicate map keys",
fn() {
try {
class _Test extends Serializable {
@SerializeProperty("serialize_me")
serializeMe = "nice";
@SerializeProperty("serialize_me")
serializeMeToo = "great";
}
fail("Allowed duplicate propertyName");
} catch (e) {
assertEquals(
e.message,
`${ERROR_DUPLICATE_SERIALIZE_KEY}: serialize_me`,
);
}
},
});
test({
name: "Inherited class key override serialize",
fn() {
class Test1 extends Serializable {
@SerializeProperty("serialize_me")
serializeMe = "nice1";
}
class Test2 extends Test1 {
@SerializeProperty("serialize_me")
serializeMeInstead = "nice2";
}
const testObj = new Test2();
assertEquals(testObj.serializeMe, "nice1");
assertEquals(testObj.serializeMeInstead, "nice2");
assertEquals(testObj.toJSON(), `{"serialize_me":"nice2"}`);
},
});
test({
name: "Inherited class key override deserialize",
fn() {
class Test1 extends Serializable {
@SerializeProperty("serialize_me")
serializeMe = "nice1";
}
class Test2 extends Test1 {
@SerializeProperty("serialize_me")
serializeMeInstead = "nice2";
}
const testObj = new Test2();
testObj.fromJSON(`{"serialize_me":"override"}`);
assertEquals(testObj.serializeMe, "nice1");
assertEquals(testObj.serializeMeInstead, "override");
},
});
test({
name: "Inherited serialize key override serialize",
fn() {
class Test1 extends Serializable {
@SerializeProperty("serialize_me_1")
serializeMe = "nice1";
}
class Test2 extends Test1 {
@SerializeProperty("serialize_me_2")
serializeMe = "nice2";
}
const testObj = new Test2();
assertEquals(testObj.serializeMe, "nice2");
assertEquals(testObj.toJSON(), `{"serialize_me_2":"nice2"}`);
},
});
test({
name: "Inherited serialize key override deserialize",
fn() {
class Test1 extends Serializable {
@SerializeProperty("serialize_me_1")
serializeMe = "nice1";
}
class Test2 extends Test1 {
@SerializeProperty("serialize_me_2")
serializeMe = "nice2";
}
const testObj = new Test2();
testObj.fromJSON(
`{"serialize_me_1":"ignore me", "serialize_me_2":"override"}`,
);
assertEquals(testObj.serializeMe, "override");
},
});
test({
name: "deserialize nested",
fn() {
class Test1 extends Serializable {
@SerializeProperty("serialize_me_1")
serializeMe = "nice1";
}
class Test2 extends Serializable {
@SerializeProperty({
serializedKey: "serialize_me_2",
fromJSONStrategy: (json) => new Test1().fromJSON(json),
})
nested!: Test1;
}
const testObj = new Test2();
testObj.fromJSON({ "serialize_me_2": { "serialize_me_1": "pass" } });
assertEquals(testObj.nested.serializeMe, "pass");
},
});
test({
name: "Serialize nested",
fn() {
class Test1 extends Serializable {
@SerializeProperty("serialize_me_1")
serializeMe = "nice1";
}
class Test2 extends Serializable {
@SerializeProperty({
serializedKey: "serialize_me_2",
})
nested: Test1 = new Test1();
}
const testObj = new Test2();
assertEquals(
testObj.toJSON(),
`{"serialize_me_2":{"serialize_me_1":"nice1"}}`,
);
},
});
test({
name: "Serialize arrays of nested objects",
fn() {
class Test1 extends Serializable {
@SerializeProperty("nested_property")
serializeMe = 999;
}
class Test2 extends Serializable {
@SerializeProperty({
serializedKey: "outer_property",
toJSONStrategy: (values: Test1[]) => values.map((v) => v.tsSerialize()),
})
nested: Test1[] = [new Test1()];
}
class Test3 extends Serializable {
@SerializeProperty({
serializedKey: "outer_outer_property",
toJSONStrategy: (values: Test2[]) => values.map((v) => v.tsSerialize()),
})
nested2: Test2[] = [new Test2()];
}
const testObj = new Test3();
assertEquals(
testObj.toJSON(),
`{"outer_outer_property":[{"outer_property":[{"nested_property":999}]}]}`,
);
},
});
test({
name: "Serialize key function",
fn() {
class Test1 extends Serializable {
@SerializeProperty((propertyName) => `_${String(propertyName)}`)
serializeMe = "nice1";
}
const testObj = new Test1();
assertEquals(
testObj.toJSON(),
`{"_serializeMe":"nice1"}`,
);
},
});
test({
name: "Deserialize key function",
fn() {
class Test1 extends Serializable {
@SerializeProperty((propertyName) => `_${String(propertyName)}`)
serializeMe = "nice1";
}
assertEquals(
new Test1().fromJSON({ "_serializeMe": "nice2" }).serializeMe,
"nice2",
);
},
});
test({
name: "Serialize key function object",
fn() {
class Test1 extends Serializable {
@SerializeProperty(
{ serializedKey: (propertyName) => `_${String(propertyName)}` },
)
serializeMe = "nice1";
}
const testObj = new Test1();
assertEquals(
testObj.toJSON(),
`{"_serializeMe":"nice1"}`,
);
},
});
test({
name: "Deserialize key function object",
fn() {
class Test1 extends Serializable {
@SerializeProperty(
{ serializedKey: (propertyName) => `_${String(propertyName)}` },
)
serializeMe = "nice1";
}
assertEquals(
new Test1().fromJSON({ "_serializeMe": "nice2" }).serializeMe,
"nice2",
);
},
});
test({
name: "should be able to serialize a serializable without any properties",
fn() {
class TestSerializable extends Serializable {}
const serializedClass = new TestSerializable().fromJSON({});
assert(serializedClass instanceof TestSerializable);
assertEquals(Object.keys(serializedClass).length, 0);
},
});
test({
name:
"should be able to serialize child class and have it inherit it's parent's serialization logic correctly",
fn() {
class TestSerializable extends Serializable {
@SerializeProperty()
public test_property = 1;
}
class TestSerializableChild extends TestSerializable {}
// Parent
assertEquals(
new TestSerializable().toJSON(),
`{"test_property":1}`,
);
assertEquals(
new TestSerializable().fromJSON(`{"test_property":32}`)
.test_property,
32,
);
// Child
assertEquals(
new TestSerializableChild().toJSON(),
`{"test_property":1}`,
);
assertEquals(
new TestSerializableChild().fromJSON(`{"test_property":32}`)
.test_property,
32,
);
},
});
test({
name:
"should be able to serialize grandchild class and have it inherit it's grandparent's serialization logic correctly",
fn() {
class TestSerializable extends Serializable {
@SerializeProperty()
public test_property = 0;
}
class TestSerializableChild extends TestSerializable {}
class TestSerializableGrandChild extends TestSerializableChild {}
// Grandchild
assertEquals(
new TestSerializableGrandChild().toJSON(),
`{"test_property":0}`,
);
assertEquals(
new TestSerializableGrandChild().fromJSON(`{"test_property":33}`)
.test_property,
33,
);
},
});