2017-08-19 23:57:48 +03:00
|
|
|
package prometheus
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestNewConstMetricInvalidLabelValues(t *testing.T) {
|
|
|
|
testCases := []struct {
|
|
|
|
desc string
|
|
|
|
labels Labels
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
desc: "non utf8 label value",
|
|
|
|
labels: Labels{"a": "\xFF"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "not enough label values",
|
|
|
|
labels: Labels{},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "too many label values",
|
|
|
|
labels: Labels{"a": "1", "b": "2"},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range testCases {
|
2017-08-20 01:53:55 +03:00
|
|
|
metricDesc := NewDesc(
|
|
|
|
"sample_value",
|
|
|
|
"sample value",
|
|
|
|
[]string{"a"},
|
|
|
|
Labels{},
|
|
|
|
)
|
2017-08-19 23:57:48 +03:00
|
|
|
|
2017-08-20 01:53:55 +03:00
|
|
|
expectPanic(t, func() {
|
|
|
|
MustNewConstMetric(metricDesc, CounterValue, 0.3, "\xFF")
|
|
|
|
}, fmt.Sprintf("WithLabelValues: expected panic because: %s", test.desc))
|
2017-08-19 23:57:48 +03:00
|
|
|
|
2017-08-20 01:53:55 +03:00
|
|
|
if _, err := NewConstMetric(metricDesc, CounterValue, 0.3, "\xFF"); err == nil {
|
|
|
|
t.Errorf("NewConstMetric: expected error because: %s", test.desc)
|
|
|
|
}
|
2017-08-19 23:57:48 +03:00
|
|
|
}
|
|
|
|
}
|