-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlabels_test.go
42 lines (32 loc) · 811 Bytes
/
labels_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
// Copyright 2022 The zapcl Authors
// SPDX-License-Identifier: BSD-3-Clause
package zapcl
import (
"testing"
"github.com/google/go-cmp/cmp"
"github.com/google/go-cmp/cmp/cmpopts"
"go.uber.org/zap"
)
func TestLabel(t *testing.T) {
t.Parallel()
field := Label("key", "value")
if diff := cmp.Diff(field, zap.String("labels.key", "value")); diff != "" {
t.Fatalf("(-want, +got)\n%s\n", diff)
}
}
func TestLabels(t *testing.T) {
t.Parallel()
field := Labels(
"hello", "world",
"hi", "universe",
)
labels := new(labelMap)
for key, val := range map[string]string{"hello": "world", "hi": "universe"} {
labels.Add(key, val)
}
if diff := cmp.Diff(field, zap.Object(LabelsKey, labels),
cmpopts.IgnoreUnexported(labelMap{}),
); diff != "" {
t.Fatalf("(-want, +got)\n%s\n", diff)
}
}