-
Notifications
You must be signed in to change notification settings - Fork 3.6k
/
Copy pathmetrics_test.go
84 lines (80 loc) · 1.47 KB
/
metrics_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
package gather
import (
"encoding/json"
"testing"
"github.com/google/go-cmp/cmp"
)
func TestMetrics(t *testing.T) {
cases := []struct {
name string
ms []Metrics
}{
{
name: "empty",
ms: make([]Metrics, 0),
},
{
name: "single",
ms: []Metrics{
{
Timestamp: 12345,
Tags: map[string]string{
"b": "B",
"a": "A",
"c": "C",
},
Fields: map[string]interface{}{
"x": 12.3,
"y": "a long string",
},
Type: MetricTypeSummary,
},
},
},
{
name: "multiple",
ms: []Metrics{
{
Timestamp: 12345,
Tags: map[string]string{
"b": "B",
"a": "A",
"c": "C",
},
Fields: map[string]interface{}{
"x": 12.3,
"y": "a long string",
},
Type: MetricTypeSummary,
},
{
Timestamp: 12345,
Tags: map[string]string{
"b": "B2",
"a": "A2",
"c": "C2",
},
Fields: map[string]interface{}{
"x": 12.5,
"y": "a long string2",
},
Type: MetricTypeGauge,
},
},
},
}
for _, c := range cases {
b, err := json.Marshal(c.ms)
if err != nil {
t.Fatalf("error in marshaling metrics: %v", err)
}
result := make([]Metrics, 0)
err = json.Unmarshal(b, &result)
if err != nil {
t.Fatalf("error in unmarshaling metrics: b: %s, %v", string(b), err)
}
if diff := cmp.Diff(c.ms, result, nil); diff != "" {
t.Fatalf("unmarshaling metrics is incorrect, want %v, got %v", c.ms, result)
}
}
}