forked from beenanner/rsyslog_exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
queues_test.go
126 lines (95 loc) · 3.12 KB
/
queues_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
package main
import "testing"
var (
queueLog = []byte(`{"name":"main Q","size":10,"enqueued":20,"full":30,"discarded.full":40,"discarded.nf":50,"maxqsize":60}`)
)
func TestNewQueueFromJSON(t *testing.T) {
logType := getStatType(queueLog)
if logType != rsyslogQueue {
t.Errorf("detected pstat type should be %d but is %d", rsyslogQueue, logType)
}
pstat := newQueueFromJSON([]byte(queueLog))
if want, got := "main_q", pstat.Name; want != got {
t.Errorf("want '%s', got '%s'", want, got)
}
if want, got := int64(10), pstat.Size; want != got {
t.Errorf("want '%d', got '%d'", want, got)
}
if want, got := int64(20), pstat.Enqueued; want != got {
t.Errorf("want '%d', got '%d'", want, got)
}
if want, got := int64(30), pstat.Full; want != got {
t.Errorf("want '%d', got '%d'", want, got)
}
if want, got := int64(40), pstat.DiscardedFull; want != got {
t.Errorf("want '%d', got '%d'", want, got)
}
if want, got := int64(50), pstat.DiscardedNf; want != got {
t.Errorf("want '%d', got '%d'", want, got)
}
if want, got := int64(60), pstat.MaxQsize; want != got {
t.Errorf("want '%d', got '%d'", want, got)
}
}
func TestQueueToPoints(t *testing.T) {
pstat := newQueueFromJSON([]byte(queueLog))
points := pstat.toPoints()
point := points[0]
if want, got := "main_q_size", point.Name; want != got {
t.Errorf("want '%s', got '%s'", want, got)
}
if want, got := int64(10), point.Value; want != got {
}
if want, got := gauge, point.Type; want != got {
}
point = points[1]
if want, got := "main_q_enqueued", point.Name; want != got {
t.Errorf("want '%s', got '%s'", want, got)
}
if want, got := int64(20), point.Value; want != got {
t.Errorf("want '%d', got '%d'", want, got)
}
if want, got := counter, point.Type; want != got {
t.Errorf("want '%d', got '%d'", want, got)
}
point = points[2]
if want, got := "main_q_full", point.Name; want != got {
t.Errorf("want '%s', got '%s'", want, got)
}
if want, got := int64(30), point.Value; want != got {
t.Errorf("want '%d', got '%d'", want, got)
}
if want, got := counter, point.Type; want != got {
t.Errorf("want '%d', got '%d'", want, got)
}
point = points[3]
if want, got := "main_q_discarded_full", point.Name; want != got {
t.Errorf("want '%s', got '%s'", want, got)
}
if want, got := int64(40), point.Value; want != got {
t.Errorf("want '%d', got '%d'", want, got)
}
if want, got := counter, point.Type; want != got {
t.Errorf("want '%d', got '%d'", want, got)
}
point = points[4]
if want, got := "main_q_discarded_not_full", point.Name; want != got {
t.Errorf("want '%s', got '%s'", want, got)
}
if want, got := int64(50), point.Value; want != got {
t.Errorf("want '%d', got '%d'", want, got)
}
if want, got := counter, point.Type; want != got {
t.Errorf("want '%d', got '%d'", want, got)
}
point = points[5]
if want, got := "main_q_max_queue_size", point.Name; want != got {
t.Errorf("want '%s', got '%s'", want, got)
}
if want, got := int64(60), point.Value; want != got {
t.Errorf("want '%d', got '%d'", want, got)
}
if want, got := gauge, point.Type; want != got {
t.Errorf("want '%d', got '%d'", want, got)
}
}