Skip to content

Commit

Permalink
Merge pull request #266 from dsnet/fix-format
Browse files Browse the repository at this point in the history
Fix textual printing of byte slices
  • Loading branch information
neild committed Jul 19, 2021
2 parents 290a6a2 + d5fcb38 commit 402949e
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 1 deletion.
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

0 comments on commit 402949e

Please sign in to comment.