Browse Source

add unit test TestLabels_String for pkg/labels/labels.go (#7150)

Signed-off-by: ZouYu <zouy.fnst@cn.fujitsu.com>
pull/7157/head
ZouYu 5 years ago committed by GitHub
parent
commit
06493b7034
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 33
      pkg/labels/labels_test.go

33
pkg/labels/labels_test.go

@ -19,6 +19,39 @@ import (
"github.com/prometheus/prometheus/util/testutil"
)
func TestLabels_String(t *testing.T) {
cases := []struct {
lables Labels
expected string
}{
{
lables: Labels{
{
Name: "t1",
Value: "t1",
},
{
Name: "t2",
Value: "t2",
},
},
expected: "{t1=\"t1\", t2=\"t2\"}",
},
{
lables: Labels{},
expected: "{}",
},
{
lables: nil,
expected: "{}",
},
}
for _, c := range cases {
str := c.lables.String()
testutil.Equals(t, c.expected, str)
}
}
func TestLabels_MatchLabels(t *testing.T) {
labels := Labels{
{

Loading…
Cancel
Save