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 solomon
import (
"encoding/json"
"testing"
"github.com/stretchr/testify/assert"
"go.uber.org/atomic"
)
func TestCounter_Add(t *testing.T) {
c := &Counter{
name: "mycounter",
metricType: typeCounter,
tags: map[string]string{"ololo": "trololo"},
}
c.Add(1)
assert.Equal(t, int64(1), c.value.Load())
c.Add(42)
assert.Equal(t, int64(43), c.value.Load())
c.Add(1489)
assert.Equal(t, int64(1532), c.value.Load())
}
func TestCounter_Inc(t *testing.T) {
c := &Counter{
name: "mycounter",
metricType: typeCounter,
tags: map[string]string{"ololo": "trololo"},
}
for i := 0; i < 10; i++ {
c.Inc()
}
assert.Equal(t, int64(10), c.value.Load())
c.Inc()
c.Inc()
assert.Equal(t, int64(12), c.value.Load())
}
func TestCounter_MarshalJSON(t *testing.T) {
c := &Counter{
name: "mycounter",
metricType: typeCounter,
tags: map[string]string{"ololo": "trololo"},
value: *atomic.NewInt64(42),
}
b, err := json.Marshal(c)
assert.NoError(t, err)
expected := []byte(`{"type":"COUNTER","labels":{"ololo":"trololo","sensor":"mycounter"},"value":42}`)
assert.Equal(t, expected, b)
}
func TestRatedCounter_MarshalJSON(t *testing.T) {
c := &Counter{
name: "mycounter",
metricType: typeRated,
tags: map[string]string{"ololo": "trololo"},
value: *atomic.NewInt64(42),
}
b, err := json.Marshal(c)
assert.NoError(t, err)
expected := []byte(`{"type":"RATE","labels":{"ololo":"trololo","sensor":"mycounter"},"value":42}`)
assert.Equal(t, expected, b)
}
func TestNameTagCounter_MarshalJSON(t *testing.T) {
c := &Counter{
name: "mycounter",
metricType: typeCounter,
tags: map[string]string{"ololo": "trololo"},
value: *atomic.NewInt64(42),
useNameTag: true,
}
b, err := json.Marshal(c)
assert.NoError(t, err)
expected := []byte(`{"type":"COUNTER","labels":{"name":"mycounter","ololo":"trololo"},"value":42}`)
assert.Equal(t, expected, b)
}
|