-
Notifications
You must be signed in to change notification settings - Fork 0
/
benchmark_test.go
67 lines (52 loc) · 1.04 KB
/
benchmark_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
package base45
import (
"math/rand"
"testing"
)
func benchmarkEncode(len int, b *testing.B) {
dec := make([]byte, len)
rand.Read(dec)
b.ResetTimer()
for i := 0; i < b.N; i++ {
Encode(dec)
}
}
func BenchmarkEncode1(b *testing.B) {
benchmarkEncode(1, b)
}
func BenchmarkEncode128(b *testing.B) {
benchmarkEncode(128, b)
}
func BenchmarkEncode512(b *testing.B) {
benchmarkEncode(512, b)
}
func BenchmarkEncode1024(b *testing.B) {
benchmarkEncode(1024, b)
}
func BenchmarkEncode8192(b *testing.B) {
benchmarkEncode(8192, b)
}
func benchmarkDecode(len int, b *testing.B) {
dec := make([]byte, len)
rand.Read(dec)
enc := Encode(dec)
b.ResetTimer()
for i := 0; i < b.N; i++ {
_, _ = Decode(enc)
}
}
func BenchmarkDecode1(b *testing.B) {
benchmarkDecode(1, b)
}
func BenchmarkDecode128(b *testing.B) {
benchmarkDecode(128, b)
}
func BenchmarkDecode512(b *testing.B) {
benchmarkDecode(512, b)
}
func BenchmarkDecode1024(b *testing.B) {
benchmarkDecode(1024, b)
}
func BenchmarkDecode8192(b *testing.B) {
benchmarkDecode(8192, b)
}