forked from asaskevich/govalidator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharrays_benchmark_test.go
89 lines (77 loc) · 1.68 KB
/
arrays_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
package govalidator
// Benchmark testing is produced with randomly filled array of 1 million elements
import (
"math/rand"
"testing"
)
func randomInt(min, max int) int {
return min + rand.Intn(max-min)
}
func randomArray(n int) (res []int) {
res = make([]int, n)
for i := 0; i < n; i++ {
res[i] = randomInt(-1000, 1000)
}
return
}
func BenchmarkEach(b *testing.B) {
data := randomArray(1000000)
b.ResetTimer()
for n := 0; n < b.N; n++ {
var fn Iterator[int] = func(_ int, _ int) {
// do nothing
}
Each(data, fn)
}
}
func BenchmarkReduce(b *testing.B) {
data := randomArray(1000000)
b.ResetTimer()
for n := 0; n < b.N; n++ {
var fn ReduceIterator[int] = func(init int, val int) int {
return init + val
}
Reduce(data, fn, 0)
}
}
func BenchmarkMap(b *testing.B) {
data := randomArray(1000000)
b.ResetTimer()
for n := 0; n < b.N; n++ {
var fn ResultIterator[int] = func(value int, index int) int {
return value * 3
}
_ = Map(data, fn)
}
}
func BenchmarkFind(b *testing.B) {
data := randomArray(1000000)
b.ResetTimer()
for n := 0; n < b.N; n++ {
findElement := 96
var fn1 ConditionIterator[int] = func(value int, index int) bool {
return value == findElement
}
_ = Find(data, fn1)
}
}
func BenchmarkFilter(b *testing.B) {
data := randomArray(1000000)
b.ResetTimer()
for n := 0; n < b.N; n++ {
var fn ConditionIterator[int] = func(value int, index int) bool {
return value%2 == 0
}
_ = Filter(data, fn)
}
}
func BenchmarkCount(b *testing.B) {
data := randomArray(1000000)
b.ResetTimer()
for n := 0; n < b.N; n++ {
var fn ConditionIterator[int] = func(value int, index int) bool {
return value%2 == 0
}
_ = Count(data, fn)
}
}