-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelpers_test.go
305 lines (278 loc) · 7.68 KB
/
helpers_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
package lexy_test
// This file contains things that help in writing Codec tests.
// There are no top-level tests here, but the bulk of
// the Codec-testing code is in testerCodec's methods.
import (
"reflect"
"testing"
"github.com/phiryll/lexy"
"github.com/stretchr/testify/assert"
)
// Just to make the test cases terser.
const (
term byte = lexy.TestingTerminator
esc byte = lexy.TestingEscape
pNilFirst byte = lexy.TestingPrefixNilFirst
pNonNil byte = lexy.TestingPrefixNonNil
pNilLast byte = lexy.TestingPrefixNilLast
)
func ptr[T any](value T) *T {
return &value
}
func concat(slices ...[]byte) []byte {
var result []byte
for _, s := range slices {
result = append(result, s...)
}
return result
}
//nolint:nakedret,nonamedreturns
func getPanicMessage(f func()) (msg string) {
defer func() {
if r := recover(); r != nil {
if err, ok := r.(error); ok {
msg = err.Error()
return
}
panic(r)
}
panic("should have panicked")
}()
f()
return
}
type testCase[T any] struct {
name string
value T
data []byte
}
// Returns new test cases with each testCase.data set to codec.Append(nil, testCase.value).
// This is useful when the encoded value is difficult to calculate by hand.
func fillTestData[T any](codec lexy.Codec[T], tests []testCase[T]) []testCase[T] {
newTests := make([]testCase[T], len(tests))
for i, tt := range tests {
test := tt
test.data = codec.Append(nil, tt.value)
newTests[i] = test
}
return newTests
}
// testCodec tests:
//
// Append
// - Append(testCase.value) == testCase.data
// - does not modify the buffer's existing data
// Put
// - Put(testCase.value) == testCase.data
// - byte count return value == len(testCase.data)
// - does not modify the buffer's existing data beyond the value written
// - panics when the buffer is 1 byte too short
// Get
// - Get(testCase.data) == testCase.value
// - byte count return value == len(testCase.data)
// - does not modify the buffer
// - Get(testCase.data[:size-1]) either
// - panics
// - OR if expected value is non-zero, returns the wrong value
// - AND byte count return value == size-1
func testCodec[T any](t *testing.T, codec lexy.Codec[T], tests []testCase[T]) {
testerCodec[T]{codec, true}.test(t, tests)
}
// testVaryingCodec tests Codecs whose encodings may vary for the same input.
// Maps are the only current use case, because of their random iteration order.
//
// This performs all of the same tests as testCodec, except it doesn't use testCase.data.
// Instead, it tests each of the outputs of Append/Put as inputs to Get, all combinations.
// It also tests that different ways of invoking Append/Put always output the same number of bytes.
func testVaryingCodec[T any](t *testing.T, codec lexy.Codec[T], tests []testCase[T]) {
testerCodec[T]{codec, false}.test(t, tests)
}
// A testing wrapper for Codec that deals only in []buf at the API level.
type testerCodec[T any] struct {
codec lexy.Codec[T]
isConsistent bool
}
// The output of one Append/Put method.
type output struct {
name string
buf []byte
}
func (c testerCodec[T]) test(t *testing.T, tests []testCase[T]) {
c.getEmpty(t)
for _, tt := range tests {
tt := tt
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
t.Logf("Test case: %v", tt)
c.putShortBuf(t, tt)
// Test Append/Put
outputs := append([]output{},
c.appendNil(t, tt),
c.appendExisting(t, tt),
c.put(t, tt),
c.putLongBuf(t, tt))
t.Logf("Outputs: %v", outputs)
// Test Get
if c.isConsistent {
c.get(t, tt, tt.data)
c.getShortBuf(t, tt, tt.data)
} else {
for _, out := range outputs {
out := out
t.Run("round trip: "+out.name+" to", func(t *testing.T) {
t.Parallel()
c.get(t, tt, out.buf)
c.getShortBuf(t, tt, out.buf)
})
}
}
})
}
}
//nolint:revive
func (c testerCodec[T]) getEmpty(t *testing.T) {
t.Run("get empty", func(t *testing.T) {
var zero T
if len(c.codec.Append([]byte{}, zero)) == 0 {
return
}
assert.Panics(t, func() {
c.codec.Get([]byte{})
})
})
}
func (c testerCodec[T]) appendNil(t *testing.T, tt testCase[T]) output {
var buf []byte
t.Run("append nil", func(t *testing.T) {
buf = c.codec.Append(nil, tt.value)
if buf == nil {
buf = []byte{}
}
if c.isConsistent {
assert.Equal(t, tt.data, buf)
}
})
return output{"append nil", buf}
}
func (c testerCodec[T]) appendExisting(t *testing.T, tt testCase[T]) output {
var buf []byte
t.Run("append existing", func(t *testing.T) {
header := []byte{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
buf = append(buf, header...)
buf = c.codec.Append(buf, tt.value)
assert.Equal(t, header, buf[:len(header)])
buf = buf[len(header):]
if c.isConsistent {
assert.Equal(t, tt.data, buf)
} else {
size := len(c.codec.Append(nil, tt.value))
assert.Len(t, buf, size)
}
})
return output{"append existing", buf}
}
func (c testerCodec[T]) put(t *testing.T, tt testCase[T]) output {
var buf []byte
t.Run("put", func(t *testing.T) {
size := len(c.codec.Append(nil, tt.value))
buf = make([]byte, size)
bufAfter := c.codec.Put(buf, tt.value)
assert.Empty(t, bufAfter)
if c.isConsistent {
assert.Equal(t, tt.data, buf)
}
})
return output{"put", buf}
}
func (c testerCodec[T]) putLongBuf(t *testing.T, tt testCase[T]) output {
var buf []byte
t.Run("put long buf", func(t *testing.T) {
size := len(c.codec.Append(nil, tt.value))
buf = make([]byte, size+10)
for i := range buf {
buf[i] = 37
}
bufAfter := c.codec.Put(buf, tt.value)
putSize := len(buf) - len(bufAfter)
assert.Equal(t, size, putSize)
for i := range buf[size:] {
k := size + i
assert.Equal(t, byte(37), buf[k], "buf[%d] = %d written to buffer", k, buf[k])
}
buf = buf[:size]
if c.isConsistent {
assert.Equal(t, tt.data, buf)
}
})
return output{"put long buf", buf}
}
func (c testerCodec[T]) putShortBuf(t *testing.T, tt testCase[T]) {
t.Run("put short buf", func(t *testing.T) {
size := len(c.codec.Append(nil, tt.value))
if size == 0 {
return
}
buf := make([]byte, size+2000)
assert.Panics(t, func() {
c.codec.Put(buf[:size-1], tt.value)
})
})
}
func (c testerCodec[T]) get(t *testing.T, tt testCase[T], buf []byte) {
workingBuf := append([]byte{}, buf...)
t.Run("get", func(t *testing.T) {
got, gotBuf := c.codec.Get(workingBuf)
// Only empty because that's how these tests are set up.
assert.Empty(t, len(gotBuf))
assert.IsType(t, tt.value, got)
assert.Equal(t, tt.value, got)
assert.Equal(t, buf, workingBuf)
})
}
//nolint:revive
func (c testerCodec[T]) getShortBuf(t *testing.T, tt testCase[T], buf []byte) {
workingBuf := append([]byte{}, buf...)
t.Run("get short buf", func(t *testing.T) {
size := len(buf)
if size <= 1 {
// shortening 1 to 0 results in a special case
return
}
// Should either panic, or read one fewer byte and get the wrong value back.
var got T
var gotBuf []byte
//nolint:nakedret,nonamedreturns
panicked := func() (panicked bool) {
panicked = false
defer func() {
if r := recover(); r != nil {
panicked = true
}
}()
got, gotBuf = c.codec.Get(workingBuf[:size-1])
return
}()
if !panicked {
assert.Empty(t, gotBuf, "got wrong amount of data")
assert.IsType(t, tt.value, got)
if !reflect.ValueOf(tt.value).IsZero() { // both might be randomly zero
assert.NotEqual(t, tt.value, got, "got value without full data")
}
}
assert.Equal(t, buf, workingBuf)
})
}
func testOrdering[T any](t *testing.T, codec lexy.Codec[T], tests []testCase[T]) {
tests = fillTestData(codec, tests)
for i := range tests {
if i == 0 {
continue
}
a := tests[i-1]
b := tests[i]
t.Run(a.name+" < "+b.name, func(t *testing.T) {
t.Parallel()
assert.Less(t, a.data, b.data)
})
}
}