-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstats_test.go
82 lines (58 loc) · 1.53 KB
/
stats_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
package util
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestStatsNoValues(t *testing.T) {
stats := &Stats{}
assert.Equal(t, 0, stats.data["foo"])
}
func TestStatsIncrement(t *testing.T) {
stats := &Stats{}
stats.Increment("foo")
assert.Equal(t, 1, stats.data["foo"])
assert.Equal(t, 0, stats.data["bar"])
stats.Increment("foo")
stats.Increment("bar")
assert.Equal(t, 2, stats.data["foo"])
assert.Equal(t, 1, stats.data["bar"])
}
func TestStatsIncrementBy(t *testing.T) {
stats := &Stats{}
stats.IncrementBy("foo", 1)
assert.Equal(t, 1, stats.data["foo"])
assert.Equal(t, 0, stats.data["bar"])
stats.IncrementBy("foo", 2)
stats.IncrementBy("bar", 5)
assert.Equal(t, 3, stats.data["foo"])
assert.Equal(t, 5, stats.data["bar"])
}
func TestStatsToMap(t *testing.T) {
stats := &Stats{}
assert.Equal(t, make(map[string]int), stats.ToMap())
stats.IncrementBy("foo", 1)
stats.IncrementBy("bar", 5)
expected := map[string]int{
"foo": 1,
"bar": 5,
}
assert.Equal(t, expected, stats.ToMap())
}
func TestStatsCopyAndResetEmpty(t *testing.T) {
stats := &Stats{}
copy := stats.CopyAndReset()
assert.Equal(t, make(map[string]int), copy.ToMap())
assert.Equal(t, make(map[string]int), stats.ToMap())
}
func TestStatsCopyAndReset(t *testing.T) {
stats := &Stats{}
stats.IncrementBy("foo", 1)
stats.IncrementBy("bar", 5)
copy := stats.CopyAndReset()
expected := map[string]int{
"foo": 1,
"bar": 5,
}
assert.Equal(t, expected, copy.ToMap())
assert.Equal(t, make(map[string]int), stats.ToMap())
}