This repository has been archived by the owner on Aug 10, 2024. It is now read-only.
forked from goadesign/goa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
metrics_test.go
123 lines (109 loc) · 2.6 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
package goa_test
import (
"time"
"github.com/goadesign/goa"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"github.com/armon/go-metrics"
)
var _ = Describe("Metrics", func() {
var keys = [6]string{}
var metriks *metrics.Metrics
var sink *goa.NoOpSink
BeforeEach(func() {
sink = &goa.NoOpSink{}
var err error
metriks, err = metrics.New(metrics.DefaultConfig("UnitTest Service"), sink)
if err != nil {
panic("Unable to create test instance of metrics")
}
keys = [6]string{
"foo_bar_*/*",
"foo_*_baz",
"foo/baz",
"foo/bar/baz",
"foo/bar*_*/*",
"//foo/bar*",
}
})
Describe("Add sample", func() {
Context("With invalid characters in key", func() {
It("should replace invalid characters with normalized characters", func() {
goa.SetMetrics(metriks)
goa.AddSample(keys[:], 3.14)
Ω(keys).Should(ConsistOf([]string{
"foo_bar_all",
"foo___baz",
"foo_baz",
"foo_bar_baz",
"foo_bar__all",
"__foo_bar_",
}))
})
})
})
Describe("Emit key", func() {
Context("With invalid characters in key", func() {
It("should replace invalid characters with normalized characters", func() {
goa.SetMetrics(metriks)
goa.EmitKey(keys[:], 3.14)
Ω(keys).Should(ConsistOf([]string{
"foo_bar_all",
"foo___baz",
"foo_baz",
"foo_bar_baz",
"foo_bar__all",
"__foo_bar_",
}))
})
})
})
Describe("Increment Counter", func() {
Context("With invalid characters in key", func() {
It("should replace invalid characters with normalized characters", func() {
goa.SetMetrics(metriks)
goa.IncrCounter(keys[:], 3.14)
Ω(keys).Should(ConsistOf([]string{
"foo_bar_all",
"foo___baz",
"foo_baz",
"foo_bar_baz",
"foo_bar__all",
"__foo_bar_",
}))
})
})
})
Describe("Measure since", func() {
Context("With invalid characters in key", func() {
It("should replace invalid characters with normalized characters", func() {
goa.SetMetrics(metriks)
goa.MeasureSince(keys[:], time.Time{})
Ω(keys).Should(ConsistOf([]string{
"foo_bar_all",
"foo___baz",
"foo_baz",
"foo_bar_baz",
"foo_bar__all",
"__foo_bar_",
}))
})
})
})
Describe("Set gauge", func() {
Context("With invalid characters in key", func() {
It("should replace invalid characters with normalized characters", func() {
goa.SetMetrics(metriks)
goa.SetGauge(keys[:], 3.14)
Ω(keys).Should(ConsistOf([]string{
"foo_bar_all",
"foo___baz",
"foo_baz",
"foo_bar_baz",
"foo_bar__all",
"__foo_bar_",
}))
})
})
})
})