-
Notifications
You must be signed in to change notification settings - Fork 1
/
process_test.go
215 lines (211 loc) · 9.12 KB
/
process_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
/*This file is part of sisyphus.
*
* Copyright Datto, Inc.
* Author: John Seekins <[email protected]>
*
* Licensed under the GNU General Public License Version 3
* Fedora-License-Identifier: GPLv3+
* SPDX-2.0-License-Identifier: GPL-3.0+
* SPDX-3.0-License-Identifier: GPL-3.0-or-later
*
* sisyphus is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* sisyphus is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with sisyphus. If not, see <https://www.gnu.org/licenses/>.
*/
package main
import (
"testing"
)
func TestInfluxLine(t *testing.T) {
var results []InfluxMetric
msg := "test_metric,tag=Value field=1 1637090544726635243"
results = deserializeInfluxLine(1, []byte(msg), false)
if results[0].Timestamp != 1637090544726635243 {
t.Fatalf("Timestamp is invalid: %v -> should be '1637090544726635243'", results[0].Timestamp)
}
if results[0].Name != "test_metric" {
t.Fatalf("Name (without single field flip) is wrong: %v -> should be 'test_metric'", results[0].Name)
}
if len(results[0].Fields) != 1 {
t.Fatalf("field count is wrong: %v -> should be 1", len(results[0].Fields))
}
if results[0].Fields["field"].(float64) != 1 {
t.Fatalf("field value is wrong: %v -> should be '1'", results[0].Fields["field"])
}
if len(results[0].Tags) != 1 {
t.Fatalf("tag count is wrong: %v -> should be 1", len(results[0].Tags))
}
if results[0].Tags["tag"] != "Value" {
t.Fatalf("tag value is wrong: %v -> should be 'Value'", results[0].Tags["tag"])
}
results = deserializeInfluxLine(1, []byte(msg), true)
if results[0].Timestamp != 1637090544726635243 {
t.Fatalf("Timestamp is invalid: %v -> should be '1637090544726635243'", results[0].Timestamp)
}
if results[0].Name != "test_metric_field" {
t.Fatalf("Name (with single field flip) is wrong: %v -> should be 'test_metric_field'", results[0].Name)
}
if len(results[0].Fields) != 1 {
t.Fatalf("field count is wrong: %v -> should be 1", len(results[0].Fields))
}
if results[0].Fields["value"].(float64) != 1 {
t.Fatalf("field value is wrong: %v -> should be '1'", results[0].Fields["value"])
}
if len(results[0].Tags) != 1 {
t.Fatalf("tag count is wrong: %v -> should be 1", len(results[0].Tags))
}
if results[0].Tags["tag"] != "Value" {
t.Fatalf("tag value is wrong: %v -> should be 'Value'", results[0].Tags["tag"])
}
// space after comma and before tags
msg = "test_metric, tag=value field=1 1637090544726635243"
results = deserializeInfluxLine(1, []byte(msg), false)
if len(results) > 0 {
t.Fatalf("Improperly formatted line protocol emitted data? %v", results)
}
}
func TestInfluxJSON(t *testing.T) {
var results []InfluxMetric
msg := "{\"fields\": {\"field\": 1}, \"tags\": {\"tag\": \"Value\"}, \"name\": \"test_metric\", \"timestamp\": 1637090544726635243}"
results = deserializeInfluxJSON(1, []byte(msg), false)
if results[0].Timestamp != 1637090544726635243 {
t.Fatalf("Timestamp is invalid: %v -> should be '1637090544726635243'", results[0].Timestamp)
}
if results[0].Name != "test_metric" {
t.Fatalf("Name (without single field flip) is wrong: %v -> should be 'test_metric'", results[0].Name)
}
if len(results[0].Fields) != 1 {
t.Fatalf("field count is wrong: %v -> should be 1", len(results[0].Fields))
}
if results[0].Fields["field"].(float64) != 1 {
t.Fatalf("field value is wrong: %v -> should be '1'", results[0].Fields["field"])
}
if len(results[0].Tags) != 1 {
t.Fatalf("tag count is wrong: %v -> should be 1", len(results[0].Tags))
}
if results[0].Tags["tag"] != "Value" {
t.Fatalf("tag value is wrong: %v -> should be 'Value'", results[0].Tags["tag"])
}
results = deserializeInfluxJSON(1, []byte(msg), true)
if results[0].Timestamp != 1637090544726635243 {
t.Fatalf("Timestamp is invalid: %v -> should be '1637090544726635243'", results[0].Timestamp)
}
if results[0].Name != "test_metric_field" {
t.Fatalf("Name (with single field flip) is wrong: %v -> should be 'test_metric_field'", results[0].Name)
}
if len(results[0].Fields) != 1 {
t.Fatalf("field count is wrong: %v -> should be 1", len(results[0].Fields))
}
if results[0].Fields["value"].(float64) != 1 {
t.Fatalf("field value is wrong: %v -> should be '1'", results[0].Fields["value"])
}
if len(results[0].Tags) != 1 {
t.Fatalf("tag count is wrong: %v -> should be 1", len(results[0].Tags))
}
if results[0].Tags["tag"] != "Value" {
t.Fatalf("tag value is wrong: %v -> should be 'Value'", results[0].Tags["tag"])
}
// missing comma after `fields` object
msg = "{\"fields\": {\"field\": 1} \"tags\": {\"tag\": \"value\"}, \"name\": \"test_metric\", \"timestamp\": 1637090544726635243}"
results = deserializeInfluxJSON(1, []byte(msg), false)
if len(results) > 0 {
t.Fatalf("Improperly formatted influx JSON emitted data? %v", results)
}
}
func TestPrometheusJSON(t *testing.T) {
var results []InfluxMetric
msg := "{\"value\": \"2\", \"name\": \"test_metric_field\", \"timestamp\": \"2021-11-16T07:20:50.52Z\", \"labels\": {\"__name__\": \"test_metric_field\", \"tag\": \"Value\"}}"
results = deserializePromJSON(1, []byte(msg), false, false)
// timestamp gets smooshed down to seconds in parsing
if results[0].Timestamp != 1637047250 {
t.Fatalf("Timestamp is invalid: %v -> should be '1637047250'", results[0].Timestamp)
}
if results[0].Name != "test_metric" {
t.Fatalf("Name (without single field flip) is wrong: %v -> should be 'test_metric'", results[0].Name)
}
if len(results[0].Fields) != 1 {
t.Fatalf("field count is wrong: %v -> should be 1", len(results[0].Fields))
}
if results[0].Fields["field"].(string) != "2" {
t.Fatalf("field value is wrong: %v -> should be '2'", results[0].Fields["field"])
}
if len(results[0].Tags) != 1 {
t.Fatalf("tag count is wrong: %v -> should be 1", len(results[0].Tags))
}
if results[0].Tags["tag"] != "Value" {
t.Fatalf("tag value is wrong: %v -> should be 'Value'", results[0].Tags["tag"])
}
results = deserializePromJSON(1, []byte(msg), false, true)
if results[0].Timestamp != 1637047250 {
t.Fatalf("Timestamp is invalid: %v -> should be '1637047250'", results[0].Timestamp)
}
if results[0].Name != "test_metric_field" {
t.Fatalf("Name (with single field flip) is wrong: %v -> should be 'test_metric_field'", results[0].Name)
}
if len(results[0].Fields) != 1 {
t.Fatalf("field count is wrong: %v -> should be 1", len(results[0].Fields))
}
if results[0].Fields["value"].(string) != "2" {
t.Fatalf("field value is wrong: %v -> should be '2'", results[0].Fields["value"])
}
if len(results[0].Tags) != 1 {
t.Fatalf("tag count is wrong: %v -> should be 1", len(results[0].Tags))
}
if results[0].Tags["tag"] != "Value" {
t.Fatalf("tag value is wrong: %v -> should be 'Value'", results[0].Tags["tag"])
}
msg = "{\"value\": \"2\", \"name\": \"test_metric_field\", \"timestamp\": \"2021-11-16T07:20:50.52Z\", \"labels\": {\"__name__\": \"test_metric_field\", \"tag\": \"Value\"}}"
results = deserializePromJSON(1, []byte(msg), true, false)
if results[0].Timestamp != 1637047250 {
t.Fatalf("Timestamp is invalid: %v -> should be '1637047250'", results[0].Timestamp)
}
if results[0].Name != "test_metric" {
t.Fatalf("Name (without single field flip) is wrong: %v -> should be 'test_metric'", results[0].Name)
}
if len(results[0].Fields) != 1 {
t.Fatalf("field count is wrong: %v -> should be 1", len(results[0].Fields))
}
if results[0].Fields["field"].(string) != "2" {
t.Fatalf("field value is wrong: %v -> should be '2'", results[0].Fields["field"])
}
if len(results[0].Tags) != 1 {
t.Fatalf("tag count is wrong: %v -> should be 1", len(results[0].Tags))
}
if results[0].Tags["tag"] != "value" {
t.Fatalf("tag value is wrong: %v -> should be 'value'", results[0].Tags["tag"])
}
results = deserializePromJSON(1, []byte(msg), true, true)
if results[0].Timestamp != 1637047250 {
t.Fatalf("Timestamp is invalid: %v -> should be '1637047250'", results[0].Timestamp)
}
if results[0].Name != "test_metric_field" {
t.Fatalf("Name (with single field flip) is wrong: %v -> should be 'test_metric_field'", results[0].Name)
}
if len(results[0].Fields) != 1 {
t.Fatalf("field count is wrong: %v -> should be 1", len(results[0].Fields))
}
if results[0].Fields["value"].(string) != "2" {
t.Fatalf("field value is wrong: %v -> should be '2'", results[0].Fields["value"])
}
if len(results[0].Tags) != 1 {
t.Fatalf("tag count is wrong: %v -> should be 1", len(results[0].Tags))
}
if results[0].Tags["tag"] != "value" {
t.Fatalf("tag value is wrong: %v -> should be 'value'", results[0].Tags["tag"])
}
// no comma after value
msg = "{\"value\": \"2\" \"timestamp\": 1637090544726635243, \"labels\": {\"__name__\": \"test_metric\", \"tag\": \"value\"}}"
results = deserializePromJSON(1, []byte(msg), false, false)
if len(results) > 0 {
t.Fatalf("Improperly formatted Prometheus JSON emitted data? %v", results)
}
}