-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathreader_test.go
530 lines (442 loc) · 10.7 KB
/
reader_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
package bitstream
import (
"crypto/rand"
"errors"
"io"
"math/big"
"testing"
"github.com/stretchr/testify/assert"
)
func TestBitStream_NilData(t *testing.T) {
bs := NewReader(nil)
bit, err := bs.readBit()
if !errors.Is(err, io.EOF) {
t.Error("expecting end of file for nil read seeker")
}
if bit {
t.Error("expecting false bit value read from nil data source")
}
}
func TestBitStream_BitPosition(t *testing.T) {
bs := ReaderFromBytes(
0x01, 0x02, 0x03, 0x04,
0x01, 0x02, 0x03, 0x04,
)
tests := []struct {
bitsToRead int
expectedBytePosition int
expectedError error
}{
{3, 0, nil},
{3, 0, nil},
{2, 1, nil},
{8, 2, nil},
{8, 3, nil},
{64, 8, io.EOF},
}
for _, test := range tests {
res := bs.Next(test.bitsToRead).Bits()
if !errors.Is(res.Error, test.expectedError) {
t.Error(res.Error)
}
bytePosition := bs.Position()
if bytePosition != test.expectedBytePosition {
const fmtMsg = "read %v bits, expecting byte position %v, but got %v"
t.Errorf(fmtMsg, test.bitsToRead, test.expectedBytePosition, bytePosition)
}
}
}
func TestBitStream_OffsetBitPosition(t *testing.T) {
bs := ReaderFromBytes(
0x01, 0x02, 0x03, 0x04,
0x01, 0x02, 0x03, 0x04,
0x01, 0x02, 0x03, 0x04,
0x01, 0x02, 0x03, 0x04,
0x01, 0x02, 0x03, 0x04,
0x01, 0x02, 0x03, 0x04,
0x01, 0x02, 0x03, 0x04,
0x01, 0x02, 0x03, 0x04,
)
tests := []struct {
offset int
expect int
}{
{3, 3},
{-3, 0},
{-3, 0},
{9, 1},
{-2, 7},
}
for idx := range tests {
expected := tests[idx].expect
bs.OffsetBitPosition(tests[idx].offset)
if bs.bitPosition != expected {
t.Errorf("expected bit position to be %v, but got %v", expected, bs.bitPosition)
}
}
}
func TestBitStream_OffsetPosition(t *testing.T) {
bs := ReaderFromBytes(
0x01, 0x02, 0x03, 0x04,
0x01, 0x02, 0x03, 0x04,
0x01, 0x02, 0x03, 0x04,
0x01, 0x02, 0x03, 0x04,
0x01, 0x02, 0x03, 0x04,
0x01, 0x02, 0x03, 0x04,
0x01, 0x02, 0x03, 0x04,
0x01, 0x02, 0x03, 0x04,
)
tests := []struct {
offset int
expect int
}{
{3, 3},
{-3, 0},
{-3, 0},
{9, 9},
{2, 11},
}
for idx := range tests {
expected := tests[idx].expect
got := bs.OffsetPosition(tests[idx].offset)
if got != expected {
t.Errorf("expected bit position to be %v, but got %v", expected, got)
}
}
}
func TestBitStream_Position(t *testing.T) {
bytes := []byte{0, 0, 0, 0, 0, 0, 0, 0}
bs := ReaderFromBytes(bytes...)
tests := []struct {
set int
expect int
}{
{-1, 0},
{0, 0},
{1, 1},
{100, 100},
}
for _, test := range tests {
if bs.SetPosition(test.set).Position() != test.expect {
t.Errorf("set position to %v, expected %v but got %v", test.set, test.expect, bs.Position())
}
}
}
func TestBitStream_ReadBit(t *testing.T) {
bs := ReaderFromBytes(130)
tests := []struct {
expect bool
err error
}{
{false, nil},
{true, nil},
{false, nil},
{false, nil},
{false, nil},
{false, nil},
{false, nil},
{true, nil},
{false, nil},
}
for idx := range tests {
b, _ := bs.readBit()
expected := tests[idx].expect
if b != expected {
t.Errorf("expected bit at position %v to be %v, got %v", idx, expected, b)
}
}
if _, err := bs.readBit(); !errors.Is(err, io.EOF) {
t.Errorf("expected EOF error, got %v", err)
}
}
func TestBitStream_ReadBits(t *testing.T) {
bs := ReaderFromBytes(130)
tests := []struct {
numBitsToRead int
expectedError error
}{
{4, nil},
{1, nil},
{10, io.EOF},
}
for _, test := range tests {
b := bs.Next(test.numBitsToRead).Bits()
if !errors.Is(b.Error, test.expectedError) {
t.Error(b.Error)
}
if len(b.Bits) != test.numBitsToRead {
const fmtErr = "expected bits length of %v, got length %v"
t.Errorf(fmtErr, test.numBitsToRead, len(b.Bits))
}
}
}
func TestBitStream_SetBitPosition(t *testing.T) {
bs := ReaderFromBytes(128, 2)
tests := []struct {
bitPosition int
expected bool
}{
{7, true}, // starts at 7, reads bit and ends at 0 in next byte
{1, true}, // sets to 1, reads bit and ends at 2
{-1, true}, // goes back one byte to position 7 of first byte, ends in second byte
{-2, false}, // goes back to first byte, ends in first byte
{9, true}, // goes to second bit of second byte
}
for _, test := range tests {
v, err := bs.SetBitPosition(test.bitPosition).readBit()
if err != nil {
t.Error(err)
continue
}
if v != test.expected {
t.Errorf("expected bit at position %v to be %v, got %v", test.bitPosition, test.expected, v)
}
}
}
func TestBitStream_SetPosition(t *testing.T) {
bs := ReaderFromBytes(0, 0, 0, 0, 0, 0)
tests := []struct {
position int
expected int
}{
{-1, 0},
{0, 0},
{2, 2},
{7, 7},
}
for _, test := range tests {
v := bs.SetPosition(test.position).Position()
if v != test.expected {
const fmtErr = "expected to be at position %v after offsetting by %v, got %v"
t.Errorf(fmtErr, test.expected, test.position, v)
}
}
}
func TestBitStream_ReadByte_AsByte(t *testing.T) {
bs := ReaderFromBytes(
128, 1, 15, 204,
)
tests := []struct {
bitOffset int
expectedByte byte
}{
{24, 0b_1100_1100}, // the 4th byte
{22, 0b_0011_0000}, // two MSB's of 3rd byte, six LSB's of 4th
{23, 0b_1001_1000}, // one MSB of 3rd byte, seven LSB's of 4th
{4, 0b_0001_1000}, // 4 MSB's of 1st byte, 4 LSB's of 2nd
}
for _, test := range tests {
// set byte posiiton to 0
bs.SetPosition(0)
// offset n bits from 0.
// going past 7 offsets the current byte
bs.SetBitPosition(test.bitOffset)
val, err := bs.Next(1).Bytes().AsByte()
if err != nil {
t.Error(err)
}
if val != test.expectedByte {
const fmtErr = "expected bits as byte %v, but got %v"
t.Errorf(fmtErr, test.expectedByte, val)
}
}
}
func BenchmarkBitStream_ReadBits(b *testing.B) {
bytes := make([]byte, 1024)
if _, err := rand.Read(bytes); err != nil {
b.Error(err)
}
bs := ReaderFromBytes(bytes...)
b.Run("readbit", func(b *testing.B) {
for i := 0; i < b.N; i++ {
_, _ = bs.SetPosition(0).SetBitPosition(0).readBit()
}
})
b.Run("1bit reads", func(b *testing.B) {
readbits(b, bs, 1)
})
b.Run("8bit reads", func(b *testing.B) {
readbits(b, bs, 8)
})
b.Run("16bit reads", func(b *testing.B) {
readbits(b, bs, 16)
})
b.Run("32bit reads", func(b *testing.B) {
readbits(b, bs, 32)
})
b.Run("64bit reads", func(b *testing.B) {
readbits(b, bs, 32)
})
bs = NewReader(nil)
b.Run("8bit reads (from nil stream)", func(b *testing.B) {
readbits(b, bs, 8)
})
b.Run("16bit reads (from nil stream)", func(b *testing.B) {
readbits(b, bs, 16)
})
b.Run("32bit reads (from nil stream)", func(b *testing.B) {
readbits(b, bs, 32)
})
b.Run("64bit reads (from nil stream)", func(b *testing.B) {
readbits(b, bs, 32)
})
}
func readbits(b *testing.B, bs *Reader, numBits int) {
for i := 0; i < b.N; i++ {
bs.SetPosition(0)
bs.SetBitPosition(0)
numBitsToRead, err := rand.Int(rand.Reader, big.NewInt(int64(numBits)))
if err != nil {
b.Error(err)
}
_ = bs.Next(int(numBitsToRead.Int64())).Bits()
}
}
func TestFromBytes(t *testing.T) {
s := ReaderFromBytes(0, 32)
s.OffsetBitPosition(12) // second byte, will read from 5th LSB next
val, err := s.Next(2).Bits().AsByte()
if err != nil {
t.Error("Reading bits returned End Of File")
}
assert.Equal(t, byte(2), val, "unexpected value returned")
}
func TestBitstream_Copy(t *testing.T) {
original := ReaderFromBytes(
0b_0000_0000,
0b_0000_0001,
0b_0000_0010,
0b_1111_0011,
0b_0000_0100,
)
_ = original.Next(8).Bits() // skip
position, bitPosition := original.Position(), original.BitPosition()
s := original.Copy()
b1, err := s.Next(1).Bytes().AsUInt()
if err != nil {
t.Error(err)
}
assert.Equal(t, original.Position(), position, "position of original stream after copy is changed")
assert.Equal(t, original.BitPosition(), bitPosition, "bit position of original stream after copy is changed")
assert.Equal(t, uint(1), b1, "unexpected value returned")
assert.Equal(t, 8, s.BitsRead(), "unexpected value returned")
s = s.Copy()
b2, err := s.Next(12).Bits().AsUInt()
if err != nil {
t.Error(err)
}
assert.Equal(t, uint(0b_0011_0000_0010), b2, "unexpected value returned")
assert.Equal(t, 12, s.BitsRead(), "unexpected value returned")
s = s.Copy()
b3, err := s.Next(1).Bytes().AsUInt()
if err != nil {
t.Error(err)
}
assert.Equal(t, uint(0b_0100_1111), b3, "unexpected value returned")
assert.Equal(t, 8, s.BitsRead(), "unexpected value returned")
s = s.Copy()
b4, err := s.Next(1).Bytes().AsUInt()
if err == nil {
t.Error("expecting End Of File")
}
assert.Equal(t, uint(0), b4, "unexpected value returned")
assert.Equal(t, 4, s.BitsRead(), "unexpected value returned")
s = s.Copy()
s.OffsetBitPosition(-12)
b5, err := s.Next(7).Bits().AsUInt()
if err != nil {
t.Error(err)
}
assert.Equal(t, uint(0b_0100_1111), b5, "unexpected value returned")
assert.Equal(t, 7, s.BitsRead(), "unexpected value returned")
}
// Reader is supposed to replace Bitmuncher, this was a test to ensure they worked the same.
// func TestAgainstBitmuncher(t *testing.T) {
// rand.Seed(time.Now().UnixNano())
//
// b := make([]byte, rand.Intn(1024*1024))
//
// for idx := range b {
// b[idx] = byte(rand.Int())
// }
//
// bm := d2datautils.CreateBitMuncher(b, 0)
// bs := ReaderFromBytes(b...)
//
// funcMap := []func() error {
// func() error {
// b1 := bm.GetBit()
// b2, _ := bs.Next(1).Bits().AsUInt32()
//
// if b1 != b2 {
// return errors.NewReader("bits dont match")
// }
//
// return nil
// },
// func() error {
// b1 := bm.GetByte()
// b2, _ := bs.Next(1).Bytes().AsByte()
//
// if bm.Offset() + 1 >= len(b) {
// return nil
// }
//
// if b1 != b2 {
// return fmt.Errorf("bytes dont match: %v != %v", b1, b2)
// }
//
// return nil
// },
// func() error {
// if bm.Offset() + 3 >= len(b) {
// return nil
// }
//
// b1 := bm.GetBits(12)
// b2, _ := bs.Next(12).Bits().AsUInt32()
//
// if b1 != b2 {
// return fmt.Errorf("12 bits as uint32 dont match: %v != %v", b1, b2)
// }
//
// return nil
// },
// func() error {
// bm = bm.Copy()
// bs = bs.Copy()
//
// if bm.BitsRead() != bs.BitsRead() {
// return fmt.Errorf("tally of bits read not equal: %v != %v", bm.BitsRead(), bs.BitsRead())
// }
//
// absoluteBitOffset := (bs.Position() * 8) + bs.BitPosition()
// if bm.Offset() != absoluteBitOffset {
// return fmt.Errorf("absolute bit position not equal: %v != %v", bm.Offset(), absoluteBitOffset)
// }
//
// return nil
// },
// func() error {
// return nil
// },
// func() error {
// return nil
// },
// }
//
// numBits := len(b) * 8
// for numBits > 8 {
// randIdx := rand.Intn(len(funcMap))
// if err := funcMap[randIdx](); err != nil {
// t.Error(err)
// break
// }
//
// if bm.Offset() >= len(b) - 1 {
// break
// }
//
// numBits--
// }
// }