add test for default_label_strategy.go
This commit is contained in:
parent
f7bc5148a4
commit
1a8e03f272
38
metrics/default_label_strategy_test.go
Normal file
38
metrics/default_label_strategy_test.go
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
package metrics
|
||||||
|
|
||||||
|
import (
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/czerwonk/bird_exporter/protocol"
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestLabelNames(t *testing.T) {
|
||||||
|
s := NewDefaultLabelStrategy(true, `(\w+\s*)=(\s*\w+)`)
|
||||||
|
labels := s.LabelNames(&protocol.Protocol{
|
||||||
|
Name: "test",
|
||||||
|
Description: " foo = bar x: y",
|
||||||
|
ImportFilter: "in",
|
||||||
|
ExportFilter: "out",
|
||||||
|
IPVersion: "6",
|
||||||
|
Proto: protocol.BGP,
|
||||||
|
})
|
||||||
|
|
||||||
|
expected := []string{"name", "proto", "ip_version", "import_filter", "export_filter", "foo"}
|
||||||
|
assert.Equal(t, expected, labels)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestLabelValues(t *testing.T) {
|
||||||
|
s := NewDefaultLabelStrategy(true, `(\w+\s*)=(\s*\w+)`)
|
||||||
|
values := s.LabelValues(&protocol.Protocol{
|
||||||
|
Name: "test",
|
||||||
|
Description: " foo = bar x: y",
|
||||||
|
ImportFilter: "in",
|
||||||
|
ExportFilter: "out",
|
||||||
|
IPVersion: "6",
|
||||||
|
Proto: protocol.BGP,
|
||||||
|
})
|
||||||
|
|
||||||
|
expected := []string{"test", "BGP", "6", "in", "out", "bar"}
|
||||||
|
assert.Equal(t, expected, values)
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user