File: oneof_which_test.go

package info (click to toggle)
golang-google-protobuf 1.36.7-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental, forky, sid
  • size: 14,996 kB
  • sloc: sh: 94; makefile: 4
file content (249 lines) | stat: -rw-r--r-- 7,753 bytes parent folder | download | duplicates (2)
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
// Copyright 2024 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 proto_test

import (
	"testing"

	test3openpb "google.golang.org/protobuf/internal/testprotos/test3"
	test3hybridpb "google.golang.org/protobuf/internal/testprotos/test3/test3_hybrid"
	test3opaquepb "google.golang.org/protobuf/internal/testprotos/test3/test3_opaque"
	testhybridpb "google.golang.org/protobuf/internal/testprotos/testeditions/testeditions_hybrid"
	testopaquepb "google.golang.org/protobuf/internal/testprotos/testeditions/testeditions_opaque"
	"google.golang.org/protobuf/proto"
	"google.golang.org/protobuf/reflect/protoreflect"
)

func TestOpenWhich(t *testing.T) {
	var x *testhybridpb.TestAllTypes
	if x.WhichOneofField() != 0 {
		t.Errorf("WhichOneofField on nil returned %d, expected %d", x.WhichOneofField(), 0)
	}
	x = &testhybridpb.TestAllTypes{}
	if x.WhichOneofField() != 0 {
		t.Errorf("WhichOneofField returned %d, expected %d", x.WhichOneofField(), 0)
	}
	tab := []struct {
		m *testhybridpb.TestAllTypes
		v protoreflect.FieldNumber
	}{
		{
			m: testhybridpb.TestAllTypes_builder{
				OneofUint32: proto.Uint32(46),
			}.Build(),
			v: protoreflect.FieldNumber(testhybridpb.TestAllTypes_OneofUint32_case),
		},
		{
			m: testhybridpb.TestAllTypes_builder{
				OneofNestedMessage: testhybridpb.TestAllTypes_NestedMessage_builder{A: proto.Int32(46)}.Build(),
			}.Build(),
			v: protoreflect.FieldNumber(testhybridpb.TestAllTypes_OneofNestedMessage_case),
		},
		{
			m: testhybridpb.TestAllTypes_builder{
				OneofString: proto.String("foo"),
			}.Build(),
			v: protoreflect.FieldNumber(testhybridpb.TestAllTypes_OneofString_case),
		},
		{
			m: testhybridpb.TestAllTypes_builder{
				OneofBytes: []byte("foo"),
			}.Build(),
			v: protoreflect.FieldNumber(testhybridpb.TestAllTypes_OneofBytes_case),
		},
		{
			m: testhybridpb.TestAllTypes_builder{
				OneofBool: proto.Bool(true),
			}.Build(),
			v: protoreflect.FieldNumber(testhybridpb.TestAllTypes_OneofBool_case),
		},
		{
			m: testhybridpb.TestAllTypes_builder{
				OneofUint64: proto.Uint64(0),
			}.Build(),
			v: protoreflect.FieldNumber(testhybridpb.TestAllTypes_OneofUint64_case),
		},
		{
			m: testhybridpb.TestAllTypes_builder{
				OneofFloat: proto.Float32(0.0),
			}.Build(),
			v: protoreflect.FieldNumber(testhybridpb.TestAllTypes_OneofFloat_case),
		},
		{
			m: testhybridpb.TestAllTypes_builder{
				OneofDouble: proto.Float64(1.1),
			}.Build(),
			v: protoreflect.FieldNumber(testhybridpb.TestAllTypes_OneofDouble_case),
		},
		{
			m: testhybridpb.TestAllTypes_builder{
				OneofEnum: testhybridpb.TestAllTypes_BAZ.Enum(),
			}.Build(),
			v: protoreflect.FieldNumber(testhybridpb.TestAllTypes_OneofEnum_case),
		},
	}

	for _, mv := range tab {
		if protoreflect.FieldNumber(mv.m.WhichOneofField()) != mv.v {
			t.Errorf("WhichOneofField returned %d, expected %d", mv.m.WhichOneofField(), mv.v)
		}
		if !mv.m.HasOneofField() {
			t.Errorf("HasOneofField returned %t, expected true", mv.m.HasOneofField())

		}
		mv.m.ClearOneofField()
		if mv.m.WhichOneofField() != 0 {
			t.Errorf("WhichOneofField returned %d, expected %d", mv.m.WhichOneofField(), 0)
		}
		if mv.m.HasOneofField() {
			t.Errorf("HasOneofField returned %t, expected false", mv.m.HasOneofField())
		}
	}
}

