-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeter_test.go
90 lines (80 loc) · 1.6 KB
/
meter_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
package metrics
import (
"math/rand"
"sync"
"testing"
"time"
)
func BenchmarkMeter(b *testing.B) {
m := NewMeter()
b.ResetTimer()
for i := 0; i < b.N; i++ {
m.Mark(1)
}
}
func BenchmarkMeterParallel(b *testing.B) {
m := NewMeter()
b.ResetTimer()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
m.Mark(1)
}
})
}
// exercise race detector
func TestMeterConcurrency(t *testing.T) {
m := newStandardMeter()
wg := &sync.WaitGroup{}
reps := 100
for i := 0; i < reps; i++ {
wg.Add(1)
go func(m Meter, wg *sync.WaitGroup) {
m.Mark(1)
wg.Done()
}(m, wg)
// Test reading from EWMA concurrently.
wg.Add(1)
go func(m Meter, wg *sync.WaitGroup) {
m.Snapshot()
wg.Done()
}(m, wg)
}
wg.Wait()
}
func TestGetOrRegisterMeter(t *testing.T) {
r := NewRegistry()
NewRegisteredMeter("foo", r).Mark(47)
if m := GetOrRegisterMeter("foo", r); m.Count() != 47 {
t.Fatal(m)
}
}
func TestMeterDecay(t *testing.T) {
m := newStandardMeter()
m.Mark(1)
rateMean := m.RateMean()
time.Sleep(100 * time.Millisecond)
if m.RateMean() >= rateMean {
t.Error("m.RateMean() didn't decrease")
}
}
func TestMeterNonzero(t *testing.T) {
m := NewMeter()
m.Mark(3)
if count := m.Count(); count != 3 {
t.Errorf("m.Count(): 3 != %v\n", count)
}
}
func TestMeterSnapshot(t *testing.T) {
r := rand.New(rand.NewSource(time.Now().Unix()))
m := NewMeter()
m.Mark(r.Int63())
if snapshot := m.Snapshot(); m.Count() != snapshot.Count() {
t.Fatal(snapshot)
}
}
func TestMeterZero(t *testing.T) {
m := NewMeter()
if count := m.Count(); count != 0 {
t.Errorf("m.Count(): 0 != %v\n", count)
}
}