-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathatom_test.go
94 lines (81 loc) · 2.07 KB
/
atom_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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
package slab
import (
"testing"
"github.com/funny/utest"
)
func Test_AtomPool_AllocAndFree(t *testing.T) {
pool := NewAtomPool(128, 64*1024, 2, 1024*1024)
for i := 0; i < len(pool.classes); i++ {
temp := make([][]byte, len(pool.classes[i].chunks))
for j := 0; j < len(temp); j++ {
mem := pool.Alloc(pool.classes[i].size)
utest.EqualNow(t, cap(mem), pool.classes[i].size)
temp[j] = mem
}
utest.Assert(t, pool.classes[i].head == 0)
for j := 0; j < len(temp); j++ {
pool.Free(temp[j])
}
utest.Assert(t, pool.classes[i].head != 0)
}
}
func Test_AtomPool_AllocSmall(t *testing.T) {
pool := NewAtomPool(128, 1024, 2, 1024)
mem := pool.Alloc(64)
utest.EqualNow(t, len(mem), 64)
utest.EqualNow(t, cap(mem), 128)
pool.Free(mem)
}
func Test_AtomPool_AllocLarge(t *testing.T) {
pool := NewAtomPool(128, 1024, 2, 1024)
mem := pool.Alloc(2048)
utest.EqualNow(t, len(mem), 2048)
utest.EqualNow(t, cap(mem), 2048)
pool.Free(mem)
}
func Test_AtomPool_DoubleFree(t *testing.T) {
pool := NewAtomPool(128, 1024, 2, 1024)
mem := pool.Alloc(64)
go func() {
defer func() {
utest.NotNilNow(t, recover())
}()
pool.Free(mem)
pool.Free(mem)
}()
}
func Test_AtomPool_AllocSlow(t *testing.T) {
pool := NewAtomPool(128, 1024, 2, 1024)
mem := pool.classes[len(pool.classes)-1].Pop()
utest.EqualNow(t, cap(mem), 1024)
utest.Assert(t, pool.classes[len(pool.classes)-1].head == 0)
mem = pool.Alloc(1024)
utest.EqualNow(t, cap(mem), 1024)
}
func Benchmark_AtomPool_AllocAndFree_128(b *testing.B) {
pool := NewAtomPool(128, 1024, 2, 64*1024)
b.ResetTimer()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
pool.Free(pool.Alloc(128))
}
})
}
func Benchmark_AtomPool_AllocAndFree_256(b *testing.B) {
pool := NewAtomPool(128, 1024, 2, 64*1024)
b.ResetTimer()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
pool.Free(pool.Alloc(256))
}
})
}
func Benchmark_AtomPool_AllocAndFree_512(b *testing.B) {
pool := NewAtomPool(128, 1024, 2, 64*1024)
b.ResetTimer()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
pool.Free(pool.Alloc(512))
}
})
}