-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathavro_conversion_test.go
More file actions
962 lines (875 loc) · 24.1 KB
/
avro_conversion_test.go
File metadata and controls
962 lines (875 loc) · 24.1 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
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
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
package kafka
import (
"testing"
"time"
"github.com/hamba/avro/v2"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
const (
testUserSchemaJSON = `{
"type": "record",
"name": "User",
"namespace": "com.example",
"fields": [
{"name": "id", "type": "int"},
{"name": "name", "type": "string"}
]
}`
testDocumentLogicalDateSchemaJSON = `{
"type": "record",
"name": "Document",
"namespace": "com.example",
"fields": [
{
"name": "documentValidTo",
"type": [
"null",
{
"type": "int",
"logicalType": "date"
}
]
}
]
}`
)
func TestConvertPrimitiveType_Bytes(t *testing.T) {
schema, err := avro.Parse(`{"type": "bytes"}`)
require.NoError(t, err)
tests := []struct {
name string
data any
want []byte
wantErr bool
}{
{
name: "array of float64",
data: []any{float64(1), float64(2), float64(3)},
want: []byte{1, 2, 3},
wantErr: false,
},
{
name: "array of int",
data: []any{1, 2, 3},
want: []byte{1, 2, 3},
wantErr: false,
},
{
name: "array of int32",
data: []any{int32(1), int32(2), int32(3)},
want: []byte{1, 2, 3},
wantErr: false,
},
{
name: "already bytes",
data: []byte{1, 2, 3},
want: []byte{1, 2, 3},
wantErr: false,
},
{
name: "invalid type",
data: "not an array",
want: nil,
wantErr: false, // Returns as-is
},
}
for _, testCase := range tests {
t.Run(testCase.name, func(t *testing.T) {
got, err := convertPrimitiveType(testCase.data, schema)
if testCase.wantErr {
assert.Error(t, err)
} else {
assert.NoError(t, err)
if testCase.want != nil {
assert.Equal(t, testCase.want, got)
}
}
})
}
}
func TestConvertPrimitiveType_Int(t *testing.T) {
schema, err := avro.Parse(`{"type": "int"}`)
require.NoError(t, err)
tests := []struct {
name string
data any
want int32
wantErr bool
}{
{
name: "valid float64",
data: float64(42),
want: int32(42),
wantErr: false,
},
{
name: "already int32",
data: int32(42),
want: int32(42),
wantErr: false,
},
{
name: "non-integer float64",
data: float64(42.5),
want: 0,
wantErr: true,
},
{
name: "out of range",
data: float64(2147483648), // > int32 max
want: 0,
wantErr: true,
},
}
for _, testCase := range tests {
t.Run(testCase.name, func(t *testing.T) {
got, err := convertPrimitiveType(testCase.data, schema)
if testCase.wantErr {
assert.Error(t, err)
} else {
assert.NoError(t, err)
assert.Equal(t, testCase.want, got)
}
})
}
}
func TestConvertPrimitiveType_Long(t *testing.T) {
schema, err := avro.Parse(`{"type": "long"}`)
require.NoError(t, err)
tests := []struct {
name string
data any
want int64
wantErr bool
}{
{
name: "valid float64",
data: float64(42),
want: int64(42),
wantErr: false,
},
{
name: "already int64",
data: int64(42),
want: int64(42),
wantErr: false,
},
{
name: "non-integer float64",
data: float64(42.5),
want: 0,
wantErr: true,
},
{
name: "large valid number",
data: float64(9000000000000000000), // Large but safe for float64->int64
want: int64(9000000000000000000),
wantErr: false,
},
}
for _, testCase := range tests {
t.Run(testCase.name, func(t *testing.T) {
got, err := convertPrimitiveType(testCase.data, schema)
if testCase.wantErr {
assert.Error(t, err)
} else {
assert.NoError(t, err)
assert.Equal(t, testCase.want, got)
}
})
}
}
func TestConvertPrimitiveType_Fixed(t *testing.T) {
schema, err := avro.Parse(`{"type": "fixed", "name": "MD5", "size": 16}`)
require.NoError(t, err)
tests := []struct {
name string
data any
wantErr bool
}{
{
name: "array of float64",
data: []any{
float64(1), float64(2), float64(3), float64(4),
float64(5), float64(6), float64(7), float64(8),
float64(9), float64(10), float64(11), float64(12),
float64(13), float64(14), float64(15), float64(16),
},
wantErr: false,
},
{
name: "array of int",
data: []any{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16},
wantErr: false,
},
{
name: "wrong size - too few",
data: []any{float64(1), float64(2), float64(3)},
wantErr: true,
},
{
name: "wrong size - too many",
data: []any{
float64(1), float64(2), float64(3), float64(4),
float64(5), float64(6), float64(7), float64(8),
float64(9), float64(10), float64(11), float64(12),
float64(13), float64(14), float64(15), float64(16),
float64(17), float64(18),
},
wantErr: true,
},
{
name: "value out of byte range",
data: []any{float64(256)},
wantErr: true,
},
}
for _, testCase := range tests {
t.Run(testCase.name, func(t *testing.T) {
_, err := convertPrimitiveType(testCase.data, schema)
if testCase.wantErr {
assert.Error(t, err)
} else {
assert.NoError(t, err)
}
})
}
}
func TestConvertUnionField_Null(t *testing.T) {
schema, err := avro.Parse(`["null", "string"]`)
require.NoError(t, err)
unionSchema := schema.(*avro.UnionSchema)
got, err := convertUnionField(nil, unionSchema)
assert.NoError(t, err)
assert.Nil(t, got)
}
func TestConvertUnionField_Enum(t *testing.T) {
enumSchema := `{
"type": "enum",
"name": "Status",
"namespace": "com.example",
"symbols": ["ACTIVE", "INACTIVE"]
}`
unionSchemaJSON := `["null", ` + enumSchema + `]`
schema, err := avro.Parse(unionSchemaJSON)
require.NoError(t, err)
unionSchema := schema.(*avro.UnionSchema)
got, err := convertUnionField("ACTIVE", unionSchema)
assert.NoError(t, err)
assert.Equal(t, map[string]any{"com.example.Status": "ACTIVE"}, got)
}
func TestConvertUnionField_Record(t *testing.T) {
recordSchema := testUserSchemaJSON
unionSchemaJSON := `["null", ` + recordSchema + `]`
schema, err := avro.Parse(unionSchemaJSON)
require.NoError(t, err)
unionSchema := schema.(*avro.UnionSchema)
// Test with unwrapped record
data := map[string]any{
"id": float64(123),
"name": "test",
}
got, err := convertUnionField(data, unionSchema)
assert.NoError(t, err)
assert.IsType(t, map[string]any{}, got)
result := got.(map[string]any)
assert.Len(t, result, 1)
assert.Contains(t, result, "com.example.User")
userData := result["com.example.User"].(map[string]any)
assert.Equal(t, int32(123), userData["id"])
assert.Equal(t, "test", userData["name"])
}
func TestConvertUnionField_RecordAlreadyWrapped(t *testing.T) {
recordSchema := `{
"type": "record",
"name": "User",
"namespace": "com.example",
"fields": [
{"name": "id", "type": "int"},
{"name": "name", "type": "string"}
]
}`
unionSchemaJSON := `["null", ` + recordSchema + `]`
schema, err := avro.Parse(unionSchemaJSON)
require.NoError(t, err)
unionSchema := schema.(*avro.UnionSchema)
// Test with already wrapped record
wrappedData := map[string]any{
"com.example.User": map[string]any{
"id": float64(123),
"name": "test",
},
}
got, err := convertUnionField(wrappedData, unionSchema)
assert.NoError(t, err)
assert.IsType(t, map[string]any{}, got)
result := got.(map[string]any)
assert.Len(t, result, 1)
assert.Contains(t, result, "com.example.User")
userData := result["com.example.User"].(map[string]any)
assert.Equal(t, int32(123), userData["id"])
assert.Equal(t, "test", userData["name"])
}
func TestConvertUnionField_Primitive(t *testing.T) {
schema, err := avro.Parse(`["null", "int", "string"]`)
require.NoError(t, err)
unionSchema := schema.(*avro.UnionSchema)
tests := []struct {
name string
data any
want any
}{
{
name: "int value",
data: float64(42),
want: int32(42),
},
{
name: "string value",
data: "hello",
want: "hello",
},
}
for _, testCase := range tests {
t.Run(testCase.name, func(t *testing.T) {
got, err := convertUnionField(testCase.data, unionSchema)
assert.NoError(t, err)
assert.Equal(t, testCase.want, got)
})
}
}
func TestConvertUnionField_WrappedPrimitive(t *testing.T) {
// Test union with int and logical type (date)
schema, err := avro.Parse(`["null", {"type": "int", "logicalType": "date"}]`)
require.NoError(t, err)
unionSchema := schema.(*avro.UnionSchema)
tests := []struct {
name string
data any
want any
}{
{
name: "wrapped int value",
data: map[string]any{"int": float64(20474)},
want: map[string]any{"int.date": int32(20474)},
},
{
name: "wrapped int with logical type suffix",
data: map[string]any{"int.date": float64(20474)},
want: map[string]any{"int.date": int32(20474)},
},
{
name: "wrapped int with float64 value",
data: map[string]any{"int": float64(42)},
want: map[string]any{"int.date": int32(42)},
},
}
for _, testCase := range tests {
t.Run(testCase.name, func(t *testing.T) {
got, err := convertUnionField(testCase.data, unionSchema)
assert.NoError(t, err)
assert.Equal(t, testCase.want, got)
})
}
}
func TestConvertUnionField_WrappedPrimitiveMultipleTypes(t *testing.T) {
schema, err := avro.Parse(`["null", "int", "string", "long"]`)
require.NoError(t, err)
unionSchema := schema.(*avro.UnionSchema)
tests := []struct {
name string
data any
want any
}{
{
name: "wrapped int",
data: map[string]any{"int": float64(42)},
want: int32(42),
},
{
name: "wrapped string",
data: map[string]any{"string": "hello"},
want: "hello",
},
{
name: "wrapped long",
data: map[string]any{"long": float64(9000000000000000000)},
want: int64(9000000000000000000),
},
}
for _, testCase := range tests {
t.Run(testCase.name, func(t *testing.T) {
got, err := convertUnionField(testCase.data, unionSchema)
assert.NoError(t, err)
assert.Equal(t, testCase.want, got)
})
}
}
func TestConvertUnionField_UnknownWrappedPrimitiveKey(t *testing.T) {
schema, err := avro.Parse(`["null", "int", "string"]`)
require.NoError(t, err)
unionSchema := schema.(*avro.UnionSchema)
data := map[string]any{"unknown": float64(42)}
got, err := convertUnionField(data, unionSchema)
assert.NoError(t, err)
// Unknown wrapper keys must not be treated as successful primitive matches.
assert.Equal(t, data, got)
}
// TestConvertFloat64ToIntForIntegerFields_UnionWithLogicalType tests the exact scenario from issue #376
// where a union type contains an int with logical type "date".
func TestConvertFloat64ToIntForIntegerFields_UnionWithLogicalType(t *testing.T) {
schema, err := avro.Parse(testDocumentLogicalDateSchemaJSON)
require.NoError(t, err)
// Test case 1: wrapped as {"int": value} - should work
data1 := map[string]any{
"documentValidTo": map[string]any{"int": float64(20474)},
}
got1, err := convertFloat64ToIntForIntegerFields(data1, schema)
assert.NoError(t, err)
result1 := got1.(map[string]any)
assert.Equal(t, map[string]any{"int.date": int32(20474)}, result1["documentValidTo"])
// Test case 2: wrapped as {"int.date": value} - should also work (strips logical type suffix)
data2 := map[string]any{
"documentValidTo": map[string]any{"int.date": float64(20474)},
}
got2, err := convertFloat64ToIntForIntegerFields(data2, schema)
assert.NoError(t, err)
result2 := got2.(map[string]any)
assert.Equal(t, map[string]any{"int.date": int32(20474)}, result2["documentValidTo"])
// Test case 3: null value - should work
data3 := map[string]any{
"documentValidTo": nil,
}
got3, err := convertFloat64ToIntForIntegerFields(data3, schema)
assert.NoError(t, err)
result3 := got3.(map[string]any)
assert.Nil(t, result3["documentValidTo"])
}
func TestConvertFloat64ToIntForIntegerFields_NestedUnionWithLogicalTypeIssue376(t *testing.T) {
schemaJSON := `{
"type": "record",
"name": "Set",
"namespace": "com.example",
"fields": [
{
"name": "document",
"type": [
"null",
{
"type": "record",
"name": "Document",
"fields": [
{
"name": "documentId",
"type": {
"type": "string",
"avro.java.string": "String"
}
},
{
"name": "documentType",
"type": [
"null",
{
"type": "string",
"avro.java.string": "String"
}
],
"default": null
},
{
"name": "documentValidTo",
"type": [
"null",
{
"type": "int",
"logicalType": "date"
}
],
"default": null
}
]
}
],
"default": null
}
]
}`
schema, err := avro.Parse(schemaJSON)
require.NoError(t, err)
testCases := []struct {
name string
documentType any
documentValid any
expectedDay int32
}{
{
name: "wrapped int.date",
documentType: map[string]any{"string": "OP"},
documentValid: map[string]any{"int.date": float64(20474)},
expectedDay: int32(20474),
},
{
name: "wrapped int",
documentType: map[string]any{"string": "OP"},
documentValid: map[string]any{"int": float64(20475)},
expectedDay: int32(20475),
},
{
name: "direct scalar",
documentType: "OP",
documentValid: float64(20476),
expectedDay: int32(20476),
},
}
for _, testCase := range testCases {
t.Run(testCase.name, func(t *testing.T) {
data := map[string]any{
"document": map[string]any{
"com.example.Document": map[string]any{
"documentId": "BR9876543",
"documentType": testCase.documentType,
"documentValidTo": testCase.documentValid,
},
},
}
got, convErr := convertFloat64ToIntForIntegerFields(data, schema)
require.NoError(t, convErr)
result := got.(map[string]any)
documentUnion := result["document"].(map[string]any)
document := documentUnion["com.example.Document"].(map[string]any)
documentValidTo, ok := document["documentValidTo"].(map[string]any)
require.True(t, ok, "documentValidTo should be wrapped with logical discriminator")
assert.Equal(t, map[string]any{"int.date": testCase.expectedDay}, documentValidTo)
})
}
}
// TestSerializeDeserializeRoundTrip_UnionWithLogicalType verifies that after
// roundtrip the logical union date field is deserialized as an unwrapped value.
func TestSerializeDeserializeRoundTrip_UnionWithLogicalType(t *testing.T) {
avroSerde := &AvroSerde{}
schema := &Schema{
ID: 376,
Schema: testDocumentLogicalDateSchemaJSON,
Version: 1,
Subject: "issue-376-roundtrip",
}
originalData := map[string]any{
"documentValidTo": map[string]any{"int.date": float64(20474)},
}
serialized, serdeErr := avroSerde.Serialize(originalData, schema)
require.Nil(t, serdeErr, "Serialize should not return error")
require.NotNil(t, serialized, "Serialized data should not be nil")
deserialized, deserErr := avroSerde.Deserialize(serialized, schema)
require.Nil(t, deserErr, "Deserialize should not return error")
require.NotNil(t, deserialized, "Deserialized data should not be nil")
result := deserialized.(map[string]any)
value := result["documentValidTo"]
switch typedValue := value.(type) {
case int:
assert.Equal(t, 20474, typedValue)
case int32:
assert.Equal(t, int32(20474), typedValue)
case time.Time:
assert.Equal(t, int64(20474*86400), typedValue.Unix())
default:
t.Fatalf("unexpected type for documentValidTo: %T", value)
}
}
func TestConvertFloat64ToIntForIntegerFields_RecordWithUnions(t *testing.T) {
schemaJSON := `{
"type": "record",
"name": "TestRecord",
"namespace": "com.example",
"fields": [
{"name": "id", "type": "int"},
{"name": "optional", "type": ["null", "string"]},
{"name": "enumField", "type": ["null", {
"type": "enum",
"name": "Status",
"namespace": "com.example",
"symbols": ["ACTIVE", "INACTIVE"]
}]}
]
}`
schema, err := avro.Parse(schemaJSON)
require.NoError(t, err)
data := map[string]any{
"id": float64(123),
"optional": "test",
"enumField": "ACTIVE",
}
got, err := convertFloat64ToIntForIntegerFields(data, schema)
assert.NoError(t, err)
result := got.(map[string]any)
assert.Equal(t, int32(123), result["id"])
assert.Equal(t, "test", result["optional"])
assert.IsType(t, map[string]any{}, result["enumField"])
enumMap := result["enumField"].(map[string]any)
assert.Equal(t, "ACTIVE", enumMap["com.example.Status"])
}
func TestConvertFloat64ToIntForIntegerFields_NestedRecord(t *testing.T) {
schemaJSON := `{
"type": "record",
"name": "Outer",
"namespace": "com.example",
"fields": [
{"name": "inner", "type": {
"type": "record",
"name": "Inner",
"namespace": "com.example",
"fields": [
{"name": "value", "type": "long"}
]
}}
]
}`
schema, err := avro.Parse(schemaJSON)
require.NoError(t, err)
data := map[string]any{
"inner": map[string]any{
"value": float64(456),
},
}
got, err := convertFloat64ToIntForIntegerFields(data, schema)
assert.NoError(t, err)
result := got.(map[string]any)
inner := result["inner"].(map[string]any)
assert.Equal(t, int64(456), inner["value"])
}
func TestConvertFloat64ToIntForIntegerFields_Array(t *testing.T) {
schemaJSON := `{
"type": "array",
"items": "int"
}`
schema, err := avro.Parse(schemaJSON)
require.NoError(t, err)
data := []any{float64(1), float64(2), float64(3)}
got, err := convertFloat64ToIntForIntegerFields(data, schema)
assert.NoError(t, err)
result := got.([]any)
assert.Equal(t, []any{int32(1), int32(2), int32(3)}, result)
}
func TestConvertFloat64ToIntForIntegerFields_Map(t *testing.T) {
schemaJSON := `{
"type": "map",
"values": "long"
}`
schema, err := avro.Parse(schemaJSON)
require.NoError(t, err)
data := map[string]any{
"key1": float64(100),
"key2": float64(200),
}
got, err := convertFloat64ToIntForIntegerFields(data, schema)
assert.NoError(t, err)
result := got.(map[string]any)
assert.Equal(t, int64(100), result["key1"])
assert.Equal(t, int64(200), result["key2"])
}
func TestUnwrapUnionValue_Null(t *testing.T) {
schema, err := avro.Parse(`["null", "string"]`)
require.NoError(t, err)
unionSchema := schema.(*avro.UnionSchema)
got, err := unwrapUnionValue(nil, unionSchema)
assert.NoError(t, err)
assert.Nil(t, got)
}
func TestUnwrapUnionValue_WrappedEnum(t *testing.T) {
enumSchema := `{
"type": "enum",
"name": "Status",
"namespace": "com.example",
"symbols": ["ACTIVE", "INACTIVE"]
}`
unionSchemaJSON := `["null", ` + enumSchema + `]`
schema, err := avro.Parse(unionSchemaJSON)
require.NoError(t, err)
unionSchema := schema.(*avro.UnionSchema)
wrapped := map[string]any{
"com.example.Status": "ACTIVE",
}
got, err := unwrapUnionValue(wrapped, unionSchema)
assert.NoError(t, err)
assert.Equal(t, "ACTIVE", got)
}
func TestUnwrapUnionValue_WrappedRecord(t *testing.T) {
recordSchema := `{
"type": "record",
"name": "User",
"namespace": "com.example",
"fields": [
{"name": "id", "type": "int"},
{"name": "name", "type": "string"}
]
}`
unionSchemaJSON := `["null", ` + recordSchema + `]`
schema, err := avro.Parse(unionSchemaJSON)
require.NoError(t, err)
unionSchema := schema.(*avro.UnionSchema)
wrapped := map[string]any{
"com.example.User": map[string]any{
"id": int32(123),
"name": "test",
},
}
got, err := unwrapUnionValue(wrapped, unionSchema)
assert.NoError(t, err)
result := got.(map[string]any)
assert.Equal(t, int32(123), result["id"])
assert.Equal(t, "test", result["name"])
}
func TestUnwrapUnionValues_RecordWithUnions(t *testing.T) {
schemaJSON := `{
"type": "record",
"name": "TestRecord",
"namespace": "com.example",
"fields": [
{"name": "optional", "type": ["null", "string"]},
{"name": "enumField", "type": ["null", {
"type": "enum",
"name": "Status",
"namespace": "com.example",
"symbols": ["ACTIVE", "INACTIVE"]
}]},
{"name": "recordField", "type": ["null", {
"type": "record",
"name": "User",
"namespace": "com.example",
"fields": [{"name": "id", "type": "int"}]
}]}
]
}`
schema, err := avro.Parse(schemaJSON)
require.NoError(t, err)
data := map[string]any{
"optional": "test",
"enumField": map[string]any{"com.example.Status": "ACTIVE"},
"recordField": map[string]any{
"com.example.User": map[string]any{"id": int32(123)},
},
}
got, err := unwrapUnionValues(data, schema)
assert.NoError(t, err)
result := got.(map[string]any)
assert.Equal(t, "test", result["optional"])
assert.Equal(t, "ACTIVE", result["enumField"])
userData := result["recordField"].(map[string]any)
assert.Equal(t, int32(123), userData["id"])
}
func TestUnwrapUnionValues_Array(t *testing.T) {
schemaJSON := `{
"type": "array",
"items": ["null", "string"]
}`
schema, err := avro.Parse(schemaJSON)
require.NoError(t, err)
data := []any{
nil,
"hello",
map[string]any{"string": "world"},
}
got, err := unwrapUnionValues(data, schema)
assert.NoError(t, err)
result := got.([]any)
assert.Nil(t, result[0])
assert.Equal(t, "hello", result[1])
// For wrapped union values in arrays, unwrapUnionValue tries to match types
// If it can't find a match, it returns as-is, so we check the wrapped format
assert.IsType(t, map[string]any{}, result[2])
wrapped := result[2].(map[string]any)
assert.Equal(t, "world", wrapped["string"])
}
func TestUnwrapUnionValues_Map(t *testing.T) {
schemaJSON := `{
"type": "map",
"values": ["null", "int"]
}`
schema, err := avro.Parse(schemaJSON)
require.NoError(t, err)
data := map[string]any{
"key1": nil,
"key2": int32(42),
"key3": map[string]any{"int": int32(100)},
}
got, err := unwrapUnionValues(data, schema)
assert.NoError(t, err)
result := got.(map[string]any)
assert.Nil(t, result["key1"])
assert.Equal(t, int32(42), result["key2"])
// For wrapped union values, unwrapUnionValue should unwrap them
// But if it can't match, it returns as-is
wrapped := result["key3"]
if wrappedMap, ok := wrapped.(map[string]any); ok {
assert.Equal(t, int32(100), wrappedMap["int"])
} else {
assert.Equal(t, int32(100), wrapped)
}
}
func TestSerializeDeserializeRoundTrip_WithUnions(t *testing.T) {
avroSerde := &AvroSerde{}
schemaJSON := `{
"type": "record",
"name": "TestRecord",
"namespace": "com.example",
"fields": [
{"name": "id", "type": "int"},
{"name": "optional", "type": ["null", "string"]},
{"name": "enumField", "type": ["null", {
"type": "enum",
"name": "Status",
"namespace": "com.example",
"symbols": ["ACTIVE", "INACTIVE"]
}]},
{"name": "bytesField", "type": ["null", "bytes"]}
]
}`
schema := &Schema{
ID: 1,
Schema: schemaJSON,
Version: 1,
Subject: "test",
}
originalData := map[string]any{
"id": float64(123),
"optional": "test",
"enumField": "ACTIVE",
"bytesField": []any{float64(1), float64(2), float64(3)},
}
// Serialize
serialized, serdeErr := avroSerde.Serialize(originalData, schema)
require.Nil(t, serdeErr, "Serialize should not return error")
require.NotNil(t, serialized, "Serialized data should not be nil")
// Deserialize
deserialized, deserErr := avroSerde.Deserialize(serialized, schema)
require.Nil(t, deserErr, "Deserialize should not return error")
require.NotNil(t, deserialized, "Deserialized data should not be nil")
result := deserialized.(map[string]any)
// After deserialization, int values may be returned as int (platform-dependent)
// Check that the value is correct regardless of type
idValue := result["id"]
if idInt32, ok := idValue.(int32); ok {
assert.Equal(t, int32(123), idInt32)
} else if idInt, ok := idValue.(int); ok {
assert.Equal(t, 123, idInt)
} else {
t.Errorf("unexpected type for id: %T", idValue)
}
assert.Equal(t, "test", result["optional"])
assert.Equal(t, "ACTIVE", result["enumField"])
assert.Equal(t, []byte{1, 2, 3}, result["bytesField"])
}
func TestAvroMarshal_UnionLogicalTypeDateAcceptedShapes(t *testing.T) {
schema, err := avro.Parse(testDocumentLogicalDateSchemaJSON)
require.NoError(t, err)
// Direct int32 value is rejected by hamba/avro for this logical union shape.
_, err = avro.Marshal(schema, map[string]any{"documentValidTo": int32(20474)})
assert.Error(t, err)
// Wrapped using primitive type name is also rejected.
_, err = avro.Marshal(schema, map[string]any{"documentValidTo": map[string]any{"int": int32(20474)}})
assert.Error(t, err)
// Wrapped using logical union type discriminator works.
_, err = avro.Marshal(schema, map[string]any{"documentValidTo": map[string]any{"int.date": int32(20474)}})
assert.NoError(t, err)
}