-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcodec_test.go
More file actions
285 lines (238 loc) · 7.46 KB
/
codec_test.go
File metadata and controls
285 lines (238 loc) · 7.46 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
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
package crema
import (
"bytes"
"errors"
"strconv"
"strings"
"sync"
"testing"
)
func TestJSONByteStringCodec_RoundTrip(t *testing.T) {
t.Parallel()
codec := JSONByteStringCodec[int]{}
input := &CacheObject[int]{
Value: 10,
ExpireAtMillis: 1234,
}
encoded, err := codec.Encode(*input)
if err != nil {
t.Fatalf("expected encode to succeed, got %v", err)
}
if bytes.HasSuffix(encoded, []byte("\n")) {
t.Fatalf("expected encoded JSON to not include trailing newline")
}
decoded, err := codec.Decode(encoded)
if err != nil {
t.Fatalf("expected decode to succeed, got %v", err)
}
if decoded != *input {
t.Fatalf("expected decoded value %+v, got %+v", *input, decoded)
}
}
func TestJSONByteStringCodec_DecodeError(t *testing.T) {
t.Parallel()
codec := JSONByteStringCodec[int]{}
if _, err := codec.Decode([]byte("{")); err == nil {
t.Fatal("expected decode error, got nil")
}
}
func TestJSONByteStringCodec_EncodeError(t *testing.T) {
t.Parallel()
codec := JSONByteStringCodec[func()]{}
input := &CacheObject[func()]{
Value: func() {},
ExpireAtMillis: 1234,
}
_, err := codec.Encode(*input)
if err == nil {
t.Fatal("expected encode error, got nil")
}
}
type binaryCompressionTestCodec struct{}
func (binaryCompressionTestCodec) Encode(value CacheObject[string]) ([]byte, error) {
return []byte(value.Value + "|" + strconv.FormatInt(value.ExpireAtMillis, 10)), nil
}
func (binaryCompressionTestCodec) Decode(data []byte) (CacheObject[string], error) {
parts := strings.SplitN(string(data), "|", 2)
if len(parts) != 2 {
return CacheObject[string]{}, errors.New("invalid payload")
}
expireAtMillis, err := strconv.ParseInt(parts[1], 10, 64)
if err != nil {
return CacheObject[string]{}, err
}
return CacheObject[string]{
Value: parts[0],
ExpireAtMillis: expireAtMillis,
}, nil
}
type emptyPayloadCodec struct{}
func (emptyPayloadCodec) Encode(value CacheObject[struct{}]) ([]byte, error) {
return []byte{}, nil
}
func (emptyPayloadCodec) Decode(data []byte) (CacheObject[struct{}], error) {
if len(data) != 0 {
return CacheObject[struct{}]{}, errors.New("expected empty payload")
}
return CacheObject[struct{}]{}, nil
}
func TestBinaryCompressionCodec_RoundTripCompressed(t *testing.T) {
t.Parallel()
codec := NewBinaryCompressionCodec(binaryCompressionTestCodec{}, 0)
input := CacheObject[string]{
Value: "hello",
ExpireAtMillis: 1234,
}
encoded, err := codec.Encode(input)
if err != nil {
t.Fatalf("expected encode to succeed, got %v", err)
}
if encoded[0] != CompressionTypeIDZlib {
t.Fatalf("expected zlib compression prefix, got %v", encoded[0])
}
decoded, err := codec.Decode(encoded)
if err != nil {
t.Fatalf("expected decode to succeed, got %v", err)
}
if decoded != input {
t.Fatalf("expected decoded value %+v, got %+v", input, decoded)
}
}
func TestBinaryCompressionCodec_RoundTripUncompressedUnderThreshold(t *testing.T) {
t.Parallel()
inner := binaryCompressionTestCodec{}
input := CacheObject[string]{
Value: "hi",
ExpireAtMillis: 5678,
}
innerBuf, err := inner.Encode(input)
if err != nil {
t.Fatalf("expected inner encode to succeed, got %v", err)
}
codec := NewBinaryCompressionCodec(inner, len(innerBuf)+1)
encoded, err := codec.Encode(input)
if err != nil {
t.Fatalf("expected encode to succeed, got %v", err)
}
if encoded[0] != CompressionTypeIDNone {
t.Fatalf("expected no compression prefix, got %v", encoded[0])
}
decoded, err := codec.Decode(encoded)
if err != nil {
t.Fatalf("expected decode to succeed, got %v", err)
}
if decoded != input {
t.Fatalf("expected decoded value %+v, got %+v", input, decoded)
}
}
func TestBinaryCompressionCodec_ZeroLengthInput(t *testing.T) {
t.Parallel()
codec := NewBinaryCompressionCodec(binaryCompressionTestCodec{}, 1)
if _, err := codec.Decode(nil); !errors.Is(err, ErrDecompressZeroLengthData) {
t.Fatalf("expected zero-length error, got %v", err)
}
}
func TestBinaryCompressionCodec_ZeroLengthPayload(t *testing.T) {
t.Parallel()
codec := NewBinaryCompressionCodec(emptyPayloadCodec{}, 1)
input := CacheObject[struct{}]{}
encoded, err := codec.Encode(input)
if err != nil {
t.Fatalf("expected encode to succeed, got %v", err)
}
if len(encoded) != 1 || encoded[0] != CompressionTypeIDNone {
t.Fatalf("expected no compression with empty payload, got %v", encoded)
}
decoded, err := codec.Decode(encoded)
if err != nil {
t.Fatalf("expected decode to succeed, got %v", err)
}
if decoded != input {
t.Fatalf("expected decoded value %+v, got %+v", input, decoded)
}
}
func TestBinaryCompressionCodec_DecodeCorruptedPayload(t *testing.T) {
t.Parallel()
codec := NewBinaryCompressionCodec(binaryCompressionTestCodec{}, 1)
if _, err := codec.Decode([]byte{CompressionTypeIDZlib, 0x00, 0x01}); err == nil {
t.Fatal("expected decode error for corrupted payload, got nil")
}
}
func TestBinaryCompressionCodec_UnsupportedCompressionType(t *testing.T) {
t.Parallel()
codec := NewBinaryCompressionCodec(binaryCompressionTestCodec{}, 1)
if _, err := codec.Decode([]byte{0xff, 0x00}); err == nil {
t.Fatal("expected decode error for unsupported compression type, got nil")
}
}
type bufferReleasePolicyCodec struct {
binaryCompressionTestCodec
canRelease bool
}
func (b bufferReleasePolicyCodec) CanReleaseBufferOnDecode() bool {
return b.canRelease
}
func TestBinaryCompressionCodec_CanReleaseBufferOnDecode(t *testing.T) {
t.Parallel()
codec := NewBinaryCompressionCodec(binaryCompressionTestCodec{}, 1)
binaryCodec, ok := any(codec).(*binaryCompressionCodec[string])
if !ok {
t.Fatalf("expected binary compression codec, got %T", codec)
}
if binaryCodec.canReleaseBufferOnDecode {
t.Fatal("expected canReleaseBufferOnDecode to be false by default")
}
withPolicy := NewBinaryCompressionCodec(bufferReleasePolicyCodec{canRelease: true}, 1)
binaryWithPolicy, ok := any(withPolicy).(*binaryCompressionCodec[string])
if !ok {
t.Fatalf("expected binary compression codec, got %T", withPolicy)
}
if !binaryWithPolicy.canReleaseBufferOnDecode {
t.Fatal("expected canReleaseBufferOnDecode to be true with policy")
}
}
type bufferCheckingCodec struct {
buf *bytes.Buffer
sawSameBacking bool
}
func (b *bufferCheckingCodec) Encode(value CacheObject[[]byte]) ([]byte, error) {
return value.Value, nil
}
func (b *bufferCheckingCodec) Decode(data []byte) (CacheObject[[]byte], error) {
if len(data) == 0 || len(b.buf.Bytes()) == 0 {
return CacheObject[[]byte]{}, errors.New("empty payload")
}
if &data[0] == &b.buf.Bytes()[0] {
b.sawSameBacking = true
}
return CacheObject[[]byte]{Value: append([]byte(nil), data...)}, nil
}
func (b *bufferCheckingCodec) CanReleaseBufferOnDecode() bool {
return true
}
func TestBinaryCompressionCodec_CanReleaseBufferOnDecodeTrueUsesBuffer(t *testing.T) {
t.Parallel()
pooled := bytes.NewBuffer(nil)
inner := &bufferCheckingCodec{buf: pooled}
codec := &binaryCompressionCodec[[]byte]{
inner: inner,
compressThresholdBytes: 0,
bufPool: sync.Pool{
New: func() any {
return pooled
},
},
canReleaseBufferOnDecode: true,
}
compressBuf := bytes.NewBuffer(nil)
if err := compressZlib(compressBuf, []byte("hello")); err != nil {
t.Fatalf("compressZlib() error = %v", err)
}
data := append([]byte{CompressionTypeIDZlib}, compressBuf.Bytes()...)
if _, err := codec.Decode(data); err != nil {
t.Fatalf("Decode() error = %v", err)
}
if !inner.sawSameBacking {
t.Fatal("expected decode to pass pooled buffer to inner codec")
}
}