-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbenchmark_test.go
242 lines (215 loc) · 5.3 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
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
// Copyright (c) 2018 ef-ds
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
//
// Below tests are used mostly for comparing the result of changes to stack and
// are not necessarily a replication of the comparison tests. For instance,
// the stack tests here use Push/Pop instead of Push/PopBack.
//
// For comparing stack performance with other stacks, refer to
// https://github.com/ef-ds/stack-bench-tests
package stack_test
import (
"strconv"
"testing"
"github.com/ef-ds/stack"
)
// testData contains the number of items to add to the stacks in each test.
type testData struct {
count int
}
var (
tests = []testData{
{count: 0},
{count: 1},
{count: 10},
{count: 100},
{count: 1000}, // 1k
{count: 10000}, //10k
{count: 100000}, // 100k
{count: 1000000}, // 1mi
}
// Used to store temp values, avoiding any compiler optimizations.
tmp interface{}
tmp2 bool
fillCount = 10000
refillCount = 10
)
func BenchmarkMicroservice(b *testing.B) {
for _, test := range tests {
b.Run(strconv.Itoa(test.count), func(b *testing.B) {
for n := 0; n < b.N; n++ {
s := stack.New()
// Simulate stable traffic
for i := 0; i < test.count; i++ {
s.Push(nil)
s.Pop()
}
// Simulate slowly increasing traffic
for i := 0; i < test.count; i++ {
s.Push(nil)
s.Push(nil)
s.Pop()
}
// Simulate slowly decreasing traffic, bringing traffic Front to normal
for i := 0; i < test.count; i++ {
s.Pop()
if s.Len() > 0 {
s.Pop()
}
s.Push(nil)
}
// Simulate quick traffic spike (DDOS attack, etc)
for i := 0; i < test.count; i++ {
s.Push(nil)
}
// Simulate stable traffic while at high traffic
for i := 0; i < test.count; i++ {
s.Push(nil)
s.Pop()
}
// Simulate going Front to normal (DDOS attack fended off)
for i := 0; i < test.count; i++ {
s.Pop()
}
// Simulate stable traffic (now that is Front to normal)
for i := 0; i < test.count; i++ {
s.Push(nil)
s.Pop()
}
}
})
}
}
func BenchmarkFill(b *testing.B) {
for _, test := range tests {
b.Run(strconv.Itoa(test.count), func(b *testing.B) {
for n := 0; n < b.N; n++ {
s := stack.New()
for i := 0; i < test.count; i++ {
s.Push(nil)
}
for s.Len() > 0 {
tmp, tmp2 = s.Pop()
}
}
})
}
}
func BenchmarkRefill(b *testing.B) {
for _, test := range tests {
b.Run(strconv.Itoa(test.count), func(b *testing.B) {
q := stack.New()
for n := 0; n < b.N; n++ {
for n := 0; n < refillCount; n++ {
for i := 0; i < test.count; i++ {
q.Push(nil)
}
for q.Len() > 0 {
tmp, tmp2 = q.Pop()
}
}
}
})
}
}
func BenchmarkRefillFull(b *testing.B) {
s := stack.New()
for i := 0; i < fillCount; i++ {
s.Push(nil)
}
for _, test := range tests {
b.Run(strconv.Itoa(test.count), func(b *testing.B) {
for n := 0; n < b.N; n++ {
for k := 0; k < refillCount; k++ {
for i := 0; i < test.count; i++ {
s.Push(nil)
}
for i := 0; i < test.count; i++ {
tmp, tmp2 = s.Pop()
}
}
}
})
}
for s.Len() > 0 {
tmp, tmp2 = s.Pop()
}
}
func BenchmarkStable(b *testing.B) {
s := stack.New()
for i := 0; i < fillCount; i++ {
s.Push(nil)
}
for _, test := range tests {
b.Run(strconv.Itoa(test.count), func(b *testing.B) {
for n := 0; n < b.N; n++ {
for i := 0; i < test.count; i++ {
s.Push(nil)
tmp, tmp2 = s.Pop()
}
}
})
}
for s.Len() > 0 {
tmp, tmp2 = s.Pop()
}
}
func BenchmarkSlowIncrease(b *testing.B) {
for _, test := range tests {
b.Run(strconv.Itoa(test.count), func(b *testing.B) {
for n := 0; n < b.N; n++ {
s := stack.New()
for i := 0; i < test.count; i++ {
s.Push(nil)
s.Push(nil)
tmp, tmp2 = s.Pop()
}
for s.Len() > 0 {
tmp, tmp2 = s.Pop()
}
}
})
}
}
func BenchmarkSlowDecrease(b *testing.B) {
s := stack.New()
for _, test := range tests {
items := test.count / 2
for i := 0; i <= items; i++ {
s.Push(nil)
}
}
for _, test := range tests {
b.Run(strconv.Itoa(test.count), func(b *testing.B) {
for n := 0; n < b.N; n++ {
for i := 0; i < test.count; i++ {
s.Push(nil)
tmp, tmp2 = s.Pop()
if s.Len() > 0 {
tmp, tmp2 = s.Pop()
}
}
}
})
}
for s.Len() > 0 {
tmp, tmp2 = s.Pop()
}
}