Exemplo n.º 1
0
func TestBarProtoCompactText(t *testing.T) {
	seed := time.Now().UnixNano()
	popr := math_rand.New(math_rand.NewSource(seed))
	p := NewPopulatedBar(popr, true)
	data := github_com_gogo_protobuf_proto.CompactTextString(p)
	msg := &Bar{}
	if err := github_com_gogo_protobuf_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 TestOldWithGroup_Group2ProtoCompactText(t *testing.T) {
	seed := time.Now().UnixNano()
	popr := math_rand.New(math_rand.NewSource(seed))
	p := NewPopulatedOldWithGroup_Group2(popr, true)
	data := github_com_gogo_protobuf_proto.CompactTextString(p)
	msg := &OldWithGroup_Group2{}
	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)
	}
}
Exemplo n.º 3
0
func (m *NinOptEnum) String() string { return proto.CompactTextString(m) }
Exemplo n.º 4
0
func (m *CodeGeneratorRequest) String() string { return proto.CompactTextString(m) }
Exemplo n.º 5
0
func (m *PrivateKey) String() string { return proto.CompactTextString(m) }
Exemplo n.º 6
0
func (m *B) String() string { return proto.CompactTextString(m) }
Exemplo n.º 7
0
func (m *IndexQuery) String() string { return proto.CompactTextString(m) }
Exemplo n.º 8
0
func (m *Communique_Delta) String() string { return proto.CompactTextString(m) }
Exemplo n.º 9
0
func (m *MsgWithOneof) String() string { return proto.CompactTextString(m) }
Exemplo n.º 10
0
func (m *Repeats) String() string { return proto.CompactTextString(m) }
Exemplo n.º 11
0
func (m *Simple3) String() string { return proto.CompactTextString(m) }
Exemplo n.º 12
0
func (m *OrderedFields) String() string { return proto.CompactTextString(m) }
Exemplo n.º 13
0
func (m *Exchange) String() string { return proto.CompactTextString(m) }
Exemplo n.º 14
0
func (m *Propose) String() string { return proto.CompactTextString(m) }
Exemplo n.º 15
0
func (m *FooWithRepeated) String() string { return proto.CompactTextString(m) }
Exemplo n.º 16
0
func (m *OldReply) String() string { return proto.CompactTextString(m) }
Exemplo n.º 17
0
func (m *Communique_SomeGroup) String() string { return proto.CompactTextString(m) }
Exemplo n.º 18
0
func TestCompactText(t *testing.T) {
	s := proto.CompactTextString(newTestMessage())
	if s != compactText {
		t.Errorf("Got:\n===\n%v===\nExpected:\n===\n%v\n===\n", s, compactText)
	}
}
Exemplo n.º 19
0
func (m *MessageWithMap) String() string { return proto.CompactTextString(m) }
Exemplo n.º 20
0
func (m *Request) String() string { return proto.CompactTextString(m) }
Exemplo n.º 21
0
func (m *MoreDefaultsA) String() string { return proto.CompactTextString(m) }
Exemplo n.º 22
0
func (m *Request_SomeGroup) String() string { return proto.CompactTextString(m) }
Exemplo n.º 23
0
func (m *MyMessage) String() string { return proto.CompactTextString(m) }
Exemplo n.º 24
0
func (m *Reply_Entry) String() string { return proto.CompactTextString(m) }
Exemplo n.º 25
0
func (m *PublicKey) String() string { return proto.CompactTextString(m) }
Exemplo n.º 26
0
func (m *OtherBase) String() string { return proto.CompactTextString(m) }
Exemplo n.º 27
0
func (m *Foo) String() string { return proto1.CompactTextString(m) }
Exemplo n.º 28
0
func (m *OtherReplyExtensions) String() string { return proto.CompactTextString(m) }
Exemplo n.º 29
0
func (m *CodeGeneratorResponse) String() string { return proto.CompactTextString(m) }
Exemplo n.º 30
0
func (m *SubObject) String() string { return proto.CompactTextString(m) }