-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmbytepool_mmap_test.go
132 lines (122 loc) · 3.04 KB
/
mbytepool_mmap_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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
//go:build aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris
// +build aix darwin dragonfly freebsd linux netbsd openbsd solaris
package bp
import (
"testing"
)
func TestMultiMmapBytePoolNew(t *testing.T) {
t.Run("sorted", func(tt *testing.T) {
mp := NewMultiMmapBytePool(
MultiMmapBytePoolSize(10, 4),
MultiMmapBytePoolSize(10, 8),
MultiMmapBytePoolSize(10, 16),
)
if mp.pools[0].bufSize != 4 {
tt.Errorf("sorted")
}
if mp.pools[2].bufSize != 16 {
tt.Errorf("sorted")
}
for _, p := range mp.pools {
if p.Len() != 0 {
tt.Errorf("initial pool size 0")
}
}
})
t.Run("preload", func(tt *testing.T) {
mp := NewMultiMmapBytePool(
MultiMmapBytePoolSize(10, 4),
MultiMmapBytePoolSize(10, 8),
MultiMmapBytePoolSize(10, 16),
MultiMmapBytePoolOption(
Preload(true),
PreloadRate(0.5),
),
)
if mp.pools[0].bufSize != 4 {
tt.Errorf("sorted head")
}
if mp.pools[2].bufSize != 16 {
tt.Errorf("sorted tail")
}
for _, p := range mp.pools {
l := int(float64(p.Cap()) * 0.5)
if p.Len() != l {
tt.Errorf("preloaded %d", l)
}
}
})
}
func TestMultiMmapBytePoolPutGet(t *testing.T) {
t.Run("getput", func(tt *testing.T) {
mp := NewMultiMmapBytePool(
MultiMmapBytePoolSize(10, 7),
MultiMmapBytePoolSize(10, 16),
MultiMmapBytePoolSize(10, 24),
)
d1 := mp.Get(1) // 7 < pools[0]
d2 := mp.Get(8) // 8 <= pools[0]
if mp.Put(d1) != true {
tt.Errorf("release ok / freecap")
}
if mp.Put(d2) != true {
tt.Errorf("release ok / freecap")
}
if mp.pools[0].Len() != 2 {
tt.Errorf("pool[0,1,2] = %d,%d,%d", mp.pools[0].Len(), mp.pools[1].Len(), mp.pools[2].Len())
}
d3 := mp.Get(9) // pools[0] < 9 <= pools[1]
d4 := mp.Get(16) // pools[0] < 16 <= pools[2]
if mp.Put(d3) != true {
tt.Errorf("release ok")
}
if mp.Put(d4) != true {
tt.Errorf("release ok")
}
if mp.pools[1].Len() != 2 {
tt.Errorf("pool[0,1,2] = %d,%d,%d", mp.pools[0].Len(), mp.pools[1].Len(), mp.pools[2].Len())
}
if mp.pools[2].Len() != 0 {
tt.Errorf("pool[0,1,2] = %d,%d,%d", mp.pools[0].Len(), mp.pools[1].Len(), mp.pools[2].Len())
}
d5 := mp.Get(1024)
if mp.Put(d5) {
tt.Errorf("discard large pool")
}
})
t.Run("getref", func(tt *testing.T) {
mp := NewMultiMmapBytePool(
MultiMmapBytePoolSize(10, 7),
MultiMmapBytePoolSize(10, 8),
MultiMmapBytePoolSize(10, 16),
)
d1 := mp.GetRef(3)
tt.Logf("pools[0] cap=%d", cap(d1.Bytes()))
d1.Release()
if mp.pools[0].Len() != 1 {
tt.Errorf("released pools[0]")
}
d2 := mp.GetRef(10)
tt.Logf("pools[1] cap=%d", cap(d2.Bytes()))
d2.Release()
if mp.pools[1].Len() != 1 {
tt.Errorf("release pools[1]")
}
d3 := mp.GetRef(24)
tt.Logf("pools[2] cap=%d", cap(d3.Bytes()))
d3.Release()
if mp.pools[2].Len() != 1 {
tt.Errorf("release pools[2]")
}
d4 := mp.GetRef(1024)
d4.Release()
if mp.pools[2].Len() != 1 {
tt.Errorf("discard, large alignment")
}
d5 := mp.GetRef(25)
d5.Release()
if mp.pools[2].Len() != 1 {
tt.Errorf("discard, large alignment")
}
})
}