func TestOpaqueWhich(t *testing.T) {
	var x *testopaquepb.TestAllTypes
	if x.WhichOneofField() != 0 {
		t.Errorf("WhichOneofField on nil returned %d, expected %d", x.WhichOneofField(), 0)
	}
	x = &testopaquepb.TestAllTypes{}
	if x.WhichOneofField() != 0 {
		t.Errorf("WhichOneofField returned %d, expected %d", x.WhichOneofField(), 0)
	}
	en := testopaquepb.TestAllTypes_BAZ
	tab := []struct {
		m *testopaquepb.TestAllTypes
		v protoreflect.FieldNumber
	}{
		{
			m: testopaquepb.TestAllTypes_builder{
				OneofUint32: proto.Uint32(46),
			}.Build(),
			v: protoreflect.FieldNumber(testopaquepb.TestAllTypes_OneofUint32_case),
		},
		{
			m: testopaquepb.TestAllTypes_builder{
				OneofNestedMessage: testopaquepb.TestAllTypes_NestedMessage_builder{A: proto.Int32(46)}.Build(),
			}.Build(),
			v: protoreflect.FieldNumber(testopaquepb.TestAllTypes_OneofNestedMessage_case),
		},
		{
			m: testopaquepb.TestAllTypes_builder{
				OneofString: proto.String("foo"),
			}.Build(),
			v: protoreflect.FieldNumber(testopaquepb.TestAllTypes_OneofString_case),
		},
		{
			m: testopaquepb.TestAllTypes_builder{
				OneofBytes: []byte("foo"),
			}.Build(),
			v: protoreflect.FieldNumber(testopaquepb.TestAllTypes_OneofBytes_case),
		},
		{
			m: testopaquepb.TestAllTypes_builder{
				OneofBool: proto.Bool(true),
			}.Build(),
			v: protoreflect.FieldNumber(testopaquepb.TestAllTypes_OneofBool_case),
		},
		{
			m: testopaquepb.TestAllTypes_builder{
				OneofUint64: proto.Uint64(0),
			}.Build(),
			v: protoreflect.FieldNumber(testopaquepb.TestAllTypes_OneofUint64_case),
		},
		{
			m: testopaquepb.TestAllTypes_builder{
				OneofFloat: proto.Float32(0.0),
			}.Build(),
			v: protoreflect.FieldNumber(testopaquepb.TestAllTypes_OneofFloat_case),
		},
		{
			m: testopaquepb.TestAllTypes_builder{
				OneofDouble: proto.Float64(1.1),
			}.Build(),
			v: protoreflect.FieldNumber(testopaquepb.TestAllTypes_OneofDouble_case),
		},
		{
			m: testopaquepb.TestAllTypes_builder{
				OneofEnum: &en,
			}.Build(),
			v: protoreflect.FieldNumber(testopaquepb.TestAllTypes_OneofEnum_case),
		},
	}

	for _, mv := range tab {
		if protoreflect.FieldNumber(mv.m.WhichOneofField()) != mv.v {
			t.Errorf("WhichOneofField returned %d, expected %d", mv.m.WhichOneofField(), mv.v)
		}
		if !mv.m.HasOneofField() {
			t.Errorf("HasOneofField returned %t, expected true", mv.m.HasOneofField())

		}
		mv.m.ClearOneofField()
		if mv.m.WhichOneofField() != 0 {
			t.Errorf("WhichOneofField returned %d, expected %d", mv.m.WhichOneofField(), 0)
		}
		if mv.m.HasOneofField() {
			t.Errorf("HasOneofField returned %t, expected false", mv.m.HasOneofField())
		}
	}
}

func TestSyntheticOneofOpen(t *testing.T) {
	msg := test3openpb.TestAllTypes{}
	md := msg.ProtoReflect().Descriptor()
	ood := md.Oneofs().ByName("_optional_int32")
	if ood == nil {
		t.Fatal("failed to find oneof _optional_int32")
	}
	if !ood.IsSynthetic() {
		t.Fatal("oneof _optional_int32 should be synthetic")
	}
	if msg.ProtoReflect().WhichOneof(ood) != nil {
		t.Error("oneof _optional_int32 should not have a field set yet")
	}
	msg.OptionalInt32 = proto.Int32(123)
	if msg.ProtoReflect().WhichOneof(ood) == nil {
		t.Error("oneof _optional_int32 should have a field set")
	}
}

func TestSyntheticOneofHybrid(t *testing.T) {
	msg := test3hybridpb.TestAllTypes{}
	md := msg.ProtoReflect().Descriptor()
	ood := md.Oneofs().ByName("_optional_int32")
	if ood == nil {
		t.Fatal("failed to find oneof _optional_int32")
	}
	if !ood.IsSynthetic() {
		t.Fatal("oneof _optional_int32 should be synthetic")
	}
	if msg.ProtoReflect().WhichOneof(ood) != nil {
		t.Error("oneof _optional_int32 should not have a field set yet")
	}
	msg.OptionalInt32 = proto.Int32(123)
	if msg.ProtoReflect().WhichOneof(ood) == nil {
		t.Error("oneof _optional_int32 should have a field set")
	}
}

func TestSyntheticOneofOpaque(t *testing.T) {
	msg := test3opaquepb.TestAllTypes{}
	md := msg.ProtoReflect().Descriptor()
	ood := md.Oneofs().ByName("_optional_int32")
	if ood == nil {
		t.Fatal("failed to find oneof _optional_int32")
	}
	if !ood.IsSynthetic() {
		t.Fatal("oneof _optional_int32 should be synthetic")
	}
	if msg.ProtoReflect().WhichOneof(ood) != nil {
		t.Error("oneof _optional_int32 should not have a field set yet")
	}
	msg.SetOptionalInt32(123)
	if msg.ProtoReflect().WhichOneof(ood) == nil {
		t.Error("oneof _optional_int32 should have a field set")
	}
}