summaryrefslogtreecommitdiff
path: root/libgo/go/internal/pprof/profile/proto_test.go
blob: c2613fc375a54f834e4f06c775ee3feff66ee7dd (plain)
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
package profile

import (
	"reflect"
	"testing"
)

func TestPackedEncoding(t *testing.T) {

	type testcase struct {
		uint64s []uint64
		int64s  []int64
		encoded []byte
	}
	for i, tc := range []testcase{
		{
			[]uint64{0, 1, 10, 100, 1000, 10000},
			[]int64{1000, 0, 1000},
			[]byte{10, 8, 0, 1, 10, 100, 232, 7, 144, 78, 18, 5, 232, 7, 0, 232, 7},
		},
		{
			[]uint64{10000},
			nil,
			[]byte{8, 144, 78},
		},
		{
			nil,
			[]int64{-10000},
			[]byte{16, 240, 177, 255, 255, 255, 255, 255, 255, 255, 1},
		},
	} {
		source := &packedInts{tc.uint64s, tc.int64s}
		if got, want := marshal(source), tc.encoded; !reflect.DeepEqual(got, want) {
			t.Errorf("failed encode %d, got %v, want %v", i, got, want)
		}

		dest := new(packedInts)
		if err := unmarshal(tc.encoded, dest); err != nil {
			t.Errorf("failed decode %d: %v", i, err)
			continue
		}
		if got, want := dest.uint64s, tc.uint64s; !reflect.DeepEqual(got, want) {
			t.Errorf("failed decode uint64s %d, got %v, want %v", i, got, want)
		}
		if got, want := dest.int64s, tc.int64s; !reflect.DeepEqual(got, want) {
			t.Errorf("failed decode int64s %d, got %v, want %v", i, got, want)
		}
	}
}

type packedInts struct {
	uint64s []uint64
	int64s  []int64
}

func (u *packedInts) decoder() []decoder {
	return []decoder{
		nil,
		func(b *buffer, m message) error { return decodeUint64s(b, &m.(*packedInts).uint64s) },
		func(b *buffer, m message) error { return decodeInt64s(b, &m.(*packedInts).int64s) },
	}
}

func (u *packedInts) encode(b *buffer) {
	encodeUint64s(b, 1, u.uint64s)
	encodeInt64s(b, 2, u.int64s)
}