-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathencoding_test.go
57 lines (51 loc) · 1.05 KB
/
encoding_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
package encoding
import (
"crypto/rand"
"testing"
)
func BenchmarkByteToHex(b *testing.B) {
benchmarks := []struct {
name string
randomBytes []byte
}{
{
name: "1 byte",
randomBytes: GenerateRandomBytes(1),
},
{
name: "5 bytes",
randomBytes: GenerateRandomBytes(5),
},
{
name: "10 bytes",
randomBytes: GenerateRandomBytes(10),
},
{
name: "50 bytes",
randomBytes: GenerateRandomBytes(50),
},
{
name: "100 bytes",
randomBytes: GenerateRandomBytes(100),
},
}
for _, bm := range benchmarks {
b.Run("encode bytes to hex string with fmt.Sprintf for "+bm.name, func(b *testing.B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
ByteToHexStringSprintf(bm.randomBytes)
}
})
b.Run("encode bytes to hex string with hex.EncodeToString for "+bm.name, func(b *testing.B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
ByteToHexStringHex(bm.randomBytes)
}
})
}
}
func GenerateRandomBytes(n int) []byte {
b := make([]byte, n)
rand.Read(b)
return b
}