-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbenchmark_test.go
62 lines (52 loc) · 1.4 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
package bucket_test
import (
tb "github.com/b3ntly/bucket"
"testing"
)
func BenchmarkBucket_Create(b *testing.B) {
cases := []*BucketCase{
&BucketCase{ constructor: tb.New, options: &tb.Options{} },
&BucketCase{ constructor: tb.NewWithRedis, options: redisBucketOptions },
}
for _, test := range cases {
b.Run("Bucket_Create_Benchmark", func(b *testing.B){
for i := 0; i < b.N; i++ {
test.options.Name = MockBucketName()
test.options.Capacity= 10
_, _ = test.constructor(test.options)
}
})
}
}
func BenchmarkBucket_Take(b *testing.B) {
cases := []*BucketCase{
{ constructor: tb.New, options: &tb.Options{} },
{ constructor: tb.NewWithRedis, options: redisBucketOptions },
}
for _, test := range cases {
test.options.Name = MockBucketName()
test.options.Capacity= b.N
bucket, _ := test.constructor(test.options)
b.Run("Bucket_Take_Benchmark", func(b *testing.B){
for i := 0; i < b.N; i++ {
_ = bucket.Take(1)
}
})
}
}
func BenchmarkBucket_Put(b *testing.B) {
cases := []*BucketCase{
{ constructor: tb.New, options: &tb.Options{} },
{ constructor: tb.NewWithRedis, options: redisBucketOptions },
}
for _, test := range cases {
test.options.Name = MockBucketName()
test.options.Capacity = 0
bucket, _ := test.constructor(test.options)
b.Run("Bucket_Take_Benchmark", func(b *testing.B){
for i := 0; i < b.N; i++ {
_ = bucket.Put(1)
}
})
}
}