-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbytes_test.go
More file actions
91 lines (79 loc) · 1.65 KB
/
bytes_test.go
File metadata and controls
91 lines (79 loc) · 1.65 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
// Copyright (C) 2019-2025, Lux Industries, Inc. All rights reserved.
// See the file LICENSE for licensing terms.
package utils
import (
"math"
"math/rand"
"strconv"
"testing"
"github.com/stretchr/testify/require"
)
// Verify that [intSize] is correctly set based on the word size. This test uses
// [math.MaxInt] to detect the word size.
func TestIntSize(t *testing.T) {
require := require.New(t)
require.Contains([]int{32, 64}, intSize)
if intSize == 32 {
require.Equal(math.MaxInt32, math.MaxInt)
} else {
require.Equal(math.MaxInt64, math.MaxInt)
}
}
func TestBytesPool(t *testing.T) {
require := require.New(t)
p := NewBytesPool()
for i := 0; i < 128; i++ {
bytes := p.Get(i)
require.NotNil(bytes)
require.Len(*bytes, i)
p.Put(bytes)
}
}
func BenchmarkBytesPool_Constant(b *testing.B) {
sizes := []int{
0,
8,
16,
32,
64,
256,
2048,
}
for _, size := range sizes {
b.Run(strconv.Itoa(size), func(b *testing.B) {
p := NewBytesPool()
for i := 0; i < b.N; i++ {
p.Put(p.Get(size))
}
})
}
}
func BenchmarkBytesPool_Descending(b *testing.B) {
p := NewBytesPool()
for i := 0; i < b.N; i++ {
for size := 100_000; size > 0; size-- {
p.Put(p.Get(size))
}
}
}
func BenchmarkBytesPool_Ascending(b *testing.B) {
p := NewBytesPool()
for i := 0; i < b.N; i++ {
for size := 0; size < 100_000; size++ {
p.Put(p.Get(size))
}
}
}
func BenchmarkBytesPool_Random(b *testing.B) {
p := NewBytesPool()
sizes := make([]int, 1_000)
for i := range sizes {
sizes[i] = rand.Intn(100_000) //#nosec G404
}
b.ResetTimer()
for i := 0; i < b.N; i++ {
for _, size := range sizes {
p.Put(p.Get(size))
}
}
}