forked from grafana/loki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathseries_test.go
112 lines (105 loc) · 2.42 KB
/
series_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
package loghttp
import (
"net/http"
"net/url"
"testing"
"github.com/stretchr/testify/require"
"github.com/grafana/loki/pkg/logproto"
)
func TestParseSeriesQuery(t *testing.T) {
for _, tc := range []struct {
desc string
input *http.Request
shouldErr bool
expected *logproto.SeriesRequest
}{
{
"no match",
withForm(url.Values{
"start": []string{"1000"},
"end": []string{"2000"},
}),
false,
mkSeriesRequest(t, "1000", "2000", []string{}),
},
{
"empty matcher",
withForm(url.Values{
"start": []string{"1000"},
"end": []string{"2000"},
"match": []string{"{}"},
}),
false,
mkSeriesRequest(t, "1000", "2000", []string{}),
},
{
"empty matcher with whitespace",
withForm(url.Values{
"start": []string{"1000"},
"end": []string{"2000"},
"match": []string{" { }"},
}),
false,
mkSeriesRequest(t, "1000", "2000", []string{}),
},
{
"multiple matches",
withForm(url.Values{
"start": []string{"1000"},
"end": []string{"2000"},
"match": []string{`{a="1"}`, `{b="2", c=~"3", d!="4"}`},
}),
false,
mkSeriesRequest(t, "1000", "2000", []string{`{a="1"}`, `{b="2", c=~"3", d!="4"}`}),
},
{
"mixes match encodings",
withForm(url.Values{
"start": []string{"1000"},
"end": []string{"2000"},
"match": []string{`{a="1"}`},
"match[]": []string{`{b="2"}`},
}),
false,
mkSeriesRequest(t, "1000", "2000", []string{`{a="1"}`, `{b="2"}`}),
},
{
"dedupes match encodings",
withForm(url.Values{
"start": []string{"1000"},
"end": []string{"2000"},
"match": []string{`{a="1"}`, `{b="2"}`},
"match[]": []string{`{b="2"}`, `{c="3"}`},
}),
false,
mkSeriesRequest(t, "1000", "2000", []string{`{a="1"}`, `{b="2"}`, `{c="3"}`}),
},
} {
t.Run(tc.desc, func(t *testing.T) {
out, err := ParseSeriesQuery(tc.input)
if tc.shouldErr {
require.Error(t, err)
} else {
require.Nil(t, err)
require.Equal(t, tc.expected, out)
}
})
}
}
func withForm(form url.Values) *http.Request {
return &http.Request{Form: form}
}
// nolint
func mkSeriesRequest(t *testing.T, from, to string, matches []string) *logproto.SeriesRequest {
start, end, err := bounds(withForm(url.Values{
"start": []string{from},
"end": []string{to},
}))
require.Nil(t, err)
require.Nil(t, err)
return &logproto.SeriesRequest{
Start: start,
End: end,
Groups: matches,
}
}