-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgostats_test.go
96 lines (81 loc) · 2.39 KB
/
gostats_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
91
92
93
94
95
96
package gostats
import (
"fmt"
"github.com/stretchr/testify/assert"
"os"
"testing"
"time"
)
type metricNameTest struct {
Source string
Expected string
}
func TestSanitizeMetricName(t *testing.T) {
cases := []metricNameTest{
metricNameTest{"mymetricname", "mymetricname"},
metricNameTest{"my metric name", "my_metric_name"},
metricNameTest{"my/metric/name", "my_metric_name"},
metricNameTest{"my.metric name", "my_metric_name"},
metricNameTest{"my-metric/name", "my-metric_name"},
metricNameTest{"my-metric@name", "my-metricname"},
}
for _, c := range cases {
n := sanitizeMetricName(c.Source)
if n != c.Expected {
assert.Equal(t, c.Expected, n, "metric name should be sanitized correctly")
}
}
}
func TestNew(t *testing.T) {
s := New()
h, _ := os.Hostname()
assert.Equal(t, sanitizeMetricName(h), s.Hostname, "hostname should be set")
assert.Equal(t, "gostats", s.ClientName, "default client name should be set")
s.Hostname = "localhost"
assert.Equal(t, "gostats.gostats.localhost.", s.MetricBase(), "metric base should be correct")
}
func TestStart(t *testing.T) {
s, err := Start("localhost:8015", 5, "testclient")
defer s.Stop()
assert.Nil(t, err)
s.Hostname = "localhost"
assert.Equal(t, "gostats.testclient.localhost.", s.MetricBase(), "metric base should be correct")
assert.Equal(t, time.Duration(5*time.Second), s.PushInterval, "push interval should be correct")
assert.Equal(t, "localhost:8015", s.StatsdHost, "statsd host should be correct")
}
func returnsKeys(t *testing.T, expectedKeys []string, response map[string]float64) {
for _, k := range expectedKeys {
_, found := response[k]
assert.True(t, found, fmt.Sprintf("Should expose metric %s", k))
}
}
func TestMemStats(t *testing.T) {
returnsKeys(t, []string{
"memory.objects.HeapObjects",
"memory.summary.Alloc",
"memory.counters.Mallocs",
"memory.counters.Frees",
"memory.summary.System",
"memory.heap.Idle",
"memory.heap.InUse",
}, memStats())
}
func TestGoRoutines(t *testing.T) {
returnsKeys(t, []string{
"goroutines.total",
}, goRoutines())
}
func TestCgoCalls(t *testing.T) {
returnsKeys(t, []string{
"cgo.calls",
}, cgoCalls())
}
func TestGcs(t *testing.T) {
gcs := gcs()
returnsKeys(t, []string{
"gc.perSecond",
"gc.pauseTimeNs",
"gc.pauseTimeMs",
}, gcs)
assert.Equal(t, gcs["gc.pauseTimeNs"]/float64(1000000), gcs["gc.pauseTimeMs"], "Pause time NS should convert to MS")
}