-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunmarshal_test.go
544 lines (402 loc) · 13.7 KB
/
unmarshal_test.go
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
package bytecodec
import (
"errors"
"testing"
"github.com/stretchr/testify/assert"
)
func TestUnmarshall(t *testing.T) {
t.Run("verifies that error is thrown on unsupported type", func(t *testing.T) {
type StructUnderTest struct {
One chan bool
}
var data []byte
instance := &StructUnderTest{}
err := Unmarshal(data, instance)
assert.Error(t, err)
assert.True(t, errors.Is(err, ErrUnsupportedType))
assert.Equal(t, "unsupported type: field 'One' of type 'chan'", err.Error())
})
t.Run("verify non pointers raise an error", func(t *testing.T) {
type StructUnderTest struct {
One uint8
}
actualStruct := StructUnderTest{}
err := Unmarshal([]byte{0x00}, actualStruct)
assert.Error(t, err)
})
t.Run("verify bool unmarshals", func(t *testing.T) {
type StructUnderTest struct {
One bool
}
expectedStruct := StructUnderTest{One: true}
data, _ := Marshal(expectedStruct)
actualStruct := StructUnderTest{}
err := Unmarshal(data, &actualStruct)
assert.NoError(t, err)
assert.Equal(t, expectedStruct, actualStruct)
})
t.Run("verify byte and uint8 unmarshals", func(t *testing.T) {
type StructUnderTest struct {
One byte
Two uint8
}
expectedStruct := StructUnderTest{One: 0x55, Two: 0xaa}
data, _ := Marshal(expectedStruct)
actualStruct := StructUnderTest{}
err := Unmarshal(data, &actualStruct)
assert.NoError(t, err)
assert.Equal(t, expectedStruct, actualStruct)
})
t.Run("verify uint16 LE is unmarshalled", func(t *testing.T) {
type StructUnderTest struct {
One uint16 `bcendian:"little"`
}
expectedStruct := StructUnderTest{One: 0x8001}
data, _ := Marshal(expectedStruct)
actualStruct := StructUnderTest{}
err := Unmarshal(data, &actualStruct)
assert.NoError(t, err)
assert.Equal(t, expectedStruct, actualStruct)
})
t.Run("verify uint16 BE is unmarshalled", func(t *testing.T) {
type StructUnderTest struct {
One uint16 `bcendian:"big"`
}
expectedStruct := StructUnderTest{One: 0x8001}
data, _ := Marshal(expectedStruct)
actualStruct := StructUnderTest{}
err := Unmarshal(data, &actualStruct)
assert.NoError(t, err)
assert.Equal(t, expectedStruct, actualStruct)
})
t.Run("verify uint32 LE is unmarshalled", func(t *testing.T) {
type StructUnderTest struct {
One uint32 `bcendian:"little"`
}
expectedStruct := StructUnderTest{One: 0x80010203}
data, _ := Marshal(expectedStruct)
actualStruct := StructUnderTest{}
err := Unmarshal(data, &actualStruct)
assert.NoError(t, err)
assert.Equal(t, expectedStruct, actualStruct)
})
t.Run("verify uint32 BE is unmarshalled", func(t *testing.T) {
type StructUnderTest struct {
One uint32 `bcendian:"big"`
}
expectedStruct := StructUnderTest{One: 0x80010203}
data, _ := Marshal(expectedStruct)
actualStruct := StructUnderTest{}
err := Unmarshal(data, &actualStruct)
assert.NoError(t, err)
assert.Equal(t, expectedStruct, actualStruct)
})
t.Run("verify uint64 LE is unmarshalled", func(t *testing.T) {
type StructUnderTest struct {
One uint64 `bcendian:"little"`
}
expectedStruct := StructUnderTest{One: 0x8001020304050607}
data, _ := Marshal(expectedStruct)
actualStruct := StructUnderTest{}
err := Unmarshal(data, &actualStruct)
assert.NoError(t, err)
assert.Equal(t, expectedStruct, actualStruct)
})
t.Run("verify uint64 BE is unmarshalled", func(t *testing.T) {
type StructUnderTest struct {
One uint64 `bcendian:"big"`
}
expectedStruct := StructUnderTest{One: 0x8001020304050607}
data, _ := Marshal(expectedStruct)
actualStruct := StructUnderTest{}
err := Unmarshal(data, &actualStruct)
assert.NoError(t, err)
assert.Equal(t, expectedStruct, actualStruct)
})
t.Run("verify nested struct is unmarshalled", func(t *testing.T) {
type StructUnderTest struct {
One uint8
Two struct {
Three uint8
}
}
expectedStruct := &StructUnderTest{One: 0x01, Two: struct{ Three uint8 }{Three: 0x03}}
data, _ := Marshal(expectedStruct)
actualStruct := &StructUnderTest{}
err := Unmarshal(data, actualStruct)
assert.NoError(t, err)
assert.Equal(t, expectedStruct, actualStruct)
})
t.Run("verify nested struct with unmarshalable type errors", func(t *testing.T) {
type StructUnderTest struct {
One uint8
Two struct {
Three chan bool
}
}
data := []byte{0x00, 0x01}
actualStruct := StructUnderTest{}
err := Unmarshal(data, &actualStruct)
assert.Error(t, err)
assert.True(t, errors.Is(err, ErrUnsupportedType))
assert.Equal(t, "unsupported type: field 'Three' of type 'chan'", err.Error())
})
t.Run("verify the unmarshal of non struct is little endian", func(t *testing.T) {
expectedStruct := uint32(0x80010203)
data, _ := Marshal(expectedStruct)
actualStruct := uint32(0)
err := Unmarshal(data, &actualStruct)
assert.NoError(t, err)
assert.Equal(t, expectedStruct, actualStruct)
})
t.Run("verify a slice of bytes unmarshals", func(t *testing.T) {
type StructUnderTest struct {
One []byte
}
expectedStruct := &StructUnderTest{One: []byte{0x55, 0xaa}}
data, _ := Marshal(expectedStruct)
actualStruct := &StructUnderTest{}
err := Unmarshal(data, actualStruct)
assert.NoError(t, err)
assert.Equal(t, expectedStruct, actualStruct)
})
t.Run("verify an array of bytes unmarshals", func(t *testing.T) {
type StructUnderTest struct {
One [2]byte
Two byte
}
expectedStruct := &StructUnderTest{One: [2]byte{0x55, 0xaa}, Two: 0x02}
data, _ := Marshal(expectedStruct)
actualStruct := &StructUnderTest{}
err := Unmarshal(data, actualStruct)
assert.NoError(t, err)
assert.Equal(t, expectedStruct, actualStruct)
})
t.Run("verify an array with unmarshalable type errors", func(t *testing.T) {
type StructUnderTest struct {
One [2]chan bool
}
instance := &StructUnderTest{}
var data []byte
err := Unmarshal(data, instance)
assert.Error(t, err)
assert.True(t, errors.Is(err, ErrUnsupportedType))
assert.Equal(t, "unsupported type: field 'array[0]' of type 'chan'", err.Error())
})
t.Run("verify a slice of uint16s obeys big endian annotation", func(t *testing.T) {
type StructUnderTest struct {
One []uint16 `bcendian:"big"`
}
expectedStruct := &StructUnderTest{One: []uint16{0x8001}}
data, _ := Marshal(expectedStruct)
actualStruct := &StructUnderTest{}
err := Unmarshal(data, actualStruct)
assert.NoError(t, err)
assert.Equal(t, expectedStruct, actualStruct)
})
t.Run("verify custom type definition unmarshals", func(t *testing.T) {
type NetworkAddress [8]byte
type StructUnderTest struct {
One NetworkAddress
}
expectedStruct := &StructUnderTest{One: NetworkAddress{0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07}}
data, _ := Marshal(expectedStruct)
actualStruct := &StructUnderTest{}
err := Unmarshal(data, actualStruct)
assert.NoError(t, err)
assert.Equal(t, expectedStruct, actualStruct)
})
t.Run("verify slices support implicit length annotations, uint8", func(t *testing.T) {
type StructUnderTest struct {
One []byte `bcsliceprefix:"8"`
}
expectedStruct := &StructUnderTest{One: []byte{0x55, 0xaa}}
data, _ := Marshal(expectedStruct)
actualStruct := &StructUnderTest{}
err := Unmarshal(data, actualStruct)
assert.NoError(t, err)
assert.Equal(t, expectedStruct, actualStruct)
})
t.Run("verify arrays support implicit length annotations, uint8", func(t *testing.T) {
type StructUnderTest struct {
One [2]byte `bcsliceprefix:"8"`
}
expectedStruct := &StructUnderTest{One: [2]byte{0x55, 0xaa}}
data, _ := Marshal(expectedStruct)
actualStruct := &StructUnderTest{}
err := Unmarshal(data, actualStruct)
assert.NoError(t, err)
assert.Equal(t, expectedStruct, actualStruct)
})
t.Run("verify slices support implicit length annotations, uint16, big endian", func(t *testing.T) {
type StructUnderTest struct {
One []byte `bcsliceprefix:"16,big"`
}
expectedStruct := &StructUnderTest{One: []byte{0x55, 0xaa}}
data, _ := Marshal(expectedStruct)
actualStruct := &StructUnderTest{}
err := Unmarshal(data, actualStruct)
assert.NoError(t, err)
assert.Equal(t, expectedStruct, actualStruct)
})
t.Run("verify slices support implicit length annotations, uint16, default little endian", func(t *testing.T) {
type StructUnderTest struct {
One []byte `bcsliceprefix:"16"`
}
expectedStruct := &StructUnderTest{One: []byte{0x55, 0xaa}}
data, _ := Marshal(expectedStruct)
actualStruct := &StructUnderTest{}
err := Unmarshal(data, actualStruct)
assert.NoError(t, err)
assert.Equal(t, expectedStruct, actualStruct)
})
t.Run("verify size uint8 prefixed string unmarshals", func(t *testing.T) {
type StructUnderTest struct {
One string
}
expectedStruct := &StructUnderTest{One: "abc"}
data, _ := Marshal(expectedStruct)
actualStruct := &StructUnderTest{}
err := Unmarshal(data, actualStruct)
assert.NoError(t, err)
assert.Equal(t, expectedStruct, actualStruct)
})
t.Run("verify size uint16 big endian prefixed string unmarshals", func(t *testing.T) {
type StructUnderTest struct {
One string `bcstringtype:"prefix,16,big"`
}
expectedStruct := &StructUnderTest{One: "abc"}
data, _ := Marshal(expectedStruct)
actualStruct := &StructUnderTest{}
err := Unmarshal(data, actualStruct)
assert.NoError(t, err)
assert.Equal(t, expectedStruct, actualStruct)
})
t.Run("verify null terminated string unmarshals", func(t *testing.T) {
type StructUnderTest struct {
One string `bcstringtype:"null"`
}
expectedStruct := &StructUnderTest{One: "abc"}
data, _ := Marshal(expectedStruct)
actualStruct := &StructUnderTest{}
err := Unmarshal(data, actualStruct)
assert.NoError(t, err)
assert.Equal(t, expectedStruct, actualStruct)
})
t.Run("verify null terminated string with padding unmarshals, skipping padding", func(t *testing.T) {
type StructUnderTest struct {
One string `bcstringtype:"null,8"`
Two byte
}
expectedStruct := &StructUnderTest{One: "abc", Two: 0x80}
data, _ := Marshal(expectedStruct)
actualStruct := &StructUnderTest{}
err := Unmarshal(data, actualStruct)
assert.NoError(t, err)
assert.Equal(t, expectedStruct, actualStruct)
})
t.Run("verify null terminated string with padding errors if null terminator could not be read", func(t *testing.T) {
type StructUnderTest struct {
One string `bcstringtype:"null,4"`
}
data := []byte{0x61, 0x62, 0x63, 0x64}
actualStruct := &StructUnderTest{}
err := Unmarshal(data, actualStruct)
assert.Error(t, err)
})
t.Run("verifies that unmarshalling struct with includeif is obeyed", func(t *testing.T) {
type StructUnderTest struct {
One bool
Two uint8 `bcincludeif:"One"`
Three uint8
}
inputStruct := &StructUnderTest{One: false, Two: 2, Three: 3}
expectedStruct := &StructUnderTest{One: false, Two: 0, Three: 3}
data, _ := Marshal(inputStruct)
actualStruct := &StructUnderTest{}
err := Unmarshal(data, actualStruct)
assert.NoError(t, err)
assert.Equal(t, expectedStruct, actualStruct)
})
t.Run("unmarshalling two 3 bit uints", func(t *testing.T) {
type StructUnderTest struct {
One uint8 `bcfieldwidth:"3"`
Two uint8 `bcfieldwidth:"3"`
}
expectedStruct := &StructUnderTest{One: 0b101, Two: 0b101}
data, _ := Marshal(expectedStruct)
actualStruct := &StructUnderTest{}
err := Unmarshal(data, actualStruct)
assert.NoError(t, err)
assert.Equal(t, expectedStruct, actualStruct)
})
t.Run("writing a multibyte integer which is not a standard size", func(t *testing.T) {
type StructUnderTest struct {
One uint32 `bcfieldwidth:"24"`
}
expectedStruct := &StructUnderTest{One: 0x00aabbcc}
data, _ := Marshal(expectedStruct)
actualStruct := &StructUnderTest{}
err := Unmarshal(data, actualStruct)
assert.NoError(t, err)
assert.Equal(t, expectedStruct, actualStruct)
})
t.Run("an error is thrown when a non byte aligned width over 8 bits is requested", func(t *testing.T) {
type StructUnderTest struct {
One uint8 `bcfieldwidth:"9"`
}
instance := &StructUnderTest{One: 0}
err := Unmarshal([]byte{}, instance)
assert.Error(t, err)
})
t.Run("two 1 bit bools and a 6 bit uint are read", func(t *testing.T) {
type StructUnderTest struct {
One bool `bcfieldwidth:"1"`
Two bool `bcfieldwidth:"1"`
Three uint8 `bcfieldwidth:"6"`
}
expectedStruct := &StructUnderTest{One: true, Two: true, Three: 0x2d}
data, _ := Marshal(expectedStruct)
actualStruct := &StructUnderTest{}
err := Unmarshal(data, actualStruct)
assert.NoError(t, err)
assert.Equal(t, expectedStruct, actualStruct)
})
t.Run("6 bit uint, array with 2 bit prefix are read", func(t *testing.T) {
type StructUnderTest struct {
One uint8 `bcfieldwidth:"6"`
Two []byte `bcsliceprefix:"2"`
}
expectedStruct := &StructUnderTest{One: 0x2d, Two: []byte{0x00, 0x01}}
data, _ := Marshal(expectedStruct)
actualStruct := &StructUnderTest{}
err := Unmarshal(data, actualStruct)
assert.NoError(t, err)
assert.Equal(t, expectedStruct, actualStruct)
})
t.Run("supports pointers which implement Unmarshaller interface", func(t *testing.T) {
type StructUnderTest struct {
One *CustomField
}
instance := &StructUnderTest{}
bytes := []byte{0x03, 'O', 'N', 'E'}
assert.Nil(t, instance.One)
err := Unmarshal(bytes, instance)
assert.NoError(t, err)
assert.NotNil(t, instance.One)
assert.Equal(t, uint8(1), instance.One.Value)
})
t.Run("supports pointers which implement Unmarshaller interface, context contains correct index", func(t *testing.T) {
type StructUnderTest struct {
Zero uint8
One *CustomFieldTwo
}
instance := &StructUnderTest{}
bytes := []byte{0x00, 0x04, 'Z', 'E', 'R', 'O'}
assert.Nil(t, instance.One)
err := Unmarshal(bytes, instance)
assert.NoError(t, err)
assert.NotNil(t, instance.One)
assert.Equal(t, uint8(1), instance.One.Value)
})
}