-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlzsgo_test.go
69 lines (62 loc) · 1.3 KB
/
lzsgo_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
package lzsgo
import (
"bytes"
"math/rand"
"testing"
)
const (
PkgSize = 2048
MaxMTU = 1500
)
func TestLZSGo(t *testing.T) {
for i := 1; i < MaxMTU; i++ {
pkgBuf := randBytes(i)
comprBuf := make([]byte, PkgSize)
ret, err := Compress(pkgBuf, comprBuf)
if err != nil {
t.Errorf("Compress failed: %d %d %s", ret, i, err)
}
unprBuf := make([]byte, i)
ret, err2 := Uncompress(comprBuf, unprBuf)
if err2 != nil {
t.Errorf("Uncompress failed: %d %d %s", ret, i, err2)
}
if !bytes.Equal(pkgBuf[:i], unprBuf[:ret]) {
t.Errorf("Compress and uncompress data not equal")
}
}
}
func BenchmarkCompress(b *testing.B) {
buf := randBytes(1500)
b.ResetTimer()
for i := 0; i < b.N; i++ {
comprBuf := make([]byte, PkgSize)
Compress(buf, comprBuf)
}
}
func BenchmarkParallelCompress(b *testing.B) {
buf := randBytes(1500)
b.ResetTimer()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
comprBuf := make([]byte, PkgSize)
Compress(buf, comprBuf)
}
})
}
func BenchmarkUncompress(b *testing.B) {
buf := randBytes(1500)
comprBuf := make([]byte, len(buf))
Compress(buf, comprBuf)
b.ResetTimer()
for i := 0; i < b.N; i++ {
Uncompress(comprBuf, buf)
}
}
func randBytes(n int) []byte {
b := make([]byte, n)
for i := 0; i < n; i++ {
b[i] = byte(rand.Intn(256))
}
return b
}