-
Notifications
You must be signed in to change notification settings - Fork 31
/
marshaller_test.go
345 lines (307 loc) · 8.98 KB
/
marshaller_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
package mp4
import (
"bytes"
"testing"
"github.com/abema/go-mp4/internal/bitio"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestMarshal(t *testing.T) {
type inner struct {
Array [4]byte `mp4:"0,size=8,string"`
}
type testBox struct {
mockBox
FullBox `mp4:"0,extend"`
// integer
Int32 int32 `mp4:"1,size=32"`
Uint32 uint32 `mp4:"2,size=32"`
Int64 int64 `mp4:"3,size=64"`
Uint64 uint64 `mp4:"4,size=64"`
// left-justified
Int32l int32 `mp4:"5,size=29"`
Padding0 uint8 `mp4:"6,size=3,const=0"`
Uint32l uint32 `mp4:"7,size=29"`
Padding1 uint8 `mp4:"8,size=3,const=0"`
Int64l int64 `mp4:"9,size=59"`
Padding2 uint8 `mp4:"10,size=5,const=0"`
Uint64l uint64 `mp4:"11,size=59"`
Padding3 uint8 `mp4:"12,size=5,const=0"`
// right-justified
Padding4 uint8 `mp4:"13,size=3,const=0"`
Int32r int32 `mp4:"14,size=29"`
Padding5 uint8 `mp4:"15,size=3,const=0"`
Uint32r uint32 `mp4:"16,size=29"`
Padding6 uint8 `mp4:"17,size=5,const=0"`
Int64r int64 `mp4:"18,size=59"`
Padding7 uint8 `mp4:"19,size=5,const=0"`
Uint64r uint64 `mp4:"20,size=59"`
// varint
Varint uint16 `mp4:"21,varint"`
// string, slice, pointer, array
String string `mp4:"22,string"`
StringCP string `mp4:"23,string=c_p"`
Bytes []byte `mp4:"24,size=8,len=5"`
Uints []uint `mp4:"25,size=16,len=dynamic"`
Ptr *inner `mp4:"26,extend"`
// bool
Bool bool `mp4:"27,size=1"`
Padding8 uint8 `mp4:"28,size=7,const=0"`
// dynamic-size
DynUint uint `mp4:"29,size=dynamic"`
// optional
OptUint1 uint `mp4:"30,size=8,opt=0x0100"` // enabled
OptUint2 uint `mp4:"31,size=8,opt=0x0200"` // disabled
OptUint3 uint `mp4:"32,size=8,nopt=0x0400"` // disabled
OptUint4 uint `mp4:"33,size=8,nopt=0x0800"` // enabled
// not sorted
NotSorted35 uint8 `mp4:"35,size=8,dec"`
NotSorted36 uint8 `mp4:"36,size=8,dec"`
NotSorted34 uint8 `mp4:"34,size=8,dec"`
}
boxType := StrToBoxType("test")
mb := mockBox{
Type: boxType,
DynSizeMap: map[string]uint{
"DynUint": 24,
},
DynLenMap: map[string]uint{
"Uints": 5,
},
}
AddBoxDef(&testBox{mockBox: mb}, 0)
src := testBox{
mockBox: mb,
FullBox: FullBox{
Version: 0,
Flags: [3]byte{0x00, 0x05, 0x00},
},
Int32: -0x1234567,
Uint32: 0x1234567,
Int64: -0x123456789abcdef,
Uint64: 0x123456789abcdef,
Int32l: -0x123456,
Uint32l: 0x123456,
Int64l: -0x123456789abcd,
Uint64l: 0x123456789abcd,
Int32r: -0x123456,
Uint32r: 0x123456,
Int64r: -0x123456789abcd,
Uint64r: 0x123456789abcd,
// raw : 0x1234=0001,0010,0011,0100b
// varint: 0xa434=1010,0100,0011,0100b
Varint: 0x1234,
String: "abema.tv",
StringCP: "CyberAgent, Inc.",
Bytes: []byte("abema"),
Uints: []uint{0x01, 0x02, 0x03, 0x04, 0x05},
Ptr: &inner{
Array: [4]byte{'h', 'o', 'g', 'e'},
},
Bool: true,
DynUint: 0x123456,
OptUint1: 0x11,
OptUint4: 0x44,
NotSorted35: 35,
NotSorted36: 36,
NotSorted34: 34,
}
bin := []byte{
0, // version
0x00, 0x05, 0x00, // flags
0xfe, 0xdc, 0xba, 0x99, // int32
0x01, 0x23, 0x45, 0x67, // uint32
0xfe, 0xdc, 0xba, 0x98, 0x76, 0x54, 0x32, 0x11, // int64
0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef, // uint64
0xff, 0x6e, 0x5d, 0x50, // int32l & padding(3bits)
0x00, 0x91, 0xa2, 0xb0, // uint32l & padding(3bits)
0xff, 0xdb, 0x97, 0x53, 0x0e, 0xca, 0x86, 0x60, // int64l & padding(3bits)
0x00, 0x24, 0x68, 0xAC, 0xF1, 0x35, 0x79, 0xA0, // uint64l & padding(3bits)
0x1f, 0xed, 0xcb, 0xaa, // padding(5bits) & int32r
0x00, 0x12, 0x34, 0x56, // padding(5bits) & uint32r
0x07, 0xfe, 0xdc, 0xba, 0x98, 0x76, 0x54, 0x33, // padding(5bits) & int64r
0x00, 0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, // padding(5bits) & uint64r
0x80, 0x80, 0xa4, 0x34, // varint
'a', 'b', 'e', 'm', 'a', '.', 't', 'v', 0, // string
'C', 'y', 'b', 'e', 'r', 'A', 'g', 'e', 'n', 't', ',', ' ', 'I', 'n', 'c', '.', 0, // string
'a', 'b', 'e', 'm', 'a', // bytes
0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x04, 0x00, 0x05, // uints
'h', 'o', 'g', 'e', // inner.array
0x80, // bool & padding
0x12, 0x34, 0x56, // dynUint
0x11, // optUint1
0x44, // optUint4
34, 35, 36, // not sorted
}
// marshal
buf := &bytes.Buffer{}
n, err := Marshal(buf, &src, Context{})
require.NoError(t, err)
assert.Equal(t, uint64(len(bin)), n)
assert.Equal(t, bin, buf.Bytes())
// unmarshal
dst := testBox{mockBox: mb}
n, err = Unmarshal(bytes.NewReader(bin), uint64(len(bin)+8), &dst, Context{})
assert.NoError(t, err)
assert.Equal(t, uint64(len(bin)), n)
assert.Equal(t, src, dst)
}
func TestUnsupportedBoxVersionErr(t *testing.T) {
type testBox struct {
mockBox
FullBox `mp4:"0,extend"`
}
boxType := StrToBoxType("test")
mb := mockBox{
Type: boxType,
}
AddBoxDef(&testBox{mockBox: mb}, 0, 1, 2)
for _, e := range []struct {
version byte
enabled bool
}{
{version: 0, enabled: true},
{version: 1, enabled: true},
{version: 2, enabled: true},
{version: 3, enabled: false},
{version: 4, enabled: false},
} {
expected := testBox{
mockBox: mb,
FullBox: FullBox{
Version: e.version,
Flags: [3]byte{0x00, 0x00, 0x00},
},
}
bin := []byte{
e.version, // version
0x00, 0x00, 0x00, // flags
}
dst := testBox{mockBox: mb}
n, err := Unmarshal(bytes.NewReader(bin), uint64(len(bin)+8), &dst, Context{})
if e.enabled {
assert.NoError(t, err, "version=%d", e.version)
assert.Equal(t, uint64(len(bin)), n, "version=%d", e.version)
assert.Equal(t, expected, dst, "version=%d", e.version)
} else {
assert.Error(t, err, "version=%d", e.version)
}
}
}
func TestReadPString(t *testing.T) {
type testBox struct {
mockBox
Box
String string `mp4:"1,string"`
StringCP string `mp4:"2,string=c_p"`
Uint32 uint32 `mp4:"3,size=32"`
}
testCases := []struct {
name string
src []byte
isPString bool
wants string
}{
{
name: "c style string",
src: []byte{0x05, 'a', 'b', 'e', 'm', 'a'},
isPString: true,
wants: "abema",
}, {
name: "pascal style string",
src: []byte{'a', 'b', 'e', 'm', 'a', 0x00},
isPString: true,
wants: "abema",
}, {
name: "pascal style string isPString=true",
src: []byte{0x0a, 'a', 'b', 'e', 'm', 'a', '1', '2', '3', '4', '5'},
isPString: true,
wants: "abema12345",
}, {
name: "pascal style string isPString=false",
src: []byte{0x0a, 'a', 'b', 'e', 'm', 'a', '1', '2', '3', '4', '5', 0x00},
isPString: false,
wants: "\nabema12345",
},
}
for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
boxType := StrToBoxType("test")
mb := mockBox{
Type: boxType,
IsPStringMap: map[string]bool{"StringCP": tc.isPString},
}
AddBoxDef(&testBox{mockBox: mb}, 0)
src := append(append([]byte{
'h', 'e', 'l', 'l', 'o', 0x00,
}, tc.src...),
0x01, 0x23, 0x45, 0x67,
)
dst := testBox{mockBox: mb}
n, err := Unmarshal(bytes.NewReader(src), uint64(len(src)), &dst, Context{})
require.NoError(t, err)
assert.Equal(t, uint64(len(src)), n)
assert.Equal(t, "hello", dst.String)
assert.Equal(t, tc.wants, dst.StringCP)
assert.Equal(t, uint32(0x01234567), dst.Uint32)
})
}
}
func TestReadVarint(t *testing.T) {
testCases := []struct {
name string
input []byte
err bool
expected uint64
}{
{name: "0", input: []byte{0x0}, expected: 0},
{name: "1 byte", input: []byte{0x6c}, expected: 0x6c},
{name: "2 bytes", input: []byte{0xac, 0x52}, expected: 0x1652},
{name: "3 bytes", input: []byte{0xac, 0xd2, 0x43}, expected: 0xb2943},
{name: "overrun", input: []byte{0xac, 0xd2, 0xef}, err: true},
{name: "1 byte padded", input: []byte{0x80, 0x80, 0x80, 0x6c}, expected: 0x6c},
{name: "2 byte padded", input: []byte{0x80, 0x80, 0x81, 0x0c}, expected: 0x8c},
}
for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
u := &unmarshaller{
reader: bitio.NewReadSeeker(bytes.NewReader(tc.input)),
size: uint64(len(tc.input)),
}
val, err := u.readUvarint()
if tc.err {
require.Error(t, err)
return
}
if tc.err {
assert.Error(t, err)
}
require.NoError(t, err)
assert.Equal(t, tc.expected, val)
})
}
}
func TestWriteVarint(t *testing.T) {
testCases := []struct {
name string
input uint64
expected []byte
}{
{name: "0", input: 0x0, expected: []byte{0x80, 0x80, 0x80, 0x00}},
{name: "1 byte", input: 0x6c, expected: []byte{0x80, 0x80, 0x80, 0x6c}},
{name: "1 byte into 2 bytes", input: 0x8c, expected: []byte{0x80, 0x80, 0x81, 0x0c}},
{name: "2 bytes", input: 0x1652, expected: []byte{0x80, 0x80, 0xac, 0x52}},
{name: "3 bytes", input: 0xb2943, expected: []byte{0x80, 0xac, 0xd2, 0x43}},
}
for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
var b bytes.Buffer
m := &marshaller{
writer: bitio.NewWriter(&b),
}
err := m.writeUvarint(tc.input)
require.NoError(t, err)
assert.Equal(t, tc.expected, b.Bytes())
})
}
}