-
Notifications
You must be signed in to change notification settings - Fork 119
Expand file tree
/
Copy pathreader_test.go
More file actions
205 lines (168 loc) · 5.07 KB
/
Copy pathreader_test.go
File metadata and controls
205 lines (168 loc) · 5.07 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
package manta
import (
"math/rand"
"testing"
"github.com/stretchr/testify/assert"
)
// Tests that we properly parse the beginning of a replay.
func TestReaderReplayBeginning(t *testing.T) {
assert := assert.New(t)
// Buffer represents the first bytes in a sample replay
buf := []byte{
// Null terminated PBDEMS2 string
0x50, 0x42, 0x44, 0x45, 0x4D, 0x53, 0x32, 0x00,
// Unknown int32
0xEC, 0x61, 0xC2, 0x02,
// Unknown int32
0x73, 0x5B, 0xC2, 0x02,
// First packet begins
// Varint message type (1 = EDemoCommands_DEM_FileHeader)
0x01,
// Varint message tick (4294967295 = before the first tick)
0xFF, 0xFF, 0xFF, 0xFF, 0x0F,
// Varint buffer size (140)
0x8C, 0x01,
}
r := newReader(buf)
// Null terminated PBDEMS2 string
assert.Equal(magicSource2, r.readBytes(8))
assert.Equal(uint32(8), r.pos)
// Unknown int32
assert.Equal(uint32(46293484), r.readLeUint32())
assert.Equal(uint32(12), r.pos)
// Unknown int32
assert.Equal(uint32(46291827), r.readLeUint32())
assert.Equal(uint32(16), r.pos)
// First packet begins
// Varint message type (1 = EDemoCommands_DEM_FileHeader)
assert.Equal(uint32(1), r.readVarUint32())
assert.Equal(uint32(17), r.pos)
// Varint message tick (4294967295 = before the first tick)
assert.Equal(uint32(4294967295), r.readVarUint32())
assert.Equal(uint32(22), r.pos)
// Varint message size (140)
assert.Equal(uint32(140), r.readVarUint32())
assert.Equal(uint32(24), r.pos)
}
func TestReaderVarints(t *testing.T) {
assert := assert.New(t)
r := newReader([]byte{0x01, 0xFF, 0xFF, 0xFF, 0xFF, 0x0F, 0x8C, 0x01})
// Ensure that readVarUint32 works as expected
assert.Equal(uint32(1), r.readVarUint32())
assert.Equal(uint32(4294967295), r.readVarUint32())
assert.Equal(uint32(140), r.readVarUint32())
r.pos = 0
assert.Equal(uint32(1), r.readVarUint32())
assert.Equal(int32(-2147483648), r.readVarInt32())
r.pos = 0
// Ensure that readVarUint64 works as expected
assert.Equal(uint64(1), r.readVarUint64())
assert.Equal(uint64(4294967295), r.readVarUint64())
assert.Equal(uint64(140), r.readVarUint64())
}
func TestReaderStrings(t *testing.T) {
assert := assert.New(t)
r := newReader([]byte{'P', 'B', 'D', 'E', 'M', 'S', '2', 0x0, 'E', 'X', 'T', 'R', 'A', 0x0})
assert.Equal("PBDEMS2", r.readStringN(7))
r.pos = 0
assert.Equal("PBDEMS2", r.readString())
assert.Equal("EXTRA", r.readString())
}
func TestReaderUnaligned(t *testing.T) {
assert := assert.New(t)
r := newReader([]byte{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff})
assert.Equal(uint32(0x7f), r.readBits(7))
assert.Equal(uint32(0xff), r.readBits(8))
assert.Equal(uint32(0xffff), r.readBits(16))
assert.Equal(uint32(0xffffffff), r.readBits(32))
assert.Equal(uint32(0x01), r.readBits(1))
}
// TestReaderReadBytesZeroCopy guards the invariant that a byte-aligned readBytes
// returns a slice aliasing the underlying buffer rather than a copy. Callers such
// as CDemoPacket pendingMessage parsing and sendtables rely on this aliasing, and
// the word-at-a-time reader must preserve it (via realign) even when it has
// buffered bytes ahead in the accumulator.
func TestReaderReadBytesZeroCopy(t *testing.T) {
buf := make([]byte, 32)
for i := range buf {
buf[i] = byte(i + 1)
}
// Aligned read at the start of the buffer (bitCount == 0).
r := newReader(buf)
got := r.readBytes(4)
idx := r.pos - 4
buf[idx] ^= 0xFF
if got[0] != buf[idx] {
t.Fatalf("aligned readBytes returned a copy, not a zero-copy alias")
}
// A bit read first buffers a whole word ahead; the following byte-aligned
// readBytes must realign and still alias the buffer (bitCount a non-zero
// multiple of 8).
for i := range buf {
buf[i] = byte(i + 1)
}
r = newReader(buf)
_ = r.readBits(8)
if r.bitCount == 0 || r.bitCount%8 != 0 {
t.Fatalf("expected non-zero byte alignment after readBits(8), bitCount=%d", r.bitCount)
}
got = r.readBytes(4)
idx = r.pos - 4
buf[idx] ^= 0xFF
if got[0] != buf[idx] {
t.Fatalf("realigned readBytes returned a copy, not a zero-copy alias")
}
}
func BenchmarkReadVarUint32(b *testing.B) {
r := newReader([]byte{0x01, 0xFF, 0xFF, 0xFF, 0xFF, 0x0F, 0x8C, 0x01})
b.ResetTimer()
for n := 0; n < b.N; n++ {
r.readVarUint32()
r.readVarUint32()
r.readVarUint32()
r.pos = 0
}
b.ReportAllocs()
}
func BenchmarkReadVarUint64(b *testing.B) {
r := newReader([]byte{0x01, 0xFF, 0xFF, 0xFF, 0xFF, 0x0F, 0x8C, 0x01})
b.ResetTimer()
for n := 0; n < b.N; n++ {
r.readVarUint64()
r.readVarUint64()
r.readVarUint64()
r.pos = 0
}
b.ReportAllocs()
}
func BenchmarkReadBytesAligned(b *testing.B) {
r := newReader(makeBuffer(1024))
b.ResetTimer()
for n := 0; n < b.N; n++ {
r.readBytes(2)
rewindBytes(r, 2)
}
b.ReportAllocs()
}
func BenchmarkReadBytesUnaligned(b *testing.B) {
r := newReader(makeBuffer(1024))
r.readBits(6)
b.ResetTimer()
for n := 0; n < b.N; n++ {
r.readBytes(2)
rewindBytes(r, 2)
}
b.ReportAllocs()
}
func makeBuffer(n int) []byte {
buf := make([]byte, n)
for i := 0; i < n; i++ {
buf[i] = byte(rand.Intn(255))
}
return buf
}
func rewindBytes(r *reader, n uint32) {
r.pos -= n
r.bitCount = 0
r.bitVal = 0
}