Skip to content

Commit 6bb2990

Browse files
committed
test: add more test cases for map, slice, struct
Those are types for which the Sprintf("%+v") catchall code is used.
1 parent 77b73d5 commit 6bb2990

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

test/output.go

+18
Original file line numberDiff line numberDiff line change
@@ -404,6 +404,24 @@ I output.go:<LINE>] "test" firstKey=1 secondKey=3
404404
text: "map keys",
405405
values: []interface{}{map[string]bool{"test": true}, "test"},
406406
expectedOutput: `I output.go:<LINE>] "map keys" map[test:%!s(bool=true)]="test"
407+
`,
408+
},
409+
"map values": {
410+
text: "maps",
411+
values: []interface{}{"s", map[string]string{"hello": "world"}, "i", map[int]int{1: 2, 3: 4}},
412+
expectedOutput: `I output.go:<LINE>] "maps" s=map[hello:world] i=map[1:2 3:4]
413+
`,
414+
},
415+
"slice values": {
416+
text: "slices",
417+
values: []interface{}{"s", []string{"hello", "world"}, "i", []int{1, 2, 3}},
418+
expectedOutput: `I output.go:<LINE>] "slices" s=[hello world] i=[1 2 3]
419+
`,
420+
},
421+
"struct values": {
422+
text: "structs",
423+
values: []interface{}{"s", struct{ Name, Kind, hidden string }{Name: "worker", Kind: "pod", hidden: "ignore"}},
424+
expectedOutput: `I output.go:<LINE>] "structs" s={Name:worker Kind:pod hidden:ignore}
407425
`,
408426
},
409427
}

test/zapr.go

+10
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,16 @@ I output.go:<LINE>] "odd WithValues" keyWithoutValue="(MISSING)"
237237
}
238238
>
239239
`: `{"caller":"test/output.go:<LINE>","msg":"Format","v":0,"config":{"Kind":"config","RealField":42}}
240+
`,
241+
`I output.go:<LINE>] "maps" s=map[hello:world] i=map[1:2 3:4]
242+
`: `{"caller":"test/output.go:<LINE>","msg":"maps","v":0,"s":{"hello":"world"},"i":{"1":2,"3":4}}
243+
`,
244+
245+
`I output.go:<LINE>] "slices" s=[hello world] i=[1 2 3]
246+
`: `{"caller":"test/output.go:<LINE>","msg":"slices","v":0,"s":["hello","world"],"i":[1,2,3]}
247+
`,
248+
`I output.go:<LINE>] "structs" s={Name:worker Kind:pod hidden:ignore}
249+
`: `{"caller":"test/output.go:<LINE>","msg":"structs","v":0,"s":{"Name":"worker","Kind":"pod"}}
240250
`,
241251
}
242252
}

0 commit comments

Comments
 (0)