Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix textual printing of byte slices #266

Merged
merged 1 commit into from Jul 19, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
20 changes: 20 additions & 0 deletions cmp/compare_test.go
Expand Up @@ -1317,6 +1317,26 @@ using the AllowUnexported option.`, "\n"),
x: "d5c14bdf6bac81c27afc5429500ed750\n25483503b557c606dad4f144d27ae10b\n90bdbcdbb6ea7156068e3dcfb7459244\n978f480a6e3cced51e297fbff9a506b7\n",
y: "Xd5c14bdf6bac81c27afc5429500ed750\nX25483503b557c606dad4f144d27ae10b\nX90bdbcdbb6ea7156068e3dcfb7459244\nX978f480a6e3cced51e297fbff9a506b7\n",
reason: "all lines are different, so diffing based on lines is pointless",
}, {
label: label + "/StringifiedBytes",
x: struct{ X []byte }{[]byte("hello, world!")},
y: struct{ X []byte }{},
reason: "[]byte should be printed as text since it is printable text",
}, {
label: label + "/NonStringifiedBytes",
x: struct{ X []byte }{[]byte("\xde\xad\xbe\xef")},
y: struct{ X []byte }{},
reason: "[]byte should not be printed as text since it is binary data",
}, {
label: label + "/StringifiedNamedBytes",
x: struct{ X MyBytes }{MyBytes("hello, world!")},
y: struct{ X MyBytes }{},
reason: "MyBytes should be printed as text since it is printable text",
}, {
label: label + "/NonStringifiedNamedBytes",
x: struct{ X MyBytes }{MyBytes("\xde\xad\xbe\xef")},
y: struct{ X MyBytes }{},
reason: "MyBytes should not be printed as text since it is binary data",
}}
}

Expand Down
3 changes: 2 additions & 1 deletion cmp/report_reflect.go
Expand Up @@ -207,9 +207,10 @@ func (opts formatOptions) FormatValue(v reflect.Value, parentKind reflect.Kind,
// Check whether this is a []byte of text data.
if t.Elem() == reflect.TypeOf(byte(0)) {
b := v.Bytes()
isPrintSpace := func(r rune) bool { return unicode.IsPrint(r) && unicode.IsSpace(r) }
isPrintSpace := func(r rune) bool { return unicode.IsPrint(r) || unicode.IsSpace(r) }
if len(b) > 0 && utf8.Valid(b) && len(bytes.TrimFunc(b, isPrintSpace)) == 0 {
out = opts.formatString("", string(b))
skipType = true
return opts.WithTypeMode(emitType).FormatType(t, out)
}
}
Expand Down
24 changes: 24 additions & 0 deletions cmp/testdata/diffs
Expand Up @@ -1096,6 +1096,30 @@
"978f480a6e3cced51e297fbff9a506b7\n",
}, "")
>>> TestDiff/Reporter/AllLinesDiffer
<<< TestDiff/Reporter/StringifiedBytes
struct{ X []uint8 }{
- X: []uint8("hello, world!"),
+ X: nil,
}
>>> TestDiff/Reporter/StringifiedBytes
<<< TestDiff/Reporter/NonStringifiedBytes
struct{ X []uint8 }{
- X: []uint8{0xde, 0xad, 0xbe, 0xef},
+ X: nil,
}
>>> TestDiff/Reporter/NonStringifiedBytes
<<< TestDiff/Reporter/StringifiedNamedBytes
struct{ X cmp_test.MyBytes }{
- X: cmp_test.MyBytes("hello, world!"),
+ X: nil,
}
>>> TestDiff/Reporter/StringifiedNamedBytes
<<< TestDiff/Reporter/NonStringifiedNamedBytes
struct{ X cmp_test.MyBytes }{
- X: cmp_test.MyBytes{0xde, 0xad, 0xbe, 0xef},
+ X: nil,
}
>>> TestDiff/Reporter/NonStringifiedNamedBytes
<<< TestDiff/EmbeddedStruct/ParentStructA/Inequal
teststructs.ParentStructA{
privateStruct: teststructs.privateStruct{
Expand Down