File size: 26,172 Bytes
e36aeda | 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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 | // Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package binary
import (
"bytes"
"fmt"
"internal/asan"
"io"
"math"
"reflect"
"strings"
"sync"
"testing"
"unsafe"
)
type Struct struct {
Int8 int8
Int16 int16
Int32 int32
Int64 int64
Uint8 uint8
Uint16 uint16
Uint32 uint32
Uint64 uint64
Float32 float32
Float64 float64
Complex64 complex64
Complex128 complex128
Array [4]uint8
Bool bool
BoolArray [4]bool
}
type T struct {
Int int
Uint uint
Uintptr uintptr
Array [4]int
}
var s = Struct{
0x01,
0x0203,
0x04050607,
0x08090a0b0c0d0e0f,
0x10,
0x1112,
0x13141516,
0x1718191a1b1c1d1e,
math.Float32frombits(0x1f202122),
math.Float64frombits(0x232425262728292a),
complex(
math.Float32frombits(0x2b2c2d2e),
math.Float32frombits(0x2f303132),
),
complex(
math.Float64frombits(0x333435363738393a),
math.Float64frombits(0x3b3c3d3e3f404142),
),
[4]uint8{0x43, 0x44, 0x45, 0x46},
true,
[4]bool{true, false, true, false},
}
var big = []byte{
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,
43, 44, 45, 46, 47, 48, 49, 50,
51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66,
67, 68, 69, 70,
1,
1, 0, 1, 0,
}
var little = []byte{
1,
3, 2,
7, 6, 5, 4,
15, 14, 13, 12, 11, 10, 9, 8,
16,
18, 17,
22, 21, 20, 19,
30, 29, 28, 27, 26, 25, 24, 23,
34, 33, 32, 31,
42, 41, 40, 39, 38, 37, 36, 35,
46, 45, 44, 43, 50, 49, 48, 47,
58, 57, 56, 55, 54, 53, 52, 51, 66, 65, 64, 63, 62, 61, 60, 59,
67, 68, 69, 70,
1,
1, 0, 1, 0,
}
var src = []byte{1, 2, 3, 4, 5, 6, 7, 8}
var res = []int32{0x01020304, 0x05060708}
var putbuf = []byte{0, 0, 0, 0, 0, 0, 0, 0}
func checkResult(t *testing.T, dir string, order ByteOrder, err error, have, want any) {
t.Helper()
if err != nil {
t.Errorf("%v %v: %v", dir, order, err)
return
}
if !reflect.DeepEqual(have, want) {
t.Errorf("%v %v:\n\thave %+v\n\twant %+v", dir, order, have, want)
}
}
var encoders = []struct {
name string
fn func(order ByteOrder, data any) ([]byte, error)
}{
{
"Write",
func(order ByteOrder, data any) ([]byte, error) {
buf := new(bytes.Buffer)
err := Write(buf, order, data)
return buf.Bytes(), err
},
},
{
"Encode",
func(order ByteOrder, data any) ([]byte, error) {
size := Size(data)
var buf []byte
if size > 0 {
buf = make([]byte, Size(data))
}
n, err := Encode(buf, order, data)
if err == nil && n != size {
return nil, fmt.Errorf("returned size %d instead of %d", n, size)
}
return buf, err
},
}, {
"Append",
func(order ByteOrder, data any) ([]byte, error) {
return Append(nil, order, data)
},
},
}
var decoders = []struct {
name string
fn func(order ByteOrder, data any, buf []byte) error
}{
{
"Read",
func(order ByteOrder, data any, buf []byte) error {
return Read(bytes.NewReader(buf), order, data)
},
},
{
"Decode",
func(order ByteOrder, data any, buf []byte) error {
n, err := Decode(buf, order, data)
if err == nil && n != Size(data) {
return fmt.Errorf("returned size %d instead of %d", n, Size(data))
}
return err
},
},
}
func testRead(t *testing.T, order ByteOrder, b []byte, s1 any) {
t.Helper()
for _, dec := range decoders {
t.Run(dec.name, func(t *testing.T) {
var s2 Struct
err := dec.fn(order, &s2, b)
checkResult(t, dec.name, order, err, s2, s1)
})
}
}
func testWrite(t *testing.T, order ByteOrder, b []byte, s1 any) {
t.Helper()
for _, enc := range encoders {
t.Run(enc.name, func(t *testing.T) {
buf, err := enc.fn(order, s1)
checkResult(t, enc.name, order, err, buf, b)
})
}
}
func TestLittleEndianRead(t *testing.T) { testRead(t, LittleEndian, little, s) }
func TestLittleEndianWrite(t *testing.T) { testWrite(t, LittleEndian, little, s) }
func TestLittleEndianPtrWrite(t *testing.T) { testWrite(t, LittleEndian, little, &s) }
func TestBigEndianRead(t *testing.T) { testRead(t, BigEndian, big, s) }
func TestBigEndianWrite(t *testing.T) { testWrite(t, BigEndian, big, s) }
func TestBigEndianPtrWrite(t *testing.T) { testWrite(t, BigEndian, big, &s) }
func TestReadSlice(t *testing.T) {
t.Run("Read", func(t *testing.T) {
slice := make([]int32, 2)
err := Read(bytes.NewReader(src), BigEndian, slice)
checkResult(t, "ReadSlice", BigEndian, err, slice, res)
})
t.Run("Decode", func(t *testing.T) {
slice := make([]int32, 2)
_, err := Decode(src, BigEndian, slice)
checkResult(t, "ReadSlice", BigEndian, err, slice, res)
})
}
func TestWriteSlice(t *testing.T) {
testWrite(t, BigEndian, src, res)
}
func TestReadBool(t *testing.T) {
for _, dec := range decoders {
t.Run(dec.name, func(t *testing.T) {
var res bool
var err error
err = dec.fn(BigEndian, &res, []byte{0})
checkResult(t, dec.name, BigEndian, err, res, false)
res = false
err = dec.fn(BigEndian, &res, []byte{1})
checkResult(t, dec.name, BigEndian, err, res, true)
res = false
err = dec.fn(BigEndian, &res, []byte{2})
checkResult(t, dec.name, BigEndian, err, res, true)
})
}
}
func TestReadBoolSlice(t *testing.T) {
for _, dec := range decoders {
t.Run(dec.name, func(t *testing.T) {
slice := make([]bool, 4)
err := dec.fn(BigEndian, slice, []byte{0, 1, 2, 255})
checkResult(t, dec.name, BigEndian, err, slice, []bool{false, true, true, true})
})
}
}
// Addresses of arrays are easier to manipulate with reflection than are slices.
var intArrays = []any{
&[100]int8{},
&[100]int16{},
&[100]int32{},
&[100]int64{},
&[100]uint8{},
&[100]uint16{},
&[100]uint32{},
&[100]uint64{},
}
func TestSliceRoundTrip(t *testing.T) {
for _, enc := range encoders {
for _, dec := range decoders {
t.Run(fmt.Sprintf("%s,%s", enc.name, dec.name), func(t *testing.T) {
for _, array := range intArrays {
src := reflect.ValueOf(array).Elem()
t.Run(src.Index(0).Type().Name(), func(t *testing.T) {
unsigned := false
switch src.Index(0).Kind() {
case reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
unsigned = true
}
for i := 0; i < src.Len(); i++ {
if unsigned {
src.Index(i).SetUint(uint64(i * 0x07654321))
} else {
src.Index(i).SetInt(int64(i * 0x07654321))
}
}
srcSlice := src.Slice(0, src.Len())
buf, err := enc.fn(BigEndian, srcSlice.Interface())
if err != nil {
t.Fatal(err)
}
dst := reflect.New(src.Type()).Elem()
dstSlice := dst.Slice(0, dst.Len())
err = dec.fn(BigEndian, dstSlice.Interface(), buf)
if err != nil {
t.Fatal(err)
}
if !reflect.DeepEqual(src.Interface(), dst.Interface()) {
t.Log(dst)
t.Fatal(src)
}
})
}
})
}
}
}
func TestWriteT(t *testing.T) {
for _, enc := range encoders {
t.Run(enc.name, func(t *testing.T) {
ts := T{}
if _, err := enc.fn(BigEndian, ts); err == nil {
t.Errorf("WriteT: have err == nil, want non-nil")
}
tv := reflect.Indirect(reflect.ValueOf(ts))
for i, n := 0, tv.NumField(); i < n; i++ {
typ := tv.Field(i).Type().String()
if typ == "[4]int" {
typ = "int" // the problem is int, not the [4]
}
if _, err := enc.fn(BigEndian, tv.Field(i).Interface()); err == nil {
t.Errorf("WriteT.%v: have err == nil, want non-nil", tv.Field(i).Type())
} else if !strings.Contains(err.Error(), typ) {
t.Errorf("WriteT: have err == %q, want it to mention %s", err, typ)
}
}
})
}
}
type BlankFields struct {
A uint32
_ int32
B float64
_ [4]int16
C byte
_ [7]byte
_ struct {
f [8]float32
}
}
type BlankFieldsProbe struct {
A uint32
P0 int32
B float64
P1 [4]int16
C byte
P2 [7]byte
P3 struct {
F [8]float32
}
}
func TestBlankFields(t *testing.T) {
for _, enc := range encoders {
t.Run(enc.name, func(t *testing.T) {
b1 := BlankFields{A: 1234567890, B: 2.718281828, C: 42}
buf, err := enc.fn(LittleEndian, &b1)
if err != nil {
t.Error(err)
}
// zero values must have been written for blank fields
var p BlankFieldsProbe
if err := Read(bytes.NewReader(buf), LittleEndian, &p); err != nil {
t.Error(err)
}
// quick test: only check first value of slices
if p.P0 != 0 || p.P1[0] != 0 || p.P2[0] != 0 || p.P3.F[0] != 0 {
t.Errorf("non-zero values for originally blank fields: %#v", p)
}
// write p and see if we can probe only some fields
buf, err = enc.fn(LittleEndian, &p)
if err != nil {
t.Error(err)
}
// read should ignore blank fields in b2
var b2 BlankFields
if err := Read(bytes.NewReader(buf), LittleEndian, &b2); err != nil {
t.Error(err)
}
if b1.A != b2.A || b1.B != b2.B || b1.C != b2.C {
t.Errorf("%#v != %#v", b1, b2)
}
})
}
}
func TestSizeStructCache(t *testing.T) {
// Reset the cache, otherwise multiple test runs fail.
structSize = sync.Map{}
count := func() int {
var i int
structSize.Range(func(_, _ any) bool {
i++
return true
})
return i
}
var total int
added := func() int {
delta := count() - total
total += delta
return delta
}
type foo struct {
A uint32
}
type bar struct {
A Struct
B foo
C Struct
}
testcases := []struct {
val any
want int
}{
{new(foo), 1},
{new([1]foo), 0},
{make([]foo, 1), 0},
{new(bar), 1},
{new(bar), 0},
{new(struct{ A Struct }), 1},
{new(struct{ A Struct }), 0},
{new([1]struct{ A Struct }), 0},
{make([]struct{ A Struct }, 1), 0},
}
for _, tc := range testcases {
if Size(tc.val) == -1 {
t.Fatalf("Can't get the size of %T", tc.val)
}
if n := added(); n != tc.want {
t.Errorf("Sizing %T added %d entries to the cache, want %d", tc.val, n, tc.want)
}
}
}
func TestSizeInvalid(t *testing.T) {
testcases := []any{
int(0),
new(int),
(*int)(nil),
[1]uint{},
new([1]uint),
(*[1]uint)(nil),
[]int{},
[]int(nil),
new([]int),
(*[]int)(nil),
(*int8)(nil),
(*uint8)(nil),
(*int16)(nil),
(*uint16)(nil),
(*int32)(nil),
(*uint32)(nil),
(*int64)(nil),
(*uint64)(nil),
(*float32)(nil),
(*float64)(nil),
(*complex64)(nil),
(*complex128)(nil),
}
for _, tc := range testcases {
if got := Size(tc); got != -1 {
t.Errorf("Size(%T) = %d, want -1", tc, got)
}
}
}
// An attempt to read into a struct with an unexported field will
// panic. This is probably not the best choice, but at this point
// anything else would be an API change.
type Unexported struct {
a int32
}
func TestUnexportedRead(t *testing.T) {
var buf bytes.Buffer
u1 := Unexported{a: 1}
if err := Write(&buf, LittleEndian, &u1); err != nil {
t.Fatal(err)
}
for _, dec := range decoders {
t.Run(dec.name, func(t *testing.T) {
defer func() {
if recover() == nil {
t.Fatal("did not panic")
}
}()
var u2 Unexported
dec.fn(LittleEndian, &u2, buf.Bytes())
})
}
}
func TestReadErrorMsg(t *testing.T) {
for _, dec := range decoders {
t.Run(dec.name, func(t *testing.T) {
read := func(data any) {
err := dec.fn(LittleEndian, data, nil)
want := fmt.Sprintf("binary.%s: invalid type %s", dec.name, reflect.TypeOf(data).String())
if err == nil {
t.Errorf("%T: got no error; want %q", data, want)
return
}
if got := err.Error(); got != want {
t.Errorf("%T: got %q; want %q", data, got, want)
}
}
read(0)
s := new(struct{})
read(&s)
p := &s
read(&p)
})
}
}
func TestReadTruncated(t *testing.T) {
const data = "0123456789abcdef"
var b1 = make([]int32, 4)
var b2 struct {
A, B, C, D byte
E int32
F float64
}
for i := 0; i <= len(data); i++ {
var errWant error
switch i {
case 0:
errWant = io.EOF
case len(data):
errWant = nil
default:
errWant = io.ErrUnexpectedEOF
}
if err := Read(strings.NewReader(data[:i]), LittleEndian, &b1); err != errWant {
t.Errorf("Read(%d) with slice: got %v, want %v", i, err, errWant)
}
if err := Read(strings.NewReader(data[:i]), LittleEndian, &b2); err != errWant {
t.Errorf("Read(%d) with struct: got %v, want %v", i, err, errWant)
}
}
}
func testUint64SmallSliceLengthPanics() (panicked bool) {
defer func() {
panicked = recover() != nil
}()
b := [8]byte{1, 2, 3, 4, 5, 6, 7, 8}
LittleEndian.Uint64(b[:4])
return false
}
func testPutUint64SmallSliceLengthPanics() (panicked bool) {
defer func() {
panicked = recover() != nil
}()
b := [8]byte{}
LittleEndian.PutUint64(b[:4], 0x0102030405060708)
return false
}
func TestByteOrder(t *testing.T) {
type byteOrder interface {
ByteOrder
AppendByteOrder
}
buf := make([]byte, 8)
for _, order := range []byteOrder{LittleEndian, BigEndian} {
const offset = 3
for _, value := range []uint64{
0x0000000000000000,
0x0123456789abcdef,
0xfedcba9876543210,
0xffffffffffffffff,
0xaaaaaaaaaaaaaaaa,
math.Float64bits(math.Pi),
math.Float64bits(math.E),
} {
want16 := uint16(value)
order.PutUint16(buf[:2], want16)
if got := order.Uint16(buf[:2]); got != want16 {
t.Errorf("PutUint16: Uint16 = %v, want %v", got, want16)
}
buf = order.AppendUint16(buf[:offset], want16)
if got := order.Uint16(buf[offset:]); got != want16 {
t.Errorf("AppendUint16: Uint16 = %v, want %v", got, want16)
}
if len(buf) != offset+2 {
t.Errorf("AppendUint16: len(buf) = %d, want %d", len(buf), offset+2)
}
want32 := uint32(value)
order.PutUint32(buf[:4], want32)
if got := order.Uint32(buf[:4]); got != want32 {
t.Errorf("PutUint32: Uint32 = %v, want %v", got, want32)
}
buf = order.AppendUint32(buf[:offset], want32)
if got := order.Uint32(buf[offset:]); got != want32 {
t.Errorf("AppendUint32: Uint32 = %v, want %v", got, want32)
}
if len(buf) != offset+4 {
t.Errorf("AppendUint32: len(buf) = %d, want %d", len(buf), offset+4)
}
want64 := uint64(value)
order.PutUint64(buf[:8], want64)
if got := order.Uint64(buf[:8]); got != want64 {
t.Errorf("PutUint64: Uint64 = %v, want %v", got, want64)
}
buf = order.AppendUint64(buf[:offset], want64)
if got := order.Uint64(buf[offset:]); got != want64 {
t.Errorf("AppendUint64: Uint64 = %v, want %v", got, want64)
}
if len(buf) != offset+8 {
t.Errorf("AppendUint64: len(buf) = %d, want %d", len(buf), offset+8)
}
}
}
}
func TestEarlyBoundsChecks(t *testing.T) {
if testUint64SmallSliceLengthPanics() != true {
t.Errorf("binary.LittleEndian.Uint64 expected to panic for small slices, but didn't")
}
if testPutUint64SmallSliceLengthPanics() != true {
t.Errorf("binary.LittleEndian.PutUint64 expected to panic for small slices, but didn't")
}
}
func TestReadInvalidDestination(t *testing.T) {
testReadInvalidDestination(t, BigEndian)
testReadInvalidDestination(t, LittleEndian)
}
func testReadInvalidDestination(t *testing.T, order ByteOrder) {
destinations := []any{
int8(0),
int16(0),
int32(0),
int64(0),
uint8(0),
uint16(0),
uint32(0),
uint64(0),
bool(false),
}
for _, dst := range destinations {
err := Read(bytes.NewReader([]byte{1, 2, 3, 4, 5, 6, 7, 8}), order, dst)
want := fmt.Sprintf("binary.Read: invalid type %T", dst)
if err == nil || err.Error() != want {
t.Fatalf("for type %T: got %q; want %q", dst, err, want)
}
}
}
func TestNoFixedSize(t *testing.T) {
type Person struct {
Age int
Weight float64
Height float64
}
person := Person{
Age: 27,
Weight: 67.3,
Height: 177.8,
}
for _, enc := range encoders {
t.Run(enc.name, func(t *testing.T) {
_, err := enc.fn(LittleEndian, &person)
if err == nil {
t.Fatalf("binary.%s: unexpected success as size of type *binary.Person is not fixed", enc.name)
}
errs := fmt.Sprintf("binary.%s: some values are not fixed-sized in type *binary.Person", enc.name)
if err.Error() != errs {
t.Fatalf("got %q, want %q", err, errs)
}
})
}
}
func TestAppendAllocs(t *testing.T) {
if asan.Enabled {
t.Skip("test allocates more with -asan; see #70079")
}
buf := make([]byte, 0, Size(&s))
var err error
allocs := testing.AllocsPerRun(1, func() {
_, err = Append(buf, LittleEndian, &s)
})
if err != nil {
t.Fatal("Append failed:", err)
}
if allocs != 0 {
t.Fatalf("Append allocated %v times instead of not allocating at all", allocs)
}
}
var sizableTypes = []any{
bool(false),
int8(0),
int16(0),
int32(0),
int64(0),
uint8(0),
uint16(0),
uint32(0),
uint64(0),
float32(0),
float64(0),
complex64(0),
complex128(0),
Struct{},
&Struct{},
[]Struct{},
([]Struct)(nil),
[1]Struct{},
}
func TestSizeAllocs(t *testing.T) {
if asan.Enabled {
t.Skip("test allocates more with -asan; see #70079")
}
for _, data := range sizableTypes {
t.Run(fmt.Sprintf("%T", data), func(t *testing.T) {
// Size uses a sync.Map behind the scenes. The slow lookup path of
// that does allocate, so we need a couple of runs here to be
// allocation free.
allocs := testing.AllocsPerRun(10, func() {
_ = Size(data)
})
if allocs != 0 {
t.Fatalf("Expected no allocations, got %v", allocs)
}
})
}
}
type byteSliceReader struct {
remain []byte
}
func (br *byteSliceReader) Read(p []byte) (int, error) {
n := copy(p, br.remain)
br.remain = br.remain[n:]
return n, nil
}
func BenchmarkReadSlice1000Int32s(b *testing.B) {
bsr := &byteSliceReader{}
slice := make([]int32, 1000)
buf := make([]byte, len(slice)*4)
b.SetBytes(int64(len(buf)))
b.ResetTimer()
for i := 0; i < b.N; i++ {
bsr.remain = buf
Read(bsr, BigEndian, slice)
}
}
func BenchmarkReadStruct(b *testing.B) {
bsr := &byteSliceReader{}
var buf bytes.Buffer
Write(&buf, BigEndian, &s)
b.SetBytes(int64(dataSize(reflect.ValueOf(s))))
t := s
b.ResetTimer()
for i := 0; i < b.N; i++ {
bsr.remain = buf.Bytes()
Read(bsr, BigEndian, &t)
}
b.StopTimer()
if b.N > 0 && !reflect.DeepEqual(s, t) {
b.Fatalf("struct doesn't match:\ngot %v;\nwant %v", t, s)
}
}
func BenchmarkWriteStruct(b *testing.B) {
b.SetBytes(int64(Size(&s)))
b.ResetTimer()
for i := 0; i < b.N; i++ {
Write(io.Discard, BigEndian, &s)
}
}
func BenchmarkAppendStruct(b *testing.B) {
buf := make([]byte, 0, Size(&s))
b.SetBytes(int64(cap(buf)))
b.ResetTimer()
for i := 0; i < b.N; i++ {
Encode(buf, BigEndian, &s)
}
}
func BenchmarkWriteSlice1000Structs(b *testing.B) {
slice := make([]Struct, 1000)
buf := new(bytes.Buffer)
var w io.Writer = buf
b.SetBytes(int64(Size(slice)))
b.ResetTimer()
for i := 0; i < b.N; i++ {
buf.Reset()
Write(w, BigEndian, slice)
}
b.StopTimer()
}
func BenchmarkAppendSlice1000Structs(b *testing.B) {
slice := make([]Struct, 1000)
buf := make([]byte, 0, Size(slice))
b.SetBytes(int64(cap(buf)))
b.ResetTimer()
for i := 0; i < b.N; i++ {
Append(buf, BigEndian, slice)
}
b.StopTimer()
}
func BenchmarkReadSlice1000Structs(b *testing.B) {
bsr := &byteSliceReader{}
slice := make([]Struct, 1000)
buf := make([]byte, Size(slice))
b.SetBytes(int64(len(buf)))
b.ResetTimer()
for i := 0; i < b.N; i++ {
bsr.remain = buf
Read(bsr, BigEndian, slice)
}
}
func BenchmarkReadInts(b *testing.B) {
var ls Struct
bsr := &byteSliceReader{}
var r io.Reader = bsr
b.SetBytes(2 * (1 + 2 + 4 + 8))
b.ResetTimer()
for i := 0; i < b.N; i++ {
bsr.remain = big
Read(r, BigEndian, &ls.Int8)
Read(r, BigEndian, &ls.Int16)
Read(r, BigEndian, &ls.Int32)
Read(r, BigEndian, &ls.Int64)
Read(r, BigEndian, &ls.Uint8)
Read(r, BigEndian, &ls.Uint16)
Read(r, BigEndian, &ls.Uint32)
Read(r, BigEndian, &ls.Uint64)
}
b.StopTimer()
want := s
want.Float32 = 0
want.Float64 = 0
want.Complex64 = 0
want.Complex128 = 0
want.Array = [4]uint8{0, 0, 0, 0}
want.Bool = false
want.BoolArray = [4]bool{false, false, false, false}
if b.N > 0 && !reflect.DeepEqual(ls, want) {
b.Fatalf("struct doesn't match:\ngot %v;\nwant %v", ls, want)
}
}
func BenchmarkWriteInts(b *testing.B) {
buf := new(bytes.Buffer)
var w io.Writer = buf
b.SetBytes(2 * (1 + 2 + 4 + 8))
b.ResetTimer()
for i := 0; i < b.N; i++ {
buf.Reset()
Write(w, BigEndian, s.Int8)
Write(w, BigEndian, s.Int16)
Write(w, BigEndian, s.Int32)
Write(w, BigEndian, s.Int64)
Write(w, BigEndian, s.Uint8)
Write(w, BigEndian, s.Uint16)
Write(w, BigEndian, s.Uint32)
Write(w, BigEndian, s.Uint64)
}
b.StopTimer()
if b.N > 0 && !bytes.Equal(buf.Bytes(), big[:30]) {
b.Fatalf("first half doesn't match: %x %x", buf.Bytes(), big[:30])
}
}
func BenchmarkAppendInts(b *testing.B) {
buf := make([]byte, 0, 256)
b.SetBytes(2 * (1 + 2 + 4 + 8))
b.ResetTimer()
for i := 0; i < b.N; i++ {
buf = buf[:0]
buf, _ = Append(buf, BigEndian, s.Int8)
buf, _ = Append(buf, BigEndian, s.Int16)
buf, _ = Append(buf, BigEndian, s.Int32)
buf, _ = Append(buf, BigEndian, s.Int64)
buf, _ = Append(buf, BigEndian, s.Uint8)
buf, _ = Append(buf, BigEndian, s.Uint16)
buf, _ = Append(buf, BigEndian, s.Uint32)
buf, _ = Append(buf, BigEndian, s.Uint64)
}
b.StopTimer()
if b.N > 0 && !bytes.Equal(buf, big[:30]) {
b.Fatalf("first half doesn't match: %x %x", buf, big[:30])
}
}
func BenchmarkWriteSlice1000Int32s(b *testing.B) {
slice := make([]int32, 1000)
buf := new(bytes.Buffer)
var w io.Writer = buf
b.SetBytes(4 * 1000)
b.ResetTimer()
for i := 0; i < b.N; i++ {
buf.Reset()
Write(w, BigEndian, slice)
}
b.StopTimer()
}
func BenchmarkAppendSlice1000Int32s(b *testing.B) {
slice := make([]int32, 1000)
buf := make([]byte, 0, Size(slice))
b.SetBytes(int64(cap(buf)))
b.ResetTimer()
for i := 0; i < b.N; i++ {
Append(buf, BigEndian, slice)
}
b.StopTimer()
}
func BenchmarkPutUint16(b *testing.B) {
b.SetBytes(2)
for i := 0; i < b.N; i++ {
BigEndian.PutUint16(putbuf[:2], uint16(i))
}
}
func BenchmarkAppendUint16(b *testing.B) {
b.SetBytes(2)
for i := 0; i < b.N; i++ {
putbuf = BigEndian.AppendUint16(putbuf[:0], uint16(i))
}
}
func BenchmarkPutUint32(b *testing.B) {
b.SetBytes(4)
for i := 0; i < b.N; i++ {
BigEndian.PutUint32(putbuf[:4], uint32(i))
}
}
func BenchmarkAppendUint32(b *testing.B) {
b.SetBytes(4)
for i := 0; i < b.N; i++ {
putbuf = BigEndian.AppendUint32(putbuf[:0], uint32(i))
}
}
func BenchmarkPutUint64(b *testing.B) {
b.SetBytes(8)
for i := 0; i < b.N; i++ {
BigEndian.PutUint64(putbuf[:8], uint64(i))
}
}
func BenchmarkAppendUint64(b *testing.B) {
b.SetBytes(8)
for i := 0; i < b.N; i++ {
putbuf = BigEndian.AppendUint64(putbuf[:0], uint64(i))
}
}
func BenchmarkLittleEndianPutUint16(b *testing.B) {
b.SetBytes(2)
for i := 0; i < b.N; i++ {
LittleEndian.PutUint16(putbuf[:2], uint16(i))
}
}
func BenchmarkLittleEndianAppendUint16(b *testing.B) {
b.SetBytes(2)
for i := 0; i < b.N; i++ {
putbuf = LittleEndian.AppendUint16(putbuf[:0], uint16(i))
}
}
func BenchmarkLittleEndianPutUint32(b *testing.B) {
b.SetBytes(4)
for i := 0; i < b.N; i++ {
LittleEndian.PutUint32(putbuf[:4], uint32(i))
}
}
func BenchmarkLittleEndianAppendUint32(b *testing.B) {
b.SetBytes(4)
for i := 0; i < b.N; i++ {
putbuf = LittleEndian.AppendUint32(putbuf[:0], uint32(i))
}
}
func BenchmarkLittleEndianPutUint64(b *testing.B) {
b.SetBytes(8)
for i := 0; i < b.N; i++ {
LittleEndian.PutUint64(putbuf[:8], uint64(i))
}
}
func BenchmarkLittleEndianAppendUint64(b *testing.B) {
b.SetBytes(8)
for i := 0; i < b.N; i++ {
putbuf = LittleEndian.AppendUint64(putbuf[:0], uint64(i))
}
}
func BenchmarkReadFloats(b *testing.B) {
var ls Struct
bsr := &byteSliceReader{}
var r io.Reader = bsr
b.SetBytes(4 + 8)
b.ResetTimer()
for i := 0; i < b.N; i++ {
bsr.remain = big[30:]
Read(r, BigEndian, &ls.Float32)
Read(r, BigEndian, &ls.Float64)
}
b.StopTimer()
want := s
want.Int8 = 0
want.Int16 = 0
want.Int32 = 0
want.Int64 = 0
want.Uint8 = 0
want.Uint16 = 0
want.Uint32 = 0
want.Uint64 = 0
want.Complex64 = 0
want.Complex128 = 0
want.Array = [4]uint8{0, 0, 0, 0}
want.Bool = false
want.BoolArray = [4]bool{false, false, false, false}
if b.N > 0 && !reflect.DeepEqual(ls, want) {
b.Fatalf("struct doesn't match:\ngot %v;\nwant %v", ls, want)
}
}
func BenchmarkWriteFloats(b *testing.B) {
buf := new(bytes.Buffer)
var w io.Writer = buf
b.SetBytes(4 + 8)
b.ResetTimer()
for i := 0; i < b.N; i++ {
buf.Reset()
Write(w, BigEndian, s.Float32)
Write(w, BigEndian, s.Float64)
}
b.StopTimer()
if b.N > 0 && !bytes.Equal(buf.Bytes(), big[30:30+4+8]) {
b.Fatalf("first half doesn't match: %x %x", buf.Bytes(), big[30:30+4+8])
}
}
func BenchmarkReadSlice1000Float32s(b *testing.B) {
bsr := &byteSliceReader{}
slice := make([]float32, 1000)
buf := make([]byte, len(slice)*4)
b.SetBytes(int64(len(buf)))
b.ResetTimer()
for i := 0; i < b.N; i++ {
bsr.remain = buf
Read(bsr, BigEndian, slice)
}
}
func BenchmarkWriteSlice1000Float32s(b *testing.B) {
slice := make([]float32, 1000)
buf := new(bytes.Buffer)
var w io.Writer = buf
b.SetBytes(4 * 1000)
b.ResetTimer()
for i := 0; i < b.N; i++ {
buf.Reset()
Write(w, BigEndian, slice)
}
b.StopTimer()
}
func BenchmarkReadSlice1000Uint8s(b *testing.B) {
bsr := &byteSliceReader{}
slice := make([]uint8, 1000)
buf := make([]byte, len(slice))
b.SetBytes(int64(len(buf)))
b.ResetTimer()
for i := 0; i < b.N; i++ {
bsr.remain = buf
Read(bsr, BigEndian, slice)
}
}
func BenchmarkWriteSlice1000Uint8s(b *testing.B) {
slice := make([]uint8, 1000)
buf := new(bytes.Buffer)
var w io.Writer = buf
b.SetBytes(1000)
b.ResetTimer()
for i := 0; i < b.N; i++ {
buf.Reset()
Write(w, BigEndian, slice)
}
}
func BenchmarkSize(b *testing.B) {
for _, data := range sizableTypes {
b.Run(fmt.Sprintf("%T", data), func(b *testing.B) {
for range b.N {
_ = Size(data)
}
})
}
}
func TestNativeEndian(t *testing.T) {
const val = 0x12345678
i := uint32(val)
s := unsafe.Slice((*byte)(unsafe.Pointer(&i)), unsafe.Sizeof(i))
if v := NativeEndian.Uint32(s); v != val {
t.Errorf("NativeEndian.Uint32 returned %#x, expected %#x", v, val)
}
}
|