// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: importduplicate.proto /* Package importduplicate is a generated protocol buffer package. It is generated from these files: importduplicate.proto It has these top-level messages: MapAndSortKeys */ package importduplicate import testing "testing" import rand "math/rand" import time "time" import proto "github.com/gogo/protobuf/proto" import jsonpb "github.com/gogo/protobuf/jsonpb" import fmt "fmt" import parser "go/parser" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import _ "github.com/gogo/protobuf/test/importduplicate/sortkeys" import _ "github.com/gogo/protobuf/test/importduplicate/proto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestMapAndSortKeysProto(t *testing.T) { seed := time.Now().UnixNano() popr := rand.New(rand.NewSource(seed)) p := NewPopulatedMapAndSortKeys(popr, false) dAtA, err := proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MapAndSortKeys{} if err := 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 !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 _ = proto.Unmarshal(littlefuzz, msg) } } func TestMapAndSortKeysJSON(t *testing.T) { seed := time.Now().UnixNano() popr := rand.New(rand.NewSource(seed)) p := NewPopulatedMapAndSortKeys(popr, true) marshaler := jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MapAndSortKeys{} err = jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestMapAndSortKeysProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := rand.New(rand.NewSource(seed)) p := NewPopulatedMapAndSortKeys(popr, true) dAtA := proto.MarshalTextString(p) msg := &MapAndSortKeys{} if err := proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMapAndSortKeysProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := rand.New(rand.NewSource(seed)) p := NewPopulatedMapAndSortKeys(popr, true) dAtA := proto.CompactTextString(p) msg := &MapAndSortKeys{} if err := proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMapAndSortKeysGoString(t *testing.T) { popr := rand.New(rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMapAndSortKeys(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen