mirror of
https://github.com/prometheus/prometheus.git
synced 2025-03-05 20:59:13 -08:00
Update package web tests for new labels.Labels type
Use `FromStrings` instead of assuming the data structure. And don't sort individual labels, since `labels.Labels` are always sorted. Signed-off-by: Bryan Boreham <bjboreham@gmail.com>
This commit is contained in:
parent
5bc4643122
commit
fd57569683
|
@ -90,8 +90,8 @@ type testTargetRetriever struct {
|
||||||
|
|
||||||
type testTargetParams struct {
|
type testTargetParams struct {
|
||||||
Identifier string
|
Identifier string
|
||||||
Labels []labels.Label
|
Labels labels.Labels
|
||||||
DiscoveredLabels []labels.Label
|
DiscoveredLabels labels.Labels
|
||||||
Params url.Values
|
Params url.Values
|
||||||
Reports []*testReport
|
Reports []*testReport
|
||||||
Active bool
|
Active bool
|
||||||
|
@ -508,9 +508,9 @@ func TestGetSeries(t *testing.T) {
|
||||||
name: "non empty label matcher",
|
name: "non empty label matcher",
|
||||||
matchers: []string{`{foo=~".+"}`},
|
matchers: []string{`{foo=~".+"}`},
|
||||||
expected: []labels.Labels{
|
expected: []labels.Labels{
|
||||||
{labels.Label{Name: "__name__", Value: "test_metric2"}, labels.Label{Name: "abc", Value: "qwerty"}, labels.Label{Name: "foo", Value: "baz"}},
|
labels.FromStrings("__name__", "test_metric2", "abc", "qwerty", "foo", "baz"),
|
||||||
{labels.Label{Name: "__name__", Value: "test_metric2"}, labels.Label{Name: "foo", Value: "boo"}},
|
labels.FromStrings("__name__", "test_metric2", "foo", "boo"),
|
||||||
{labels.Label{Name: "__name__", Value: "test_metric2"}, labels.Label{Name: "foo", Value: "boo"}, labels.Label{Name: "xyz", Value: "qwerty"}},
|
labels.FromStrings("__name__", "test_metric2", "foo", "boo", "xyz", "qwerty"),
|
||||||
},
|
},
|
||||||
api: api,
|
api: api,
|
||||||
},
|
},
|
||||||
|
@ -518,8 +518,8 @@ func TestGetSeries(t *testing.T) {
|
||||||
name: "exact label matcher",
|
name: "exact label matcher",
|
||||||
matchers: []string{`{foo="boo"}`},
|
matchers: []string{`{foo="boo"}`},
|
||||||
expected: []labels.Labels{
|
expected: []labels.Labels{
|
||||||
{labels.Label{Name: "__name__", Value: "test_metric2"}, labels.Label{Name: "foo", Value: "boo"}},
|
labels.FromStrings("__name__", "test_metric2", "foo", "boo"),
|
||||||
{labels.Label{Name: "__name__", Value: "test_metric2"}, labels.Label{Name: "foo", Value: "boo"}, labels.Label{Name: "xyz", Value: "qwerty"}},
|
labels.FromStrings("__name__", "test_metric2", "foo", "boo", "xyz", "qwerty"),
|
||||||
},
|
},
|
||||||
api: api,
|
api: api,
|
||||||
},
|
},
|
||||||
|
@ -527,9 +527,9 @@ func TestGetSeries(t *testing.T) {
|
||||||
name: "two matchers",
|
name: "two matchers",
|
||||||
matchers: []string{`{foo="boo"}`, `{foo="baz"}`},
|
matchers: []string{`{foo="boo"}`, `{foo="baz"}`},
|
||||||
expected: []labels.Labels{
|
expected: []labels.Labels{
|
||||||
{labels.Label{Name: "__name__", Value: "test_metric2"}, labels.Label{Name: "abc", Value: "qwerty"}, labels.Label{Name: "foo", Value: "baz"}},
|
labels.FromStrings("__name__", "test_metric2", "abc", "qwerty", "foo", "baz"),
|
||||||
{labels.Label{Name: "__name__", Value: "test_metric2"}, labels.Label{Name: "foo", Value: "boo"}},
|
labels.FromStrings("__name__", "test_metric2", "foo", "boo"),
|
||||||
{labels.Label{Name: "__name__", Value: "test_metric2"}, labels.Label{Name: "foo", Value: "boo"}, labels.Label{Name: "xyz", Value: "qwerty"}},
|
labels.FromStrings("__name__", "test_metric2", "foo", "boo", "xyz", "qwerty"),
|
||||||
},
|
},
|
||||||
api: api,
|
api: api,
|
||||||
},
|
},
|
||||||
|
@ -558,12 +558,6 @@ func TestGetSeries(t *testing.T) {
|
||||||
assertAPIError(t, res.err, tc.expectedErrorType)
|
assertAPIError(t, res.err, tc.expectedErrorType)
|
||||||
if tc.expectedErrorType == errorNone {
|
if tc.expectedErrorType == errorNone {
|
||||||
r := res.data.([]labels.Labels)
|
r := res.data.([]labels.Labels)
|
||||||
for _, l := range tc.expected {
|
|
||||||
sort.Sort(l)
|
|
||||||
}
|
|
||||||
for _, l := range r {
|
|
||||||
sort.Sort(l)
|
|
||||||
}
|
|
||||||
sort.Sort(byLabels(tc.expected))
|
sort.Sort(byLabels(tc.expected))
|
||||||
sort.Sort(byLabels(r))
|
sort.Sort(byLabels(r))
|
||||||
require.Equal(t, tc.expected, r)
|
require.Equal(t, tc.expected, r)
|
||||||
|
@ -928,7 +922,7 @@ func setupTestTargetRetriever(t *testing.T) *testTargetRetriever {
|
||||||
model.ScrapeIntervalLabel: "15s",
|
model.ScrapeIntervalLabel: "15s",
|
||||||
model.ScrapeTimeoutLabel: "5s",
|
model.ScrapeTimeoutLabel: "5s",
|
||||||
}),
|
}),
|
||||||
DiscoveredLabels: nil,
|
DiscoveredLabels: labels.EmptyLabels(),
|
||||||
Params: url.Values{},
|
Params: url.Values{},
|
||||||
Reports: []*testReport{{scrapeStart, 70 * time.Millisecond, nil}},
|
Reports: []*testReport{{scrapeStart, 70 * time.Millisecond, nil}},
|
||||||
Active: true,
|
Active: true,
|
||||||
|
@ -943,14 +937,14 @@ func setupTestTargetRetriever(t *testing.T) *testTargetRetriever {
|
||||||
model.ScrapeIntervalLabel: "20s",
|
model.ScrapeIntervalLabel: "20s",
|
||||||
model.ScrapeTimeoutLabel: "10s",
|
model.ScrapeTimeoutLabel: "10s",
|
||||||
}),
|
}),
|
||||||
DiscoveredLabels: nil,
|
DiscoveredLabels: labels.EmptyLabels(),
|
||||||
Params: url.Values{"target": []string{"example.com"}},
|
Params: url.Values{"target": []string{"example.com"}},
|
||||||
Reports: []*testReport{{scrapeStart, 100 * time.Millisecond, errors.New("failed")}},
|
Reports: []*testReport{{scrapeStart, 100 * time.Millisecond, errors.New("failed")}},
|
||||||
Active: true,
|
Active: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
Identifier: "blackbox",
|
Identifier: "blackbox",
|
||||||
Labels: nil,
|
Labels: labels.EmptyLabels(),
|
||||||
DiscoveredLabels: labels.FromMap(map[string]string{
|
DiscoveredLabels: labels.FromMap(map[string]string{
|
||||||
model.SchemeLabel: "http",
|
model.SchemeLabel: "http",
|
||||||
model.AddressLabel: "http://dropped.example.com:9115",
|
model.AddressLabel: "http://dropped.example.com:9115",
|
||||||
|
@ -1111,7 +1105,7 @@ func testEndpoints(t *testing.T, api *API, tr *testTargetRetriever, es storage.E
|
||||||
{V: 1, T: timestamp.FromTime(start.Add(1 * time.Second))},
|
{V: 1, T: timestamp.FromTime(start.Add(1 * time.Second))},
|
||||||
{V: 2, T: timestamp.FromTime(start.Add(2 * time.Second))},
|
{V: 2, T: timestamp.FromTime(start.Add(2 * time.Second))},
|
||||||
},
|
},
|
||||||
Metric: nil,
|
// No Metric returned - use zero value for comparison.
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -3296,7 +3290,7 @@ func BenchmarkRespond(b *testing.B) {
|
||||||
Result: promql.Matrix{
|
Result: promql.Matrix{
|
||||||
promql.Series{
|
promql.Series{
|
||||||
Points: points,
|
Points: points,
|
||||||
Metric: nil,
|
Metric: labels.EmptyLabels(),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -162,7 +162,7 @@ test_metric_without_labels{instance=""} 1001 6000000
|
||||||
},
|
},
|
||||||
"external labels are added if not already present": {
|
"external labels are added if not already present": {
|
||||||
params: "match[]={__name__=~'.%2b'}", // '%2b' is an URL-encoded '+'.
|
params: "match[]={__name__=~'.%2b'}", // '%2b' is an URL-encoded '+'.
|
||||||
externalLabels: labels.Labels{{Name: "foo", Value: "baz"}, {Name: "zone", Value: "ie"}},
|
externalLabels: labels.FromStrings("foo", "baz", "zone", "ie"),
|
||||||
code: 200,
|
code: 200,
|
||||||
body: `# TYPE test_metric1 untyped
|
body: `# TYPE test_metric1 untyped
|
||||||
test_metric1{foo="bar",instance="i",zone="ie"} 10000 6000000
|
test_metric1{foo="bar",instance="i",zone="ie"} 10000 6000000
|
||||||
|
@ -179,7 +179,7 @@ test_metric_without_labels{foo="baz",instance="",zone="ie"} 1001 6000000
|
||||||
// This makes no sense as a configuration, but we should
|
// This makes no sense as a configuration, but we should
|
||||||
// know what it does anyway.
|
// know what it does anyway.
|
||||||
params: "match[]={__name__=~'.%2b'}", // '%2b' is an URL-encoded '+'.
|
params: "match[]={__name__=~'.%2b'}", // '%2b' is an URL-encoded '+'.
|
||||||
externalLabels: labels.Labels{{Name: "instance", Value: "baz"}},
|
externalLabels: labels.FromStrings("instance", "baz"),
|
||||||
code: 200,
|
code: 200,
|
||||||
body: `# TYPE test_metric1 untyped
|
body: `# TYPE test_metric1 untyped
|
||||||
test_metric1{foo="bar",instance="i"} 10000 6000000
|
test_metric1{foo="bar",instance="i"} 10000 6000000
|
||||||
|
|
Loading…
Reference in a new issue