forked from sokil/go-statsd-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient_test.go
335 lines (262 loc) · 8.13 KB
/
client_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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
package statsd
import (
"net"
"reflect"
"strings"
"testing"
)
var udpConnectionStubIO chan []byte = make(chan []byte)
type udpConnectionStub struct {
net.Conn
}
func (stub *udpConnectionStub) Write(p []byte) (n int, err error) {
udpConnectionStubIO <- p
n = 0
err = nil
return
}
func TestNewClient(t *testing.T) {
client := NewClient("127.0.0.1", 9876)
// check type
typeName := reflect.TypeOf(*client).Name()
if typeName != "Client" {
t.Errorf("Wrong type of factory method return value: \"%s\"", typeName)
}
// check buffered mode
if client.buffer != nil {
t.Errorf("Buffer must be disabled")
}
}
func TestNewBufferedClient(t *testing.T) {
client := NewBufferedClient("127.0.0.1", 9876)
// check type
typeName := reflect.TypeOf(*client).Name()
if typeName != "Client" {
t.Errorf("Wrong type of factory method return value: \"%s\"", typeName)
}
// check buffered mode
if client.buffer == nil {
t.Errorf("Buffer must be enabled")
}
}
func TestOpen(t *testing.T) {
client := NewBufferedClient("127.0.0.1", 9876)
if client.conn != nil {
t.Errorf("Connection must be nill")
}
client.Open()
defer client.Close()
if _, ok := client.conn.(net.Conn); !ok {
t.Errorf("Connection must be instanc e of net.Conn")
}
}
func TestClose(t *testing.T) {
client := NewBufferedClient("127.0.0.1", 9876)
if client.conn != nil {
t.Errorf("Connection must be nill")
}
client.Open()
client.Close()
if client.conn != nil {
t.Errorf("Connection must be closed")
}
}
func TestBufferedClient_Timing_BigRate(t *testing.T) {
client := NewBufferedClient("127.0.0.1", 9876)
client.Timing("a.b.c", 320, 0.9999)
if len(client.buffer) > 0 && client.buffer[0] != "a.b.c:320|ms|@0.9999" {
t.Errorf("Wrong timing metric with big rate: \"%s\"", client.buffer[0])
}
}
func TestBufferedClient_Timing_SmallRate(t *testing.T) {
client := NewBufferedClient("127.0.0.1", 9876)
client.Timing("a.b.c", 320, 0.0001)
if len(client.buffer) > 0 && client.buffer[0] != "a.b.c:320|ms|@0.0001" {
t.Errorf("Wrong timing metric with small rate: \"%s\"", client.buffer[0])
}
}
func TestBufferedClient_Timing_NoRate(t *testing.T) {
client := NewBufferedClient("127.0.0.1", 9876)
client.Timing("a.b.c", 320, 1)
if client.buffer[0] != "a.b.c:320|ms" {
t.Errorf("Wrong timing metric without rate: \"%s\"", client.buffer[0])
}
}
func TestBufferedClient_Count_BigRate(t *testing.T) {
client := NewBufferedClient("127.0.0.1", 9876)
client.Count("a.b.c", 320, 0.9999)
if len(client.buffer) > 0 && client.buffer[0] != "a.b.c:320|c|@0.9999" {
t.Errorf("Wrong count metric with big rate: \"%s\"", client.buffer[0])
}
}
func TestBufferedClient_Count_SmallRate(t *testing.T) {
client := NewBufferedClient("127.0.0.1", 9876)
client.Count("a.b.c", 320, 0.0001)
if len(client.buffer) > 0 && client.buffer[0] != "a.b.c:320|c|@0.0001" {
t.Errorf("Wrong count metric with small rate: \"%s\"", client.buffer[0])
}
}
func TestBufferedClient_Count_NoRate(t *testing.T) {
client := NewBufferedClient("127.0.0.1", 9876)
client.Count("a.b.c", 320, 1)
if client.buffer[0] != "a.b.c:320|c" {
t.Errorf("Wrong count metric without rate: \"%s\"", client.buffer[0])
}
}
func TestBufferedClient_MetricPrefix_Empty(t *testing.T) {
client := NewBufferedClient("127.0.0.1", 9876)
client.Count("a.b.c", 320, 1)
if client.buffer[0] != "a.b.c:320|c" {
t.Errorf("Wrong count metric without rate: \"%s\"", client.buffer[0])
}
}
func TestBufferedClient_MetricPrefix_NotEmptyNoDot(t *testing.T) {
client := NewBufferedClient("127.0.0.1", 9876)
client.SetPrefix("somePrefix")
client.Count("a.b.c", 320, 1)
if client.buffer[0] != "somePrefix.a.b.c:320|c" {
t.Errorf("Wrong count metric without rate: \"%s\"", client.buffer[0])
}
}
func TestBufferedClient_MetricPrefix_NotEmptyWithDot(t *testing.T) {
client := NewBufferedClient("127.0.0.1", 9876)
client.SetPrefix("somePrefix.")
client.Count("a.b.c", 320, 1)
if client.buffer[0] != "somePrefix.a.b.c:320|c" {
t.Errorf("Wrong count metric without rate: \"%s\"", client.buffer[0])
}
}
func TestBufferedClient_Gauge(t *testing.T) {
client := NewBufferedClient("127.0.0.1", 9876)
client.Gauge("a.b.c", 320)
if client.buffer[0] != "a.b.c:320|g" {
t.Errorf("Wrong gauge metric: \"%s\"", client.buffer[0])
}
}
func TestBufferedClient_GaugeShift(t *testing.T) {
client := NewBufferedClient("127.0.0.1", 9876)
client.GaugeShift("a.b.c", 320)
if client.buffer[0] != "a.b.c:+320|g" {
t.Errorf("Wrong positive gauge shift metric: \"%s\"", client.buffer[0])
}
client.GaugeShift("a.b.c", -320)
if client.buffer[1] != "a.b.c:-320|g" {
t.Errorf("Wrong negative gauge shift metric: \"%s\"", client.buffer[1])
}
}
func TestBufferedClient_Set(t *testing.T) {
client := NewBufferedClient("127.0.0.1", 9876)
client.Set("a.b.c", 320)
if client.buffer[0] != "a.b.c:320|s" {
t.Errorf("Wrong set metric: \"%s\"", client.buffer[0])
}
}
func TestBufferedClient_addToBuffer(t *testing.T) {
client := NewBufferedClient("127.0.0.1", 9876)
client.addToBuffer("a.b.c", "320|s")
client.addToBuffer("a.b.d", "321|ms|@0.0001")
if len(client.buffer) != 2 {
t.Errorf("Must be 2 keys in buffer")
}
if client.buffer[0] != "a.b.c:320|s" {
t.Errorf("Wrong metric added to buffer: \"%s\"", client.buffer[0])
}
if client.buffer[1] != "a.b.d:321|ms|@0.0001" {
t.Errorf("Wrong metric added to buffer: \"%s\"", client.buffer[1])
}
}
func TestBufferedClient_isSendAcceptedBySampleRate(t *testing.T) {
client := NewBufferedClient("127.0.0.1", 9876)
if client.isSendAcceptedBySampleRate(2) == false {
t.Errorf("2 must be accepred by sample rate")
}
if client.isSendAcceptedBySampleRate(1) == false {
t.Errorf("1 must be accepred by sample rate")
}
if client.isSendAcceptedBySampleRate(0.00000001) == true {
t.Errorf("0.00000001 must not be accepred by sample rate")
}
if client.isSendAcceptedBySampleRate(0.99999999) == false {
t.Errorf("0.99999999 must be accepred by sample rate")
}
}
func TestBufferedClient_Flush(t *testing.T) {
client := NewBufferedClient("127.0.0.1", 9876)
client.Open()
client.conn = new(udpConnectionStub)
err := client.Flush()
if err != nil {
t.Errorf("Flush fails with error: %s", err)
}
go func() {
metricPacketBytes := <-udpConnectionStubIO
actualMetricPacket := strings.Replace(
string(metricPacketBytes),
"\n",
"@",
-1,
)
expectedMetricPacket := "a.a:42|[email protected]:43|[email protected]:44|[email protected]:+45|[email protected]:+46|[email protected]:47|s"
if expectedMetricPacket != actualMetricPacket {
t.Errorf(
"Wrong metric packet send by buffered client: %s, expected: %s",
actualMetricPacket,
expectedMetricPacket,
)
}
}()
client.Count("a.a", 42, 1)
client.Timing("a.b", 43, 1)
client.Gauge("a.c", 44)
client.GaugeShift("a.d", 45)
client.GaugeShift("a.e", 46)
client.Set("a.f", 47)
err = client.Flush()
if err != nil {
t.Errorf("Flush fails with error: %s", err)
}
}
func TestClient_Flush(t *testing.T) {
client := NewClient("127.0.0.1", 9876)
err := client.Flush()
if err == nil {
t.Errorf("Flush in unbuffered mode must return error")
}
if err.Error() != "Invalid call of flush in unbuffered mode" {
t.Errorf("Invalid error on flush in unbuffered mode")
}
}
func TestClient_Send_Count(t *testing.T) {
client := NewClient("127.0.0.1", 9876)
client.Open()
client.conn = new(udpConnectionStub)
go func() {
actualCountMetricPacketBytes := <-udpConnectionStubIO
expectedCountMetricPacket := "a.a:42|c"
if expectedCountMetricPacket != string(actualCountMetricPacketBytes) {
t.Errorf(
"Wrong count metric packet send by unbuffered client: %s, expected: %s",
string(actualCountMetricPacketBytes),
expectedCountMetricPacket,
)
}
}()
client.Count("a.a", 42, 1)
}
func TestClient_Send_Timing(t *testing.T) {
client := NewClient("127.0.0.1", 9876)
client.Open()
client.conn = new(udpConnectionStub)
go func() {
actualTimingMetricPacketBytes := <-udpConnectionStubIO
expectedTimingMetricPacket := "a.b:43|ms"
if expectedTimingMetricPacket != string(actualTimingMetricPacketBytes) {
t.Errorf(
"Wrong timing metric packet send by unbuffered client: %s, expected: %s",
string(actualTimingMetricPacketBytes),
expectedTimingMetricPacket,
)
}
}()
client.Timing("a.b", 43, 1)
}