/vendor/github.com/gogo/protobuf/test/castvalue/combos/unsafeunmarshaler/castvaluepb_test.go
https://gitlab.com/unofficial-mirrors/openshift-origin · Go · 474 lines · 438 code · 19 blank · 17 comment · 128 complexity · c25866a075aa7bfdf4187555e89aa2e9 MD5 · raw file
- // Code generated by protoc-gen-gogo.
- // source: combos/unsafeunmarshaler/castvalue.proto
- // DO NOT EDIT!
- /*
- Package castvalue is a generated protocol buffer package.
- It is generated from these files:
- combos/unsafeunmarshaler/castvalue.proto
- It has these top-level messages:
- Castaway
- Wilson
- */
- package castvalue
- import testing "testing"
- import math_rand "math/rand"
- import time "time"
- import unsafe "unsafe"
- import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto"
- import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb"
- import fmt "fmt"
- import go_parser "go/parser"
- import proto "github.com/gogo/protobuf/proto"
- import math "math"
- import _ "github.com/gogo/protobuf/gogoproto"
- // Reference imports to suppress errors if they are not otherwise used.
- var _ = proto.Marshal
- var _ = fmt.Errorf
- var _ = math.Inf
- func TestCastawayProto(t *testing.T) {
- var bigendian uint32 = 0x01020304
- if *(*byte)(unsafe.Pointer(&bigendian)) == 1 {
- t.Skip("unsafe does not work on big endian architectures")
- }
- seed := time.Now().UnixNano()
- popr := math_rand.New(math_rand.NewSource(seed))
- p := NewPopulatedCastaway(popr, false)
- dAtA, err := github_com_gogo_protobuf_proto.Marshal(p)
- if err != nil {
- t.Fatalf("seed = %d, err = %v", seed, err)
- }
- msg := &Castaway{}
- if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil {
- t.Fatalf("seed = %d, err = %v", seed, err)
- }
- littlefuzz := make([]byte, len(dAtA))
- copy(littlefuzz, dAtA)
- for i := range dAtA {
- dAtA[i] = byte(popr.Intn(256))
- }
- if err := p.VerboseEqual(msg); err != nil {
- t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err)
- }
- if !p.Equal(msg) {
- t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p)
- }
- if len(littlefuzz) > 0 {
- fuzzamount := 100
- for i := 0; i < fuzzamount; i++ {
- littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256))
- littlefuzz = append(littlefuzz, byte(popr.Intn(256)))
- }
- // shouldn't panic
- _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg)
- }
- }
- func BenchmarkCastawayProtoMarshal(b *testing.B) {
- popr := math_rand.New(math_rand.NewSource(616))
- total := 0
- pops := make([]*Castaway, 10000)
- for i := 0; i < 10000; i++ {
- pops[i] = NewPopulatedCastaway(popr, false)
- }
- b.ResetTimer()
- for i := 0; i < b.N; i++ {
- dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000])
- if err != nil {
- panic(err)
- }
- total += len(dAtA)
- }
- b.SetBytes(int64(total / b.N))
- }
- func BenchmarkCastawayProtoUnmarshal(b *testing.B) {
- popr := math_rand.New(math_rand.NewSource(616))
- total := 0
- datas := make([][]byte, 10000)
- for i := 0; i < 10000; i++ {
- dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCastaway(popr, false))
- if err != nil {
- panic(err)
- }
- datas[i] = dAtA
- }
- msg := &Castaway{}
- b.ResetTimer()
- for i := 0; i < b.N; i++ {
- total += len(datas[i%10000])
- if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil {
- panic(err)
- }
- }
- b.SetBytes(int64(total / b.N))
- }
- func TestWilsonProto(t *testing.T) {
- var bigendian uint32 = 0x01020304
- if *(*byte)(unsafe.Pointer(&bigendian)) == 1 {
- t.Skip("unsafe does not work on big endian architectures")
- }
- seed := time.Now().UnixNano()
- popr := math_rand.New(math_rand.NewSource(seed))
- p := NewPopulatedWilson(popr, false)
- dAtA, err := github_com_gogo_protobuf_proto.Marshal(p)
- if err != nil {
- t.Fatalf("seed = %d, err = %v", seed, err)
- }
- msg := &Wilson{}
- if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil {
- t.Fatalf("seed = %d, err = %v", seed, err)
- }
- littlefuzz := make([]byte, len(dAtA))
- copy(littlefuzz, dAtA)
- for i := range dAtA {
- dAtA[i] = byte(popr.Intn(256))
- }
- if err := p.VerboseEqual(msg); err != nil {
- t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err)
- }
- if !p.Equal(msg) {
- t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p)
- }
- if len(littlefuzz) > 0 {
- fuzzamount := 100
- for i := 0; i < fuzzamount; i++ {
- littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256))
- littlefuzz = append(littlefuzz, byte(popr.Intn(256)))
- }
- // shouldn't panic
- _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg)
- }
- }
- func BenchmarkWilsonProtoMarshal(b *testing.B) {
- popr := math_rand.New(math_rand.NewSource(616))
- total := 0
- pops := make([]*Wilson, 10000)
- for i := 0; i < 10000; i++ {
- pops[i] = NewPopulatedWilson(popr, false)
- }
- b.ResetTimer()
- for i := 0; i < b.N; i++ {
- dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000])
- if err != nil {
- panic(err)
- }
- total += len(dAtA)
- }
- b.SetBytes(int64(total / b.N))
- }
- func BenchmarkWilsonProtoUnmarshal(b *testing.B) {
- popr := math_rand.New(math_rand.NewSource(616))
- total := 0
- datas := make([][]byte, 10000)
- for i := 0; i < 10000; i++ {
- dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedWilson(popr, false))
- if err != nil {
- panic(err)
- }
- datas[i] = dAtA
- }
- msg := &Wilson{}
- b.ResetTimer()
- for i := 0; i < b.N; i++ {
- total += len(datas[i%10000])
- if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil {
- panic(err)
- }
- }
- b.SetBytes(int64(total / b.N))
- }
- func TestCastawayJSON(t *testing.T) {
- seed := time.Now().UnixNano()
- popr := math_rand.New(math_rand.NewSource(seed))
- p := NewPopulatedCastaway(popr, true)
- marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{}
- jsondata, err := marshaler.MarshalToString(p)
- if err != nil {
- t.Fatalf("seed = %d, err = %v", seed, err)
- }
- msg := &Castaway{}
- err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg)
- if err != nil {
- t.Fatalf("seed = %d, err = %v", seed, err)
- }
- if err := p.VerboseEqual(msg); err != nil {
- t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err)
- }
- if !p.Equal(msg) {
- t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p)
- }
- }
- func TestWilsonJSON(t *testing.T) {
- seed := time.Now().UnixNano()
- popr := math_rand.New(math_rand.NewSource(seed))
- p := NewPopulatedWilson(popr, true)
- marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{}
- jsondata, err := marshaler.MarshalToString(p)
- if err != nil {
- t.Fatalf("seed = %d, err = %v", seed, err)
- }
- msg := &Wilson{}
- err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg)
- if err != nil {
- t.Fatalf("seed = %d, err = %v", seed, err)
- }
- if err := p.VerboseEqual(msg); err != nil {
- t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err)
- }
- if !p.Equal(msg) {
- t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p)
- }
- }
- func TestCastawayProtoText(t *testing.T) {
- seed := time.Now().UnixNano()
- popr := math_rand.New(math_rand.NewSource(seed))
- p := NewPopulatedCastaway(popr, true)
- dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p)
- msg := &Castaway{}
- if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil {
- t.Fatalf("seed = %d, err = %v", seed, err)
- }
- if err := p.VerboseEqual(msg); err != nil {
- t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err)
- }
- if !p.Equal(msg) {
- t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p)
- }
- }
- func TestCastawayProtoCompactText(t *testing.T) {
- seed := time.Now().UnixNano()
- popr := math_rand.New(math_rand.NewSource(seed))
- p := NewPopulatedCastaway(popr, true)
- dAtA := github_com_gogo_protobuf_proto.CompactTextString(p)
- msg := &Castaway{}
- if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil {
- t.Fatalf("seed = %d, err = %v", seed, err)
- }
- if err := p.VerboseEqual(msg); err != nil {
- t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err)
- }
- if !p.Equal(msg) {
- t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p)
- }
- }
- func TestWilsonProtoText(t *testing.T) {
- seed := time.Now().UnixNano()
- popr := math_rand.New(math_rand.NewSource(seed))
- p := NewPopulatedWilson(popr, true)
- dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p)
- msg := &Wilson{}
- if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil {
- t.Fatalf("seed = %d, err = %v", seed, err)
- }
- if err := p.VerboseEqual(msg); err != nil {
- t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err)
- }
- if !p.Equal(msg) {
- t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p)
- }
- }
- func TestWilsonProtoCompactText(t *testing.T) {
- seed := time.Now().UnixNano()
- popr := math_rand.New(math_rand.NewSource(seed))
- p := NewPopulatedWilson(popr, true)
- dAtA := github_com_gogo_protobuf_proto.CompactTextString(p)
- msg := &Wilson{}
- if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil {
- t.Fatalf("seed = %d, err = %v", seed, err)
- }
- if err := p.VerboseEqual(msg); err != nil {
- t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err)
- }
- if !p.Equal(msg) {
- t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p)
- }
- }
- func TestCastvalueDescription(t *testing.T) {
- CastvalueDescription()
- }
- func TestCastawayVerboseEqual(t *testing.T) {
- var bigendian uint32 = 0x01020304
- if *(*byte)(unsafe.Pointer(&bigendian)) == 1 {
- t.Skip("unsafe does not work on big endian architectures")
- }
- popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano()))
- p := NewPopulatedCastaway(popr, false)
- dAtA, err := github_com_gogo_protobuf_proto.Marshal(p)
- if err != nil {
- panic(err)
- }
- msg := &Castaway{}
- if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil {
- panic(err)
- }
- if err := p.VerboseEqual(msg); err != nil {
- t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err)
- }
- }
- func TestWilsonVerboseEqual(t *testing.T) {
- var bigendian uint32 = 0x01020304
- if *(*byte)(unsafe.Pointer(&bigendian)) == 1 {
- t.Skip("unsafe does not work on big endian architectures")
- }
- popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano()))
- p := NewPopulatedWilson(popr, false)
- dAtA, err := github_com_gogo_protobuf_proto.Marshal(p)
- if err != nil {
- panic(err)
- }
- msg := &Wilson{}
- if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil {
- panic(err)
- }
- if err := p.VerboseEqual(msg); err != nil {
- t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err)
- }
- }
- func TestCastawayFace(t *testing.T) {
- popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano()))
- p := NewPopulatedCastaway(popr, true)
- msg := p.TestProto()
- if !p.Equal(msg) {
- t.Fatalf("%#v !Face Equal %#v", msg, p)
- }
- }
- func TestWilsonFace(t *testing.T) {
- popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano()))
- p := NewPopulatedWilson(popr, true)
- msg := p.TestProto()
- if !p.Equal(msg) {
- t.Fatalf("%#v !Face Equal %#v", msg, p)
- }
- }
- func TestCastawayGoString(t *testing.T) {
- popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano()))
- p := NewPopulatedCastaway(popr, false)
- s1 := p.GoString()
- s2 := fmt.Sprintf("%#v", p)
- if s1 != s2 {
- t.Fatalf("GoString want %v got %v", s1, s2)
- }
- _, err := go_parser.ParseExpr(s1)
- if err != nil {
- panic(err)
- }
- }
- func TestWilsonGoString(t *testing.T) {
- popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano()))
- p := NewPopulatedWilson(popr, false)
- s1 := p.GoString()
- s2 := fmt.Sprintf("%#v", p)
- if s1 != s2 {
- t.Fatalf("GoString want %v got %v", s1, s2)
- }
- _, err := go_parser.ParseExpr(s1)
- if err != nil {
- panic(err)
- }
- }
- func TestCastawaySize(t *testing.T) {
- seed := time.Now().UnixNano()
- popr := math_rand.New(math_rand.NewSource(seed))
- p := NewPopulatedCastaway(popr, true)
- size2 := github_com_gogo_protobuf_proto.Size(p)
- dAtA, err := github_com_gogo_protobuf_proto.Marshal(p)
- if err != nil {
- t.Fatalf("seed = %d, err = %v", seed, err)
- }
- size := p.Size()
- if len(dAtA) != size {
- t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA))
- }
- if size2 != size {
- t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2)
- }
- size3 := github_com_gogo_protobuf_proto.Size(p)
- if size3 != size {
- t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3)
- }
- }
- func BenchmarkCastawaySize(b *testing.B) {
- popr := math_rand.New(math_rand.NewSource(616))
- total := 0
- pops := make([]*Castaway, 1000)
- for i := 0; i < 1000; i++ {
- pops[i] = NewPopulatedCastaway(popr, false)
- }
- b.ResetTimer()
- for i := 0; i < b.N; i++ {
- total += pops[i%1000].Size()
- }
- b.SetBytes(int64(total / b.N))
- }
- func TestWilsonSize(t *testing.T) {
- seed := time.Now().UnixNano()
- popr := math_rand.New(math_rand.NewSource(seed))
- p := NewPopulatedWilson(popr, true)
- size2 := github_com_gogo_protobuf_proto.Size(p)
- dAtA, err := github_com_gogo_protobuf_proto.Marshal(p)
- if err != nil {
- t.Fatalf("seed = %d, err = %v", seed, err)
- }
- size := p.Size()
- if len(dAtA) != size {
- t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA))
- }
- if size2 != size {
- t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2)
- }
- size3 := github_com_gogo_protobuf_proto.Size(p)
- if size3 != size {
- t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3)
- }
- }
- func BenchmarkWilsonSize(b *testing.B) {
- popr := math_rand.New(math_rand.NewSource(616))
- total := 0
- pops := make([]*Wilson, 1000)
- for i := 0; i < 1000; i++ {
- pops[i] = NewPopulatedWilson(popr, false)
- }
- b.ResetTimer()
- for i := 0; i < b.N; i++ {
- total += pops[i%1000].Size()
- }
- b.SetBytes(int64(total / b.N))
- }
- func TestCastawayStringer(t *testing.T) {
- popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano()))
- p := NewPopulatedCastaway(popr, false)
- s1 := p.String()
- s2 := fmt.Sprintf("%v", p)
- if s1 != s2 {
- t.Fatalf("String want %v got %v", s1, s2)
- }
- }
- func TestWilsonStringer(t *testing.T) {
- popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano()))
- p := NewPopulatedWilson(popr, false)
- s1 := p.String()
- s2 := fmt.Sprintf("%v", p)
- if s1 != s2 {
- t.Fatalf("String want %v got %v", s1, s2)
- }
- }
- //These tests are generated by github.com/gogo/protobuf/plugin/testgen