diff --git a/.golangci.yml b/.golangci.yml index e5b8c807653d..732933852b02 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -3,7 +3,7 @@ run: timeout: 10m sort-results: true allow-parallel-runners: true - exclude-dir: testutil/testdata_pulsar + exclude-dir: testutil/testdata concurrency: 4 linters: diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c06ec71511e..237bebf0944f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -174,6 +174,7 @@ Ref: https://keepachangelog.com/en/1.0.0/ ### API Breaking Changes +* (testutil) [#14991](https://github.com/cosmos/cosmos-sdk/pull/14991) The `testutil/testdata_pulsar` package has moved to `testutil/testdata/testpb`. * (simapp) [#14977](https://github.com/cosmos/cosmos-sdk/pull/14977) Move simulation helpers functions (`AppStateFn` and `AppStateRandomizedFn`) to `testutil/sims`. These takes an extra genesisState argument which is the default state of the app. * (x/gov) [#14720](https://github.com/cosmos/cosmos-sdk/pull/14720) Add an expedited field in the gov v1 proposal and `MsgNewMsgProposal`. * [#14847](https://github.com/cosmos/cosmos-sdk/pull/14847) App and ModuleManager methods `InitGenesis`, `ExportGenesis`, `BeginBlock` and `EndBlock` now also return an error. diff --git a/Makefile b/Makefile index 67762f6f64fa..f9a7511dbf22 100644 --- a/Makefile +++ b/Makefile @@ -372,7 +372,7 @@ format: ### Protobuf ### ############################################################################### -protoVer=0.11.6 +protoVer=0.12.0 protoImageName=ghcr.io/cosmos/proto-builder:$(protoVer) protoImage=$(DOCKER) run --rm -v $(CURDIR):/workspace --workdir /workspace $(protoImageName) diff --git a/api/cosmos/orm/v1/orm.pulsar.go b/api/cosmos/orm/v1/orm.pulsar.go index 54ac19ce08a5..e746252fa4fc 100644 --- a/api/cosmos/orm/v1/orm.pulsar.go +++ b/api/cosmos/orm/v1/orm.pulsar.go @@ -2129,8 +2129,11 @@ type PrimaryKeyDescriptor struct { // with a 32-bit unsigned varint in non-terminal segments. // - int32, sint32, int64, sint64, sfixed32, sfixed64 are encoded as fixed width bytes with // an encoding that enables sorted iteration. - // - google.protobuf.Timestamp and google.protobuf.Duration are encoded - // as 12 bytes using an encoding that enables sorted iteration. + // - google.protobuf.Timestamp is encoded such that values with only seconds occupy 6 bytes, + // values including nanos occupy 9 bytes, and nil values occupy 1 byte. When iterating, nil + // values will always be ordered last. Seconds and nanos values must conform to the officially + // specified ranges of 0001-01-01T00:00:00Z to 9999-12-31T23:59:59Z and 0 to 999,999,999 respectively. + // - google.protobuf.Duration is encoded as 12 bytes using an encoding that enables sorted iteration. // - enum fields are encoded using varint encoding and do not support sorted // iteration. // - bool fields are encoded as a single byte 0 or 1. diff --git a/baseapp/abci_test.go b/baseapp/abci_test.go index 5bf76abc2726..887dbb1cfb26 100644 --- a/baseapp/abci_test.go +++ b/baseapp/abci_test.go @@ -188,7 +188,7 @@ func TestABCI_GRPCQuery(t *testing.T) { resQuery := suite.baseApp.Query(abci.RequestQuery{ Data: reqBz, - Path: "/testdata.Query/SayHello", + Path: "/testpb.Query/SayHello", }) require.Equal(t, sdkerrors.ErrInvalidHeight.ABCICode(), resQuery.Code, resQuery) require.Contains(t, resQuery.Log, "TestABCI_GRPCQuery is not ready; please wait for first block") @@ -199,7 +199,7 @@ func TestABCI_GRPCQuery(t *testing.T) { reqQuery := abci.RequestQuery{ Data: reqBz, - Path: "/testdata.Query/SayHello", + Path: "/testpb.Query/SayHello", } resQuery = suite.baseApp.Query(reqQuery) @@ -1448,7 +1448,7 @@ func TestABCI_PrepareProposal_ReachedMaxBytes(t *testing.T) { Height: 1, } resPrepareProposal := suite.baseApp.PrepareProposal(reqPrepareProposal) - require.Equal(t, 10, len(resPrepareProposal.Txs)) + require.Equal(t, 11, len(resPrepareProposal.Txs)) } func TestABCI_PrepareProposal_BadEncoding(t *testing.T) { diff --git a/baseapp/block_gas_test.go b/baseapp/block_gas_test.go index 2dcabf143b14..86ec9664350e 100644 --- a/baseapp/block_gas_test.go +++ b/baseapp/block_gas_test.go @@ -173,13 +173,13 @@ func TestBaseApp_BlockGas(t *testing.T) { require.Equal(t, []byte("ok"), okValue) } // check block gas is always consumed - baseGas := uint64(51822) // baseGas is the gas consumed before tx msg + baseGas := uint64(51732) // baseGas is the gas consumed before tx msg expGasConsumed := addUint64Saturating(tc.gasToConsume, baseGas) if expGasConsumed > txtypes.MaxGasWanted { // capped by gasLimit expGasConsumed = txtypes.MaxGasWanted } - require.Equal(t, expGasConsumed, ctx.BlockGasMeter().GasConsumed()) + require.Equal(t, int(expGasConsumed), int(ctx.BlockGasMeter().GasConsumed())) // tx fee is always deducted require.Equal(t, int64(0), bankKeeper.GetBalance(ctx, addr1, feeCoin.Denom).Amount.Int64()) // sender's sequence is always increased diff --git a/baseapp/grpcrouter_test.go b/baseapp/grpcrouter_test.go index 386b887670f0..860e7bbe75c1 100644 --- a/baseapp/grpcrouter_test.go +++ b/baseapp/grpcrouter_test.go @@ -15,7 +15,7 @@ import ( "github.com/cosmos/cosmos-sdk/codec/types" "github.com/cosmos/cosmos-sdk/runtime" "github.com/cosmos/cosmos-sdk/testutil/testdata" - "github.com/cosmos/cosmos-sdk/testutil/testdata_pulsar" + testdata_pulsar "github.com/cosmos/cosmos-sdk/testutil/testdata/testpb" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/baseapp/testutil/messages.pb.go b/baseapp/testutil/messages.pb.go index 55aa0b2daaae..6ab32a7ce418 100644 --- a/baseapp/testutil/messages.pb.go +++ b/baseapp/testutil/messages.pb.go @@ -266,41 +266,40 @@ func (m *MsgCreateKeyValueResponse) XXX_DiscardUnknown() { var xxx_messageInfo_MsgCreateKeyValueResponse proto.InternalMessageInfo func init() { - proto.RegisterType((*MsgCounter)(nil), "testdata.MsgCounter") - proto.RegisterType((*MsgCounter2)(nil), "testdata.MsgCounter2") - proto.RegisterType((*MsgCreateCounterResponse)(nil), "testdata.MsgCreateCounterResponse") - proto.RegisterType((*MsgKeyValue)(nil), "testdata.MsgKeyValue") - proto.RegisterType((*MsgCreateKeyValueResponse)(nil), "testdata.MsgCreateKeyValueResponse") + proto.RegisterType((*MsgCounter)(nil), "MsgCounter") + proto.RegisterType((*MsgCounter2)(nil), "MsgCounter2") + proto.RegisterType((*MsgCreateCounterResponse)(nil), "MsgCreateCounterResponse") + proto.RegisterType((*MsgKeyValue)(nil), "MsgKeyValue") + proto.RegisterType((*MsgCreateKeyValueResponse)(nil), "MsgCreateKeyValueResponse") } func init() { proto.RegisterFile("messages.proto", fileDescriptor_4dc296cbfe5ffcd5) } var fileDescriptor_4dc296cbfe5ffcd5 = []byte{ - // 378 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x92, 0xc1, 0x8a, 0x9b, 0x50, - 0x14, 0x86, 0x63, 0xa5, 0x89, 0x3d, 0x4d, 0xdb, 0x20, 0x69, 0x31, 0x16, 0x24, 0x58, 0x28, 0xd9, - 0x44, 0xc1, 0x3e, 0x41, 0xdb, 0x45, 0x5b, 0x5a, 0x1b, 0xb0, 0xd0, 0x61, 0x66, 0x13, 0xae, 0xe6, - 0xe4, 0x46, 0xa2, 0xf7, 0x8a, 0xf7, 0x3a, 0x90, 0xb7, 0x98, 0xc7, 0x9a, 0x65, 0x96, 0xb3, 0x1c, - 0x92, 0x17, 0x19, 0xd4, 0x98, 0x30, 0xc1, 0xc5, 0x2c, 0x66, 0xe5, 0x39, 0xff, 0x0f, 0xdf, 0xcf, - 0xf9, 0xbd, 0xf0, 0x36, 0x45, 0x21, 0x08, 0x45, 0xe1, 0x64, 0x39, 0x97, 0x5c, 0xd7, 0x24, 0x0a, - 0xb9, 0x20, 0x92, 0x98, 0x43, 0xca, 0x29, 0xaf, 0x44, 0xb7, 0x9c, 0x6a, 0xdf, 0x1c, 0x51, 0xce, - 0x69, 0x82, 0x6e, 0xb5, 0x85, 0xc5, 0xd2, 0x25, 0x6c, 0x53, 0x5b, 0xf6, 0x5f, 0x00, 0x5f, 0xd0, - 0xef, 0xbc, 0x60, 0x12, 0x73, 0xdd, 0x80, 0x5e, 0x54, 0x8f, 0x86, 0x32, 0x56, 0x26, 0x6a, 0xd0, - 0xac, 0xfa, 0x67, 0x78, 0xb7, 0x24, 0x71, 0x32, 0xe7, 0x6c, 0xbe, 0x22, 0x6c, 0x91, 0x60, 0x6e, - 0xbc, 0x18, 0x2b, 0x13, 0x2d, 0x78, 0x53, 0xca, 0x33, 0xf6, 0xb3, 0x16, 0xed, 0x19, 0xbc, 0x3e, - 0xf1, 0xbc, 0x67, 0x00, 0x9a, 0x60, 0x94, 0xc0, 0x1c, 0x89, 0xc4, 0x03, 0x36, 0x40, 0x91, 0x71, - 0x26, 0xd0, 0xf6, 0xab, 0xb0, 0xdf, 0xb8, 0xf9, 0x4f, 0x92, 0x02, 0xf5, 0x01, 0xa8, 0x6b, 0xdc, - 0x54, 0x41, 0xfd, 0xa0, 0x1c, 0xf5, 0x21, 0xbc, 0xbc, 0x2e, 0xad, 0x0a, 0xdd, 0x0f, 0xea, 0x45, - 0xff, 0x00, 0x5d, 0x11, 0x53, 0x86, 0xb9, 0xa1, 0x8e, 0x95, 0xc9, 0xab, 0xe0, 0xb0, 0xd9, 0x1f, - 0x61, 0x74, 0x8c, 0x6a, 0xa0, 0x4d, 0x96, 0x77, 0x01, 0xbd, 0xa6, 0xa5, 0x3f, 0x30, 0xf8, 0xc5, - 0xa2, 0x1c, 0x53, 0x64, 0xb2, 0xd1, 0x86, 0x4e, 0xf3, 0x0f, 0x9c, 0xd3, 0xfd, 0xa6, 0xfd, 0x58, - 0x6d, 0x3b, 0xc2, 0xbb, 0x04, 0xed, 0x58, 0x97, 0xdf, 0x42, 0x7e, 0xdf, 0x46, 0xf6, 0x9e, 0x84, - 0xf6, 0x41, 0x3b, 0x96, 0xf3, 0x15, 0xd4, 0x7f, 0x28, 0xcf, 0x68, 0x8d, 0x6b, 0x7e, 0x6a, 0xa1, - 0x9d, 0x57, 0xf0, 0xed, 0xc7, 0xed, 0xce, 0x52, 0xb6, 0x3b, 0x4b, 0xb9, 0xdf, 0x59, 0xca, 0xcd, - 0xde, 0xea, 0x6c, 0xf7, 0x56, 0xe7, 0x6e, 0x6f, 0x75, 0xae, 0xa6, 0x34, 0x96, 0xab, 0x22, 0x74, - 0x22, 0x9e, 0xba, 0x11, 0x17, 0x29, 0x17, 0x87, 0xcf, 0x54, 0x2c, 0xd6, 0x6e, 0x48, 0x04, 0x92, - 0x2c, 0x73, 0xcb, 0x88, 0x42, 0xc6, 0x49, 0xd8, 0xad, 0xde, 0xde, 0x97, 0x87, 0x00, 0x00, 0x00, - 0xff, 0xff, 0x63, 0x31, 0xab, 0xcc, 0xc8, 0x02, 0x00, 0x00, + // 364 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x92, 0x4f, 0x6b, 0xe2, 0x50, + 0x14, 0xc5, 0xcd, 0x84, 0x51, 0xe7, 0xea, 0xcc, 0x48, 0x90, 0x21, 0x66, 0x20, 0x48, 0x16, 0x83, + 0x1b, 0x13, 0xc8, 0xec, 0xc6, 0xdd, 0x0c, 0x83, 0x2d, 0xc5, 0x0a, 0x29, 0x74, 0xd1, 0x8d, 0xbc, + 0xc4, 0xeb, 0x33, 0x98, 0xbc, 0x17, 0xf2, 0x5e, 0x0a, 0x7e, 0x8b, 0x7e, 0xac, 0x2e, 0x5d, 0x76, + 0x59, 0xf4, 0x8b, 0x94, 0xfc, 0xd3, 0x2e, 0x6a, 0x57, 0x5d, 0xe5, 0x9c, 0x73, 0xc9, 0xef, 0xe4, + 0x5e, 0x02, 0xdf, 0x62, 0x14, 0x82, 0x50, 0x14, 0x76, 0x92, 0x72, 0xc9, 0x8d, 0x3e, 0xe5, 0x94, + 0x17, 0xd2, 0xc9, 0x55, 0x95, 0x0e, 0x28, 0xe7, 0x34, 0x42, 0xa7, 0x70, 0x7e, 0xb6, 0x72, 0x08, + 0xdb, 0x96, 0x23, 0xeb, 0x1a, 0x60, 0x26, 0xe8, 0x3f, 0x9e, 0x31, 0x89, 0xa9, 0xa6, 0x43, 0x2b, + 0x28, 0xa5, 0xae, 0x0c, 0x95, 0x91, 0xea, 0xd5, 0x56, 0xfb, 0x05, 0xdf, 0x57, 0x24, 0x8c, 0x16, + 0x9c, 0x2d, 0xd6, 0x84, 0x2d, 0x23, 0x4c, 0xf5, 0x4f, 0x43, 0x65, 0xd4, 0xf6, 0xbe, 0xe6, 0xf1, + 0x9c, 0x5d, 0x94, 0xa1, 0x35, 0x87, 0xce, 0x89, 0xe7, 0x7e, 0x00, 0xd0, 0x00, 0x3d, 0x07, 0xa6, + 0x48, 0x24, 0x56, 0x58, 0x0f, 0x45, 0xc2, 0x99, 0x40, 0x6b, 0x56, 0x94, 0x5d, 0xe1, 0xf6, 0x96, + 0x44, 0x19, 0x6a, 0x3d, 0x50, 0x37, 0xb8, 0x2d, 0x8a, 0xba, 0x5e, 0x2e, 0xb5, 0x3e, 0x7c, 0xbe, + 0xcf, 0x47, 0x05, 0xba, 0xeb, 0x95, 0x46, 0xfb, 0x01, 0x4d, 0x11, 0x52, 0x86, 0xa9, 0xae, 0x0e, + 0x95, 0xd1, 0x17, 0xaf, 0x72, 0xd6, 0x4f, 0x18, 0x1c, 0xab, 0x6a, 0x68, 0xdd, 0xe5, 0xfe, 0x87, + 0x56, 0x7d, 0xa5, 0x3f, 0xd0, 0xbb, 0x64, 0x41, 0x8a, 0x31, 0x32, 0x59, 0x67, 0x1d, 0xfb, 0xb4, + 0xb6, 0x31, 0xb0, 0xcf, 0x7d, 0xb2, 0x3b, 0x85, 0xf6, 0xf1, 0x38, 0x93, 0x37, 0x38, 0xdd, 0x57, + 0x1c, 0xf7, 0x3d, 0xd0, 0x04, 0xda, 0xc7, 0xc5, 0x1d, 0x50, 0x6f, 0x50, 0x96, 0xef, 0xd6, 0xa1, + 0x61, 0xd8, 0x67, 0x97, 0xf9, 0x3b, 0x7d, 0xdc, 0x9b, 0xca, 0x6e, 0x6f, 0x2a, 0xcf, 0x7b, 0x53, + 0x79, 0x38, 0x98, 0x8d, 0xdd, 0xc1, 0x6c, 0x3c, 0x1d, 0xcc, 0xc6, 0xdd, 0x98, 0x86, 0x72, 0x9d, + 0xf9, 0x76, 0xc0, 0x63, 0x27, 0xe0, 0x22, 0xe6, 0xa2, 0x7a, 0x8c, 0xc5, 0x72, 0xe3, 0xf8, 0x44, + 0x20, 0x49, 0x12, 0x47, 0xa2, 0x90, 0x99, 0x0c, 0x23, 0xbf, 0x59, 0xfc, 0x45, 0xbf, 0x5f, 0x02, + 0x00, 0x00, 0xff, 0xff, 0x23, 0xdc, 0x12, 0x4d, 0x88, 0x02, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -328,7 +327,7 @@ func NewCounterClient(cc grpc1.ClientConn) CounterClient { func (c *counterClient) IncrementCounter(ctx context.Context, in *MsgCounter, opts ...grpc.CallOption) (*MsgCreateCounterResponse, error) { out := new(MsgCreateCounterResponse) - err := c.cc.Invoke(ctx, "/testdata.Counter/IncrementCounter", in, out, opts...) + err := c.cc.Invoke(ctx, "/Counter/IncrementCounter", in, out, opts...) if err != nil { return nil, err } @@ -362,7 +361,7 @@ func _Counter_IncrementCounter_Handler(srv interface{}, ctx context.Context, dec } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/testdata.Counter/IncrementCounter", + FullMethod: "/Counter/IncrementCounter", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(CounterServer).IncrementCounter(ctx, req.(*MsgCounter)) @@ -371,7 +370,7 @@ func _Counter_IncrementCounter_Handler(srv interface{}, ctx context.Context, dec } var _Counter_serviceDesc = grpc.ServiceDesc{ - ServiceName: "testdata.Counter", + ServiceName: "Counter", HandlerType: (*CounterServer)(nil), Methods: []grpc.MethodDesc{ { @@ -400,7 +399,7 @@ func NewCounter2Client(cc grpc1.ClientConn) Counter2Client { func (c *counter2Client) IncrementCounter(ctx context.Context, in *MsgCounter2, opts ...grpc.CallOption) (*MsgCreateCounterResponse, error) { out := new(MsgCreateCounterResponse) - err := c.cc.Invoke(ctx, "/testdata.Counter2/IncrementCounter", in, out, opts...) + err := c.cc.Invoke(ctx, "/Counter2/IncrementCounter", in, out, opts...) if err != nil { return nil, err } @@ -434,7 +433,7 @@ func _Counter2_IncrementCounter_Handler(srv interface{}, ctx context.Context, de } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/testdata.Counter2/IncrementCounter", + FullMethod: "/Counter2/IncrementCounter", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(Counter2Server).IncrementCounter(ctx, req.(*MsgCounter2)) @@ -443,7 +442,7 @@ func _Counter2_IncrementCounter_Handler(srv interface{}, ctx context.Context, de } var _Counter2_serviceDesc = grpc.ServiceDesc{ - ServiceName: "testdata.Counter2", + ServiceName: "Counter2", HandlerType: (*Counter2Server)(nil), Methods: []grpc.MethodDesc{ { @@ -472,7 +471,7 @@ func NewKeyValueClient(cc grpc1.ClientConn) KeyValueClient { func (c *keyValueClient) Set(ctx context.Context, in *MsgKeyValue, opts ...grpc.CallOption) (*MsgCreateKeyValueResponse, error) { out := new(MsgCreateKeyValueResponse) - err := c.cc.Invoke(ctx, "/testdata.KeyValue/Set", in, out, opts...) + err := c.cc.Invoke(ctx, "/KeyValue/Set", in, out, opts...) if err != nil { return nil, err } @@ -506,7 +505,7 @@ func _KeyValue_Set_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/testdata.KeyValue/Set", + FullMethod: "/KeyValue/Set", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(KeyValueServer).Set(ctx, req.(*MsgKeyValue)) @@ -515,7 +514,7 @@ func _KeyValue_Set_Handler(srv interface{}, ctx context.Context, dec func(interf } var _KeyValue_serviceDesc = grpc.ServiceDesc{ - ServiceName: "testdata.KeyValue", + ServiceName: "KeyValue", HandlerType: (*KeyValueServer)(nil), Methods: []grpc.MethodDesc{ { diff --git a/baseapp/testutil/messages.proto b/baseapp/testutil/messages.proto index 866e33666983..6a04a94e5c2b 100644 --- a/baseapp/testutil/messages.proto +++ b/baseapp/testutil/messages.proto @@ -1,5 +1,4 @@ syntax = "proto3"; -package testdata; import "gogoproto/gogo.proto"; import "google/protobuf/any.proto"; diff --git a/client/context_test.go b/client/context_test.go index 2a01b6aa8cd6..bc531042188a 100644 --- a/client/context_test.go +++ b/client/context_test.go @@ -50,7 +50,7 @@ func TestContext_PrintProto(t *testing.T) { err = ctx.PrintProto(hasAnimal) require.NoError(t, err) require.Equal(t, - `{"animal":{"@type":"/testdata.Dog","size":"big","name":"Spot"},"x":"10"} + `{"animal":{"@type":"/testpb.Dog","size":"big","name":"Spot"},"x":"10"} `, buf.String()) // yaml @@ -61,7 +61,7 @@ func TestContext_PrintProto(t *testing.T) { require.NoError(t, err) require.Equal(t, `animal: - '@type': /testdata.Dog + '@type': /testpb.Dog name: Spot size: big x: "10" @@ -93,7 +93,7 @@ func TestContext_PrintObjectLegacy(t *testing.T) { err = ctx.PrintObjectLegacy(hasAnimal) require.NoError(t, err) require.Equal(t, - `{"type":"testdata/HasAnimal","value":{"animal":{"type":"testdata/Dog","value":{"size":"big","name":"Spot"}},"x":"10"}} + `{"type":"testpb/HasAnimal","value":{"animal":{"type":"testpb/Dog","value":{"size":"big","name":"Spot"}},"x":"10"}} `, buf.String()) // yaml @@ -103,10 +103,10 @@ func TestContext_PrintObjectLegacy(t *testing.T) { err = ctx.PrintObjectLegacy(hasAnimal) require.NoError(t, err) require.Equal(t, - `type: testdata/HasAnimal + `type: testpb/HasAnimal value: animal: - type: testdata/Dog + type: testpb/Dog value: name: Spot size: big @@ -116,7 +116,7 @@ value: func TestContext_PrintRaw(t *testing.T) { ctx := client.Context{} - hasAnimal := json.RawMessage(`{"animal":{"@type":"/testdata.Dog","size":"big","name":"Spot"},"x":"10"}`) + hasAnimal := json.RawMessage(`{"animal":{"@type":"/testpb.Dog","size":"big","name":"Spot"},"x":"10"}`) // json buf := &bytes.Buffer{} @@ -125,7 +125,7 @@ func TestContext_PrintRaw(t *testing.T) { err := ctx.PrintRaw(hasAnimal) require.NoError(t, err) require.Equal(t, - `{"animal":{"@type":"/testdata.Dog","size":"big","name":"Spot"},"x":"10"} + `{"animal":{"@type":"/testpb.Dog","size":"big","name":"Spot"},"x":"10"} `, buf.String()) // yaml @@ -136,7 +136,7 @@ func TestContext_PrintRaw(t *testing.T) { require.NoError(t, err) require.Equal(t, `animal: - '@type': /testdata.Dog + '@type': /testpb.Dog name: Spot size: big x: "10" diff --git a/codec/types/types_test.go b/codec/types/types_test.go index 5db775895533..2c24a87ce0c7 100644 --- a/codec/types/types_test.go +++ b/codec/types/types_test.go @@ -80,7 +80,7 @@ func TestRegister(t *testing.T) { // Duplicate registration with different concrete type on same typeURL. require.PanicsWithError( t, - "concrete type *testdata.Dog has already been registered under typeURL /testdata.Dog, cannot register *types_test.FakeDog under same typeURL. "+ + "concrete type *testdata.Dog has already been registered under typeURL /testpb.Dog, cannot register *types_test.FakeDog under same typeURL. "+ "This usually means that there are conflicting modules registering different concrete types for a same interface implementation", func() { registry.RegisterImplementations((*testdata.Animal)(nil), &FakeDog{}) @@ -151,7 +151,7 @@ func TestAny_ProtoJSON(t *testing.T) { jm := &jsonpb.Marshaler{} json, err := jm.MarshalToString(any) require.NoError(t, err) - require.Equal(t, "{\"@type\":\"/testdata.Dog\",\"name\":\"Spot\"}", json) + require.Equal(t, "{\"@type\":\"/testpb.Dog\",\"name\":\"Spot\"}", json) registry := testdata.NewTestInterfaceRegistry() jum := &jsonpb.Unmarshaler{} @@ -170,7 +170,7 @@ func TestAny_ProtoJSON(t *testing.T) { require.NoError(t, err) json, err = jm.MarshalToString(ha) require.NoError(t, err) - require.Equal(t, "{\"animal\":{\"@type\":\"/testdata.Dog\",\"name\":\"Spot\"}}", json) + require.Equal(t, "{\"animal\":{\"@type\":\"/testpb.Dog\",\"name\":\"Spot\"}}", json) require.NoError(t, err) var ha2 testdata.HasAnimal diff --git a/codec/unknownproto/unknown_fields_test.go b/codec/unknownproto/unknown_fields_test.go index 5a93c311b9bc..7e0af479adbe 100644 --- a/codec/unknownproto/unknown_fields_test.go +++ b/codec/unknownproto/unknown_fields_test.go @@ -389,7 +389,7 @@ func TestRejectUnknownFieldsNested(t *testing.T) { name: "unknown field types.Any in G", in: &testdata.TestVersion3{ G: &types.Any{ - TypeUrl: "/testdata.TestVersion1", + TypeUrl: "/testpb.TestVersion1", Value: mustMarshal(&testdata.TestVersion2{ Sum: &testdata.TestVersion2_F{ F: &testdata.TestVersion2{ @@ -410,7 +410,7 @@ func TestRejectUnknownFieldsNested(t *testing.T) { in: &testdata.TestVersionFD1WithExtraAny{ G: &testdata.AnyWithExtra{ Any: &types.Any{ - TypeUrl: "/testdata.TestVersion1", + TypeUrl: "/testpb.TestVersion1", Value: mustMarshal(&testdata.TestVersion2{ Sum: &testdata.TestVersion2_F{ F: &testdata.TestVersion2{ @@ -434,7 +434,7 @@ func TestRejectUnknownFieldsNested(t *testing.T) { name: "mismatched types.Any in G", in: &testdata.TestVersion1{ G: &types.Any{ - TypeUrl: "/testdata.TestVersion4LoneNesting", + TypeUrl: "/testpb.TestVersion4LoneNesting", Value: mustMarshal(&testdata.TestVersion3LoneNesting_Inner1{ Inner: &testdata.TestVersion3LoneNesting_Inner1_InnerInner{ Id: "ID", diff --git a/codec/yaml_test.go b/codec/yaml_test.go index e9206a74a3d7..8601f35b0c16 100644 --- a/codec/yaml_test.go +++ b/codec/yaml_test.go @@ -28,7 +28,7 @@ func TestMarshalYAML(t *testing.T) { bz, err := codec.MarshalYAML(protoCdc, hasAnimal) require.NoError(t, err) require.Equal(t, `animal: - '@type': /testdata.Dog + '@type': /testpb.Dog name: Spot size: small x: "0" @@ -38,10 +38,10 @@ x: "0" aminoCdc := codec.NewAminoCodec(&codec.LegacyAmino{testdata.NewTestAmino()}) bz, err = codec.MarshalYAML(aminoCdc, hasAnimal) require.NoError(t, err) - require.Equal(t, `type: testdata/HasAnimal + require.Equal(t, `type: testpb/HasAnimal value: animal: - type: testdata/Dog + type: testpb/Dog value: name: Spot size: small diff --git a/simapp/app.go b/simapp/app.go index 1c3ccb859828..b38f46ba3b83 100644 --- a/simapp/app.go +++ b/simapp/app.go @@ -48,7 +48,7 @@ import ( "github.com/cosmos/cosmos-sdk/server/config" servertypes "github.com/cosmos/cosmos-sdk/server/types" "github.com/cosmos/cosmos-sdk/std" - "github.com/cosmos/cosmos-sdk/testutil/testdata_pulsar" + testdata_pulsar "github.com/cosmos/cosmos-sdk/testutil/testdata/testpb" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" "github.com/cosmos/cosmos-sdk/version" diff --git a/simapp/app_v2.go b/simapp/app_v2.go index f59c93db37f3..d1c19d59b4f7 100644 --- a/simapp/app_v2.go +++ b/simapp/app_v2.go @@ -33,7 +33,7 @@ import ( "github.com/cosmos/cosmos-sdk/server/api" "github.com/cosmos/cosmos-sdk/server/config" servertypes "github.com/cosmos/cosmos-sdk/server/types" - "github.com/cosmos/cosmos-sdk/testutil/testdata_pulsar" + testdata_pulsar "github.com/cosmos/cosmos-sdk/testutil/testdata/testpb" "github.com/cosmos/cosmos-sdk/types/module" "github.com/cosmos/cosmos-sdk/x/auth" authkeeper "github.com/cosmos/cosmos-sdk/x/auth/keeper" diff --git a/testutil/assertHelpers.go b/testutil/assert_helpers.go similarity index 100% rename from testutil/assertHelpers.go rename to testutil/assert_helpers.go diff --git a/testutil/testdata/README.md b/testutil/testdata/README.md new file mode 100644 index 000000000000..86a2726aa444 --- /dev/null +++ b/testutil/testdata/README.md @@ -0,0 +1,6 @@ +# testdata + +The testdata directory contains gogo and pulsar generated code: + +* `testdata/*.go` : gogo +* `testdata/testpb/*.go`: pulsar diff --git a/testutil/testdata/buf.gen.pulsar.yaml b/testutil/testdata/buf.gen.pulsar.yaml index fbfec36e7610..6cb4f02a9bf9 100644 --- a/testutil/testdata/buf.gen.pulsar.yaml +++ b/testutil/testdata/buf.gen.pulsar.yaml @@ -11,8 +11,8 @@ managed: buf.build/cosmos/cosmos-sdk: cosmossdk.io/api plugins: - name: go-pulsar - out: ../testdata_pulsar + out: . opt: paths=source_relative - name: go-grpc - out: ../testdata_pulsar + out: . opt: paths=source_relative diff --git a/testutil/testdata/buf.gen.yaml b/testutil/testdata/buf.gen.yaml index d7d17bbb26f8..5a8136666e67 100644 --- a/testutil/testdata/buf.gen.yaml +++ b/testutil/testdata/buf.gen.yaml @@ -2,4 +2,5 @@ version: v1 plugins: - name: gocosmos out: ../.. - opt: plugins=grpc,Mgoogle/protobuf/any.proto=github.com/cosmos/cosmos-sdk/codec/types + opt: + - plugins=grpc,Mgoogle/protobuf/any.proto=github.com/cosmos/cosmos-sdk/codec/types diff --git a/testutil/testdata/codec.go b/testutil/testdata/codec.go index 2f3aecb98618..eb2424c40fb5 100644 --- a/testutil/testdata/codec.go +++ b/testutil/testdata/codec.go @@ -43,14 +43,14 @@ func RegisterInterfaces(registry types.InterfaceRegistry) { func NewTestAmino() *amino.Codec { cdc := amino.NewCodec() cdc.RegisterInterface((*Animal)(nil), nil) - cdc.RegisterConcrete(&Dog{}, "testdata/Dog", nil) - cdc.RegisterConcrete(&Cat{}, "testdata/Cat", nil) + cdc.RegisterConcrete(&Dog{}, "testpb/Dog", nil) + cdc.RegisterConcrete(&Cat{}, "testpb/Cat", nil) cdc.RegisterInterface((*HasAnimalI)(nil), nil) - cdc.RegisterConcrete(&HasAnimal{}, "testdata/HasAnimal", nil) + cdc.RegisterConcrete(&HasAnimal{}, "testpb/HasAnimal", nil) cdc.RegisterInterface((*HasHasAnimalI)(nil), nil) - cdc.RegisterConcrete(&HasHasAnimal{}, "testdata/HasHasAnimal", nil) + cdc.RegisterConcrete(&HasHasAnimal{}, "testpb/HasHasAnimal", nil) return cdc } diff --git a/testutil/testdata/query.pb.go b/testutil/testdata/query.pb.go index 2127724e24fa..d104840c5dce 100644 --- a/testutil/testdata/query.pb.go +++ b/testutil/testdata/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: query.proto +// source: testpb/query.proto package testdata @@ -36,7 +36,7 @@ func (m *EchoRequest) Reset() { *m = EchoRequest{} } func (m *EchoRequest) String() string { return proto.CompactTextString(m) } func (*EchoRequest) ProtoMessage() {} func (*EchoRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_5c6ac9b241082464, []int{0} + return fileDescriptor_b00998f1336963e3, []int{0} } func (m *EchoRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -80,7 +80,7 @@ func (m *EchoResponse) Reset() { *m = EchoResponse{} } func (m *EchoResponse) String() string { return proto.CompactTextString(m) } func (*EchoResponse) ProtoMessage() {} func (*EchoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_5c6ac9b241082464, []int{1} + return fileDescriptor_b00998f1336963e3, []int{1} } func (m *EchoResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -124,7 +124,7 @@ func (m *SayHelloRequest) Reset() { *m = SayHelloRequest{} } func (m *SayHelloRequest) String() string { return proto.CompactTextString(m) } func (*SayHelloRequest) ProtoMessage() {} func (*SayHelloRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_5c6ac9b241082464, []int{2} + return fileDescriptor_b00998f1336963e3, []int{2} } func (m *SayHelloRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -168,7 +168,7 @@ func (m *SayHelloResponse) Reset() { *m = SayHelloResponse{} } func (m *SayHelloResponse) String() string { return proto.CompactTextString(m) } func (*SayHelloResponse) ProtoMessage() {} func (*SayHelloResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_5c6ac9b241082464, []int{3} + return fileDescriptor_b00998f1336963e3, []int{3} } func (m *SayHelloResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -212,7 +212,7 @@ func (m *TestAnyRequest) Reset() { *m = TestAnyRequest{} } func (m *TestAnyRequest) String() string { return proto.CompactTextString(m) } func (*TestAnyRequest) ProtoMessage() {} func (*TestAnyRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_5c6ac9b241082464, []int{4} + return fileDescriptor_b00998f1336963e3, []int{4} } func (m *TestAnyRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -256,7 +256,7 @@ func (m *TestAnyResponse) Reset() { *m = TestAnyResponse{} } func (m *TestAnyResponse) String() string { return proto.CompactTextString(m) } func (*TestAnyResponse) ProtoMessage() {} func (*TestAnyResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_5c6ac9b241082464, []int{5} + return fileDescriptor_b00998f1336963e3, []int{5} } func (m *TestAnyResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -293,41 +293,41 @@ func (m *TestAnyResponse) GetHasAnimal() *HasAnimal { } func init() { - proto.RegisterType((*EchoRequest)(nil), "testdata.EchoRequest") - proto.RegisterType((*EchoResponse)(nil), "testdata.EchoResponse") - proto.RegisterType((*SayHelloRequest)(nil), "testdata.SayHelloRequest") - proto.RegisterType((*SayHelloResponse)(nil), "testdata.SayHelloResponse") - proto.RegisterType((*TestAnyRequest)(nil), "testdata.TestAnyRequest") - proto.RegisterType((*TestAnyResponse)(nil), "testdata.TestAnyResponse") -} - -func init() { proto.RegisterFile("query.proto", fileDescriptor_5c6ac9b241082464) } - -var fileDescriptor_5c6ac9b241082464 = []byte{ - // 359 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x90, 0xcf, 0x4f, 0xc2, 0x30, - 0x14, 0xc7, 0x59, 0x82, 0x02, 0x0f, 0x03, 0xa6, 0xfe, 0x08, 0xf4, 0xb0, 0x98, 0x25, 0x46, 0x2e, - 0x76, 0x09, 0xc4, 0xab, 0x09, 0x26, 0x24, 0x5c, 0x45, 0x4f, 0x5e, 0x4c, 0x81, 0xba, 0x2d, 0x6e, - 0x2d, 0xd0, 0xee, 0xb0, 0xff, 0xc2, 0x7f, 0xc9, 0x9b, 0x47, 0x8e, 0x1e, 0x0d, 0xfc, 0x23, 0x66, - 0x5b, 0xbb, 0x09, 0x21, 0x9e, 0xda, 0xd7, 0x7e, 0xde, 0xe7, 0xe5, 0x7d, 0xa1, 0xb9, 0x8c, 0xd9, - 0x2a, 0x21, 0x8b, 0x95, 0x50, 0x02, 0xd5, 0x15, 0x93, 0x6a, 0x4e, 0x15, 0xc5, 0x5d, 0x4f, 0x08, - 0x2f, 0x64, 0x6e, 0xf6, 0x3e, 0x8d, 0xdf, 0x5c, 0xca, 0x35, 0x84, 0x5b, 0x06, 0xca, 0x6b, 0xe7, - 0x06, 0x9a, 0xa3, 0x99, 0x2f, 0x26, 0x6c, 0x19, 0x33, 0xa9, 0x50, 0x07, 0x6a, 0x11, 0x93, 0x92, - 0x7a, 0xac, 0x63, 0x5d, 0x59, 0xbd, 0xc6, 0xc4, 0x94, 0x4e, 0x0f, 0x4e, 0x72, 0x50, 0x2e, 0x04, - 0x97, 0xec, 0x1f, 0xf2, 0x1a, 0xda, 0x4f, 0x34, 0x19, 0xb3, 0x30, 0x2c, 0xb4, 0x08, 0xaa, 0x9c, - 0x46, 0x86, 0xcc, 0xee, 0x0e, 0x81, 0xd3, 0x12, 0xd3, 0x52, 0x0c, 0x75, 0x6f, 0xc5, 0x98, 0x0a, - 0xb8, 0xa7, 0xd9, 0xa2, 0x76, 0x46, 0xd0, 0x7a, 0x66, 0x52, 0x0d, 0x79, 0x62, 0xac, 0x03, 0x00, - 0xca, 0x93, 0x57, 0xca, 0x83, 0x88, 0x86, 0x19, 0xdf, 0xec, 0x9f, 0x93, 0x7c, 0x77, 0x62, 0x76, - 0x27, 0x69, 0x43, 0x83, 0xf2, 0x64, 0x98, 0x61, 0xce, 0x08, 0xda, 0x85, 0x46, 0x4f, 0xed, 0x03, - 0xf8, 0x54, 0xee, 0x7a, 0xce, 0x48, 0x11, 0xd4, 0x98, 0xca, 0xbc, 0x77, 0xd2, 0xf0, 0xcd, 0xb5, - 0xff, 0x69, 0xc1, 0xd1, 0x63, 0x1a, 0x3e, 0xba, 0x83, 0x6a, 0x1a, 0x0c, 0xba, 0x28, 0x3b, 0xfe, - 0x24, 0x8a, 0x2f, 0xf7, 0x9f, 0xf5, 0xd0, 0x21, 0xd4, 0xcd, 0xfa, 0xa8, 0x5b, 0x32, 0x7b, 0xc9, - 0x61, 0x7c, 0xe8, 0x4b, 0x2b, 0xee, 0xa1, 0xa6, 0x57, 0x41, 0x9d, 0x12, 0xdb, 0x0d, 0x09, 0x77, - 0x0f, 0xfc, 0xe4, 0xfd, 0x0f, 0xe3, 0xaf, 0x8d, 0x6d, 0xad, 0x37, 0xb6, 0xf5, 0xb3, 0xb1, 0xad, - 0x8f, 0xad, 0x5d, 0x59, 0x6f, 0xed, 0xca, 0xf7, 0xd6, 0xae, 0xbc, 0x10, 0x2f, 0x50, 0x7e, 0x3c, - 0x25, 0x33, 0x11, 0xb9, 0x33, 0x21, 0x23, 0x21, 0xf5, 0x71, 0x2b, 0xe7, 0xef, 0x6e, 0x2a, 0x8c, - 0x55, 0x10, 0xba, 0xc6, 0x3c, 0x3d, 0xce, 0xd2, 0x1e, 0xfc, 0x06, 0x00, 0x00, 0xff, 0xff, 0xe8, - 0xb4, 0x42, 0x4e, 0x90, 0x02, 0x00, 0x00, + proto.RegisterType((*EchoRequest)(nil), "testpb.EchoRequest") + proto.RegisterType((*EchoResponse)(nil), "testpb.EchoResponse") + proto.RegisterType((*SayHelloRequest)(nil), "testpb.SayHelloRequest") + proto.RegisterType((*SayHelloResponse)(nil), "testpb.SayHelloResponse") + proto.RegisterType((*TestAnyRequest)(nil), "testpb.TestAnyRequest") + proto.RegisterType((*TestAnyResponse)(nil), "testpb.TestAnyResponse") +} + +func init() { proto.RegisterFile("testpb/query.proto", fileDescriptor_b00998f1336963e3) } + +var fileDescriptor_b00998f1336963e3 = []byte{ + // 367 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x92, 0x4f, 0x4f, 0xc2, 0x30, + 0x18, 0xc6, 0x59, 0x82, 0xfc, 0x79, 0x31, 0xa2, 0x15, 0x05, 0x77, 0x58, 0xcc, 0x12, 0x23, 0x17, + 0x3b, 0x85, 0x9b, 0x89, 0x07, 0x34, 0x24, 0x5c, 0x45, 0x4f, 0x5e, 0x4c, 0x07, 0x75, 0x5b, 0xdc, + 0x5a, 0xa0, 0xdd, 0x61, 0xdf, 0xc2, 0x2f, 0xe3, 0x77, 0xf0, 0xc8, 0xd1, 0xa3, 0x81, 0x2f, 0x62, + 0xb6, 0xb5, 0x53, 0x24, 0xf1, 0xd4, 0xf6, 0xe9, 0xef, 0x79, 0x9a, 0x3e, 0x79, 0x01, 0x49, 0x2a, + 0xe4, 0xcc, 0x75, 0xe6, 0x31, 0x5d, 0x24, 0x78, 0xb6, 0xe0, 0x92, 0xa3, 0x4a, 0xae, 0x99, 0x27, + 0x1e, 0xe7, 0x5e, 0x48, 0x9d, 0x4c, 0x75, 0xe3, 0x17, 0x87, 0x30, 0x85, 0x98, 0x47, 0xca, 0x96, + 0x2e, 0x53, 0x22, 0x49, 0x2e, 0xdb, 0xe7, 0xd0, 0x18, 0x4e, 0x7c, 0x3e, 0xa6, 0xf3, 0x98, 0x0a, + 0x89, 0x3a, 0x50, 0x8d, 0xa8, 0x10, 0xc4, 0xa3, 0x1d, 0xe3, 0xd4, 0xe8, 0xd6, 0xc7, 0xfa, 0x68, + 0x77, 0x61, 0x37, 0x07, 0xc5, 0x8c, 0x33, 0x41, 0xff, 0x21, 0xcf, 0xa0, 0xf9, 0x40, 0x92, 0x11, + 0x0d, 0xc3, 0x22, 0x16, 0x41, 0x99, 0x91, 0x48, 0x93, 0xd9, 0xde, 0xc6, 0xb0, 0xff, 0x83, 0xa9, + 0x50, 0x13, 0x6a, 0xde, 0x82, 0x52, 0x19, 0x30, 0x4f, 0xb1, 0xc5, 0xd9, 0x1e, 0xc2, 0xde, 0x23, + 0x15, 0x72, 0xc0, 0x12, 0x9d, 0xda, 0x07, 0x20, 0x2c, 0x79, 0x26, 0x2c, 0x88, 0x48, 0x98, 0xf1, + 0x8d, 0x5e, 0x0b, 0xe7, 0x15, 0x60, 0x5d, 0x01, 0x4e, 0x0d, 0x75, 0xc2, 0x92, 0x41, 0x86, 0xd9, + 0x77, 0xd0, 0x2c, 0x62, 0xd4, 0xab, 0x97, 0x00, 0x3e, 0x11, 0x9b, 0x39, 0x07, 0x38, 0xef, 0x0b, + 0x8f, 0x88, 0xc8, 0x9d, 0xe3, 0xba, 0xaf, 0xb7, 0xbd, 0x77, 0x03, 0x76, 0xee, 0xd3, 0xfe, 0xd1, + 0x15, 0x94, 0xd3, 0x5a, 0xd0, 0xa1, 0xe6, 0x7f, 0xb5, 0x69, 0xb6, 0x36, 0x45, 0xf5, 0xdc, 0x0d, + 0xd4, 0xf4, 0xc7, 0x51, 0x5b, 0x13, 0x7f, 0x1a, 0x33, 0x3b, 0xdb, 0x17, 0xca, 0x7e, 0x0d, 0x55, + 0xf5, 0x01, 0x74, 0xac, 0xa1, 0xcd, 0x62, 0xcc, 0xf6, 0x96, 0x9e, 0x7b, 0x6f, 0x47, 0x1f, 0x2b, + 0xcb, 0x58, 0xae, 0x2c, 0xe3, 0x6b, 0x65, 0x19, 0x6f, 0x6b, 0xab, 0xb4, 0x5c, 0x5b, 0xa5, 0xcf, + 0xb5, 0x55, 0x7a, 0xc2, 0x5e, 0x20, 0xfd, 0xd8, 0xc5, 0x13, 0x1e, 0x39, 0x13, 0x2e, 0x22, 0x2e, + 0xd4, 0x72, 0x21, 0xa6, 0xaf, 0xd9, 0xd0, 0xc4, 0x32, 0x08, 0x8b, 0xe9, 0x71, 0x2b, 0x59, 0xbf, + 0xfd, 0xef, 0x00, 0x00, 0x00, 0xff, 0xff, 0x4c, 0x8d, 0x9a, 0xee, 0x8e, 0x02, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -357,7 +357,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { func (c *queryClient) Echo(ctx context.Context, in *EchoRequest, opts ...grpc.CallOption) (*EchoResponse, error) { out := new(EchoResponse) - err := c.cc.Invoke(ctx, "/testdata.Query/Echo", in, out, opts...) + err := c.cc.Invoke(ctx, "/testpb.Query/Echo", in, out, opts...) if err != nil { return nil, err } @@ -366,7 +366,7 @@ func (c *queryClient) Echo(ctx context.Context, in *EchoRequest, opts ...grpc.Ca func (c *queryClient) SayHello(ctx context.Context, in *SayHelloRequest, opts ...grpc.CallOption) (*SayHelloResponse, error) { out := new(SayHelloResponse) - err := c.cc.Invoke(ctx, "/testdata.Query/SayHello", in, out, opts...) + err := c.cc.Invoke(ctx, "/testpb.Query/SayHello", in, out, opts...) if err != nil { return nil, err } @@ -375,7 +375,7 @@ func (c *queryClient) SayHello(ctx context.Context, in *SayHelloRequest, opts .. func (c *queryClient) TestAny(ctx context.Context, in *TestAnyRequest, opts ...grpc.CallOption) (*TestAnyResponse, error) { out := new(TestAnyResponse) - err := c.cc.Invoke(ctx, "/testdata.Query/TestAny", in, out, opts...) + err := c.cc.Invoke(ctx, "/testpb.Query/TestAny", in, out, opts...) if err != nil { return nil, err } @@ -417,7 +417,7 @@ func _Query_Echo_Handler(srv interface{}, ctx context.Context, dec func(interfac } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/testdata.Query/Echo", + FullMethod: "/testpb.Query/Echo", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Echo(ctx, req.(*EchoRequest)) @@ -435,7 +435,7 @@ func _Query_SayHello_Handler(srv interface{}, ctx context.Context, dec func(inte } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/testdata.Query/SayHello", + FullMethod: "/testpb.Query/SayHello", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).SayHello(ctx, req.(*SayHelloRequest)) @@ -453,7 +453,7 @@ func _Query_TestAny_Handler(srv interface{}, ctx context.Context, dec func(inter } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/testdata.Query/TestAny", + FullMethod: "/testpb.Query/TestAny", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).TestAny(ctx, req.(*TestAnyRequest)) @@ -462,7 +462,7 @@ func _Query_TestAny_Handler(srv interface{}, ctx context.Context, dec func(inter } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "testdata.Query", + ServiceName: "testpb.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { @@ -479,7 +479,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "query.proto", + Metadata: "testpb/query.proto", } func (m *EchoRequest) Marshal() (dAtA []byte, err error) { diff --git a/testutil/testdata/testdata.pb.go b/testutil/testdata/testdata.pb.go index b84568c40d9b..3db89888b056 100644 --- a/testutil/testdata/testdata.pb.go +++ b/testutil/testdata/testdata.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: testdata.proto +// source: testpb/testdata.proto package testdata @@ -33,7 +33,7 @@ func (m *Dog) Reset() { *m = Dog{} } func (m *Dog) String() string { return proto.CompactTextString(m) } func (*Dog) ProtoMessage() {} func (*Dog) Descriptor() ([]byte, []int) { - return fileDescriptor_40c4782d007dfce9, []int{0} + return fileDescriptor_bc244d00904a39a7, []int{0} } func (m *Dog) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -85,7 +85,7 @@ func (m *Cat) Reset() { *m = Cat{} } func (m *Cat) String() string { return proto.CompactTextString(m) } func (*Cat) ProtoMessage() {} func (*Cat) Descriptor() ([]byte, []int) { - return fileDescriptor_40c4782d007dfce9, []int{1} + return fileDescriptor_bc244d00904a39a7, []int{1} } func (m *Cat) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -137,7 +137,7 @@ func (m *Bird) Reset() { *m = Bird{} } func (m *Bird) String() string { return proto.CompactTextString(m) } func (*Bird) ProtoMessage() {} func (*Bird) Descriptor() ([]byte, []int) { - return fileDescriptor_40c4782d007dfce9, []int{2} + return fileDescriptor_bc244d00904a39a7, []int{2} } func (m *Bird) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -189,7 +189,7 @@ func (m *HasAnimal) Reset() { *m = HasAnimal{} } func (m *HasAnimal) String() string { return proto.CompactTextString(m) } func (*HasAnimal) ProtoMessage() {} func (*HasAnimal) Descriptor() ([]byte, []int) { - return fileDescriptor_40c4782d007dfce9, []int{3} + return fileDescriptor_bc244d00904a39a7, []int{3} } func (m *HasAnimal) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -240,7 +240,7 @@ func (m *HasHasAnimal) Reset() { *m = HasHasAnimal{} } func (m *HasHasAnimal) String() string { return proto.CompactTextString(m) } func (*HasHasAnimal) ProtoMessage() {} func (*HasHasAnimal) Descriptor() ([]byte, []int) { - return fileDescriptor_40c4782d007dfce9, []int{4} + return fileDescriptor_bc244d00904a39a7, []int{4} } func (m *HasHasAnimal) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -284,7 +284,7 @@ func (m *HasHasHasAnimal) Reset() { *m = HasHasHasAnimal{} } func (m *HasHasHasAnimal) String() string { return proto.CompactTextString(m) } func (*HasHasHasAnimal) ProtoMessage() {} func (*HasHasHasAnimal) Descriptor() ([]byte, []int) { - return fileDescriptor_40c4782d007dfce9, []int{5} + return fileDescriptor_bc244d00904a39a7, []int{5} } func (m *HasHasHasAnimal) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -331,7 +331,7 @@ func (m *BadMultiSignature) Reset() { *m = BadMultiSignature{} } func (m *BadMultiSignature) String() string { return proto.CompactTextString(m) } func (*BadMultiSignature) ProtoMessage() {} func (*BadMultiSignature) Descriptor() ([]byte, []int) { - return fileDescriptor_40c4782d007dfce9, []int{6} + return fileDescriptor_bc244d00904a39a7, []int{6} } func (m *BadMultiSignature) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -385,7 +385,7 @@ func (m *TableModel) Reset() { *m = TableModel{} } func (m *TableModel) String() string { return proto.CompactTextString(m) } func (*TableModel) ProtoMessage() {} func (*TableModel) Descriptor() ([]byte, []int) { - return fileDescriptor_40c4782d007dfce9, []int{7} + return fileDescriptor_bc244d00904a39a7, []int{7} } func (m *TableModel) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -443,48 +443,48 @@ func (m *TableModel) GetMetadata() []byte { } func init() { - proto.RegisterType((*Dog)(nil), "testdata.Dog") - proto.RegisterType((*Cat)(nil), "testdata.Cat") - proto.RegisterType((*Bird)(nil), "testdata.Bird") - proto.RegisterType((*HasAnimal)(nil), "testdata.HasAnimal") - proto.RegisterType((*HasHasAnimal)(nil), "testdata.HasHasAnimal") - proto.RegisterType((*HasHasHasAnimal)(nil), "testdata.HasHasHasAnimal") - proto.RegisterType((*BadMultiSignature)(nil), "testdata.BadMultiSignature") - proto.RegisterType((*TableModel)(nil), "testdata.TableModel") -} - -func init() { proto.RegisterFile("testdata.proto", fileDescriptor_40c4782d007dfce9) } - -var fileDescriptor_40c4782d007dfce9 = []byte{ - // 443 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x92, 0xc1, 0x6e, 0xd3, 0x30, - 0x1c, 0xc6, 0xeb, 0x26, 0x2d, 0xeb, 0x9f, 0xa8, 0x13, 0x56, 0x85, 0x42, 0x0f, 0x61, 0xca, 0x85, - 0x1e, 0x58, 0x22, 0x31, 0xc1, 0x61, 0xb7, 0x75, 0x08, 0x7a, 0xe9, 0x25, 0x70, 0xe2, 0x32, 0x39, - 0xb1, 0x97, 0x5a, 0x73, 0xe2, 0x29, 0x76, 0xd0, 0xc6, 0x53, 0xf0, 0x0a, 0xbc, 0x0d, 0xc7, 0x1e, - 0x39, 0xa2, 0xf6, 0x45, 0x90, 0x9d, 0x78, 0xdb, 0x81, 0x43, 0x4f, 0xf9, 0xbe, 0xcf, 0xfe, 0x7d, - 0x89, 0x9d, 0x3f, 0x4c, 0x35, 0x53, 0x9a, 0x12, 0x4d, 0x92, 0xdb, 0x46, 0x6a, 0x89, 0x8f, 0x9c, - 0x9f, 0xcf, 0x4a, 0x59, 0x4a, 0x1b, 0xa6, 0x46, 0x75, 0xeb, 0xf3, 0x57, 0xa5, 0x94, 0xa5, 0x60, - 0xa9, 0x75, 0x79, 0x7b, 0x9d, 0x92, 0xfa, 0xbe, 0x5b, 0x8a, 0x4f, 0xc1, 0xfb, 0x28, 0x4b, 0x8c, - 0xc1, 0x57, 0xfc, 0x07, 0x0b, 0xd1, 0x09, 0x5a, 0x4c, 0x32, 0xab, 0x4d, 0x56, 0x93, 0x8a, 0x85, - 0xc3, 0x2e, 0x33, 0x3a, 0x7e, 0x0f, 0xde, 0x25, 0xd1, 0x38, 0x84, 0x67, 0x95, 0xac, 0xf9, 0x0d, - 0x6b, 0x7a, 0xc2, 0x59, 0x3c, 0x83, 0x91, 0xe0, 0xdf, 0x99, 0xb2, 0xd4, 0x28, 0xeb, 0x4c, 0xfc, - 0x01, 0xfc, 0x25, 0x6f, 0xa8, 0xe1, 0xd4, 0x2d, 0x2b, 0x38, 0x53, 0x8e, 0xeb, 0xad, 0xe1, 0x0a, - 0x29, 0x64, 0xe3, 0x38, 0x6b, 0xe2, 0xcf, 0x30, 0x59, 0x11, 0x75, 0x51, 0xf3, 0x8a, 0x08, 0xfc, - 0x16, 0xc6, 0xc4, 0x2a, 0xcb, 0x3e, 0x7f, 0x37, 0x4b, 0xba, 0x63, 0x25, 0xee, 0x58, 0xc9, 0x45, - 0x7d, 0x9f, 0xf5, 0x7b, 0x70, 0x00, 0xe8, 0xce, 0x96, 0x79, 0x19, 0xba, 0x8b, 0x2f, 0x21, 0x58, - 0x11, 0xf5, 0xd8, 0x75, 0x06, 0xb0, 0x21, 0xea, 0xea, 0x80, 0xbe, 0xc9, 0xc6, 0x41, 0xf1, 0x1a, - 0x8e, 0xbb, 0x92, 0xc7, 0x9e, 0x73, 0x98, 0x9a, 0x9e, 0x03, 0xbb, 0x82, 0xcd, 0x13, 0x36, 0xce, - 0xe1, 0xc5, 0x92, 0xd0, 0x75, 0x2b, 0x34, 0xff, 0xc2, 0xcb, 0x9a, 0xe8, 0xb6, 0x61, 0x38, 0x02, - 0x50, 0xce, 0x98, 0x4b, 0xf2, 0x16, 0x41, 0xf6, 0x24, 0xc1, 0x6f, 0xe0, 0xb8, 0x22, 0x82, 0x17, - 0x5c, 0xb6, 0xea, 0xea, 0x9a, 0x33, 0x41, 0xc3, 0xd1, 0x09, 0x5a, 0x04, 0xd9, 0xf4, 0x21, 0xfe, - 0x64, 0xd2, 0x73, 0x7f, 0xfb, 0xeb, 0x35, 0x8a, 0x29, 0xc0, 0x57, 0x92, 0x0b, 0xb6, 0x96, 0x94, - 0x09, 0x3c, 0x85, 0x21, 0xa7, 0xf6, 0x0b, 0xfd, 0x6c, 0xc8, 0xe9, 0xff, 0xfe, 0x30, 0x7e, 0x09, - 0xe3, 0xba, 0xad, 0x72, 0xd6, 0x84, 0x9e, 0xdd, 0xd7, 0x3b, 0x3c, 0x87, 0xa3, 0x8a, 0x69, 0x62, - 0xa6, 0x2c, 0xf4, 0xed, 0x1b, 0x1f, 0xfc, 0x72, 0xf5, 0x7b, 0x17, 0xa1, 0xed, 0x2e, 0x42, 0x7f, - 0x77, 0x11, 0xfa, 0xb9, 0x8f, 0x06, 0xdb, 0x7d, 0x34, 0xf8, 0xb3, 0x8f, 0x06, 0xdf, 0x92, 0x92, - 0xeb, 0x4d, 0x9b, 0x27, 0x85, 0xac, 0xd2, 0x42, 0xaa, 0x4a, 0xaa, 0xfe, 0x71, 0xaa, 0xe8, 0x4d, - 0x6a, 0xc6, 0xb6, 0xd5, 0x5c, 0xa4, 0x6e, 0x7e, 0xf3, 0xb1, 0xbd, 0xaf, 0xb3, 0x7f, 0x01, 0x00, - 0x00, 0xff, 0xff, 0xbd, 0x48, 0xf9, 0x24, 0xe2, 0x02, 0x00, 0x00, + proto.RegisterType((*Dog)(nil), "testpb.Dog") + proto.RegisterType((*Cat)(nil), "testpb.Cat") + proto.RegisterType((*Bird)(nil), "testpb.Bird") + proto.RegisterType((*HasAnimal)(nil), "testpb.HasAnimal") + proto.RegisterType((*HasHasAnimal)(nil), "testpb.HasHasAnimal") + proto.RegisterType((*HasHasHasAnimal)(nil), "testpb.HasHasHasAnimal") + proto.RegisterType((*BadMultiSignature)(nil), "testpb.BadMultiSignature") + proto.RegisterType((*TableModel)(nil), "testpb.TableModel") +} + +func init() { proto.RegisterFile("testpb/testdata.proto", fileDescriptor_bc244d00904a39a7) } + +var fileDescriptor_bc244d00904a39a7 = []byte{ + // 446 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x92, 0xb1, 0x8e, 0xd3, 0x30, + 0x18, 0xc7, 0xeb, 0x26, 0x2d, 0xf4, 0x23, 0xea, 0x09, 0xab, 0xa0, 0xd0, 0x21, 0x9c, 0xb2, 0xd0, + 0x81, 0x4b, 0x24, 0x4e, 0x30, 0xdc, 0x76, 0x3d, 0x04, 0x5d, 0xba, 0x04, 0x26, 0x96, 0x93, 0x13, + 0xfb, 0x12, 0xeb, 0x9c, 0xb8, 0x8a, 0x1d, 0x74, 0xc7, 0x53, 0xf0, 0x0a, 0xbc, 0x0d, 0x63, 0x47, + 0x46, 0xd4, 0xbe, 0x08, 0xb2, 0x93, 0xf4, 0x6e, 0x60, 0xe8, 0xe4, 0xef, 0xff, 0xb7, 0x7f, 0xff, + 0xc4, 0x9f, 0x3f, 0x78, 0xa1, 0x99, 0xd2, 0x9b, 0x34, 0x36, 0x0b, 0x25, 0x9a, 0x44, 0x9b, 0x5a, + 0x6a, 0x89, 0xc7, 0xad, 0x3d, 0x9f, 0xe5, 0x32, 0x97, 0xd6, 0x8a, 0x4d, 0xd5, 0xee, 0xce, 0x5f, + 0xe5, 0x52, 0xe6, 0x82, 0xc5, 0x56, 0xa5, 0xcd, 0x4d, 0x4c, 0xaa, 0xfb, 0x76, 0x2b, 0x3c, 0x03, + 0xe7, 0xa3, 0xcc, 0x31, 0x06, 0x57, 0xf1, 0x1f, 0xcc, 0x47, 0xa7, 0x68, 0x31, 0x49, 0x6c, 0x6d, + 0xbc, 0x8a, 0x94, 0xcc, 0x1f, 0xb6, 0x9e, 0xa9, 0xc3, 0xf7, 0xe0, 0x5c, 0x11, 0x8d, 0x7d, 0x78, + 0x52, 0xca, 0x8a, 0xdf, 0xb2, 0xba, 0x23, 0x7a, 0x89, 0x67, 0x30, 0x12, 0xfc, 0x3b, 0x53, 0x96, + 0x1a, 0x25, 0xad, 0x08, 0x3f, 0x80, 0xbb, 0xe4, 0x35, 0x35, 0x9c, 0xda, 0xb0, 0x8c, 0x33, 0xd5, + 0x73, 0x9d, 0x34, 0x5c, 0x26, 0x85, 0xac, 0x7b, 0xce, 0x8a, 0xf0, 0x33, 0x4c, 0x56, 0x44, 0x5d, + 0x56, 0xbc, 0x24, 0x02, 0xbf, 0x85, 0x31, 0xb1, 0x95, 0x65, 0x9f, 0xbd, 0x9b, 0x45, 0xed, 0xb5, + 0xa2, 0xfe, 0x5a, 0xd1, 0x65, 0x75, 0x9f, 0x74, 0x67, 0xb0, 0x07, 0xe8, 0xce, 0x86, 0x39, 0x09, + 0xba, 0x0b, 0xaf, 0xc0, 0x5b, 0x11, 0xf5, 0x90, 0x75, 0x0e, 0x50, 0x10, 0x75, 0x7d, 0x44, 0xde, + 0xa4, 0xe8, 0xa1, 0x70, 0x0d, 0x27, 0x6d, 0xc8, 0x43, 0xce, 0x05, 0x4c, 0x4d, 0xce, 0x91, 0x59, + 0x5e, 0xf1, 0x88, 0x0d, 0x53, 0x78, 0xbe, 0x24, 0x74, 0xdd, 0x08, 0xcd, 0xbf, 0xf0, 0xbc, 0x22, + 0xba, 0xa9, 0x19, 0x0e, 0x00, 0x54, 0x2f, 0x4c, 0x93, 0x9c, 0x85, 0x97, 0x3c, 0x72, 0xf0, 0x1b, + 0x38, 0x29, 0x89, 0xe0, 0x19, 0x97, 0x8d, 0xba, 0xbe, 0xe1, 0x4c, 0x50, 0x7f, 0x74, 0x8a, 0x16, + 0x5e, 0x32, 0x3d, 0xd8, 0x9f, 0x8c, 0x7b, 0xe1, 0x6e, 0x7f, 0xbd, 0x46, 0x21, 0x05, 0xf8, 0x4a, + 0x52, 0xc1, 0xd6, 0x92, 0x32, 0x81, 0xa7, 0x30, 0xe4, 0xd4, 0xfe, 0xa1, 0x9b, 0x0c, 0x39, 0xfd, + 0xdf, 0x0b, 0xe3, 0x97, 0x30, 0xae, 0x9a, 0x32, 0x65, 0xb5, 0xef, 0xd8, 0x73, 0x9d, 0xc2, 0x73, + 0x78, 0x5a, 0x32, 0x4d, 0xcc, 0xcc, 0xf9, 0xae, 0xfd, 0xe2, 0x41, 0x2f, 0x57, 0xbf, 0x77, 0x01, + 0xda, 0xee, 0x02, 0xf4, 0x77, 0x17, 0xa0, 0x9f, 0xfb, 0x60, 0xb0, 0xdd, 0x07, 0x83, 0x3f, 0xfb, + 0x60, 0xf0, 0x2d, 0xca, 0xb9, 0x2e, 0x9a, 0x34, 0xca, 0x64, 0x19, 0x67, 0x52, 0x95, 0x52, 0x75, + 0xcb, 0x99, 0xa2, 0xb7, 0x76, 0x88, 0x1b, 0xcd, 0xc5, 0x61, 0x9a, 0xd3, 0xb1, 0xed, 0xd7, 0xf9, + 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x4f, 0x55, 0xc2, 0xe7, 0xe7, 0x02, 0x00, 0x00, } func (m *Dog) Marshal() (dAtA []byte, err error) { diff --git a/testutil/testdata_pulsar/query.go b/testutil/testdata/testpb/pulsar_query.go similarity index 94% rename from testutil/testdata_pulsar/query.go rename to testutil/testdata/testpb/pulsar_query.go index 6fa228011b7b..6fde587d7aca 100644 --- a/testutil/testdata_pulsar/query.go +++ b/testutil/testdata/testpb/pulsar_query.go @@ -1,5 +1,4 @@ -//nolint:revive -package testdata_pulsar +package testpb import ( "context" diff --git a/testutil/testdata/query.proto b/testutil/testdata/testpb/query.proto similarity index 89% rename from testutil/testdata/query.proto rename to testutil/testdata/testpb/query.proto index 3a60acaad1f8..287d734e3957 100644 --- a/testutil/testdata/query.proto +++ b/testutil/testdata/testpb/query.proto @@ -1,8 +1,8 @@ syntax = "proto3"; -package testdata; +package testpb; import "google/protobuf/any.proto"; -import "testdata.proto"; +import "testpb/testdata.proto"; option go_package = "github.com/cosmos/cosmos-sdk/testutil/testdata"; @@ -35,5 +35,5 @@ message TestAnyRequest { } message TestAnyResponse { - testdata.HasAnimal has_animal = 1; + testpb.HasAnimal has_animal = 1; } diff --git a/testutil/testdata_pulsar/query.pulsar.go b/testutil/testdata/testpb/query.pulsar.go similarity index 86% rename from testutil/testdata_pulsar/query.pulsar.go rename to testutil/testdata/testpb/query.pulsar.go index d5e6660a9b88..9b2a04bab5cc 100644 --- a/testutil/testdata_pulsar/query.pulsar.go +++ b/testutil/testdata/testpb/query.pulsar.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-pulsar. DO NOT EDIT. -package testdata_pulsar +package testpb import ( fmt "fmt" @@ -19,8 +19,8 @@ var ( ) func init() { - file_query_proto_init() - md_EchoRequest = File_query_proto.Messages().ByName("EchoRequest") + file_testpb_query_proto_init() + md_EchoRequest = File_testpb_query_proto.Messages().ByName("EchoRequest") fd_EchoRequest_message = md_EchoRequest.Fields().ByName("message") } @@ -33,7 +33,7 @@ func (x *EchoRequest) ProtoReflect() protoreflect.Message { } func (x *EchoRequest) slowProtoReflect() protoreflect.Message { - mi := &file_query_proto_msgTypes[0] + mi := &file_testpb_query_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -110,13 +110,13 @@ func (x *fastReflection_EchoRequest) Range(f func(protoreflect.FieldDescriptor, // a repeated field is populated if it is non-empty. func (x *fastReflection_EchoRequest) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.EchoRequest.message": + case "testpb.EchoRequest.message": return x.Message != "" default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.EchoRequest")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.EchoRequest")) } - panic(fmt.Errorf("message testdata.EchoRequest does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.EchoRequest does not contain field %s", fd.FullName())) } } @@ -128,13 +128,13 @@ func (x *fastReflection_EchoRequest) Has(fd protoreflect.FieldDescriptor) bool { // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_EchoRequest) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.EchoRequest.message": + case "testpb.EchoRequest.message": x.Message = "" default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.EchoRequest")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.EchoRequest")) } - panic(fmt.Errorf("message testdata.EchoRequest does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.EchoRequest does not contain field %s", fd.FullName())) } } @@ -146,14 +146,14 @@ func (x *fastReflection_EchoRequest) Clear(fd protoreflect.FieldDescriptor) { // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_EchoRequest) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.EchoRequest.message": + case "testpb.EchoRequest.message": value := x.Message return protoreflect.ValueOfString(value) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.EchoRequest")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.EchoRequest")) } - panic(fmt.Errorf("message testdata.EchoRequest does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.EchoRequest does not contain field %s", descriptor.FullName())) } } @@ -169,13 +169,13 @@ func (x *fastReflection_EchoRequest) Get(descriptor protoreflect.FieldDescriptor // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_EchoRequest) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.EchoRequest.message": + case "testpb.EchoRequest.message": x.Message = value.Interface().(string) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.EchoRequest")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.EchoRequest")) } - panic(fmt.Errorf("message testdata.EchoRequest does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.EchoRequest does not contain field %s", fd.FullName())) } } @@ -191,13 +191,13 @@ func (x *fastReflection_EchoRequest) Set(fd protoreflect.FieldDescriptor, value // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_EchoRequest) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.EchoRequest.message": - panic(fmt.Errorf("field message of message testdata.EchoRequest is not mutable")) + case "testpb.EchoRequest.message": + panic(fmt.Errorf("field message of message testpb.EchoRequest is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.EchoRequest")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.EchoRequest")) } - panic(fmt.Errorf("message testdata.EchoRequest does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.EchoRequest does not contain field %s", fd.FullName())) } } @@ -206,13 +206,13 @@ func (x *fastReflection_EchoRequest) Mutable(fd protoreflect.FieldDescriptor) pr // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_EchoRequest) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.EchoRequest.message": + case "testpb.EchoRequest.message": return protoreflect.ValueOfString("") default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.EchoRequest")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.EchoRequest")) } - panic(fmt.Errorf("message testdata.EchoRequest does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.EchoRequest does not contain field %s", fd.FullName())) } } @@ -222,7 +222,7 @@ func (x *fastReflection_EchoRequest) NewField(fd protoreflect.FieldDescriptor) p func (x *fastReflection_EchoRequest) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in testdata.EchoRequest", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.EchoRequest", d.FullName())) } panic("unreachable") } @@ -439,8 +439,8 @@ var ( ) func init() { - file_query_proto_init() - md_EchoResponse = File_query_proto.Messages().ByName("EchoResponse") + file_testpb_query_proto_init() + md_EchoResponse = File_testpb_query_proto.Messages().ByName("EchoResponse") fd_EchoResponse_message = md_EchoResponse.Fields().ByName("message") } @@ -453,7 +453,7 @@ func (x *EchoResponse) ProtoReflect() protoreflect.Message { } func (x *EchoResponse) slowProtoReflect() protoreflect.Message { - mi := &file_query_proto_msgTypes[1] + mi := &file_testpb_query_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -530,13 +530,13 @@ func (x *fastReflection_EchoResponse) Range(f func(protoreflect.FieldDescriptor, // a repeated field is populated if it is non-empty. func (x *fastReflection_EchoResponse) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.EchoResponse.message": + case "testpb.EchoResponse.message": return x.Message != "" default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.EchoResponse")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.EchoResponse")) } - panic(fmt.Errorf("message testdata.EchoResponse does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.EchoResponse does not contain field %s", fd.FullName())) } } @@ -548,13 +548,13 @@ func (x *fastReflection_EchoResponse) Has(fd protoreflect.FieldDescriptor) bool // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_EchoResponse) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.EchoResponse.message": + case "testpb.EchoResponse.message": x.Message = "" default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.EchoResponse")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.EchoResponse")) } - panic(fmt.Errorf("message testdata.EchoResponse does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.EchoResponse does not contain field %s", fd.FullName())) } } @@ -566,14 +566,14 @@ func (x *fastReflection_EchoResponse) Clear(fd protoreflect.FieldDescriptor) { // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_EchoResponse) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.EchoResponse.message": + case "testpb.EchoResponse.message": value := x.Message return protoreflect.ValueOfString(value) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.EchoResponse")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.EchoResponse")) } - panic(fmt.Errorf("message testdata.EchoResponse does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.EchoResponse does not contain field %s", descriptor.FullName())) } } @@ -589,13 +589,13 @@ func (x *fastReflection_EchoResponse) Get(descriptor protoreflect.FieldDescripto // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_EchoResponse) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.EchoResponse.message": + case "testpb.EchoResponse.message": x.Message = value.Interface().(string) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.EchoResponse")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.EchoResponse")) } - panic(fmt.Errorf("message testdata.EchoResponse does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.EchoResponse does not contain field %s", fd.FullName())) } } @@ -611,13 +611,13 @@ func (x *fastReflection_EchoResponse) Set(fd protoreflect.FieldDescriptor, value // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_EchoResponse) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.EchoResponse.message": - panic(fmt.Errorf("field message of message testdata.EchoResponse is not mutable")) + case "testpb.EchoResponse.message": + panic(fmt.Errorf("field message of message testpb.EchoResponse is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.EchoResponse")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.EchoResponse")) } - panic(fmt.Errorf("message testdata.EchoResponse does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.EchoResponse does not contain field %s", fd.FullName())) } } @@ -626,13 +626,13 @@ func (x *fastReflection_EchoResponse) Mutable(fd protoreflect.FieldDescriptor) p // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_EchoResponse) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.EchoResponse.message": + case "testpb.EchoResponse.message": return protoreflect.ValueOfString("") default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.EchoResponse")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.EchoResponse")) } - panic(fmt.Errorf("message testdata.EchoResponse does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.EchoResponse does not contain field %s", fd.FullName())) } } @@ -642,7 +642,7 @@ func (x *fastReflection_EchoResponse) NewField(fd protoreflect.FieldDescriptor) func (x *fastReflection_EchoResponse) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in testdata.EchoResponse", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.EchoResponse", d.FullName())) } panic("unreachable") } @@ -859,8 +859,8 @@ var ( ) func init() { - file_query_proto_init() - md_SayHelloRequest = File_query_proto.Messages().ByName("SayHelloRequest") + file_testpb_query_proto_init() + md_SayHelloRequest = File_testpb_query_proto.Messages().ByName("SayHelloRequest") fd_SayHelloRequest_name = md_SayHelloRequest.Fields().ByName("name") } @@ -873,7 +873,7 @@ func (x *SayHelloRequest) ProtoReflect() protoreflect.Message { } func (x *SayHelloRequest) slowProtoReflect() protoreflect.Message { - mi := &file_query_proto_msgTypes[2] + mi := &file_testpb_query_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -950,13 +950,13 @@ func (x *fastReflection_SayHelloRequest) Range(f func(protoreflect.FieldDescript // a repeated field is populated if it is non-empty. func (x *fastReflection_SayHelloRequest) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.SayHelloRequest.name": + case "testpb.SayHelloRequest.name": return x.Name != "" default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.SayHelloRequest")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.SayHelloRequest")) } - panic(fmt.Errorf("message testdata.SayHelloRequest does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.SayHelloRequest does not contain field %s", fd.FullName())) } } @@ -968,13 +968,13 @@ func (x *fastReflection_SayHelloRequest) Has(fd protoreflect.FieldDescriptor) bo // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_SayHelloRequest) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.SayHelloRequest.name": + case "testpb.SayHelloRequest.name": x.Name = "" default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.SayHelloRequest")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.SayHelloRequest")) } - panic(fmt.Errorf("message testdata.SayHelloRequest does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.SayHelloRequest does not contain field %s", fd.FullName())) } } @@ -986,14 +986,14 @@ func (x *fastReflection_SayHelloRequest) Clear(fd protoreflect.FieldDescriptor) // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_SayHelloRequest) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.SayHelloRequest.name": + case "testpb.SayHelloRequest.name": value := x.Name return protoreflect.ValueOfString(value) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.SayHelloRequest")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.SayHelloRequest")) } - panic(fmt.Errorf("message testdata.SayHelloRequest does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.SayHelloRequest does not contain field %s", descriptor.FullName())) } } @@ -1009,13 +1009,13 @@ func (x *fastReflection_SayHelloRequest) Get(descriptor protoreflect.FieldDescri // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_SayHelloRequest) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.SayHelloRequest.name": + case "testpb.SayHelloRequest.name": x.Name = value.Interface().(string) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.SayHelloRequest")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.SayHelloRequest")) } - panic(fmt.Errorf("message testdata.SayHelloRequest does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.SayHelloRequest does not contain field %s", fd.FullName())) } } @@ -1031,13 +1031,13 @@ func (x *fastReflection_SayHelloRequest) Set(fd protoreflect.FieldDescriptor, va // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_SayHelloRequest) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.SayHelloRequest.name": - panic(fmt.Errorf("field name of message testdata.SayHelloRequest is not mutable")) + case "testpb.SayHelloRequest.name": + panic(fmt.Errorf("field name of message testpb.SayHelloRequest is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.SayHelloRequest")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.SayHelloRequest")) } - panic(fmt.Errorf("message testdata.SayHelloRequest does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.SayHelloRequest does not contain field %s", fd.FullName())) } } @@ -1046,13 +1046,13 @@ func (x *fastReflection_SayHelloRequest) Mutable(fd protoreflect.FieldDescriptor // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_SayHelloRequest) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.SayHelloRequest.name": + case "testpb.SayHelloRequest.name": return protoreflect.ValueOfString("") default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.SayHelloRequest")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.SayHelloRequest")) } - panic(fmt.Errorf("message testdata.SayHelloRequest does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.SayHelloRequest does not contain field %s", fd.FullName())) } } @@ -1062,7 +1062,7 @@ func (x *fastReflection_SayHelloRequest) NewField(fd protoreflect.FieldDescripto func (x *fastReflection_SayHelloRequest) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in testdata.SayHelloRequest", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.SayHelloRequest", d.FullName())) } panic("unreachable") } @@ -1279,8 +1279,8 @@ var ( ) func init() { - file_query_proto_init() - md_SayHelloResponse = File_query_proto.Messages().ByName("SayHelloResponse") + file_testpb_query_proto_init() + md_SayHelloResponse = File_testpb_query_proto.Messages().ByName("SayHelloResponse") fd_SayHelloResponse_greeting = md_SayHelloResponse.Fields().ByName("greeting") } @@ -1293,7 +1293,7 @@ func (x *SayHelloResponse) ProtoReflect() protoreflect.Message { } func (x *SayHelloResponse) slowProtoReflect() protoreflect.Message { - mi := &file_query_proto_msgTypes[3] + mi := &file_testpb_query_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1370,13 +1370,13 @@ func (x *fastReflection_SayHelloResponse) Range(f func(protoreflect.FieldDescrip // a repeated field is populated if it is non-empty. func (x *fastReflection_SayHelloResponse) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.SayHelloResponse.greeting": + case "testpb.SayHelloResponse.greeting": return x.Greeting != "" default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.SayHelloResponse")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.SayHelloResponse")) } - panic(fmt.Errorf("message testdata.SayHelloResponse does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.SayHelloResponse does not contain field %s", fd.FullName())) } } @@ -1388,13 +1388,13 @@ func (x *fastReflection_SayHelloResponse) Has(fd protoreflect.FieldDescriptor) b // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_SayHelloResponse) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.SayHelloResponse.greeting": + case "testpb.SayHelloResponse.greeting": x.Greeting = "" default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.SayHelloResponse")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.SayHelloResponse")) } - panic(fmt.Errorf("message testdata.SayHelloResponse does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.SayHelloResponse does not contain field %s", fd.FullName())) } } @@ -1406,14 +1406,14 @@ func (x *fastReflection_SayHelloResponse) Clear(fd protoreflect.FieldDescriptor) // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_SayHelloResponse) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.SayHelloResponse.greeting": + case "testpb.SayHelloResponse.greeting": value := x.Greeting return protoreflect.ValueOfString(value) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.SayHelloResponse")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.SayHelloResponse")) } - panic(fmt.Errorf("message testdata.SayHelloResponse does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.SayHelloResponse does not contain field %s", descriptor.FullName())) } } @@ -1429,13 +1429,13 @@ func (x *fastReflection_SayHelloResponse) Get(descriptor protoreflect.FieldDescr // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_SayHelloResponse) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.SayHelloResponse.greeting": + case "testpb.SayHelloResponse.greeting": x.Greeting = value.Interface().(string) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.SayHelloResponse")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.SayHelloResponse")) } - panic(fmt.Errorf("message testdata.SayHelloResponse does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.SayHelloResponse does not contain field %s", fd.FullName())) } } @@ -1451,13 +1451,13 @@ func (x *fastReflection_SayHelloResponse) Set(fd protoreflect.FieldDescriptor, v // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_SayHelloResponse) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.SayHelloResponse.greeting": - panic(fmt.Errorf("field greeting of message testdata.SayHelloResponse is not mutable")) + case "testpb.SayHelloResponse.greeting": + panic(fmt.Errorf("field greeting of message testpb.SayHelloResponse is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.SayHelloResponse")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.SayHelloResponse")) } - panic(fmt.Errorf("message testdata.SayHelloResponse does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.SayHelloResponse does not contain field %s", fd.FullName())) } } @@ -1466,13 +1466,13 @@ func (x *fastReflection_SayHelloResponse) Mutable(fd protoreflect.FieldDescripto // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_SayHelloResponse) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.SayHelloResponse.greeting": + case "testpb.SayHelloResponse.greeting": return protoreflect.ValueOfString("") default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.SayHelloResponse")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.SayHelloResponse")) } - panic(fmt.Errorf("message testdata.SayHelloResponse does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.SayHelloResponse does not contain field %s", fd.FullName())) } } @@ -1482,7 +1482,7 @@ func (x *fastReflection_SayHelloResponse) NewField(fd protoreflect.FieldDescript func (x *fastReflection_SayHelloResponse) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in testdata.SayHelloResponse", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.SayHelloResponse", d.FullName())) } panic("unreachable") } @@ -1699,8 +1699,8 @@ var ( ) func init() { - file_query_proto_init() - md_TestAnyRequest = File_query_proto.Messages().ByName("TestAnyRequest") + file_testpb_query_proto_init() + md_TestAnyRequest = File_testpb_query_proto.Messages().ByName("TestAnyRequest") fd_TestAnyRequest_any_animal = md_TestAnyRequest.Fields().ByName("any_animal") } @@ -1713,7 +1713,7 @@ func (x *TestAnyRequest) ProtoReflect() protoreflect.Message { } func (x *TestAnyRequest) slowProtoReflect() protoreflect.Message { - mi := &file_query_proto_msgTypes[4] + mi := &file_testpb_query_proto_msgTypes[4] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1790,13 +1790,13 @@ func (x *fastReflection_TestAnyRequest) Range(f func(protoreflect.FieldDescripto // a repeated field is populated if it is non-empty. func (x *fastReflection_TestAnyRequest) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.TestAnyRequest.any_animal": + case "testpb.TestAnyRequest.any_animal": return x.AnyAnimal != nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestAnyRequest")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestAnyRequest")) } - panic(fmt.Errorf("message testdata.TestAnyRequest does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestAnyRequest does not contain field %s", fd.FullName())) } } @@ -1808,13 +1808,13 @@ func (x *fastReflection_TestAnyRequest) Has(fd protoreflect.FieldDescriptor) boo // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestAnyRequest) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.TestAnyRequest.any_animal": + case "testpb.TestAnyRequest.any_animal": x.AnyAnimal = nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestAnyRequest")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestAnyRequest")) } - panic(fmt.Errorf("message testdata.TestAnyRequest does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestAnyRequest does not contain field %s", fd.FullName())) } } @@ -1826,14 +1826,14 @@ func (x *fastReflection_TestAnyRequest) Clear(fd protoreflect.FieldDescriptor) { // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_TestAnyRequest) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.TestAnyRequest.any_animal": + case "testpb.TestAnyRequest.any_animal": value := x.AnyAnimal return protoreflect.ValueOfMessage(value.ProtoReflect()) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestAnyRequest")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestAnyRequest")) } - panic(fmt.Errorf("message testdata.TestAnyRequest does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.TestAnyRequest does not contain field %s", descriptor.FullName())) } } @@ -1849,13 +1849,13 @@ func (x *fastReflection_TestAnyRequest) Get(descriptor protoreflect.FieldDescrip // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestAnyRequest) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.TestAnyRequest.any_animal": + case "testpb.TestAnyRequest.any_animal": x.AnyAnimal = value.Message().Interface().(*anypb.Any) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestAnyRequest")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestAnyRequest")) } - panic(fmt.Errorf("message testdata.TestAnyRequest does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestAnyRequest does not contain field %s", fd.FullName())) } } @@ -1871,16 +1871,16 @@ func (x *fastReflection_TestAnyRequest) Set(fd protoreflect.FieldDescriptor, val // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestAnyRequest) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestAnyRequest.any_animal": + case "testpb.TestAnyRequest.any_animal": if x.AnyAnimal == nil { x.AnyAnimal = new(anypb.Any) } return protoreflect.ValueOfMessage(x.AnyAnimal.ProtoReflect()) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestAnyRequest")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestAnyRequest")) } - panic(fmt.Errorf("message testdata.TestAnyRequest does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestAnyRequest does not contain field %s", fd.FullName())) } } @@ -1889,14 +1889,14 @@ func (x *fastReflection_TestAnyRequest) Mutable(fd protoreflect.FieldDescriptor) // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_TestAnyRequest) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestAnyRequest.any_animal": + case "testpb.TestAnyRequest.any_animal": m := new(anypb.Any) return protoreflect.ValueOfMessage(m.ProtoReflect()) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestAnyRequest")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestAnyRequest")) } - panic(fmt.Errorf("message testdata.TestAnyRequest does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestAnyRequest does not contain field %s", fd.FullName())) } } @@ -1906,7 +1906,7 @@ func (x *fastReflection_TestAnyRequest) NewField(fd protoreflect.FieldDescriptor func (x *fastReflection_TestAnyRequest) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in testdata.TestAnyRequest", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.TestAnyRequest", d.FullName())) } panic("unreachable") } @@ -2134,8 +2134,8 @@ var ( ) func init() { - file_query_proto_init() - md_TestAnyResponse = File_query_proto.Messages().ByName("TestAnyResponse") + file_testpb_query_proto_init() + md_TestAnyResponse = File_testpb_query_proto.Messages().ByName("TestAnyResponse") fd_TestAnyResponse_has_animal = md_TestAnyResponse.Fields().ByName("has_animal") } @@ -2148,7 +2148,7 @@ func (x *TestAnyResponse) ProtoReflect() protoreflect.Message { } func (x *TestAnyResponse) slowProtoReflect() protoreflect.Message { - mi := &file_query_proto_msgTypes[5] + mi := &file_testpb_query_proto_msgTypes[5] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2225,13 +2225,13 @@ func (x *fastReflection_TestAnyResponse) Range(f func(protoreflect.FieldDescript // a repeated field is populated if it is non-empty. func (x *fastReflection_TestAnyResponse) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.TestAnyResponse.has_animal": + case "testpb.TestAnyResponse.has_animal": return x.HasAnimal != nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestAnyResponse")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestAnyResponse")) } - panic(fmt.Errorf("message testdata.TestAnyResponse does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestAnyResponse does not contain field %s", fd.FullName())) } } @@ -2243,13 +2243,13 @@ func (x *fastReflection_TestAnyResponse) Has(fd protoreflect.FieldDescriptor) bo // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestAnyResponse) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.TestAnyResponse.has_animal": + case "testpb.TestAnyResponse.has_animal": x.HasAnimal = nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestAnyResponse")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestAnyResponse")) } - panic(fmt.Errorf("message testdata.TestAnyResponse does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestAnyResponse does not contain field %s", fd.FullName())) } } @@ -2261,14 +2261,14 @@ func (x *fastReflection_TestAnyResponse) Clear(fd protoreflect.FieldDescriptor) // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_TestAnyResponse) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.TestAnyResponse.has_animal": + case "testpb.TestAnyResponse.has_animal": value := x.HasAnimal return protoreflect.ValueOfMessage(value.ProtoReflect()) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestAnyResponse")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestAnyResponse")) } - panic(fmt.Errorf("message testdata.TestAnyResponse does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.TestAnyResponse does not contain field %s", descriptor.FullName())) } } @@ -2284,13 +2284,13 @@ func (x *fastReflection_TestAnyResponse) Get(descriptor protoreflect.FieldDescri // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestAnyResponse) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.TestAnyResponse.has_animal": + case "testpb.TestAnyResponse.has_animal": x.HasAnimal = value.Message().Interface().(*HasAnimal) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestAnyResponse")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestAnyResponse")) } - panic(fmt.Errorf("message testdata.TestAnyResponse does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestAnyResponse does not contain field %s", fd.FullName())) } } @@ -2306,16 +2306,16 @@ func (x *fastReflection_TestAnyResponse) Set(fd protoreflect.FieldDescriptor, va // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestAnyResponse) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestAnyResponse.has_animal": + case "testpb.TestAnyResponse.has_animal": if x.HasAnimal == nil { x.HasAnimal = new(HasAnimal) } return protoreflect.ValueOfMessage(x.HasAnimal.ProtoReflect()) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestAnyResponse")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestAnyResponse")) } - panic(fmt.Errorf("message testdata.TestAnyResponse does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestAnyResponse does not contain field %s", fd.FullName())) } } @@ -2324,14 +2324,14 @@ func (x *fastReflection_TestAnyResponse) Mutable(fd protoreflect.FieldDescriptor // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_TestAnyResponse) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestAnyResponse.has_animal": + case "testpb.TestAnyResponse.has_animal": m := new(HasAnimal) return protoreflect.ValueOfMessage(m.ProtoReflect()) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestAnyResponse")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestAnyResponse")) } - panic(fmt.Errorf("message testdata.TestAnyResponse does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestAnyResponse does not contain field %s", fd.FullName())) } } @@ -2341,7 +2341,7 @@ func (x *fastReflection_TestAnyResponse) NewField(fd protoreflect.FieldDescripto func (x *fastReflection_TestAnyResponse) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in testdata.TestAnyResponse", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.TestAnyResponse", d.FullName())) } panic("unreachable") } @@ -2567,7 +2567,7 @@ func (x *fastReflection_TestAnyResponse) ProtoMethods() *protoiface.Methods { // versions: // protoc-gen-go v1.27.0 // protoc (unknown) -// source: query.proto +// source: testpb/query.proto const ( // Verify that this generated code is sufficiently up-to-date. @@ -2587,7 +2587,7 @@ type EchoRequest struct { func (x *EchoRequest) Reset() { *x = EchoRequest{} if protoimpl.UnsafeEnabled { - mi := &file_query_proto_msgTypes[0] + mi := &file_testpb_query_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2601,7 +2601,7 @@ func (*EchoRequest) ProtoMessage() {} // Deprecated: Use EchoRequest.ProtoReflect.Descriptor instead. func (*EchoRequest) Descriptor() ([]byte, []int) { - return file_query_proto_rawDescGZIP(), []int{0} + return file_testpb_query_proto_rawDescGZIP(), []int{0} } func (x *EchoRequest) GetMessage() string { @@ -2622,7 +2622,7 @@ type EchoResponse struct { func (x *EchoResponse) Reset() { *x = EchoResponse{} if protoimpl.UnsafeEnabled { - mi := &file_query_proto_msgTypes[1] + mi := &file_testpb_query_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2636,7 +2636,7 @@ func (*EchoResponse) ProtoMessage() {} // Deprecated: Use EchoResponse.ProtoReflect.Descriptor instead. func (*EchoResponse) Descriptor() ([]byte, []int) { - return file_query_proto_rawDescGZIP(), []int{1} + return file_testpb_query_proto_rawDescGZIP(), []int{1} } func (x *EchoResponse) GetMessage() string { @@ -2657,7 +2657,7 @@ type SayHelloRequest struct { func (x *SayHelloRequest) Reset() { *x = SayHelloRequest{} if protoimpl.UnsafeEnabled { - mi := &file_query_proto_msgTypes[2] + mi := &file_testpb_query_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2671,7 +2671,7 @@ func (*SayHelloRequest) ProtoMessage() {} // Deprecated: Use SayHelloRequest.ProtoReflect.Descriptor instead. func (*SayHelloRequest) Descriptor() ([]byte, []int) { - return file_query_proto_rawDescGZIP(), []int{2} + return file_testpb_query_proto_rawDescGZIP(), []int{2} } func (x *SayHelloRequest) GetName() string { @@ -2692,7 +2692,7 @@ type SayHelloResponse struct { func (x *SayHelloResponse) Reset() { *x = SayHelloResponse{} if protoimpl.UnsafeEnabled { - mi := &file_query_proto_msgTypes[3] + mi := &file_testpb_query_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2706,7 +2706,7 @@ func (*SayHelloResponse) ProtoMessage() {} // Deprecated: Use SayHelloResponse.ProtoReflect.Descriptor instead. func (*SayHelloResponse) Descriptor() ([]byte, []int) { - return file_query_proto_rawDescGZIP(), []int{3} + return file_testpb_query_proto_rawDescGZIP(), []int{3} } func (x *SayHelloResponse) GetGreeting() string { @@ -2727,7 +2727,7 @@ type TestAnyRequest struct { func (x *TestAnyRequest) Reset() { *x = TestAnyRequest{} if protoimpl.UnsafeEnabled { - mi := &file_query_proto_msgTypes[4] + mi := &file_testpb_query_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2741,7 +2741,7 @@ func (*TestAnyRequest) ProtoMessage() {} // Deprecated: Use TestAnyRequest.ProtoReflect.Descriptor instead. func (*TestAnyRequest) Descriptor() ([]byte, []int) { - return file_query_proto_rawDescGZIP(), []int{4} + return file_testpb_query_proto_rawDescGZIP(), []int{4} } func (x *TestAnyRequest) GetAnyAnimal() *anypb.Any { @@ -2762,7 +2762,7 @@ type TestAnyResponse struct { func (x *TestAnyResponse) Reset() { *x = TestAnyResponse{} if protoimpl.UnsafeEnabled { - mi := &file_query_proto_msgTypes[5] + mi := &file_testpb_query_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2776,7 +2776,7 @@ func (*TestAnyResponse) ProtoMessage() {} // Deprecated: Use TestAnyResponse.ProtoReflect.Descriptor instead. func (*TestAnyResponse) Descriptor() ([]byte, []int) { - return file_query_proto_rawDescGZIP(), []int{5} + return file_testpb_query_proto_rawDescGZIP(), []int{5} } func (x *TestAnyResponse) GetHasAnimal() *HasAnimal { @@ -2786,89 +2786,89 @@ func (x *TestAnyResponse) GetHasAnimal() *HasAnimal { return nil } -var File_query_proto protoreflect.FileDescriptor - -var file_query_proto_rawDesc = []byte{ - 0x0a, 0x0b, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x08, 0x74, - 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x1a, 0x19, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, - 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x61, 0x6e, 0x79, 0x2e, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x1a, 0x0e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x22, 0x27, 0x0a, 0x0b, 0x45, 0x63, 0x68, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, - 0x74, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x28, 0x0a, 0x0c, 0x45, - 0x63, 0x68, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, - 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, - 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x25, 0x0a, 0x0f, 0x53, 0x61, 0x79, 0x48, 0x65, 0x6c, 0x6c, - 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, - 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x2e, 0x0a, 0x10, +var File_testpb_query_proto protoreflect.FileDescriptor + +var file_testpb_query_proto_rawDesc = []byte{ + 0x0a, 0x12, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x70, + 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x06, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x1a, 0x19, 0x67, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x61, 0x6e, + 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x15, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2f, + 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x27, + 0x0a, 0x0b, 0x45, 0x63, 0x68, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a, + 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, + 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x28, 0x0a, 0x0c, 0x45, 0x63, 0x68, 0x6f, 0x52, + 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, + 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, + 0x65, 0x22, 0x25, 0x0a, 0x0f, 0x53, 0x61, 0x79, 0x48, 0x65, 0x6c, 0x6c, 0x6f, 0x52, 0x65, 0x71, + 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, + 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x2e, 0x0a, 0x10, 0x53, 0x61, 0x79, 0x48, + 0x65, 0x6c, 0x6c, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1a, 0x0a, 0x08, + 0x67, 0x72, 0x65, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, + 0x67, 0x72, 0x65, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x22, 0x45, 0x0a, 0x0e, 0x54, 0x65, 0x73, 0x74, + 0x41, 0x6e, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x33, 0x0a, 0x0a, 0x61, 0x6e, + 0x79, 0x5f, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, + 0x2e, 0x41, 0x6e, 0x79, 0x52, 0x09, 0x61, 0x6e, 0x79, 0x41, 0x6e, 0x69, 0x6d, 0x61, 0x6c, 0x22, + 0x43, 0x0a, 0x0f, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6e, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, + 0x73, 0x65, 0x12, 0x30, 0x0a, 0x0a, 0x68, 0x61, 0x73, 0x5f, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x6c, + 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, + 0x48, 0x61, 0x73, 0x41, 0x6e, 0x69, 0x6d, 0x61, 0x6c, 0x52, 0x09, 0x68, 0x61, 0x73, 0x41, 0x6e, + 0x69, 0x6d, 0x61, 0x6c, 0x32, 0xb5, 0x01, 0x0a, 0x05, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x31, + 0x0a, 0x04, 0x45, 0x63, 0x68, 0x6f, 0x12, 0x13, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, + 0x45, 0x63, 0x68, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x74, 0x65, + 0x73, 0x74, 0x70, 0x62, 0x2e, 0x45, 0x63, 0x68, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 0x65, 0x12, 0x3d, 0x0a, 0x08, 0x53, 0x61, 0x79, 0x48, 0x65, 0x6c, 0x6c, 0x6f, 0x12, 0x17, 0x2e, + 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, 0x53, 0x61, 0x79, 0x48, 0x65, 0x6c, 0x6c, 0x6f, 0x52, + 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x18, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, 0x53, 0x61, 0x79, 0x48, 0x65, 0x6c, 0x6c, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, - 0x12, 0x1a, 0x0a, 0x08, 0x67, 0x72, 0x65, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x08, 0x67, 0x72, 0x65, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x22, 0x45, 0x0a, 0x0e, - 0x54, 0x65, 0x73, 0x74, 0x41, 0x6e, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x33, - 0x0a, 0x0a, 0x61, 0x6e, 0x79, 0x5f, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x6c, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e, 0x79, 0x52, 0x09, 0x61, 0x6e, 0x79, 0x41, 0x6e, 0x69, - 0x6d, 0x61, 0x6c, 0x22, 0x45, 0x0a, 0x0f, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6e, 0x79, 0x52, 0x65, - 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x32, 0x0a, 0x0a, 0x68, 0x61, 0x73, 0x5f, 0x61, 0x6e, - 0x69, 0x6d, 0x61, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x74, 0x65, 0x73, - 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x48, 0x61, 0x73, 0x41, 0x6e, 0x69, 0x6d, 0x61, 0x6c, 0x52, - 0x09, 0x68, 0x61, 0x73, 0x41, 0x6e, 0x69, 0x6d, 0x61, 0x6c, 0x32, 0xc1, 0x01, 0x0a, 0x05, 0x51, - 0x75, 0x65, 0x72, 0x79, 0x12, 0x35, 0x0a, 0x04, 0x45, 0x63, 0x68, 0x6f, 0x12, 0x15, 0x2e, 0x74, - 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x45, 0x63, 0x68, 0x6f, 0x52, 0x65, 0x71, 0x75, - 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x45, - 0x63, 0x68, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x41, 0x0a, 0x08, 0x53, - 0x61, 0x79, 0x48, 0x65, 0x6c, 0x6c, 0x6f, 0x12, 0x19, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, - 0x74, 0x61, 0x2e, 0x53, 0x61, 0x79, 0x48, 0x65, 0x6c, 0x6c, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, - 0x73, 0x74, 0x1a, 0x1a, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x61, - 0x79, 0x48, 0x65, 0x6c, 0x6c, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3e, - 0x0a, 0x07, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6e, 0x79, 0x12, 0x18, 0x2e, 0x74, 0x65, 0x73, 0x74, - 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6e, 0x79, 0x52, 0x65, 0x71, 0x75, - 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, - 0x65, 0x73, 0x74, 0x41, 0x6e, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x91, - 0x01, 0x0a, 0x0c, 0x63, 0x6f, 0x6d, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x42, - 0x0a, 0x51, 0x75, 0x65, 0x72, 0x79, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x35, 0x67, - 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, - 0x2f, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2d, 0x73, 0x64, 0x6b, 0x2f, 0x74, 0x65, 0x73, 0x74, - 0x75, 0x74, 0x69, 0x6c, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x70, 0x75, - 0x6c, 0x73, 0x61, 0x72, 0xa2, 0x02, 0x03, 0x54, 0x58, 0x58, 0xaa, 0x02, 0x08, 0x54, 0x65, 0x73, - 0x74, 0x64, 0x61, 0x74, 0x61, 0xca, 0x02, 0x08, 0x54, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, - 0xe2, 0x02, 0x14, 0x54, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x5c, 0x47, 0x50, 0x42, 0x4d, - 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0xea, 0x02, 0x08, 0x54, 0x65, 0x73, 0x74, 0x64, 0x61, - 0x74, 0x61, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x12, 0x3a, 0x0a, 0x07, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6e, 0x79, 0x12, 0x16, 0x2e, 0x74, 0x65, + 0x73, 0x74, 0x70, 0x62, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6e, 0x79, 0x52, 0x65, 0x71, 0x75, + 0x65, 0x73, 0x74, 0x1a, 0x17, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, 0x54, 0x65, 0x73, + 0x74, 0x41, 0x6e, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x8e, 0x01, 0x0a, + 0x0a, 0x63, 0x6f, 0x6d, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x42, 0x0a, 0x51, 0x75, 0x65, + 0x72, 0x79, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x3c, 0x67, 0x69, 0x74, 0x68, 0x75, + 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2f, 0x63, 0x6f, 0x73, + 0x6d, 0x6f, 0x73, 0x2d, 0x73, 0x64, 0x6b, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x75, 0x74, 0x69, 0x6c, + 0x2f, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x70, 0x75, 0x6c, 0x73, 0x61, 0x72, + 0x2f, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0xa2, 0x02, 0x03, 0x54, 0x58, 0x58, 0xaa, 0x02, 0x06, + 0x54, 0x65, 0x73, 0x74, 0x70, 0x62, 0xca, 0x02, 0x06, 0x54, 0x65, 0x73, 0x74, 0x70, 0x62, 0xe2, + 0x02, 0x12, 0x54, 0x65, 0x73, 0x74, 0x70, 0x62, 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, + 0x64, 0x61, 0x74, 0x61, 0xea, 0x02, 0x06, 0x54, 0x65, 0x73, 0x74, 0x70, 0x62, 0x62, 0x06, 0x70, + 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_query_proto_rawDescOnce sync.Once - file_query_proto_rawDescData = file_query_proto_rawDesc + file_testpb_query_proto_rawDescOnce sync.Once + file_testpb_query_proto_rawDescData = file_testpb_query_proto_rawDesc ) -func file_query_proto_rawDescGZIP() []byte { - file_query_proto_rawDescOnce.Do(func() { - file_query_proto_rawDescData = protoimpl.X.CompressGZIP(file_query_proto_rawDescData) +func file_testpb_query_proto_rawDescGZIP() []byte { + file_testpb_query_proto_rawDescOnce.Do(func() { + file_testpb_query_proto_rawDescData = protoimpl.X.CompressGZIP(file_testpb_query_proto_rawDescData) }) - return file_query_proto_rawDescData + return file_testpb_query_proto_rawDescData } -var file_query_proto_msgTypes = make([]protoimpl.MessageInfo, 6) -var file_query_proto_goTypes = []interface{}{ - (*EchoRequest)(nil), // 0: testdata.EchoRequest - (*EchoResponse)(nil), // 1: testdata.EchoResponse - (*SayHelloRequest)(nil), // 2: testdata.SayHelloRequest - (*SayHelloResponse)(nil), // 3: testdata.SayHelloResponse - (*TestAnyRequest)(nil), // 4: testdata.TestAnyRequest - (*TestAnyResponse)(nil), // 5: testdata.TestAnyResponse +var file_testpb_query_proto_msgTypes = make([]protoimpl.MessageInfo, 6) +var file_testpb_query_proto_goTypes = []interface{}{ + (*EchoRequest)(nil), // 0: testpb.EchoRequest + (*EchoResponse)(nil), // 1: testpb.EchoResponse + (*SayHelloRequest)(nil), // 2: testpb.SayHelloRequest + (*SayHelloResponse)(nil), // 3: testpb.SayHelloResponse + (*TestAnyRequest)(nil), // 4: testpb.TestAnyRequest + (*TestAnyResponse)(nil), // 5: testpb.TestAnyResponse (*anypb.Any)(nil), // 6: google.protobuf.Any - (*HasAnimal)(nil), // 7: testdata.HasAnimal -} -var file_query_proto_depIdxs = []int32{ - 6, // 0: testdata.TestAnyRequest.any_animal:type_name -> google.protobuf.Any - 7, // 1: testdata.TestAnyResponse.has_animal:type_name -> testdata.HasAnimal - 0, // 2: testdata.Query.Echo:input_type -> testdata.EchoRequest - 2, // 3: testdata.Query.SayHello:input_type -> testdata.SayHelloRequest - 4, // 4: testdata.Query.TestAny:input_type -> testdata.TestAnyRequest - 1, // 5: testdata.Query.Echo:output_type -> testdata.EchoResponse - 3, // 6: testdata.Query.SayHello:output_type -> testdata.SayHelloResponse - 5, // 7: testdata.Query.TestAny:output_type -> testdata.TestAnyResponse + (*HasAnimal)(nil), // 7: testpb.HasAnimal +} +var file_testpb_query_proto_depIdxs = []int32{ + 6, // 0: testpb.TestAnyRequest.any_animal:type_name -> google.protobuf.Any + 7, // 1: testpb.TestAnyResponse.has_animal:type_name -> testpb.HasAnimal + 0, // 2: testpb.Query.Echo:input_type -> testpb.EchoRequest + 2, // 3: testpb.Query.SayHello:input_type -> testpb.SayHelloRequest + 4, // 4: testpb.Query.TestAny:input_type -> testpb.TestAnyRequest + 1, // 5: testpb.Query.Echo:output_type -> testpb.EchoResponse + 3, // 6: testpb.Query.SayHello:output_type -> testpb.SayHelloResponse + 5, // 7: testpb.Query.TestAny:output_type -> testpb.TestAnyResponse 5, // [5:8] is the sub-list for method output_type 2, // [2:5] is the sub-list for method input_type 2, // [2:2] is the sub-list for extension type_name @@ -2876,14 +2876,14 @@ var file_query_proto_depIdxs = []int32{ 0, // [0:2] is the sub-list for field type_name } -func init() { file_query_proto_init() } -func file_query_proto_init() { - if File_query_proto != nil { +func init() { file_testpb_query_proto_init() } +func file_testpb_query_proto_init() { + if File_testpb_query_proto != nil { return } - file_testdata_proto_init() + file_testpb_testdata_proto_init() if !protoimpl.UnsafeEnabled { - file_query_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_testpb_query_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*EchoRequest); i { case 0: return &v.state @@ -2895,7 +2895,7 @@ func file_query_proto_init() { return nil } } - file_query_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_testpb_query_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*EchoResponse); i { case 0: return &v.state @@ -2907,7 +2907,7 @@ func file_query_proto_init() { return nil } } - file_query_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_testpb_query_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SayHelloRequest); i { case 0: return &v.state @@ -2919,7 +2919,7 @@ func file_query_proto_init() { return nil } } - file_query_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_testpb_query_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SayHelloResponse); i { case 0: return &v.state @@ -2931,7 +2931,7 @@ func file_query_proto_init() { return nil } } - file_query_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_testpb_query_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*TestAnyRequest); i { case 0: return &v.state @@ -2943,7 +2943,7 @@ func file_query_proto_init() { return nil } } - file_query_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_testpb_query_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*TestAnyResponse); i { case 0: return &v.state @@ -2960,18 +2960,18 @@ func file_query_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_query_proto_rawDesc, + RawDescriptor: file_testpb_query_proto_rawDesc, NumEnums: 0, NumMessages: 6, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_query_proto_goTypes, - DependencyIndexes: file_query_proto_depIdxs, - MessageInfos: file_query_proto_msgTypes, + GoTypes: file_testpb_query_proto_goTypes, + DependencyIndexes: file_testpb_query_proto_depIdxs, + MessageInfos: file_testpb_query_proto_msgTypes, }.Build() - File_query_proto = out.File - file_query_proto_rawDesc = nil - file_query_proto_goTypes = nil - file_query_proto_depIdxs = nil + File_testpb_query_proto = out.File + file_testpb_query_proto_rawDesc = nil + file_testpb_query_proto_goTypes = nil + file_testpb_query_proto_depIdxs = nil } diff --git a/testutil/testdata_pulsar/query_grpc.pb.go b/testutil/testdata/testpb/query_grpc.pb.go similarity index 92% rename from testutil/testdata_pulsar/query_grpc.pb.go rename to testutil/testdata/testpb/query_grpc.pb.go index 91d788dcc681..1575091b0235 100644 --- a/testutil/testdata_pulsar/query_grpc.pb.go +++ b/testutil/testdata/testpb/query_grpc.pb.go @@ -2,9 +2,9 @@ // versions: // - protoc-gen-go-grpc v1.2.0 // - protoc (unknown) -// source: query.proto +// source: testpb/query.proto -package testdata_pulsar +package testpb import ( context "context" @@ -37,7 +37,7 @@ func NewQueryClient(cc grpc.ClientConnInterface) QueryClient { func (c *queryClient) Echo(ctx context.Context, in *EchoRequest, opts ...grpc.CallOption) (*EchoResponse, error) { out := new(EchoResponse) - err := c.cc.Invoke(ctx, "/testdata.Query/Echo", in, out, opts...) + err := c.cc.Invoke(ctx, "/testpb.Query/Echo", in, out, opts...) if err != nil { return nil, err } @@ -46,7 +46,7 @@ func (c *queryClient) Echo(ctx context.Context, in *EchoRequest, opts ...grpc.Ca func (c *queryClient) SayHello(ctx context.Context, in *SayHelloRequest, opts ...grpc.CallOption) (*SayHelloResponse, error) { out := new(SayHelloResponse) - err := c.cc.Invoke(ctx, "/testdata.Query/SayHello", in, out, opts...) + err := c.cc.Invoke(ctx, "/testpb.Query/SayHello", in, out, opts...) if err != nil { return nil, err } @@ -55,7 +55,7 @@ func (c *queryClient) SayHello(ctx context.Context, in *SayHelloRequest, opts .. func (c *queryClient) TestAny(ctx context.Context, in *TestAnyRequest, opts ...grpc.CallOption) (*TestAnyResponse, error) { out := new(TestAnyResponse) - err := c.cc.Invoke(ctx, "/testdata.Query/TestAny", in, out, opts...) + err := c.cc.Invoke(ctx, "/testpb.Query/TestAny", in, out, opts...) if err != nil { return nil, err } @@ -108,7 +108,7 @@ func _Query_Echo_Handler(srv interface{}, ctx context.Context, dec func(interfac } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/testdata.Query/Echo", + FullMethod: "/testpb.Query/Echo", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Echo(ctx, req.(*EchoRequest)) @@ -126,7 +126,7 @@ func _Query_SayHello_Handler(srv interface{}, ctx context.Context, dec func(inte } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/testdata.Query/SayHello", + FullMethod: "/testpb.Query/SayHello", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).SayHello(ctx, req.(*SayHelloRequest)) @@ -144,7 +144,7 @@ func _Query_TestAny_Handler(srv interface{}, ctx context.Context, dec func(inter } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/testdata.Query/TestAny", + FullMethod: "/testpb.Query/TestAny", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).TestAny(ctx, req.(*TestAnyRequest)) @@ -156,7 +156,7 @@ func _Query_TestAny_Handler(srv interface{}, ctx context.Context, dec func(inter // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var Query_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "testdata.Query", + ServiceName: "testpb.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { @@ -173,5 +173,5 @@ var Query_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "query.proto", + Metadata: "testpb/query.proto", } diff --git a/testutil/testdata/testdata.proto b/testutil/testdata/testpb/testdata.proto similarity index 98% rename from testutil/testdata/testdata.proto rename to testutil/testdata/testpb/testdata.proto index 22503ef61d71..b40f486278da 100644 --- a/testutil/testdata/testdata.proto +++ b/testutil/testdata/testpb/testdata.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package testdata; +package testpb; import "gogoproto/gogo.proto"; import "google/protobuf/any.proto"; diff --git a/testutil/testdata_pulsar/testdata.pulsar.go b/testutil/testdata/testpb/testdata.pulsar.go similarity index 87% rename from testutil/testdata_pulsar/testdata.pulsar.go rename to testutil/testdata/testpb/testdata.pulsar.go index 616f68032c4c..8802ea9cd312 100644 --- a/testutil/testdata_pulsar/testdata.pulsar.go +++ b/testutil/testdata/testpb/testdata.pulsar.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-pulsar. DO NOT EDIT. -package testdata_pulsar +package testpb import ( fmt "fmt" @@ -21,8 +21,8 @@ var ( ) func init() { - file_testdata_proto_init() - md_Dog = File_testdata_proto.Messages().ByName("Dog") + file_testpb_testdata_proto_init() + md_Dog = File_testpb_testdata_proto.Messages().ByName("Dog") fd_Dog_size = md_Dog.Fields().ByName("size") fd_Dog_name = md_Dog.Fields().ByName("name") } @@ -36,7 +36,7 @@ func (x *Dog) ProtoReflect() protoreflect.Message { } func (x *Dog) slowProtoReflect() protoreflect.Message { - mi := &file_testdata_proto_msgTypes[0] + mi := &file_testpb_testdata_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -119,15 +119,15 @@ func (x *fastReflection_Dog) Range(f func(protoreflect.FieldDescriptor, protoref // a repeated field is populated if it is non-empty. func (x *fastReflection_Dog) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.Dog.size": + case "testpb.Dog.size": return x.Size != "" - case "testdata.Dog.name": + case "testpb.Dog.name": return x.Name != "" default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Dog")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Dog")) } - panic(fmt.Errorf("message testdata.Dog does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Dog does not contain field %s", fd.FullName())) } } @@ -139,15 +139,15 @@ func (x *fastReflection_Dog) Has(fd protoreflect.FieldDescriptor) bool { // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Dog) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.Dog.size": + case "testpb.Dog.size": x.Size = "" - case "testdata.Dog.name": + case "testpb.Dog.name": x.Name = "" default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Dog")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Dog")) } - panic(fmt.Errorf("message testdata.Dog does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Dog does not contain field %s", fd.FullName())) } } @@ -159,17 +159,17 @@ func (x *fastReflection_Dog) Clear(fd protoreflect.FieldDescriptor) { // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_Dog) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.Dog.size": + case "testpb.Dog.size": value := x.Size return protoreflect.ValueOfString(value) - case "testdata.Dog.name": + case "testpb.Dog.name": value := x.Name return protoreflect.ValueOfString(value) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Dog")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Dog")) } - panic(fmt.Errorf("message testdata.Dog does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.Dog does not contain field %s", descriptor.FullName())) } } @@ -185,15 +185,15 @@ func (x *fastReflection_Dog) Get(descriptor protoreflect.FieldDescriptor) protor // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Dog) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.Dog.size": + case "testpb.Dog.size": x.Size = value.Interface().(string) - case "testdata.Dog.name": + case "testpb.Dog.name": x.Name = value.Interface().(string) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Dog")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Dog")) } - panic(fmt.Errorf("message testdata.Dog does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Dog does not contain field %s", fd.FullName())) } } @@ -209,15 +209,15 @@ func (x *fastReflection_Dog) Set(fd protoreflect.FieldDescriptor, value protoref // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Dog) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.Dog.size": - panic(fmt.Errorf("field size of message testdata.Dog is not mutable")) - case "testdata.Dog.name": - panic(fmt.Errorf("field name of message testdata.Dog is not mutable")) + case "testpb.Dog.size": + panic(fmt.Errorf("field size of message testpb.Dog is not mutable")) + case "testpb.Dog.name": + panic(fmt.Errorf("field name of message testpb.Dog is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Dog")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Dog")) } - panic(fmt.Errorf("message testdata.Dog does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Dog does not contain field %s", fd.FullName())) } } @@ -226,15 +226,15 @@ func (x *fastReflection_Dog) Mutable(fd protoreflect.FieldDescriptor) protorefle // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_Dog) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.Dog.size": + case "testpb.Dog.size": return protoreflect.ValueOfString("") - case "testdata.Dog.name": + case "testpb.Dog.name": return protoreflect.ValueOfString("") default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Dog")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Dog")) } - panic(fmt.Errorf("message testdata.Dog does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Dog does not contain field %s", fd.FullName())) } } @@ -244,7 +244,7 @@ func (x *fastReflection_Dog) NewField(fd protoreflect.FieldDescriptor) protorefl func (x *fastReflection_Dog) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in testdata.Dog", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.Dog", d.FullName())) } panic("unreachable") } @@ -505,8 +505,8 @@ var ( ) func init() { - file_testdata_proto_init() - md_Cat = File_testdata_proto.Messages().ByName("Cat") + file_testpb_testdata_proto_init() + md_Cat = File_testpb_testdata_proto.Messages().ByName("Cat") fd_Cat_moniker = md_Cat.Fields().ByName("moniker") fd_Cat_lives = md_Cat.Fields().ByName("lives") } @@ -520,7 +520,7 @@ func (x *Cat) ProtoReflect() protoreflect.Message { } func (x *Cat) slowProtoReflect() protoreflect.Message { - mi := &file_testdata_proto_msgTypes[1] + mi := &file_testpb_testdata_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -603,15 +603,15 @@ func (x *fastReflection_Cat) Range(f func(protoreflect.FieldDescriptor, protoref // a repeated field is populated if it is non-empty. func (x *fastReflection_Cat) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.Cat.moniker": + case "testpb.Cat.moniker": return x.Moniker != "" - case "testdata.Cat.lives": + case "testpb.Cat.lives": return x.Lives != int32(0) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Cat")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Cat")) } - panic(fmt.Errorf("message testdata.Cat does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Cat does not contain field %s", fd.FullName())) } } @@ -623,15 +623,15 @@ func (x *fastReflection_Cat) Has(fd protoreflect.FieldDescriptor) bool { // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Cat) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.Cat.moniker": + case "testpb.Cat.moniker": x.Moniker = "" - case "testdata.Cat.lives": + case "testpb.Cat.lives": x.Lives = int32(0) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Cat")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Cat")) } - panic(fmt.Errorf("message testdata.Cat does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Cat does not contain field %s", fd.FullName())) } } @@ -643,17 +643,17 @@ func (x *fastReflection_Cat) Clear(fd protoreflect.FieldDescriptor) { // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_Cat) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.Cat.moniker": + case "testpb.Cat.moniker": value := x.Moniker return protoreflect.ValueOfString(value) - case "testdata.Cat.lives": + case "testpb.Cat.lives": value := x.Lives return protoreflect.ValueOfInt32(value) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Cat")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Cat")) } - panic(fmt.Errorf("message testdata.Cat does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.Cat does not contain field %s", descriptor.FullName())) } } @@ -669,15 +669,15 @@ func (x *fastReflection_Cat) Get(descriptor protoreflect.FieldDescriptor) protor // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Cat) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.Cat.moniker": + case "testpb.Cat.moniker": x.Moniker = value.Interface().(string) - case "testdata.Cat.lives": + case "testpb.Cat.lives": x.Lives = int32(value.Int()) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Cat")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Cat")) } - panic(fmt.Errorf("message testdata.Cat does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Cat does not contain field %s", fd.FullName())) } } @@ -693,15 +693,15 @@ func (x *fastReflection_Cat) Set(fd protoreflect.FieldDescriptor, value protoref // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Cat) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.Cat.moniker": - panic(fmt.Errorf("field moniker of message testdata.Cat is not mutable")) - case "testdata.Cat.lives": - panic(fmt.Errorf("field lives of message testdata.Cat is not mutable")) + case "testpb.Cat.moniker": + panic(fmt.Errorf("field moniker of message testpb.Cat is not mutable")) + case "testpb.Cat.lives": + panic(fmt.Errorf("field lives of message testpb.Cat is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Cat")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Cat")) } - panic(fmt.Errorf("message testdata.Cat does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Cat does not contain field %s", fd.FullName())) } } @@ -710,15 +710,15 @@ func (x *fastReflection_Cat) Mutable(fd protoreflect.FieldDescriptor) protorefle // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_Cat) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.Cat.moniker": + case "testpb.Cat.moniker": return protoreflect.ValueOfString("") - case "testdata.Cat.lives": + case "testpb.Cat.lives": return protoreflect.ValueOfInt32(int32(0)) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Cat")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Cat")) } - panic(fmt.Errorf("message testdata.Cat does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Cat does not contain field %s", fd.FullName())) } } @@ -728,7 +728,7 @@ func (x *fastReflection_Cat) NewField(fd protoreflect.FieldDescriptor) protorefl func (x *fastReflection_Cat) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in testdata.Cat", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.Cat", d.FullName())) } panic("unreachable") } @@ -973,8 +973,8 @@ var ( ) func init() { - file_testdata_proto_init() - md_Bird = File_testdata_proto.Messages().ByName("Bird") + file_testpb_testdata_proto_init() + md_Bird = File_testpb_testdata_proto.Messages().ByName("Bird") fd_Bird_species = md_Bird.Fields().ByName("species") fd_Bird_color = md_Bird.Fields().ByName("color") } @@ -988,7 +988,7 @@ func (x *Bird) ProtoReflect() protoreflect.Message { } func (x *Bird) slowProtoReflect() protoreflect.Message { - mi := &file_testdata_proto_msgTypes[2] + mi := &file_testpb_testdata_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1071,15 +1071,15 @@ func (x *fastReflection_Bird) Range(f func(protoreflect.FieldDescriptor, protore // a repeated field is populated if it is non-empty. func (x *fastReflection_Bird) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.Bird.species": + case "testpb.Bird.species": return x.Species != "" - case "testdata.Bird.color": + case "testpb.Bird.color": return x.Color != int32(0) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Bird")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Bird")) } - panic(fmt.Errorf("message testdata.Bird does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Bird does not contain field %s", fd.FullName())) } } @@ -1091,15 +1091,15 @@ func (x *fastReflection_Bird) Has(fd protoreflect.FieldDescriptor) bool { // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Bird) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.Bird.species": + case "testpb.Bird.species": x.Species = "" - case "testdata.Bird.color": + case "testpb.Bird.color": x.Color = int32(0) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Bird")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Bird")) } - panic(fmt.Errorf("message testdata.Bird does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Bird does not contain field %s", fd.FullName())) } } @@ -1111,17 +1111,17 @@ func (x *fastReflection_Bird) Clear(fd protoreflect.FieldDescriptor) { // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_Bird) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.Bird.species": + case "testpb.Bird.species": value := x.Species return protoreflect.ValueOfString(value) - case "testdata.Bird.color": + case "testpb.Bird.color": value := x.Color return protoreflect.ValueOfInt32(value) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Bird")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Bird")) } - panic(fmt.Errorf("message testdata.Bird does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.Bird does not contain field %s", descriptor.FullName())) } } @@ -1137,15 +1137,15 @@ func (x *fastReflection_Bird) Get(descriptor protoreflect.FieldDescriptor) proto // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Bird) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.Bird.species": + case "testpb.Bird.species": x.Species = value.Interface().(string) - case "testdata.Bird.color": + case "testpb.Bird.color": x.Color = int32(value.Int()) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Bird")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Bird")) } - panic(fmt.Errorf("message testdata.Bird does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Bird does not contain field %s", fd.FullName())) } } @@ -1161,15 +1161,15 @@ func (x *fastReflection_Bird) Set(fd protoreflect.FieldDescriptor, value protore // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Bird) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.Bird.species": - panic(fmt.Errorf("field species of message testdata.Bird is not mutable")) - case "testdata.Bird.color": - panic(fmt.Errorf("field color of message testdata.Bird is not mutable")) + case "testpb.Bird.species": + panic(fmt.Errorf("field species of message testpb.Bird is not mutable")) + case "testpb.Bird.color": + panic(fmt.Errorf("field color of message testpb.Bird is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Bird")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Bird")) } - panic(fmt.Errorf("message testdata.Bird does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Bird does not contain field %s", fd.FullName())) } } @@ -1178,15 +1178,15 @@ func (x *fastReflection_Bird) Mutable(fd protoreflect.FieldDescriptor) protorefl // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_Bird) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.Bird.species": + case "testpb.Bird.species": return protoreflect.ValueOfString("") - case "testdata.Bird.color": + case "testpb.Bird.color": return protoreflect.ValueOfInt32(int32(0)) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Bird")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Bird")) } - panic(fmt.Errorf("message testdata.Bird does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Bird does not contain field %s", fd.FullName())) } } @@ -1196,7 +1196,7 @@ func (x *fastReflection_Bird) NewField(fd protoreflect.FieldDescriptor) protoref func (x *fastReflection_Bird) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in testdata.Bird", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.Bird", d.FullName())) } panic("unreachable") } @@ -1441,8 +1441,8 @@ var ( ) func init() { - file_testdata_proto_init() - md_HasAnimal = File_testdata_proto.Messages().ByName("HasAnimal") + file_testpb_testdata_proto_init() + md_HasAnimal = File_testpb_testdata_proto.Messages().ByName("HasAnimal") fd_HasAnimal_animal = md_HasAnimal.Fields().ByName("animal") fd_HasAnimal_x = md_HasAnimal.Fields().ByName("x") } @@ -1456,7 +1456,7 @@ func (x *HasAnimal) ProtoReflect() protoreflect.Message { } func (x *HasAnimal) slowProtoReflect() protoreflect.Message { - mi := &file_testdata_proto_msgTypes[3] + mi := &file_testpb_testdata_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1539,15 +1539,15 @@ func (x *fastReflection_HasAnimal) Range(f func(protoreflect.FieldDescriptor, pr // a repeated field is populated if it is non-empty. func (x *fastReflection_HasAnimal) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.HasAnimal.animal": + case "testpb.HasAnimal.animal": return x.Animal != nil - case "testdata.HasAnimal.x": + case "testpb.HasAnimal.x": return x.X != int64(0) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.HasAnimal")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.HasAnimal")) } - panic(fmt.Errorf("message testdata.HasAnimal does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.HasAnimal does not contain field %s", fd.FullName())) } } @@ -1559,15 +1559,15 @@ func (x *fastReflection_HasAnimal) Has(fd protoreflect.FieldDescriptor) bool { // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_HasAnimal) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.HasAnimal.animal": + case "testpb.HasAnimal.animal": x.Animal = nil - case "testdata.HasAnimal.x": + case "testpb.HasAnimal.x": x.X = int64(0) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.HasAnimal")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.HasAnimal")) } - panic(fmt.Errorf("message testdata.HasAnimal does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.HasAnimal does not contain field %s", fd.FullName())) } } @@ -1579,17 +1579,17 @@ func (x *fastReflection_HasAnimal) Clear(fd protoreflect.FieldDescriptor) { // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_HasAnimal) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.HasAnimal.animal": + case "testpb.HasAnimal.animal": value := x.Animal return protoreflect.ValueOfMessage(value.ProtoReflect()) - case "testdata.HasAnimal.x": + case "testpb.HasAnimal.x": value := x.X return protoreflect.ValueOfInt64(value) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.HasAnimal")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.HasAnimal")) } - panic(fmt.Errorf("message testdata.HasAnimal does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.HasAnimal does not contain field %s", descriptor.FullName())) } } @@ -1605,15 +1605,15 @@ func (x *fastReflection_HasAnimal) Get(descriptor protoreflect.FieldDescriptor) // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_HasAnimal) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.HasAnimal.animal": + case "testpb.HasAnimal.animal": x.Animal = value.Message().Interface().(*anypb.Any) - case "testdata.HasAnimal.x": + case "testpb.HasAnimal.x": x.X = value.Int() default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.HasAnimal")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.HasAnimal")) } - panic(fmt.Errorf("message testdata.HasAnimal does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.HasAnimal does not contain field %s", fd.FullName())) } } @@ -1629,18 +1629,18 @@ func (x *fastReflection_HasAnimal) Set(fd protoreflect.FieldDescriptor, value pr // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_HasAnimal) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.HasAnimal.animal": + case "testpb.HasAnimal.animal": if x.Animal == nil { x.Animal = new(anypb.Any) } return protoreflect.ValueOfMessage(x.Animal.ProtoReflect()) - case "testdata.HasAnimal.x": - panic(fmt.Errorf("field x of message testdata.HasAnimal is not mutable")) + case "testpb.HasAnimal.x": + panic(fmt.Errorf("field x of message testpb.HasAnimal is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.HasAnimal")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.HasAnimal")) } - panic(fmt.Errorf("message testdata.HasAnimal does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.HasAnimal does not contain field %s", fd.FullName())) } } @@ -1649,16 +1649,16 @@ func (x *fastReflection_HasAnimal) Mutable(fd protoreflect.FieldDescriptor) prot // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_HasAnimal) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.HasAnimal.animal": + case "testpb.HasAnimal.animal": m := new(anypb.Any) return protoreflect.ValueOfMessage(m.ProtoReflect()) - case "testdata.HasAnimal.x": + case "testpb.HasAnimal.x": return protoreflect.ValueOfInt64(int64(0)) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.HasAnimal")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.HasAnimal")) } - panic(fmt.Errorf("message testdata.HasAnimal does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.HasAnimal does not contain field %s", fd.FullName())) } } @@ -1668,7 +1668,7 @@ func (x *fastReflection_HasAnimal) NewField(fd protoreflect.FieldDescriptor) pro func (x *fastReflection_HasAnimal) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in testdata.HasAnimal", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.HasAnimal", d.FullName())) } panic("unreachable") } @@ -1923,8 +1923,8 @@ var ( ) func init() { - file_testdata_proto_init() - md_HasHasAnimal = File_testdata_proto.Messages().ByName("HasHasAnimal") + file_testpb_testdata_proto_init() + md_HasHasAnimal = File_testpb_testdata_proto.Messages().ByName("HasHasAnimal") fd_HasHasAnimal_has_animal = md_HasHasAnimal.Fields().ByName("has_animal") } @@ -1937,7 +1937,7 @@ func (x *HasHasAnimal) ProtoReflect() protoreflect.Message { } func (x *HasHasAnimal) slowProtoReflect() protoreflect.Message { - mi := &file_testdata_proto_msgTypes[4] + mi := &file_testpb_testdata_proto_msgTypes[4] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2014,13 +2014,13 @@ func (x *fastReflection_HasHasAnimal) Range(f func(protoreflect.FieldDescriptor, // a repeated field is populated if it is non-empty. func (x *fastReflection_HasHasAnimal) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.HasHasAnimal.has_animal": + case "testpb.HasHasAnimal.has_animal": return x.HasAnimal != nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.HasHasAnimal")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.HasHasAnimal")) } - panic(fmt.Errorf("message testdata.HasHasAnimal does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.HasHasAnimal does not contain field %s", fd.FullName())) } } @@ -2032,13 +2032,13 @@ func (x *fastReflection_HasHasAnimal) Has(fd protoreflect.FieldDescriptor) bool // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_HasHasAnimal) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.HasHasAnimal.has_animal": + case "testpb.HasHasAnimal.has_animal": x.HasAnimal = nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.HasHasAnimal")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.HasHasAnimal")) } - panic(fmt.Errorf("message testdata.HasHasAnimal does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.HasHasAnimal does not contain field %s", fd.FullName())) } } @@ -2050,14 +2050,14 @@ func (x *fastReflection_HasHasAnimal) Clear(fd protoreflect.FieldDescriptor) { // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_HasHasAnimal) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.HasHasAnimal.has_animal": + case "testpb.HasHasAnimal.has_animal": value := x.HasAnimal return protoreflect.ValueOfMessage(value.ProtoReflect()) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.HasHasAnimal")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.HasHasAnimal")) } - panic(fmt.Errorf("message testdata.HasHasAnimal does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.HasHasAnimal does not contain field %s", descriptor.FullName())) } } @@ -2073,13 +2073,13 @@ func (x *fastReflection_HasHasAnimal) Get(descriptor protoreflect.FieldDescripto // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_HasHasAnimal) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.HasHasAnimal.has_animal": + case "testpb.HasHasAnimal.has_animal": x.HasAnimal = value.Message().Interface().(*anypb.Any) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.HasHasAnimal")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.HasHasAnimal")) } - panic(fmt.Errorf("message testdata.HasHasAnimal does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.HasHasAnimal does not contain field %s", fd.FullName())) } } @@ -2095,16 +2095,16 @@ func (x *fastReflection_HasHasAnimal) Set(fd protoreflect.FieldDescriptor, value // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_HasHasAnimal) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.HasHasAnimal.has_animal": + case "testpb.HasHasAnimal.has_animal": if x.HasAnimal == nil { x.HasAnimal = new(anypb.Any) } return protoreflect.ValueOfMessage(x.HasAnimal.ProtoReflect()) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.HasHasAnimal")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.HasHasAnimal")) } - panic(fmt.Errorf("message testdata.HasHasAnimal does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.HasHasAnimal does not contain field %s", fd.FullName())) } } @@ -2113,14 +2113,14 @@ func (x *fastReflection_HasHasAnimal) Mutable(fd protoreflect.FieldDescriptor) p // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_HasHasAnimal) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.HasHasAnimal.has_animal": + case "testpb.HasHasAnimal.has_animal": m := new(anypb.Any) return protoreflect.ValueOfMessage(m.ProtoReflect()) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.HasHasAnimal")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.HasHasAnimal")) } - panic(fmt.Errorf("message testdata.HasHasAnimal does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.HasHasAnimal does not contain field %s", fd.FullName())) } } @@ -2130,7 +2130,7 @@ func (x *fastReflection_HasHasAnimal) NewField(fd protoreflect.FieldDescriptor) func (x *fastReflection_HasHasAnimal) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in testdata.HasHasAnimal", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.HasHasAnimal", d.FullName())) } panic("unreachable") } @@ -2358,8 +2358,8 @@ var ( ) func init() { - file_testdata_proto_init() - md_HasHasHasAnimal = File_testdata_proto.Messages().ByName("HasHasHasAnimal") + file_testpb_testdata_proto_init() + md_HasHasHasAnimal = File_testpb_testdata_proto.Messages().ByName("HasHasHasAnimal") fd_HasHasHasAnimal_has_has_animal = md_HasHasHasAnimal.Fields().ByName("has_has_animal") } @@ -2372,7 +2372,7 @@ func (x *HasHasHasAnimal) ProtoReflect() protoreflect.Message { } func (x *HasHasHasAnimal) slowProtoReflect() protoreflect.Message { - mi := &file_testdata_proto_msgTypes[5] + mi := &file_testpb_testdata_proto_msgTypes[5] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2449,13 +2449,13 @@ func (x *fastReflection_HasHasHasAnimal) Range(f func(protoreflect.FieldDescript // a repeated field is populated if it is non-empty. func (x *fastReflection_HasHasHasAnimal) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.HasHasHasAnimal.has_has_animal": + case "testpb.HasHasHasAnimal.has_has_animal": return x.HasHasAnimal != nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.HasHasHasAnimal")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.HasHasHasAnimal")) } - panic(fmt.Errorf("message testdata.HasHasHasAnimal does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.HasHasHasAnimal does not contain field %s", fd.FullName())) } } @@ -2467,13 +2467,13 @@ func (x *fastReflection_HasHasHasAnimal) Has(fd protoreflect.FieldDescriptor) bo // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_HasHasHasAnimal) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.HasHasHasAnimal.has_has_animal": + case "testpb.HasHasHasAnimal.has_has_animal": x.HasHasAnimal = nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.HasHasHasAnimal")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.HasHasHasAnimal")) } - panic(fmt.Errorf("message testdata.HasHasHasAnimal does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.HasHasHasAnimal does not contain field %s", fd.FullName())) } } @@ -2485,14 +2485,14 @@ func (x *fastReflection_HasHasHasAnimal) Clear(fd protoreflect.FieldDescriptor) // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_HasHasHasAnimal) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.HasHasHasAnimal.has_has_animal": + case "testpb.HasHasHasAnimal.has_has_animal": value := x.HasHasAnimal return protoreflect.ValueOfMessage(value.ProtoReflect()) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.HasHasHasAnimal")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.HasHasHasAnimal")) } - panic(fmt.Errorf("message testdata.HasHasHasAnimal does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.HasHasHasAnimal does not contain field %s", descriptor.FullName())) } } @@ -2508,13 +2508,13 @@ func (x *fastReflection_HasHasHasAnimal) Get(descriptor protoreflect.FieldDescri // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_HasHasHasAnimal) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.HasHasHasAnimal.has_has_animal": + case "testpb.HasHasHasAnimal.has_has_animal": x.HasHasAnimal = value.Message().Interface().(*anypb.Any) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.HasHasHasAnimal")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.HasHasHasAnimal")) } - panic(fmt.Errorf("message testdata.HasHasHasAnimal does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.HasHasHasAnimal does not contain field %s", fd.FullName())) } } @@ -2530,16 +2530,16 @@ func (x *fastReflection_HasHasHasAnimal) Set(fd protoreflect.FieldDescriptor, va // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_HasHasHasAnimal) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.HasHasHasAnimal.has_has_animal": + case "testpb.HasHasHasAnimal.has_has_animal": if x.HasHasAnimal == nil { x.HasHasAnimal = new(anypb.Any) } return protoreflect.ValueOfMessage(x.HasHasAnimal.ProtoReflect()) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.HasHasHasAnimal")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.HasHasHasAnimal")) } - panic(fmt.Errorf("message testdata.HasHasHasAnimal does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.HasHasHasAnimal does not contain field %s", fd.FullName())) } } @@ -2548,14 +2548,14 @@ func (x *fastReflection_HasHasHasAnimal) Mutable(fd protoreflect.FieldDescriptor // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_HasHasHasAnimal) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.HasHasHasAnimal.has_has_animal": + case "testpb.HasHasHasAnimal.has_has_animal": m := new(anypb.Any) return protoreflect.ValueOfMessage(m.ProtoReflect()) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.HasHasHasAnimal")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.HasHasHasAnimal")) } - panic(fmt.Errorf("message testdata.HasHasHasAnimal does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.HasHasHasAnimal does not contain field %s", fd.FullName())) } } @@ -2565,7 +2565,7 @@ func (x *fastReflection_HasHasHasAnimal) NewField(fd protoreflect.FieldDescripto func (x *fastReflection_HasHasHasAnimal) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in testdata.HasHasHasAnimal", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.HasHasHasAnimal", d.FullName())) } panic("unreachable") } @@ -2840,8 +2840,8 @@ var ( ) func init() { - file_testdata_proto_init() - md_BadMultiSignature = File_testdata_proto.Messages().ByName("BadMultiSignature") + file_testpb_testdata_proto_init() + md_BadMultiSignature = File_testpb_testdata_proto.Messages().ByName("BadMultiSignature") fd_BadMultiSignature_signatures = md_BadMultiSignature.Fields().ByName("signatures") fd_BadMultiSignature_malicious_field = md_BadMultiSignature.Fields().ByName("malicious_field") } @@ -2855,7 +2855,7 @@ func (x *BadMultiSignature) ProtoReflect() protoreflect.Message { } func (x *BadMultiSignature) slowProtoReflect() protoreflect.Message { - mi := &file_testdata_proto_msgTypes[6] + mi := &file_testpb_testdata_proto_msgTypes[6] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2938,15 +2938,15 @@ func (x *fastReflection_BadMultiSignature) Range(f func(protoreflect.FieldDescri // a repeated field is populated if it is non-empty. func (x *fastReflection_BadMultiSignature) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.BadMultiSignature.signatures": + case "testpb.BadMultiSignature.signatures": return len(x.Signatures) != 0 - case "testdata.BadMultiSignature.malicious_field": + case "testpb.BadMultiSignature.malicious_field": return len(x.MaliciousField) != 0 default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.BadMultiSignature")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.BadMultiSignature")) } - panic(fmt.Errorf("message testdata.BadMultiSignature does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.BadMultiSignature does not contain field %s", fd.FullName())) } } @@ -2958,15 +2958,15 @@ func (x *fastReflection_BadMultiSignature) Has(fd protoreflect.FieldDescriptor) // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_BadMultiSignature) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.BadMultiSignature.signatures": + case "testpb.BadMultiSignature.signatures": x.Signatures = nil - case "testdata.BadMultiSignature.malicious_field": + case "testpb.BadMultiSignature.malicious_field": x.MaliciousField = nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.BadMultiSignature")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.BadMultiSignature")) } - panic(fmt.Errorf("message testdata.BadMultiSignature does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.BadMultiSignature does not contain field %s", fd.FullName())) } } @@ -2978,20 +2978,20 @@ func (x *fastReflection_BadMultiSignature) Clear(fd protoreflect.FieldDescriptor // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_BadMultiSignature) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.BadMultiSignature.signatures": + case "testpb.BadMultiSignature.signatures": if len(x.Signatures) == 0 { return protoreflect.ValueOfList(&_BadMultiSignature_1_list{}) } listValue := &_BadMultiSignature_1_list{list: &x.Signatures} return protoreflect.ValueOfList(listValue) - case "testdata.BadMultiSignature.malicious_field": + case "testpb.BadMultiSignature.malicious_field": value := x.MaliciousField return protoreflect.ValueOfBytes(value) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.BadMultiSignature")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.BadMultiSignature")) } - panic(fmt.Errorf("message testdata.BadMultiSignature does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.BadMultiSignature does not contain field %s", descriptor.FullName())) } } @@ -3007,17 +3007,17 @@ func (x *fastReflection_BadMultiSignature) Get(descriptor protoreflect.FieldDesc // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_BadMultiSignature) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.BadMultiSignature.signatures": + case "testpb.BadMultiSignature.signatures": lv := value.List() clv := lv.(*_BadMultiSignature_1_list) x.Signatures = *clv.list - case "testdata.BadMultiSignature.malicious_field": + case "testpb.BadMultiSignature.malicious_field": x.MaliciousField = value.Bytes() default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.BadMultiSignature")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.BadMultiSignature")) } - panic(fmt.Errorf("message testdata.BadMultiSignature does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.BadMultiSignature does not contain field %s", fd.FullName())) } } @@ -3033,19 +3033,19 @@ func (x *fastReflection_BadMultiSignature) Set(fd protoreflect.FieldDescriptor, // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_BadMultiSignature) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.BadMultiSignature.signatures": + case "testpb.BadMultiSignature.signatures": if x.Signatures == nil { x.Signatures = [][]byte{} } value := &_BadMultiSignature_1_list{list: &x.Signatures} return protoreflect.ValueOfList(value) - case "testdata.BadMultiSignature.malicious_field": - panic(fmt.Errorf("field malicious_field of message testdata.BadMultiSignature is not mutable")) + case "testpb.BadMultiSignature.malicious_field": + panic(fmt.Errorf("field malicious_field of message testpb.BadMultiSignature is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.BadMultiSignature")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.BadMultiSignature")) } - panic(fmt.Errorf("message testdata.BadMultiSignature does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.BadMultiSignature does not contain field %s", fd.FullName())) } } @@ -3054,16 +3054,16 @@ func (x *fastReflection_BadMultiSignature) Mutable(fd protoreflect.FieldDescript // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_BadMultiSignature) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.BadMultiSignature.signatures": + case "testpb.BadMultiSignature.signatures": list := [][]byte{} return protoreflect.ValueOfList(&_BadMultiSignature_1_list{list: &list}) - case "testdata.BadMultiSignature.malicious_field": + case "testpb.BadMultiSignature.malicious_field": return protoreflect.ValueOfBytes(nil) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.BadMultiSignature")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.BadMultiSignature")) } - panic(fmt.Errorf("message testdata.BadMultiSignature does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.BadMultiSignature does not contain field %s", fd.FullName())) } } @@ -3073,7 +3073,7 @@ func (x *fastReflection_BadMultiSignature) NewField(fd protoreflect.FieldDescrip func (x *fastReflection_BadMultiSignature) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in testdata.BadMultiSignature", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.BadMultiSignature", d.FullName())) } panic("unreachable") } @@ -3342,8 +3342,8 @@ var ( ) func init() { - file_testdata_proto_init() - md_TableModel = File_testdata_proto.Messages().ByName("TableModel") + file_testpb_testdata_proto_init() + md_TableModel = File_testpb_testdata_proto.Messages().ByName("TableModel") fd_TableModel_id = md_TableModel.Fields().ByName("id") fd_TableModel_name = md_TableModel.Fields().ByName("name") fd_TableModel_number = md_TableModel.Fields().ByName("number") @@ -3359,7 +3359,7 @@ func (x *TableModel) ProtoReflect() protoreflect.Message { } func (x *TableModel) slowProtoReflect() protoreflect.Message { - mi := &file_testdata_proto_msgTypes[7] + mi := &file_testpb_testdata_proto_msgTypes[7] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3454,19 +3454,19 @@ func (x *fastReflection_TableModel) Range(f func(protoreflect.FieldDescriptor, p // a repeated field is populated if it is non-empty. func (x *fastReflection_TableModel) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.TableModel.id": + case "testpb.TableModel.id": return x.Id != uint64(0) - case "testdata.TableModel.name": + case "testpb.TableModel.name": return x.Name != "" - case "testdata.TableModel.number": + case "testpb.TableModel.number": return x.Number != uint64(0) - case "testdata.TableModel.metadata": + case "testpb.TableModel.metadata": return len(x.Metadata) != 0 default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TableModel")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TableModel")) } - panic(fmt.Errorf("message testdata.TableModel does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TableModel does not contain field %s", fd.FullName())) } } @@ -3478,19 +3478,19 @@ func (x *fastReflection_TableModel) Has(fd protoreflect.FieldDescriptor) bool { // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TableModel) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.TableModel.id": + case "testpb.TableModel.id": x.Id = uint64(0) - case "testdata.TableModel.name": + case "testpb.TableModel.name": x.Name = "" - case "testdata.TableModel.number": + case "testpb.TableModel.number": x.Number = uint64(0) - case "testdata.TableModel.metadata": + case "testpb.TableModel.metadata": x.Metadata = nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TableModel")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TableModel")) } - panic(fmt.Errorf("message testdata.TableModel does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TableModel does not contain field %s", fd.FullName())) } } @@ -3502,23 +3502,23 @@ func (x *fastReflection_TableModel) Clear(fd protoreflect.FieldDescriptor) { // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_TableModel) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.TableModel.id": + case "testpb.TableModel.id": value := x.Id return protoreflect.ValueOfUint64(value) - case "testdata.TableModel.name": + case "testpb.TableModel.name": value := x.Name return protoreflect.ValueOfString(value) - case "testdata.TableModel.number": + case "testpb.TableModel.number": value := x.Number return protoreflect.ValueOfUint64(value) - case "testdata.TableModel.metadata": + case "testpb.TableModel.metadata": value := x.Metadata return protoreflect.ValueOfBytes(value) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TableModel")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TableModel")) } - panic(fmt.Errorf("message testdata.TableModel does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.TableModel does not contain field %s", descriptor.FullName())) } } @@ -3534,19 +3534,19 @@ func (x *fastReflection_TableModel) Get(descriptor protoreflect.FieldDescriptor) // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TableModel) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.TableModel.id": + case "testpb.TableModel.id": x.Id = value.Uint() - case "testdata.TableModel.name": + case "testpb.TableModel.name": x.Name = value.Interface().(string) - case "testdata.TableModel.number": + case "testpb.TableModel.number": x.Number = value.Uint() - case "testdata.TableModel.metadata": + case "testpb.TableModel.metadata": x.Metadata = value.Bytes() default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TableModel")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TableModel")) } - panic(fmt.Errorf("message testdata.TableModel does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TableModel does not contain field %s", fd.FullName())) } } @@ -3562,19 +3562,19 @@ func (x *fastReflection_TableModel) Set(fd protoreflect.FieldDescriptor, value p // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TableModel) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TableModel.id": - panic(fmt.Errorf("field id of message testdata.TableModel is not mutable")) - case "testdata.TableModel.name": - panic(fmt.Errorf("field name of message testdata.TableModel is not mutable")) - case "testdata.TableModel.number": - panic(fmt.Errorf("field number of message testdata.TableModel is not mutable")) - case "testdata.TableModel.metadata": - panic(fmt.Errorf("field metadata of message testdata.TableModel is not mutable")) + case "testpb.TableModel.id": + panic(fmt.Errorf("field id of message testpb.TableModel is not mutable")) + case "testpb.TableModel.name": + panic(fmt.Errorf("field name of message testpb.TableModel is not mutable")) + case "testpb.TableModel.number": + panic(fmt.Errorf("field number of message testpb.TableModel is not mutable")) + case "testpb.TableModel.metadata": + panic(fmt.Errorf("field metadata of message testpb.TableModel is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TableModel")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TableModel")) } - panic(fmt.Errorf("message testdata.TableModel does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TableModel does not contain field %s", fd.FullName())) } } @@ -3583,19 +3583,19 @@ func (x *fastReflection_TableModel) Mutable(fd protoreflect.FieldDescriptor) pro // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_TableModel) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TableModel.id": + case "testpb.TableModel.id": return protoreflect.ValueOfUint64(uint64(0)) - case "testdata.TableModel.name": + case "testpb.TableModel.name": return protoreflect.ValueOfString("") - case "testdata.TableModel.number": + case "testpb.TableModel.number": return protoreflect.ValueOfUint64(uint64(0)) - case "testdata.TableModel.metadata": + case "testpb.TableModel.metadata": return protoreflect.ValueOfBytes(nil) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TableModel")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TableModel")) } - panic(fmt.Errorf("message testdata.TableModel does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TableModel does not contain field %s", fd.FullName())) } } @@ -3605,7 +3605,7 @@ func (x *fastReflection_TableModel) NewField(fd protoreflect.FieldDescriptor) pr func (x *fastReflection_TableModel) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in testdata.TableModel", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.TableModel", d.FullName())) } panic("unreachable") } @@ -3919,7 +3919,7 @@ func (x *fastReflection_TableModel) ProtoMethods() *protoiface.Methods { // versions: // protoc-gen-go v1.27.0 // protoc (unknown) -// source: testdata.proto +// source: testpb/testdata.proto const ( // Verify that this generated code is sufficiently up-to-date. @@ -3940,7 +3940,7 @@ type Dog struct { func (x *Dog) Reset() { *x = Dog{} if protoimpl.UnsafeEnabled { - mi := &file_testdata_proto_msgTypes[0] + mi := &file_testpb_testdata_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3954,7 +3954,7 @@ func (*Dog) ProtoMessage() {} // Deprecated: Use Dog.ProtoReflect.Descriptor instead. func (*Dog) Descriptor() ([]byte, []int) { - return file_testdata_proto_rawDescGZIP(), []int{0} + return file_testpb_testdata_proto_rawDescGZIP(), []int{0} } func (x *Dog) GetSize() string { @@ -3983,7 +3983,7 @@ type Cat struct { func (x *Cat) Reset() { *x = Cat{} if protoimpl.UnsafeEnabled { - mi := &file_testdata_proto_msgTypes[1] + mi := &file_testpb_testdata_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3997,7 +3997,7 @@ func (*Cat) ProtoMessage() {} // Deprecated: Use Cat.ProtoReflect.Descriptor instead. func (*Cat) Descriptor() ([]byte, []int) { - return file_testdata_proto_rawDescGZIP(), []int{1} + return file_testpb_testdata_proto_rawDescGZIP(), []int{1} } func (x *Cat) GetMoniker() string { @@ -4026,7 +4026,7 @@ type Bird struct { func (x *Bird) Reset() { *x = Bird{} if protoimpl.UnsafeEnabled { - mi := &file_testdata_proto_msgTypes[2] + mi := &file_testpb_testdata_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4040,7 +4040,7 @@ func (*Bird) ProtoMessage() {} // Deprecated: Use Bird.ProtoReflect.Descriptor instead. func (*Bird) Descriptor() ([]byte, []int) { - return file_testdata_proto_rawDescGZIP(), []int{2} + return file_testpb_testdata_proto_rawDescGZIP(), []int{2} } func (x *Bird) GetSpecies() string { @@ -4069,7 +4069,7 @@ type HasAnimal struct { func (x *HasAnimal) Reset() { *x = HasAnimal{} if protoimpl.UnsafeEnabled { - mi := &file_testdata_proto_msgTypes[3] + mi := &file_testpb_testdata_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4083,7 +4083,7 @@ func (*HasAnimal) ProtoMessage() {} // Deprecated: Use HasAnimal.ProtoReflect.Descriptor instead. func (*HasAnimal) Descriptor() ([]byte, []int) { - return file_testdata_proto_rawDescGZIP(), []int{3} + return file_testpb_testdata_proto_rawDescGZIP(), []int{3} } func (x *HasAnimal) GetAnimal() *anypb.Any { @@ -4111,7 +4111,7 @@ type HasHasAnimal struct { func (x *HasHasAnimal) Reset() { *x = HasHasAnimal{} if protoimpl.UnsafeEnabled { - mi := &file_testdata_proto_msgTypes[4] + mi := &file_testpb_testdata_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4125,7 +4125,7 @@ func (*HasHasAnimal) ProtoMessage() {} // Deprecated: Use HasHasAnimal.ProtoReflect.Descriptor instead. func (*HasHasAnimal) Descriptor() ([]byte, []int) { - return file_testdata_proto_rawDescGZIP(), []int{4} + return file_testpb_testdata_proto_rawDescGZIP(), []int{4} } func (x *HasHasAnimal) GetHasAnimal() *anypb.Any { @@ -4146,7 +4146,7 @@ type HasHasHasAnimal struct { func (x *HasHasHasAnimal) Reset() { *x = HasHasHasAnimal{} if protoimpl.UnsafeEnabled { - mi := &file_testdata_proto_msgTypes[5] + mi := &file_testpb_testdata_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4160,7 +4160,7 @@ func (*HasHasHasAnimal) ProtoMessage() {} // Deprecated: Use HasHasHasAnimal.ProtoReflect.Descriptor instead. func (*HasHasHasAnimal) Descriptor() ([]byte, []int) { - return file_testdata_proto_rawDescGZIP(), []int{5} + return file_testpb_testdata_proto_rawDescGZIP(), []int{5} } func (x *HasHasHasAnimal) GetHasHasAnimal() *anypb.Any { @@ -4183,7 +4183,7 @@ type BadMultiSignature struct { func (x *BadMultiSignature) Reset() { *x = BadMultiSignature{} if protoimpl.UnsafeEnabled { - mi := &file_testdata_proto_msgTypes[6] + mi := &file_testpb_testdata_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4197,7 +4197,7 @@ func (*BadMultiSignature) ProtoMessage() {} // Deprecated: Use BadMultiSignature.ProtoReflect.Descriptor instead. func (*BadMultiSignature) Descriptor() ([]byte, []int) { - return file_testdata_proto_rawDescGZIP(), []int{6} + return file_testpb_testdata_proto_rawDescGZIP(), []int{6} } func (x *BadMultiSignature) GetSignatures() [][]byte { @@ -4228,7 +4228,7 @@ type TableModel struct { func (x *TableModel) Reset() { *x = TableModel{} if protoimpl.UnsafeEnabled { - mi := &file_testdata_proto_msgTypes[7] + mi := &file_testpb_testdata_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4242,7 +4242,7 @@ func (*TableModel) ProtoMessage() {} // Deprecated: Use TableModel.ProtoReflect.Descriptor instead. func (*TableModel) Descriptor() ([]byte, []int) { - return file_testdata_proto_rawDescGZIP(), []int{7} + return file_testpb_testdata_proto_rawDescGZIP(), []int{7} } func (x *TableModel) GetId() uint64 { @@ -4273,90 +4273,91 @@ func (x *TableModel) GetMetadata() []byte { return nil } -var File_testdata_proto protoreflect.FileDescriptor - -var file_testdata_proto_rawDesc = []byte{ - 0x0a, 0x0e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, - 0x12, 0x08, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x1a, 0x14, 0x67, 0x6f, 0x67, 0x6f, - 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x67, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, - 0x1a, 0x19, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, - 0x66, 0x2f, 0x61, 0x6e, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x2d, 0x0a, 0x03, 0x44, - 0x6f, 0x67, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x35, 0x0a, 0x03, 0x43, 0x61, - 0x74, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x6f, 0x6e, 0x69, 0x6b, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x07, 0x6d, 0x6f, 0x6e, 0x69, 0x6b, 0x65, 0x72, 0x12, 0x14, 0x0a, 0x05, 0x6c, - 0x69, 0x76, 0x65, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x6c, 0x69, 0x76, 0x65, - 0x73, 0x22, 0x36, 0x0a, 0x04, 0x42, 0x69, 0x72, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x70, 0x65, - 0x63, 0x69, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x73, 0x70, 0x65, 0x63, - 0x69, 0x65, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, - 0x28, 0x05, 0x52, 0x05, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x22, 0x47, 0x0a, 0x09, 0x48, 0x61, 0x73, - 0x41, 0x6e, 0x69, 0x6d, 0x61, 0x6c, 0x12, 0x2c, 0x0a, 0x06, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x6c, - 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, - 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e, 0x79, 0x52, 0x06, 0x61, 0x6e, - 0x69, 0x6d, 0x61, 0x6c, 0x12, 0x0c, 0x0a, 0x01, 0x78, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, - 0x01, 0x78, 0x22, 0x43, 0x0a, 0x0c, 0x48, 0x61, 0x73, 0x48, 0x61, 0x73, 0x41, 0x6e, 0x69, 0x6d, - 0x61, 0x6c, 0x12, 0x33, 0x0a, 0x0a, 0x68, 0x61, 0x73, 0x5f, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x6c, - 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, - 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e, 0x79, 0x52, 0x09, 0x68, 0x61, - 0x73, 0x41, 0x6e, 0x69, 0x6d, 0x61, 0x6c, 0x22, 0x4d, 0x0a, 0x0f, 0x48, 0x61, 0x73, 0x48, 0x61, - 0x73, 0x48, 0x61, 0x73, 0x41, 0x6e, 0x69, 0x6d, 0x61, 0x6c, 0x12, 0x3a, 0x0a, 0x0e, 0x68, 0x61, - 0x73, 0x5f, 0x68, 0x61, 0x73, 0x5f, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x6c, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e, 0x79, 0x52, 0x0c, 0x68, 0x61, 0x73, 0x48, 0x61, 0x73, - 0x41, 0x6e, 0x69, 0x6d, 0x61, 0x6c, 0x22, 0x62, 0x0a, 0x11, 0x42, 0x61, 0x64, 0x4d, 0x75, 0x6c, - 0x74, 0x69, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x73, - 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0c, 0x52, - 0x0a, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x6d, - 0x61, 0x6c, 0x69, 0x63, 0x69, 0x6f, 0x75, 0x73, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x05, - 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0e, 0x6d, 0x61, 0x6c, 0x69, 0x63, 0x69, 0x6f, 0x75, 0x73, 0x46, - 0x69, 0x65, 0x6c, 0x64, 0x3a, 0x04, 0xd0, 0xa1, 0x1f, 0x01, 0x22, 0x64, 0x0a, 0x0a, 0x54, 0x61, - 0x62, 0x6c, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, - 0x20, 0x01, 0x28, 0x04, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, - 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, - 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6e, 0x75, - 0x6d, 0x62, 0x65, 0x72, 0x12, 0x1a, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, - 0x18, 0x04, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, - 0x42, 0x94, 0x01, 0x0a, 0x0c, 0x63, 0x6f, 0x6d, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, - 0x61, 0x42, 0x0d, 0x54, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x50, 0x72, 0x6f, 0x74, 0x6f, - 0x50, 0x01, 0x5a, 0x35, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x63, - 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2f, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2d, 0x73, 0x64, 0x6b, - 0x2f, 0x74, 0x65, 0x73, 0x74, 0x75, 0x74, 0x69, 0x6c, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, - 0x74, 0x61, 0x5f, 0x70, 0x75, 0x6c, 0x73, 0x61, 0x72, 0xa2, 0x02, 0x03, 0x54, 0x58, 0x58, 0xaa, - 0x02, 0x08, 0x54, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0xca, 0x02, 0x08, 0x54, 0x65, 0x73, - 0x74, 0x64, 0x61, 0x74, 0x61, 0xe2, 0x02, 0x14, 0x54, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, - 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0xea, 0x02, 0x08, 0x54, - 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, +var File_testpb_testdata_proto protoreflect.FileDescriptor + +var file_testpb_testdata_proto_rawDesc = []byte{ + 0x0a, 0x15, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, + 0x61, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x06, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x1a, + 0x14, 0x67, 0x6f, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x67, 0x6f, 0x2e, + 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x19, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, + 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x61, 0x6e, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x22, 0x2d, 0x0a, 0x03, 0x44, 0x6f, 0x67, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, + 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, + 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, + 0x35, 0x0a, 0x03, 0x43, 0x61, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x6f, 0x6e, 0x69, 0x6b, 0x65, + 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x6f, 0x6e, 0x69, 0x6b, 0x65, 0x72, + 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x76, 0x65, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, + 0x05, 0x6c, 0x69, 0x76, 0x65, 0x73, 0x22, 0x36, 0x0a, 0x04, 0x42, 0x69, 0x72, 0x64, 0x12, 0x18, + 0x0a, 0x07, 0x73, 0x70, 0x65, 0x63, 0x69, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x07, 0x73, 0x70, 0x65, 0x63, 0x69, 0x65, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x6c, 0x6f, + 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x22, 0x47, + 0x0a, 0x09, 0x48, 0x61, 0x73, 0x41, 0x6e, 0x69, 0x6d, 0x61, 0x6c, 0x12, 0x2c, 0x0a, 0x06, 0x61, + 0x6e, 0x69, 0x6d, 0x61, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e, + 0x79, 0x52, 0x06, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x6c, 0x12, 0x0c, 0x0a, 0x01, 0x78, 0x18, 0x02, + 0x20, 0x01, 0x28, 0x03, 0x52, 0x01, 0x78, 0x22, 0x43, 0x0a, 0x0c, 0x48, 0x61, 0x73, 0x48, 0x61, + 0x73, 0x41, 0x6e, 0x69, 0x6d, 0x61, 0x6c, 0x12, 0x33, 0x0a, 0x0a, 0x68, 0x61, 0x73, 0x5f, 0x61, + 0x6e, 0x69, 0x6d, 0x61, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e, + 0x79, 0x52, 0x09, 0x68, 0x61, 0x73, 0x41, 0x6e, 0x69, 0x6d, 0x61, 0x6c, 0x22, 0x4d, 0x0a, 0x0f, + 0x48, 0x61, 0x73, 0x48, 0x61, 0x73, 0x48, 0x61, 0x73, 0x41, 0x6e, 0x69, 0x6d, 0x61, 0x6c, 0x12, + 0x3a, 0x0a, 0x0e, 0x68, 0x61, 0x73, 0x5f, 0x68, 0x61, 0x73, 0x5f, 0x61, 0x6e, 0x69, 0x6d, 0x61, + 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e, 0x79, 0x52, 0x0c, 0x68, + 0x61, 0x73, 0x48, 0x61, 0x73, 0x41, 0x6e, 0x69, 0x6d, 0x61, 0x6c, 0x22, 0x62, 0x0a, 0x11, 0x42, + 0x61, 0x64, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, + 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x73, 0x18, 0x01, + 0x20, 0x03, 0x28, 0x0c, 0x52, 0x0a, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x73, + 0x12, 0x27, 0x0a, 0x0f, 0x6d, 0x61, 0x6c, 0x69, 0x63, 0x69, 0x6f, 0x75, 0x73, 0x5f, 0x66, 0x69, + 0x65, 0x6c, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0e, 0x6d, 0x61, 0x6c, 0x69, 0x63, + 0x69, 0x6f, 0x75, 0x73, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x3a, 0x04, 0xd0, 0xa1, 0x1f, 0x01, 0x22, + 0x64, 0x0a, 0x0a, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x12, 0x0e, 0x0a, + 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, + 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, + 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, + 0x04, 0x52, 0x06, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x1a, 0x0a, 0x08, 0x6d, 0x65, 0x74, + 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x08, 0x6d, 0x65, 0x74, + 0x61, 0x64, 0x61, 0x74, 0x61, 0x42, 0x91, 0x01, 0x0a, 0x0a, 0x63, 0x6f, 0x6d, 0x2e, 0x74, 0x65, + 0x73, 0x74, 0x70, 0x62, 0x42, 0x0d, 0x54, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x50, 0x72, + 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x3c, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, + 0x6d, 0x2f, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2f, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2d, + 0x73, 0x64, 0x6b, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x75, 0x74, 0x69, 0x6c, 0x2f, 0x74, 0x65, 0x73, + 0x74, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x70, 0x75, 0x6c, 0x73, 0x61, 0x72, 0x2f, 0x74, 0x65, 0x73, + 0x74, 0x70, 0x62, 0xa2, 0x02, 0x03, 0x54, 0x58, 0x58, 0xaa, 0x02, 0x06, 0x54, 0x65, 0x73, 0x74, + 0x70, 0x62, 0xca, 0x02, 0x06, 0x54, 0x65, 0x73, 0x74, 0x70, 0x62, 0xe2, 0x02, 0x12, 0x54, 0x65, + 0x73, 0x74, 0x70, 0x62, 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, + 0xea, 0x02, 0x06, 0x54, 0x65, 0x73, 0x74, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x33, } var ( - file_testdata_proto_rawDescOnce sync.Once - file_testdata_proto_rawDescData = file_testdata_proto_rawDesc + file_testpb_testdata_proto_rawDescOnce sync.Once + file_testpb_testdata_proto_rawDescData = file_testpb_testdata_proto_rawDesc ) -func file_testdata_proto_rawDescGZIP() []byte { - file_testdata_proto_rawDescOnce.Do(func() { - file_testdata_proto_rawDescData = protoimpl.X.CompressGZIP(file_testdata_proto_rawDescData) +func file_testpb_testdata_proto_rawDescGZIP() []byte { + file_testpb_testdata_proto_rawDescOnce.Do(func() { + file_testpb_testdata_proto_rawDescData = protoimpl.X.CompressGZIP(file_testpb_testdata_proto_rawDescData) }) - return file_testdata_proto_rawDescData -} - -var file_testdata_proto_msgTypes = make([]protoimpl.MessageInfo, 8) -var file_testdata_proto_goTypes = []interface{}{ - (*Dog)(nil), // 0: testdata.Dog - (*Cat)(nil), // 1: testdata.Cat - (*Bird)(nil), // 2: testdata.Bird - (*HasAnimal)(nil), // 3: testdata.HasAnimal - (*HasHasAnimal)(nil), // 4: testdata.HasHasAnimal - (*HasHasHasAnimal)(nil), // 5: testdata.HasHasHasAnimal - (*BadMultiSignature)(nil), // 6: testdata.BadMultiSignature - (*TableModel)(nil), // 7: testdata.TableModel + return file_testpb_testdata_proto_rawDescData +} + +var file_testpb_testdata_proto_msgTypes = make([]protoimpl.MessageInfo, 8) +var file_testpb_testdata_proto_goTypes = []interface{}{ + (*Dog)(nil), // 0: testpb.Dog + (*Cat)(nil), // 1: testpb.Cat + (*Bird)(nil), // 2: testpb.Bird + (*HasAnimal)(nil), // 3: testpb.HasAnimal + (*HasHasAnimal)(nil), // 4: testpb.HasHasAnimal + (*HasHasHasAnimal)(nil), // 5: testpb.HasHasHasAnimal + (*BadMultiSignature)(nil), // 6: testpb.BadMultiSignature + (*TableModel)(nil), // 7: testpb.TableModel (*anypb.Any)(nil), // 8: google.protobuf.Any } -var file_testdata_proto_depIdxs = []int32{ - 8, // 0: testdata.HasAnimal.animal:type_name -> google.protobuf.Any - 8, // 1: testdata.HasHasAnimal.has_animal:type_name -> google.protobuf.Any - 8, // 2: testdata.HasHasHasAnimal.has_has_animal:type_name -> google.protobuf.Any +var file_testpb_testdata_proto_depIdxs = []int32{ + 8, // 0: testpb.HasAnimal.animal:type_name -> google.protobuf.Any + 8, // 1: testpb.HasHasAnimal.has_animal:type_name -> google.protobuf.Any + 8, // 2: testpb.HasHasHasAnimal.has_has_animal:type_name -> google.protobuf.Any 3, // [3:3] is the sub-list for method output_type 3, // [3:3] is the sub-list for method input_type 3, // [3:3] is the sub-list for extension type_name @@ -4364,13 +4365,13 @@ var file_testdata_proto_depIdxs = []int32{ 0, // [0:3] is the sub-list for field type_name } -func init() { file_testdata_proto_init() } -func file_testdata_proto_init() { - if File_testdata_proto != nil { +func init() { file_testpb_testdata_proto_init() } +func file_testpb_testdata_proto_init() { + if File_testpb_testdata_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_testdata_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_testpb_testdata_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Dog); i { case 0: return &v.state @@ -4382,7 +4383,7 @@ func file_testdata_proto_init() { return nil } } - file_testdata_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_testpb_testdata_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Cat); i { case 0: return &v.state @@ -4394,7 +4395,7 @@ func file_testdata_proto_init() { return nil } } - file_testdata_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_testpb_testdata_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Bird); i { case 0: return &v.state @@ -4406,7 +4407,7 @@ func file_testdata_proto_init() { return nil } } - file_testdata_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_testpb_testdata_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*HasAnimal); i { case 0: return &v.state @@ -4418,7 +4419,7 @@ func file_testdata_proto_init() { return nil } } - file_testdata_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_testpb_testdata_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*HasHasAnimal); i { case 0: return &v.state @@ -4430,7 +4431,7 @@ func file_testdata_proto_init() { return nil } } - file_testdata_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_testpb_testdata_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*HasHasHasAnimal); i { case 0: return &v.state @@ -4442,7 +4443,7 @@ func file_testdata_proto_init() { return nil } } - file_testdata_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_testpb_testdata_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*BadMultiSignature); i { case 0: return &v.state @@ -4454,7 +4455,7 @@ func file_testdata_proto_init() { return nil } } - file_testdata_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_testpb_testdata_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*TableModel); i { case 0: return &v.state @@ -4471,18 +4472,18 @@ func file_testdata_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_testdata_proto_rawDesc, + RawDescriptor: file_testpb_testdata_proto_rawDesc, NumEnums: 0, NumMessages: 8, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_testdata_proto_goTypes, - DependencyIndexes: file_testdata_proto_depIdxs, - MessageInfos: file_testdata_proto_msgTypes, + GoTypes: file_testpb_testdata_proto_goTypes, + DependencyIndexes: file_testpb_testdata_proto_depIdxs, + MessageInfos: file_testpb_testdata_proto_msgTypes, }.Build() - File_testdata_proto = out.File - file_testdata_proto_rawDesc = nil - file_testdata_proto_goTypes = nil - file_testdata_proto_depIdxs = nil + File_testpb_testdata_proto = out.File + file_testpb_testdata_proto_rawDesc = nil + file_testpb_testdata_proto_goTypes = nil + file_testpb_testdata_proto_depIdxs = nil } diff --git a/testutil/testdata/tx.proto b/testutil/testdata/testpb/tx.proto similarity index 89% rename from testutil/testdata/tx.proto rename to testutil/testdata/testpb/tx.proto index eaeb9580e5e2..2e5705694543 100644 --- a/testutil/testdata/tx.proto +++ b/testutil/testdata/testpb/tx.proto @@ -1,8 +1,8 @@ syntax = "proto3"; -package testdata; +package testpb; import "gogoproto/gogo.proto"; -import "testdata.proto"; +import "testpb/testdata.proto"; option go_package = "github.com/cosmos/cosmos-sdk/testutil/testdata"; @@ -13,7 +13,7 @@ service Msg { } message MsgCreateDog { - testdata.Dog dog = 1; + testpb.Dog dog = 1; } message MsgCreateDogResponse { diff --git a/testutil/testdata_pulsar/tx.pulsar.go b/testutil/testdata/testpb/tx.pulsar.go similarity index 85% rename from testutil/testdata_pulsar/tx.pulsar.go rename to testutil/testdata/testpb/tx.pulsar.go index 1f171f9bd919..e423bb600045 100644 --- a/testutil/testdata_pulsar/tx.pulsar.go +++ b/testutil/testdata/testpb/tx.pulsar.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-pulsar. DO NOT EDIT. -package testdata_pulsar +package testpb import ( fmt "fmt" @@ -19,8 +19,8 @@ var ( ) func init() { - file_tx_proto_init() - md_MsgCreateDog = File_tx_proto.Messages().ByName("MsgCreateDog") + file_testpb_tx_proto_init() + md_MsgCreateDog = File_testpb_tx_proto.Messages().ByName("MsgCreateDog") fd_MsgCreateDog_dog = md_MsgCreateDog.Fields().ByName("dog") } @@ -33,7 +33,7 @@ func (x *MsgCreateDog) ProtoReflect() protoreflect.Message { } func (x *MsgCreateDog) slowProtoReflect() protoreflect.Message { - mi := &file_tx_proto_msgTypes[0] + mi := &file_testpb_tx_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -110,13 +110,13 @@ func (x *fastReflection_MsgCreateDog) Range(f func(protoreflect.FieldDescriptor, // a repeated field is populated if it is non-empty. func (x *fastReflection_MsgCreateDog) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.MsgCreateDog.dog": + case "testpb.MsgCreateDog.dog": return x.Dog != nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.MsgCreateDog")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.MsgCreateDog")) } - panic(fmt.Errorf("message testdata.MsgCreateDog does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.MsgCreateDog does not contain field %s", fd.FullName())) } } @@ -128,13 +128,13 @@ func (x *fastReflection_MsgCreateDog) Has(fd protoreflect.FieldDescriptor) bool // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_MsgCreateDog) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.MsgCreateDog.dog": + case "testpb.MsgCreateDog.dog": x.Dog = nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.MsgCreateDog")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.MsgCreateDog")) } - panic(fmt.Errorf("message testdata.MsgCreateDog does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.MsgCreateDog does not contain field %s", fd.FullName())) } } @@ -146,14 +146,14 @@ func (x *fastReflection_MsgCreateDog) Clear(fd protoreflect.FieldDescriptor) { // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_MsgCreateDog) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.MsgCreateDog.dog": + case "testpb.MsgCreateDog.dog": value := x.Dog return protoreflect.ValueOfMessage(value.ProtoReflect()) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.MsgCreateDog")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.MsgCreateDog")) } - panic(fmt.Errorf("message testdata.MsgCreateDog does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.MsgCreateDog does not contain field %s", descriptor.FullName())) } } @@ -169,13 +169,13 @@ func (x *fastReflection_MsgCreateDog) Get(descriptor protoreflect.FieldDescripto // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_MsgCreateDog) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.MsgCreateDog.dog": + case "testpb.MsgCreateDog.dog": x.Dog = value.Message().Interface().(*Dog) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.MsgCreateDog")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.MsgCreateDog")) } - panic(fmt.Errorf("message testdata.MsgCreateDog does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.MsgCreateDog does not contain field %s", fd.FullName())) } } @@ -191,16 +191,16 @@ func (x *fastReflection_MsgCreateDog) Set(fd protoreflect.FieldDescriptor, value // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_MsgCreateDog) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.MsgCreateDog.dog": + case "testpb.MsgCreateDog.dog": if x.Dog == nil { x.Dog = new(Dog) } return protoreflect.ValueOfMessage(x.Dog.ProtoReflect()) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.MsgCreateDog")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.MsgCreateDog")) } - panic(fmt.Errorf("message testdata.MsgCreateDog does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.MsgCreateDog does not contain field %s", fd.FullName())) } } @@ -209,14 +209,14 @@ func (x *fastReflection_MsgCreateDog) Mutable(fd protoreflect.FieldDescriptor) p // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_MsgCreateDog) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.MsgCreateDog.dog": + case "testpb.MsgCreateDog.dog": m := new(Dog) return protoreflect.ValueOfMessage(m.ProtoReflect()) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.MsgCreateDog")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.MsgCreateDog")) } - panic(fmt.Errorf("message testdata.MsgCreateDog does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.MsgCreateDog does not contain field %s", fd.FullName())) } } @@ -226,7 +226,7 @@ func (x *fastReflection_MsgCreateDog) NewField(fd protoreflect.FieldDescriptor) func (x *fastReflection_MsgCreateDog) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in testdata.MsgCreateDog", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.MsgCreateDog", d.FullName())) } panic("unreachable") } @@ -454,8 +454,8 @@ var ( ) func init() { - file_tx_proto_init() - md_MsgCreateDogResponse = File_tx_proto.Messages().ByName("MsgCreateDogResponse") + file_testpb_tx_proto_init() + md_MsgCreateDogResponse = File_testpb_tx_proto.Messages().ByName("MsgCreateDogResponse") fd_MsgCreateDogResponse_name = md_MsgCreateDogResponse.Fields().ByName("name") } @@ -468,7 +468,7 @@ func (x *MsgCreateDogResponse) ProtoReflect() protoreflect.Message { } func (x *MsgCreateDogResponse) slowProtoReflect() protoreflect.Message { - mi := &file_tx_proto_msgTypes[1] + mi := &file_testpb_tx_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -545,13 +545,13 @@ func (x *fastReflection_MsgCreateDogResponse) Range(f func(protoreflect.FieldDes // a repeated field is populated if it is non-empty. func (x *fastReflection_MsgCreateDogResponse) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.MsgCreateDogResponse.name": + case "testpb.MsgCreateDogResponse.name": return x.Name != "" default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.MsgCreateDogResponse")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.MsgCreateDogResponse")) } - panic(fmt.Errorf("message testdata.MsgCreateDogResponse does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.MsgCreateDogResponse does not contain field %s", fd.FullName())) } } @@ -563,13 +563,13 @@ func (x *fastReflection_MsgCreateDogResponse) Has(fd protoreflect.FieldDescripto // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_MsgCreateDogResponse) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.MsgCreateDogResponse.name": + case "testpb.MsgCreateDogResponse.name": x.Name = "" default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.MsgCreateDogResponse")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.MsgCreateDogResponse")) } - panic(fmt.Errorf("message testdata.MsgCreateDogResponse does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.MsgCreateDogResponse does not contain field %s", fd.FullName())) } } @@ -581,14 +581,14 @@ func (x *fastReflection_MsgCreateDogResponse) Clear(fd protoreflect.FieldDescrip // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_MsgCreateDogResponse) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.MsgCreateDogResponse.name": + case "testpb.MsgCreateDogResponse.name": value := x.Name return protoreflect.ValueOfString(value) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.MsgCreateDogResponse")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.MsgCreateDogResponse")) } - panic(fmt.Errorf("message testdata.MsgCreateDogResponse does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.MsgCreateDogResponse does not contain field %s", descriptor.FullName())) } } @@ -604,13 +604,13 @@ func (x *fastReflection_MsgCreateDogResponse) Get(descriptor protoreflect.FieldD // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_MsgCreateDogResponse) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.MsgCreateDogResponse.name": + case "testpb.MsgCreateDogResponse.name": x.Name = value.Interface().(string) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.MsgCreateDogResponse")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.MsgCreateDogResponse")) } - panic(fmt.Errorf("message testdata.MsgCreateDogResponse does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.MsgCreateDogResponse does not contain field %s", fd.FullName())) } } @@ -626,13 +626,13 @@ func (x *fastReflection_MsgCreateDogResponse) Set(fd protoreflect.FieldDescripto // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_MsgCreateDogResponse) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.MsgCreateDogResponse.name": - panic(fmt.Errorf("field name of message testdata.MsgCreateDogResponse is not mutable")) + case "testpb.MsgCreateDogResponse.name": + panic(fmt.Errorf("field name of message testpb.MsgCreateDogResponse is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.MsgCreateDogResponse")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.MsgCreateDogResponse")) } - panic(fmt.Errorf("message testdata.MsgCreateDogResponse does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.MsgCreateDogResponse does not contain field %s", fd.FullName())) } } @@ -641,13 +641,13 @@ func (x *fastReflection_MsgCreateDogResponse) Mutable(fd protoreflect.FieldDescr // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_MsgCreateDogResponse) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.MsgCreateDogResponse.name": + case "testpb.MsgCreateDogResponse.name": return protoreflect.ValueOfString("") default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.MsgCreateDogResponse")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.MsgCreateDogResponse")) } - panic(fmt.Errorf("message testdata.MsgCreateDogResponse does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.MsgCreateDogResponse does not contain field %s", fd.FullName())) } } @@ -657,7 +657,7 @@ func (x *fastReflection_MsgCreateDogResponse) NewField(fd protoreflect.FieldDesc func (x *fastReflection_MsgCreateDogResponse) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in testdata.MsgCreateDogResponse", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.MsgCreateDogResponse", d.FullName())) } panic("unreachable") } @@ -920,8 +920,8 @@ var ( ) func init() { - file_tx_proto_init() - md_TestMsg = File_tx_proto.Messages().ByName("TestMsg") + file_testpb_tx_proto_init() + md_TestMsg = File_testpb_tx_proto.Messages().ByName("TestMsg") fd_TestMsg_signers = md_TestMsg.Fields().ByName("signers") } @@ -934,7 +934,7 @@ func (x *TestMsg) ProtoReflect() protoreflect.Message { } func (x *TestMsg) slowProtoReflect() protoreflect.Message { - mi := &file_tx_proto_msgTypes[2] + mi := &file_testpb_tx_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1011,13 +1011,13 @@ func (x *fastReflection_TestMsg) Range(f func(protoreflect.FieldDescriptor, prot // a repeated field is populated if it is non-empty. func (x *fastReflection_TestMsg) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.TestMsg.signers": + case "testpb.TestMsg.signers": return len(x.Signers) != 0 default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestMsg")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestMsg")) } - panic(fmt.Errorf("message testdata.TestMsg does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestMsg does not contain field %s", fd.FullName())) } } @@ -1029,13 +1029,13 @@ func (x *fastReflection_TestMsg) Has(fd protoreflect.FieldDescriptor) bool { // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestMsg) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.TestMsg.signers": + case "testpb.TestMsg.signers": x.Signers = nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestMsg")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestMsg")) } - panic(fmt.Errorf("message testdata.TestMsg does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestMsg does not contain field %s", fd.FullName())) } } @@ -1047,7 +1047,7 @@ func (x *fastReflection_TestMsg) Clear(fd protoreflect.FieldDescriptor) { // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_TestMsg) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.TestMsg.signers": + case "testpb.TestMsg.signers": if len(x.Signers) == 0 { return protoreflect.ValueOfList(&_TestMsg_1_list{}) } @@ -1055,9 +1055,9 @@ func (x *fastReflection_TestMsg) Get(descriptor protoreflect.FieldDescriptor) pr return protoreflect.ValueOfList(listValue) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestMsg")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestMsg")) } - panic(fmt.Errorf("message testdata.TestMsg does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.TestMsg does not contain field %s", descriptor.FullName())) } } @@ -1073,15 +1073,15 @@ func (x *fastReflection_TestMsg) Get(descriptor protoreflect.FieldDescriptor) pr // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestMsg) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.TestMsg.signers": + case "testpb.TestMsg.signers": lv := value.List() clv := lv.(*_TestMsg_1_list) x.Signers = *clv.list default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestMsg")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestMsg")) } - panic(fmt.Errorf("message testdata.TestMsg does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestMsg does not contain field %s", fd.FullName())) } } @@ -1097,7 +1097,7 @@ func (x *fastReflection_TestMsg) Set(fd protoreflect.FieldDescriptor, value prot // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestMsg) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestMsg.signers": + case "testpb.TestMsg.signers": if x.Signers == nil { x.Signers = []string{} } @@ -1105,9 +1105,9 @@ func (x *fastReflection_TestMsg) Mutable(fd protoreflect.FieldDescriptor) protor return protoreflect.ValueOfList(value) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestMsg")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestMsg")) } - panic(fmt.Errorf("message testdata.TestMsg does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestMsg does not contain field %s", fd.FullName())) } } @@ -1116,14 +1116,14 @@ func (x *fastReflection_TestMsg) Mutable(fd protoreflect.FieldDescriptor) protor // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_TestMsg) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestMsg.signers": + case "testpb.TestMsg.signers": list := []string{} return protoreflect.ValueOfList(&_TestMsg_1_list{list: &list}) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestMsg")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestMsg")) } - panic(fmt.Errorf("message testdata.TestMsg does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestMsg does not contain field %s", fd.FullName())) } } @@ -1133,7 +1133,7 @@ func (x *fastReflection_TestMsg) NewField(fd protoreflect.FieldDescriptor) proto func (x *fastReflection_TestMsg) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in testdata.TestMsg", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.TestMsg", d.FullName())) } panic("unreachable") } @@ -1352,7 +1352,7 @@ func (x *fastReflection_TestMsg) ProtoMethods() *protoiface.Methods { // versions: // protoc-gen-go v1.27.0 // protoc (unknown) -// source: tx.proto +// source: testpb/tx.proto const ( // Verify that this generated code is sufficiently up-to-date. @@ -1372,7 +1372,7 @@ type MsgCreateDog struct { func (x *MsgCreateDog) Reset() { *x = MsgCreateDog{} if protoimpl.UnsafeEnabled { - mi := &file_tx_proto_msgTypes[0] + mi := &file_testpb_tx_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1386,7 +1386,7 @@ func (*MsgCreateDog) ProtoMessage() {} // Deprecated: Use MsgCreateDog.ProtoReflect.Descriptor instead. func (*MsgCreateDog) Descriptor() ([]byte, []int) { - return file_tx_proto_rawDescGZIP(), []int{0} + return file_testpb_tx_proto_rawDescGZIP(), []int{0} } func (x *MsgCreateDog) GetDog() *Dog { @@ -1407,7 +1407,7 @@ type MsgCreateDogResponse struct { func (x *MsgCreateDogResponse) Reset() { *x = MsgCreateDogResponse{} if protoimpl.UnsafeEnabled { - mi := &file_tx_proto_msgTypes[1] + mi := &file_testpb_tx_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1421,7 +1421,7 @@ func (*MsgCreateDogResponse) ProtoMessage() {} // Deprecated: Use MsgCreateDogResponse.ProtoReflect.Descriptor instead. func (*MsgCreateDogResponse) Descriptor() ([]byte, []int) { - return file_tx_proto_rawDescGZIP(), []int{1} + return file_testpb_tx_proto_rawDescGZIP(), []int{1} } func (x *MsgCreateDogResponse) GetName() string { @@ -1444,7 +1444,7 @@ type TestMsg struct { func (x *TestMsg) Reset() { *x = TestMsg{} if protoimpl.UnsafeEnabled { - mi := &file_tx_proto_msgTypes[2] + mi := &file_testpb_tx_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1458,7 +1458,7 @@ func (*TestMsg) ProtoMessage() {} // Deprecated: Use TestMsg.ProtoReflect.Descriptor instead. func (*TestMsg) Descriptor() ([]byte, []int) { - return file_tx_proto_rawDescGZIP(), []int{2} + return file_testpb_tx_proto_rawDescGZIP(), []int{2} } func (x *TestMsg) GetSigners() []string { @@ -1468,61 +1468,61 @@ func (x *TestMsg) GetSigners() []string { return nil } -var File_tx_proto protoreflect.FileDescriptor - -var file_tx_proto_rawDesc = []byte{ - 0x0a, 0x08, 0x74, 0x78, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x08, 0x74, 0x65, 0x73, 0x74, - 0x64, 0x61, 0x74, 0x61, 0x1a, 0x14, 0x67, 0x6f, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, - 0x67, 0x6f, 0x67, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x0e, 0x74, 0x65, 0x73, 0x74, - 0x64, 0x61, 0x74, 0x61, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x2f, 0x0a, 0x0c, 0x4d, 0x73, - 0x67, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x44, 0x6f, 0x67, 0x12, 0x1f, 0x0a, 0x03, 0x64, 0x6f, - 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, - 0x74, 0x61, 0x2e, 0x44, 0x6f, 0x67, 0x52, 0x03, 0x64, 0x6f, 0x67, 0x22, 0x2a, 0x0a, 0x14, 0x4d, - 0x73, 0x67, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x44, 0x6f, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, - 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x29, 0x0a, 0x07, 0x54, 0x65, 0x73, 0x74, 0x4d, - 0x73, 0x67, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x69, 0x67, 0x6e, 0x65, 0x72, 0x73, 0x18, 0x01, 0x20, - 0x03, 0x28, 0x09, 0x52, 0x07, 0x73, 0x69, 0x67, 0x6e, 0x65, 0x72, 0x73, 0x3a, 0x04, 0x88, 0xa0, - 0x1f, 0x00, 0x32, 0x4a, 0x0a, 0x03, 0x4d, 0x73, 0x67, 0x12, 0x43, 0x0a, 0x09, 0x43, 0x72, 0x65, - 0x61, 0x74, 0x65, 0x44, 0x6f, 0x67, 0x12, 0x16, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, - 0x61, 0x2e, 0x4d, 0x73, 0x67, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x44, 0x6f, 0x67, 0x1a, 0x1e, - 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4d, 0x73, 0x67, 0x43, 0x72, 0x65, - 0x61, 0x74, 0x65, 0x44, 0x6f, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x8e, - 0x01, 0x0a, 0x0c, 0x63, 0x6f, 0x6d, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x42, - 0x07, 0x54, 0x78, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x35, 0x67, 0x69, 0x74, 0x68, - 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2f, 0x63, 0x6f, - 0x73, 0x6d, 0x6f, 0x73, 0x2d, 0x73, 0x64, 0x6b, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x75, 0x74, 0x69, - 0x6c, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x70, 0x75, 0x6c, 0x73, 0x61, - 0x72, 0xa2, 0x02, 0x03, 0x54, 0x58, 0x58, 0xaa, 0x02, 0x08, 0x54, 0x65, 0x73, 0x74, 0x64, 0x61, - 0x74, 0x61, 0xca, 0x02, 0x08, 0x54, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0xe2, 0x02, 0x14, - 0x54, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, - 0x64, 0x61, 0x74, 0x61, 0xea, 0x02, 0x08, 0x54, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x62, - 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, +var File_testpb_tx_proto protoreflect.FileDescriptor + +var file_testpb_tx_proto_rawDesc = []byte{ + 0x0a, 0x0f, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2f, 0x74, 0x78, 0x2e, 0x70, 0x72, 0x6f, 0x74, + 0x6f, 0x12, 0x06, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x1a, 0x14, 0x67, 0x6f, 0x67, 0x6f, 0x70, + 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x67, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, + 0x15, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, + 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x2d, 0x0a, 0x0c, 0x4d, 0x73, 0x67, 0x43, 0x72, 0x65, + 0x61, 0x74, 0x65, 0x44, 0x6f, 0x67, 0x12, 0x1d, 0x0a, 0x03, 0x64, 0x6f, 0x67, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, 0x44, 0x6f, 0x67, + 0x52, 0x03, 0x64, 0x6f, 0x67, 0x22, 0x2a, 0x0a, 0x14, 0x4d, 0x73, 0x67, 0x43, 0x72, 0x65, 0x61, + 0x74, 0x65, 0x44, 0x6f, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, + 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, + 0x65, 0x22, 0x29, 0x0a, 0x07, 0x54, 0x65, 0x73, 0x74, 0x4d, 0x73, 0x67, 0x12, 0x18, 0x0a, 0x07, + 0x73, 0x69, 0x67, 0x6e, 0x65, 0x72, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x73, + 0x69, 0x67, 0x6e, 0x65, 0x72, 0x73, 0x3a, 0x04, 0x88, 0xa0, 0x1f, 0x00, 0x32, 0x46, 0x0a, 0x03, + 0x4d, 0x73, 0x67, 0x12, 0x3f, 0x0a, 0x09, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x44, 0x6f, 0x67, + 0x12, 0x14, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, 0x4d, 0x73, 0x67, 0x43, 0x72, 0x65, + 0x61, 0x74, 0x65, 0x44, 0x6f, 0x67, 0x1a, 0x1c, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, + 0x4d, 0x73, 0x67, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x44, 0x6f, 0x67, 0x52, 0x65, 0x73, 0x70, + 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x8b, 0x01, 0x0a, 0x0a, 0x63, 0x6f, 0x6d, 0x2e, 0x74, 0x65, 0x73, + 0x74, 0x70, 0x62, 0x42, 0x07, 0x54, 0x78, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x3c, + 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x73, 0x6d, 0x6f, + 0x73, 0x2f, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2d, 0x73, 0x64, 0x6b, 0x2f, 0x74, 0x65, 0x73, + 0x74, 0x75, 0x74, 0x69, 0x6c, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x70, + 0x75, 0x6c, 0x73, 0x61, 0x72, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0xa2, 0x02, 0x03, 0x54, + 0x58, 0x58, 0xaa, 0x02, 0x06, 0x54, 0x65, 0x73, 0x74, 0x70, 0x62, 0xca, 0x02, 0x06, 0x54, 0x65, + 0x73, 0x74, 0x70, 0x62, 0xe2, 0x02, 0x12, 0x54, 0x65, 0x73, 0x74, 0x70, 0x62, 0x5c, 0x47, 0x50, + 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0xea, 0x02, 0x06, 0x54, 0x65, 0x73, 0x74, + 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_tx_proto_rawDescOnce sync.Once - file_tx_proto_rawDescData = file_tx_proto_rawDesc + file_testpb_tx_proto_rawDescOnce sync.Once + file_testpb_tx_proto_rawDescData = file_testpb_tx_proto_rawDesc ) -func file_tx_proto_rawDescGZIP() []byte { - file_tx_proto_rawDescOnce.Do(func() { - file_tx_proto_rawDescData = protoimpl.X.CompressGZIP(file_tx_proto_rawDescData) +func file_testpb_tx_proto_rawDescGZIP() []byte { + file_testpb_tx_proto_rawDescOnce.Do(func() { + file_testpb_tx_proto_rawDescData = protoimpl.X.CompressGZIP(file_testpb_tx_proto_rawDescData) }) - return file_tx_proto_rawDescData + return file_testpb_tx_proto_rawDescData } -var file_tx_proto_msgTypes = make([]protoimpl.MessageInfo, 3) -var file_tx_proto_goTypes = []interface{}{ - (*MsgCreateDog)(nil), // 0: testdata.MsgCreateDog - (*MsgCreateDogResponse)(nil), // 1: testdata.MsgCreateDogResponse - (*TestMsg)(nil), // 2: testdata.TestMsg - (*Dog)(nil), // 3: testdata.Dog +var file_testpb_tx_proto_msgTypes = make([]protoimpl.MessageInfo, 3) +var file_testpb_tx_proto_goTypes = []interface{}{ + (*MsgCreateDog)(nil), // 0: testpb.MsgCreateDog + (*MsgCreateDogResponse)(nil), // 1: testpb.MsgCreateDogResponse + (*TestMsg)(nil), // 2: testpb.TestMsg + (*Dog)(nil), // 3: testpb.Dog } -var file_tx_proto_depIdxs = []int32{ - 3, // 0: testdata.MsgCreateDog.dog:type_name -> testdata.Dog - 0, // 1: testdata.Msg.CreateDog:input_type -> testdata.MsgCreateDog - 1, // 2: testdata.Msg.CreateDog:output_type -> testdata.MsgCreateDogResponse +var file_testpb_tx_proto_depIdxs = []int32{ + 3, // 0: testpb.MsgCreateDog.dog:type_name -> testpb.Dog + 0, // 1: testpb.Msg.CreateDog:input_type -> testpb.MsgCreateDog + 1, // 2: testpb.Msg.CreateDog:output_type -> testpb.MsgCreateDogResponse 2, // [2:3] is the sub-list for method output_type 1, // [1:2] is the sub-list for method input_type 1, // [1:1] is the sub-list for extension type_name @@ -1530,14 +1530,14 @@ var file_tx_proto_depIdxs = []int32{ 0, // [0:1] is the sub-list for field type_name } -func init() { file_tx_proto_init() } -func file_tx_proto_init() { - if File_tx_proto != nil { +func init() { file_testpb_tx_proto_init() } +func file_testpb_tx_proto_init() { + if File_testpb_tx_proto != nil { return } - file_testdata_proto_init() + file_testpb_testdata_proto_init() if !protoimpl.UnsafeEnabled { - file_tx_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_testpb_tx_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MsgCreateDog); i { case 0: return &v.state @@ -1549,7 +1549,7 @@ func file_tx_proto_init() { return nil } } - file_tx_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_testpb_tx_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MsgCreateDogResponse); i { case 0: return &v.state @@ -1561,7 +1561,7 @@ func file_tx_proto_init() { return nil } } - file_tx_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_testpb_tx_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*TestMsg); i { case 0: return &v.state @@ -1578,18 +1578,18 @@ func file_tx_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_tx_proto_rawDesc, + RawDescriptor: file_testpb_tx_proto_rawDesc, NumEnums: 0, NumMessages: 3, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_tx_proto_goTypes, - DependencyIndexes: file_tx_proto_depIdxs, - MessageInfos: file_tx_proto_msgTypes, + GoTypes: file_testpb_tx_proto_goTypes, + DependencyIndexes: file_testpb_tx_proto_depIdxs, + MessageInfos: file_testpb_tx_proto_msgTypes, }.Build() - File_tx_proto = out.File - file_tx_proto_rawDesc = nil - file_tx_proto_goTypes = nil - file_tx_proto_depIdxs = nil + File_testpb_tx_proto = out.File + file_testpb_tx_proto_rawDesc = nil + file_testpb_tx_proto_goTypes = nil + file_testpb_tx_proto_depIdxs = nil } diff --git a/testutil/testdata_pulsar/tx_grpc.pb.go b/testutil/testdata/testpb/tx_grpc.pb.go similarity index 93% rename from testutil/testdata_pulsar/tx_grpc.pb.go rename to testutil/testdata/testpb/tx_grpc.pb.go index 781e3c93e5c8..8c37b77f56e5 100644 --- a/testutil/testdata_pulsar/tx_grpc.pb.go +++ b/testutil/testdata/testpb/tx_grpc.pb.go @@ -2,9 +2,9 @@ // versions: // - protoc-gen-go-grpc v1.2.0 // - protoc (unknown) -// source: tx.proto +// source: testpb/tx.proto -package testdata_pulsar +package testpb import ( context "context" @@ -35,7 +35,7 @@ func NewMsgClient(cc grpc.ClientConnInterface) MsgClient { func (c *msgClient) CreateDog(ctx context.Context, in *MsgCreateDog, opts ...grpc.CallOption) (*MsgCreateDogResponse, error) { out := new(MsgCreateDogResponse) - err := c.cc.Invoke(ctx, "/testdata.Msg/CreateDog", in, out, opts...) + err := c.cc.Invoke(ctx, "/testpb.Msg/CreateDog", in, out, opts...) if err != nil { return nil, err } @@ -80,7 +80,7 @@ func _Msg_CreateDog_Handler(srv interface{}, ctx context.Context, dec func(inter } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/testdata.Msg/CreateDog", + FullMethod: "/testpb.Msg/CreateDog", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).CreateDog(ctx, req.(*MsgCreateDog)) @@ -92,7 +92,7 @@ func _Msg_CreateDog_Handler(srv interface{}, ctx context.Context, dec func(inter // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var Msg_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "testdata.Msg", + ServiceName: "testpb.Msg", HandlerType: (*MsgServer)(nil), Methods: []grpc.MethodDesc{ { @@ -101,5 +101,5 @@ var Msg_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "tx.proto", + Metadata: "testpb/tx.proto", } diff --git a/testutil/testdata/unknonwnproto.proto b/testutil/testdata/testpb/unknonwnproto.proto similarity index 99% rename from testutil/testdata/unknonwnproto.proto rename to testutil/testdata/testpb/unknonwnproto.proto index 7bf1ce6bba71..ac91b9e2a662 100644 --- a/testutil/testdata/unknonwnproto.proto +++ b/testutil/testdata/testpb/unknonwnproto.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package testdata; +package testpb; import "gogoproto/gogo.proto"; import "google/protobuf/any.proto"; diff --git a/testutil/testdata_pulsar/unknonwnproto.pulsar.go b/testutil/testdata/testpb/unknonwnproto.pulsar.go similarity index 86% rename from testutil/testdata_pulsar/unknonwnproto.pulsar.go rename to testutil/testdata/testpb/unknonwnproto.pulsar.go index 9ef41ed607bc..84dbe6fbdb53 100644 --- a/testutil/testdata_pulsar/unknonwnproto.pulsar.go +++ b/testutil/testdata/testpb/unknonwnproto.pulsar.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go-pulsar. DO NOT EDIT. -package testdata_pulsar +package testpb import ( v1beta1 "cosmossdk.io/api/cosmos/tx/v1beta1" @@ -27,8 +27,8 @@ var ( ) func init() { - file_unknonwnproto_proto_init() - md_Customer1 = File_unknonwnproto_proto.Messages().ByName("Customer1") + file_testpb_unknonwnproto_proto_init() + md_Customer1 = File_testpb_unknonwnproto_proto.Messages().ByName("Customer1") fd_Customer1_id = md_Customer1.Fields().ByName("id") fd_Customer1_name = md_Customer1.Fields().ByName("name") fd_Customer1_subscription_fee = md_Customer1.Fields().ByName("subscription_fee") @@ -44,7 +44,7 @@ func (x *Customer1) ProtoReflect() protoreflect.Message { } func (x *Customer1) slowProtoReflect() protoreflect.Message { - mi := &file_unknonwnproto_proto_msgTypes[0] + mi := &file_testpb_unknonwnproto_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -139,19 +139,19 @@ func (x *fastReflection_Customer1) Range(f func(protoreflect.FieldDescriptor, pr // a repeated field is populated if it is non-empty. func (x *fastReflection_Customer1) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.Customer1.id": + case "testpb.Customer1.id": return x.Id != int32(0) - case "testdata.Customer1.name": + case "testpb.Customer1.name": return x.Name != "" - case "testdata.Customer1.subscription_fee": + case "testpb.Customer1.subscription_fee": return x.SubscriptionFee != float32(0) || math.Signbit(float64(x.SubscriptionFee)) - case "testdata.Customer1.payment": + case "testpb.Customer1.payment": return x.Payment != "" default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Customer1")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Customer1")) } - panic(fmt.Errorf("message testdata.Customer1 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Customer1 does not contain field %s", fd.FullName())) } } @@ -163,19 +163,19 @@ func (x *fastReflection_Customer1) Has(fd protoreflect.FieldDescriptor) bool { // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Customer1) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.Customer1.id": + case "testpb.Customer1.id": x.Id = int32(0) - case "testdata.Customer1.name": + case "testpb.Customer1.name": x.Name = "" - case "testdata.Customer1.subscription_fee": + case "testpb.Customer1.subscription_fee": x.SubscriptionFee = float32(0) - case "testdata.Customer1.payment": + case "testpb.Customer1.payment": x.Payment = "" default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Customer1")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Customer1")) } - panic(fmt.Errorf("message testdata.Customer1 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Customer1 does not contain field %s", fd.FullName())) } } @@ -187,23 +187,23 @@ func (x *fastReflection_Customer1) Clear(fd protoreflect.FieldDescriptor) { // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_Customer1) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.Customer1.id": + case "testpb.Customer1.id": value := x.Id return protoreflect.ValueOfInt32(value) - case "testdata.Customer1.name": + case "testpb.Customer1.name": value := x.Name return protoreflect.ValueOfString(value) - case "testdata.Customer1.subscription_fee": + case "testpb.Customer1.subscription_fee": value := x.SubscriptionFee return protoreflect.ValueOfFloat32(value) - case "testdata.Customer1.payment": + case "testpb.Customer1.payment": value := x.Payment return protoreflect.ValueOfString(value) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Customer1")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Customer1")) } - panic(fmt.Errorf("message testdata.Customer1 does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.Customer1 does not contain field %s", descriptor.FullName())) } } @@ -219,19 +219,19 @@ func (x *fastReflection_Customer1) Get(descriptor protoreflect.FieldDescriptor) // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Customer1) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.Customer1.id": + case "testpb.Customer1.id": x.Id = int32(value.Int()) - case "testdata.Customer1.name": + case "testpb.Customer1.name": x.Name = value.Interface().(string) - case "testdata.Customer1.subscription_fee": + case "testpb.Customer1.subscription_fee": x.SubscriptionFee = float32(value.Float()) - case "testdata.Customer1.payment": + case "testpb.Customer1.payment": x.Payment = value.Interface().(string) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Customer1")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Customer1")) } - panic(fmt.Errorf("message testdata.Customer1 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Customer1 does not contain field %s", fd.FullName())) } } @@ -247,19 +247,19 @@ func (x *fastReflection_Customer1) Set(fd protoreflect.FieldDescriptor, value pr // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Customer1) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.Customer1.id": - panic(fmt.Errorf("field id of message testdata.Customer1 is not mutable")) - case "testdata.Customer1.name": - panic(fmt.Errorf("field name of message testdata.Customer1 is not mutable")) - case "testdata.Customer1.subscription_fee": - panic(fmt.Errorf("field subscription_fee of message testdata.Customer1 is not mutable")) - case "testdata.Customer1.payment": - panic(fmt.Errorf("field payment of message testdata.Customer1 is not mutable")) + case "testpb.Customer1.id": + panic(fmt.Errorf("field id of message testpb.Customer1 is not mutable")) + case "testpb.Customer1.name": + panic(fmt.Errorf("field name of message testpb.Customer1 is not mutable")) + case "testpb.Customer1.subscription_fee": + panic(fmt.Errorf("field subscription_fee of message testpb.Customer1 is not mutable")) + case "testpb.Customer1.payment": + panic(fmt.Errorf("field payment of message testpb.Customer1 is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Customer1")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Customer1")) } - panic(fmt.Errorf("message testdata.Customer1 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Customer1 does not contain field %s", fd.FullName())) } } @@ -268,19 +268,19 @@ func (x *fastReflection_Customer1) Mutable(fd protoreflect.FieldDescriptor) prot // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_Customer1) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.Customer1.id": + case "testpb.Customer1.id": return protoreflect.ValueOfInt32(int32(0)) - case "testdata.Customer1.name": + case "testpb.Customer1.name": return protoreflect.ValueOfString("") - case "testdata.Customer1.subscription_fee": + case "testpb.Customer1.subscription_fee": return protoreflect.ValueOfFloat32(float32(0)) - case "testdata.Customer1.payment": + case "testpb.Customer1.payment": return protoreflect.ValueOfString("") default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Customer1")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Customer1")) } - panic(fmt.Errorf("message testdata.Customer1 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Customer1 does not contain field %s", fd.FullName())) } } @@ -290,7 +290,7 @@ func (x *fastReflection_Customer1) NewField(fd protoreflect.FieldDescriptor) pro func (x *fastReflection_Customer1) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in testdata.Customer1", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.Customer1", d.FullName())) } panic("unreachable") } @@ -603,8 +603,8 @@ var ( ) func init() { - file_unknonwnproto_proto_init() - md_Customer2 = File_unknonwnproto_proto.Messages().ByName("Customer2") + file_testpb_unknonwnproto_proto_init() + md_Customer2 = File_testpb_unknonwnproto_proto.Messages().ByName("Customer2") fd_Customer2_id = md_Customer2.Fields().ByName("id") fd_Customer2_industry = md_Customer2.Fields().ByName("industry") fd_Customer2_name = md_Customer2.Fields().ByName("name") @@ -623,7 +623,7 @@ func (x *Customer2) ProtoReflect() protoreflect.Message { } func (x *Customer2) slowProtoReflect() protoreflect.Message { - mi := &file_unknonwnproto_proto_msgTypes[1] + mi := &file_testpb_unknonwnproto_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -736,25 +736,25 @@ func (x *fastReflection_Customer2) Range(f func(protoreflect.FieldDescriptor, pr // a repeated field is populated if it is non-empty. func (x *fastReflection_Customer2) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.Customer2.id": + case "testpb.Customer2.id": return x.Id != int32(0) - case "testdata.Customer2.industry": + case "testpb.Customer2.industry": return x.Industry != int32(0) - case "testdata.Customer2.name": + case "testpb.Customer2.name": return x.Name != "" - case "testdata.Customer2.fewer": + case "testpb.Customer2.fewer": return x.Fewer != float32(0) || math.Signbit(float64(x.Fewer)) - case "testdata.Customer2.reserved": + case "testpb.Customer2.reserved": return x.Reserved != int64(0) - case "testdata.Customer2.city": + case "testpb.Customer2.city": return x.City != 0 - case "testdata.Customer2.miscellaneous": + case "testpb.Customer2.miscellaneous": return x.Miscellaneous != nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Customer2")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Customer2")) } - panic(fmt.Errorf("message testdata.Customer2 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Customer2 does not contain field %s", fd.FullName())) } } @@ -766,25 +766,25 @@ func (x *fastReflection_Customer2) Has(fd protoreflect.FieldDescriptor) bool { // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Customer2) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.Customer2.id": + case "testpb.Customer2.id": x.Id = int32(0) - case "testdata.Customer2.industry": + case "testpb.Customer2.industry": x.Industry = int32(0) - case "testdata.Customer2.name": + case "testpb.Customer2.name": x.Name = "" - case "testdata.Customer2.fewer": + case "testpb.Customer2.fewer": x.Fewer = float32(0) - case "testdata.Customer2.reserved": + case "testpb.Customer2.reserved": x.Reserved = int64(0) - case "testdata.Customer2.city": + case "testpb.Customer2.city": x.City = 0 - case "testdata.Customer2.miscellaneous": + case "testpb.Customer2.miscellaneous": x.Miscellaneous = nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Customer2")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Customer2")) } - panic(fmt.Errorf("message testdata.Customer2 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Customer2 does not contain field %s", fd.FullName())) } } @@ -796,32 +796,32 @@ func (x *fastReflection_Customer2) Clear(fd protoreflect.FieldDescriptor) { // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_Customer2) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.Customer2.id": + case "testpb.Customer2.id": value := x.Id return protoreflect.ValueOfInt32(value) - case "testdata.Customer2.industry": + case "testpb.Customer2.industry": value := x.Industry return protoreflect.ValueOfInt32(value) - case "testdata.Customer2.name": + case "testpb.Customer2.name": value := x.Name return protoreflect.ValueOfString(value) - case "testdata.Customer2.fewer": + case "testpb.Customer2.fewer": value := x.Fewer return protoreflect.ValueOfFloat32(value) - case "testdata.Customer2.reserved": + case "testpb.Customer2.reserved": value := x.Reserved return protoreflect.ValueOfInt64(value) - case "testdata.Customer2.city": + case "testpb.Customer2.city": value := x.City return protoreflect.ValueOfEnum((protoreflect.EnumNumber)(value)) - case "testdata.Customer2.miscellaneous": + case "testpb.Customer2.miscellaneous": value := x.Miscellaneous return protoreflect.ValueOfMessage(value.ProtoReflect()) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Customer2")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Customer2")) } - panic(fmt.Errorf("message testdata.Customer2 does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.Customer2 does not contain field %s", descriptor.FullName())) } } @@ -837,25 +837,25 @@ func (x *fastReflection_Customer2) Get(descriptor protoreflect.FieldDescriptor) // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Customer2) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.Customer2.id": + case "testpb.Customer2.id": x.Id = int32(value.Int()) - case "testdata.Customer2.industry": + case "testpb.Customer2.industry": x.Industry = int32(value.Int()) - case "testdata.Customer2.name": + case "testpb.Customer2.name": x.Name = value.Interface().(string) - case "testdata.Customer2.fewer": + case "testpb.Customer2.fewer": x.Fewer = float32(value.Float()) - case "testdata.Customer2.reserved": + case "testpb.Customer2.reserved": x.Reserved = value.Int() - case "testdata.Customer2.city": + case "testpb.Customer2.city": x.City = (Customer2_City)(value.Enum()) - case "testdata.Customer2.miscellaneous": + case "testpb.Customer2.miscellaneous": x.Miscellaneous = value.Message().Interface().(*anypb.Any) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Customer2")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Customer2")) } - panic(fmt.Errorf("message testdata.Customer2 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Customer2 does not contain field %s", fd.FullName())) } } @@ -871,28 +871,28 @@ func (x *fastReflection_Customer2) Set(fd protoreflect.FieldDescriptor, value pr // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Customer2) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.Customer2.miscellaneous": + case "testpb.Customer2.miscellaneous": if x.Miscellaneous == nil { x.Miscellaneous = new(anypb.Any) } return protoreflect.ValueOfMessage(x.Miscellaneous.ProtoReflect()) - case "testdata.Customer2.id": - panic(fmt.Errorf("field id of message testdata.Customer2 is not mutable")) - case "testdata.Customer2.industry": - panic(fmt.Errorf("field industry of message testdata.Customer2 is not mutable")) - case "testdata.Customer2.name": - panic(fmt.Errorf("field name of message testdata.Customer2 is not mutable")) - case "testdata.Customer2.fewer": - panic(fmt.Errorf("field fewer of message testdata.Customer2 is not mutable")) - case "testdata.Customer2.reserved": - panic(fmt.Errorf("field reserved of message testdata.Customer2 is not mutable")) - case "testdata.Customer2.city": - panic(fmt.Errorf("field city of message testdata.Customer2 is not mutable")) + case "testpb.Customer2.id": + panic(fmt.Errorf("field id of message testpb.Customer2 is not mutable")) + case "testpb.Customer2.industry": + panic(fmt.Errorf("field industry of message testpb.Customer2 is not mutable")) + case "testpb.Customer2.name": + panic(fmt.Errorf("field name of message testpb.Customer2 is not mutable")) + case "testpb.Customer2.fewer": + panic(fmt.Errorf("field fewer of message testpb.Customer2 is not mutable")) + case "testpb.Customer2.reserved": + panic(fmt.Errorf("field reserved of message testpb.Customer2 is not mutable")) + case "testpb.Customer2.city": + panic(fmt.Errorf("field city of message testpb.Customer2 is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Customer2")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Customer2")) } - panic(fmt.Errorf("message testdata.Customer2 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Customer2 does not contain field %s", fd.FullName())) } } @@ -901,26 +901,26 @@ func (x *fastReflection_Customer2) Mutable(fd protoreflect.FieldDescriptor) prot // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_Customer2) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.Customer2.id": + case "testpb.Customer2.id": return protoreflect.ValueOfInt32(int32(0)) - case "testdata.Customer2.industry": + case "testpb.Customer2.industry": return protoreflect.ValueOfInt32(int32(0)) - case "testdata.Customer2.name": + case "testpb.Customer2.name": return protoreflect.ValueOfString("") - case "testdata.Customer2.fewer": + case "testpb.Customer2.fewer": return protoreflect.ValueOfFloat32(float32(0)) - case "testdata.Customer2.reserved": + case "testpb.Customer2.reserved": return protoreflect.ValueOfInt64(int64(0)) - case "testdata.Customer2.city": + case "testpb.Customer2.city": return protoreflect.ValueOfEnum(0) - case "testdata.Customer2.miscellaneous": + case "testpb.Customer2.miscellaneous": m := new(anypb.Any) return protoreflect.ValueOfMessage(m.ProtoReflect()) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Customer2")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Customer2")) } - panic(fmt.Errorf("message testdata.Customer2 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Customer2 does not contain field %s", fd.FullName())) } } @@ -930,7 +930,7 @@ func (x *fastReflection_Customer2) NewField(fd protoreflect.FieldDescriptor) pro func (x *fastReflection_Customer2) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in testdata.Customer2", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.Customer2", d.FullName())) } panic("unreachable") } @@ -1332,8 +1332,8 @@ var ( ) func init() { - file_unknonwnproto_proto_init() - md_Nested4A = File_unknonwnproto_proto.Messages().ByName("Nested4A") + file_testpb_unknonwnproto_proto_init() + md_Nested4A = File_testpb_unknonwnproto_proto.Messages().ByName("Nested4A") fd_Nested4A_id = md_Nested4A.Fields().ByName("id") fd_Nested4A_name = md_Nested4A.Fields().ByName("name") } @@ -1347,7 +1347,7 @@ func (x *Nested4A) ProtoReflect() protoreflect.Message { } func (x *Nested4A) slowProtoReflect() protoreflect.Message { - mi := &file_unknonwnproto_proto_msgTypes[2] + mi := &file_testpb_unknonwnproto_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1430,15 +1430,15 @@ func (x *fastReflection_Nested4A) Range(f func(protoreflect.FieldDescriptor, pro // a repeated field is populated if it is non-empty. func (x *fastReflection_Nested4A) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.Nested4A.id": + case "testpb.Nested4A.id": return x.Id != int32(0) - case "testdata.Nested4A.name": + case "testpb.Nested4A.name": return x.Name != "" default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested4A")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested4A")) } - panic(fmt.Errorf("message testdata.Nested4A does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Nested4A does not contain field %s", fd.FullName())) } } @@ -1450,15 +1450,15 @@ func (x *fastReflection_Nested4A) Has(fd protoreflect.FieldDescriptor) bool { // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Nested4A) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.Nested4A.id": + case "testpb.Nested4A.id": x.Id = int32(0) - case "testdata.Nested4A.name": + case "testpb.Nested4A.name": x.Name = "" default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested4A")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested4A")) } - panic(fmt.Errorf("message testdata.Nested4A does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Nested4A does not contain field %s", fd.FullName())) } } @@ -1470,17 +1470,17 @@ func (x *fastReflection_Nested4A) Clear(fd protoreflect.FieldDescriptor) { // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_Nested4A) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.Nested4A.id": + case "testpb.Nested4A.id": value := x.Id return protoreflect.ValueOfInt32(value) - case "testdata.Nested4A.name": + case "testpb.Nested4A.name": value := x.Name return protoreflect.ValueOfString(value) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested4A")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested4A")) } - panic(fmt.Errorf("message testdata.Nested4A does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.Nested4A does not contain field %s", descriptor.FullName())) } } @@ -1496,15 +1496,15 @@ func (x *fastReflection_Nested4A) Get(descriptor protoreflect.FieldDescriptor) p // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Nested4A) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.Nested4A.id": + case "testpb.Nested4A.id": x.Id = int32(value.Int()) - case "testdata.Nested4A.name": + case "testpb.Nested4A.name": x.Name = value.Interface().(string) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested4A")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested4A")) } - panic(fmt.Errorf("message testdata.Nested4A does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Nested4A does not contain field %s", fd.FullName())) } } @@ -1520,15 +1520,15 @@ func (x *fastReflection_Nested4A) Set(fd protoreflect.FieldDescriptor, value pro // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Nested4A) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.Nested4A.id": - panic(fmt.Errorf("field id of message testdata.Nested4A is not mutable")) - case "testdata.Nested4A.name": - panic(fmt.Errorf("field name of message testdata.Nested4A is not mutable")) + case "testpb.Nested4A.id": + panic(fmt.Errorf("field id of message testpb.Nested4A is not mutable")) + case "testpb.Nested4A.name": + panic(fmt.Errorf("field name of message testpb.Nested4A is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested4A")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested4A")) } - panic(fmt.Errorf("message testdata.Nested4A does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Nested4A does not contain field %s", fd.FullName())) } } @@ -1537,15 +1537,15 @@ func (x *fastReflection_Nested4A) Mutable(fd protoreflect.FieldDescriptor) proto // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_Nested4A) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.Nested4A.id": + case "testpb.Nested4A.id": return protoreflect.ValueOfInt32(int32(0)) - case "testdata.Nested4A.name": + case "testpb.Nested4A.name": return protoreflect.ValueOfString("") default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested4A")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested4A")) } - panic(fmt.Errorf("message testdata.Nested4A does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Nested4A does not contain field %s", fd.FullName())) } } @@ -1555,7 +1555,7 @@ func (x *fastReflection_Nested4A) NewField(fd protoreflect.FieldDescriptor) prot func (x *fastReflection_Nested4A) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in testdata.Nested4A", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.Nested4A", d.FullName())) } panic("unreachable") } @@ -1943,8 +1943,8 @@ var ( ) func init() { - file_unknonwnproto_proto_init() - md_Nested3A = File_unknonwnproto_proto.Messages().ByName("Nested3A") + file_testpb_unknonwnproto_proto_init() + md_Nested3A = File_testpb_unknonwnproto_proto.Messages().ByName("Nested3A") fd_Nested3A_id = md_Nested3A.Fields().ByName("id") fd_Nested3A_name = md_Nested3A.Fields().ByName("name") fd_Nested3A_a4 = md_Nested3A.Fields().ByName("a4") @@ -1960,7 +1960,7 @@ func (x *Nested3A) ProtoReflect() protoreflect.Message { } func (x *Nested3A) slowProtoReflect() protoreflect.Message { - mi := &file_unknonwnproto_proto_msgTypes[3] + mi := &file_testpb_unknonwnproto_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2055,19 +2055,19 @@ func (x *fastReflection_Nested3A) Range(f func(protoreflect.FieldDescriptor, pro // a repeated field is populated if it is non-empty. func (x *fastReflection_Nested3A) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.Nested3A.id": + case "testpb.Nested3A.id": return x.Id != int32(0) - case "testdata.Nested3A.name": + case "testpb.Nested3A.name": return x.Name != "" - case "testdata.Nested3A.a4": + case "testpb.Nested3A.a4": return len(x.A4) != 0 - case "testdata.Nested3A.index": + case "testpb.Nested3A.index": return len(x.Index) != 0 default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested3A")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested3A")) } - panic(fmt.Errorf("message testdata.Nested3A does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Nested3A does not contain field %s", fd.FullName())) } } @@ -2079,19 +2079,19 @@ func (x *fastReflection_Nested3A) Has(fd protoreflect.FieldDescriptor) bool { // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Nested3A) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.Nested3A.id": + case "testpb.Nested3A.id": x.Id = int32(0) - case "testdata.Nested3A.name": + case "testpb.Nested3A.name": x.Name = "" - case "testdata.Nested3A.a4": + case "testpb.Nested3A.a4": x.A4 = nil - case "testdata.Nested3A.index": + case "testpb.Nested3A.index": x.Index = nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested3A")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested3A")) } - panic(fmt.Errorf("message testdata.Nested3A does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Nested3A does not contain field %s", fd.FullName())) } } @@ -2103,19 +2103,19 @@ func (x *fastReflection_Nested3A) Clear(fd protoreflect.FieldDescriptor) { // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_Nested3A) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.Nested3A.id": + case "testpb.Nested3A.id": value := x.Id return protoreflect.ValueOfInt32(value) - case "testdata.Nested3A.name": + case "testpb.Nested3A.name": value := x.Name return protoreflect.ValueOfString(value) - case "testdata.Nested3A.a4": + case "testpb.Nested3A.a4": if len(x.A4) == 0 { return protoreflect.ValueOfList(&_Nested3A_4_list{}) } listValue := &_Nested3A_4_list{list: &x.A4} return protoreflect.ValueOfList(listValue) - case "testdata.Nested3A.index": + case "testpb.Nested3A.index": if len(x.Index) == 0 { return protoreflect.ValueOfMap(&_Nested3A_5_map{}) } @@ -2123,9 +2123,9 @@ func (x *fastReflection_Nested3A) Get(descriptor protoreflect.FieldDescriptor) p return protoreflect.ValueOfMap(mapValue) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested3A")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested3A")) } - panic(fmt.Errorf("message testdata.Nested3A does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.Nested3A does not contain field %s", descriptor.FullName())) } } @@ -2141,23 +2141,23 @@ func (x *fastReflection_Nested3A) Get(descriptor protoreflect.FieldDescriptor) p // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Nested3A) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.Nested3A.id": + case "testpb.Nested3A.id": x.Id = int32(value.Int()) - case "testdata.Nested3A.name": + case "testpb.Nested3A.name": x.Name = value.Interface().(string) - case "testdata.Nested3A.a4": + case "testpb.Nested3A.a4": lv := value.List() clv := lv.(*_Nested3A_4_list) x.A4 = *clv.list - case "testdata.Nested3A.index": + case "testpb.Nested3A.index": mv := value.Map() cmv := mv.(*_Nested3A_5_map) x.Index = *cmv.m default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested3A")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested3A")) } - panic(fmt.Errorf("message testdata.Nested3A does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Nested3A does not contain field %s", fd.FullName())) } } @@ -2173,27 +2173,27 @@ func (x *fastReflection_Nested3A) Set(fd protoreflect.FieldDescriptor, value pro // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Nested3A) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.Nested3A.a4": + case "testpb.Nested3A.a4": if x.A4 == nil { x.A4 = []*Nested4A{} } value := &_Nested3A_4_list{list: &x.A4} return protoreflect.ValueOfList(value) - case "testdata.Nested3A.index": + case "testpb.Nested3A.index": if x.Index == nil { x.Index = make(map[int64]*Nested4A) } value := &_Nested3A_5_map{m: &x.Index} return protoreflect.ValueOfMap(value) - case "testdata.Nested3A.id": - panic(fmt.Errorf("field id of message testdata.Nested3A is not mutable")) - case "testdata.Nested3A.name": - panic(fmt.Errorf("field name of message testdata.Nested3A is not mutable")) + case "testpb.Nested3A.id": + panic(fmt.Errorf("field id of message testpb.Nested3A is not mutable")) + case "testpb.Nested3A.name": + panic(fmt.Errorf("field name of message testpb.Nested3A is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested3A")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested3A")) } - panic(fmt.Errorf("message testdata.Nested3A does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Nested3A does not contain field %s", fd.FullName())) } } @@ -2202,21 +2202,21 @@ func (x *fastReflection_Nested3A) Mutable(fd protoreflect.FieldDescriptor) proto // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_Nested3A) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.Nested3A.id": + case "testpb.Nested3A.id": return protoreflect.ValueOfInt32(int32(0)) - case "testdata.Nested3A.name": + case "testpb.Nested3A.name": return protoreflect.ValueOfString("") - case "testdata.Nested3A.a4": + case "testpb.Nested3A.a4": list := []*Nested4A{} return protoreflect.ValueOfList(&_Nested3A_4_list{list: &list}) - case "testdata.Nested3A.index": + case "testpb.Nested3A.index": m := make(map[int64]*Nested4A) return protoreflect.ValueOfMap(&_Nested3A_5_map{m: &m}) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested3A")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested3A")) } - panic(fmt.Errorf("message testdata.Nested3A does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Nested3A does not contain field %s", fd.FullName())) } } @@ -2226,7 +2226,7 @@ func (x *fastReflection_Nested3A) NewField(fd protoreflect.FieldDescriptor) prot func (x *fastReflection_Nested3A) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in testdata.Nested3A", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.Nested3A", d.FullName())) } panic("unreachable") } @@ -2719,8 +2719,8 @@ var ( ) func init() { - file_unknonwnproto_proto_init() - md_Nested2A = File_unknonwnproto_proto.Messages().ByName("Nested2A") + file_testpb_unknonwnproto_proto_init() + md_Nested2A = File_testpb_unknonwnproto_proto.Messages().ByName("Nested2A") fd_Nested2A_id = md_Nested2A.Fields().ByName("id") fd_Nested2A_name = md_Nested2A.Fields().ByName("name") fd_Nested2A_nested = md_Nested2A.Fields().ByName("nested") @@ -2735,7 +2735,7 @@ func (x *Nested2A) ProtoReflect() protoreflect.Message { } func (x *Nested2A) slowProtoReflect() protoreflect.Message { - mi := &file_unknonwnproto_proto_msgTypes[4] + mi := &file_testpb_unknonwnproto_proto_msgTypes[4] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2824,17 +2824,17 @@ func (x *fastReflection_Nested2A) Range(f func(protoreflect.FieldDescriptor, pro // a repeated field is populated if it is non-empty. func (x *fastReflection_Nested2A) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.Nested2A.id": + case "testpb.Nested2A.id": return x.Id != int32(0) - case "testdata.Nested2A.name": + case "testpb.Nested2A.name": return x.Name != "" - case "testdata.Nested2A.nested": + case "testpb.Nested2A.nested": return x.Nested != nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested2A")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested2A")) } - panic(fmt.Errorf("message testdata.Nested2A does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Nested2A does not contain field %s", fd.FullName())) } } @@ -2846,17 +2846,17 @@ func (x *fastReflection_Nested2A) Has(fd protoreflect.FieldDescriptor) bool { // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Nested2A) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.Nested2A.id": + case "testpb.Nested2A.id": x.Id = int32(0) - case "testdata.Nested2A.name": + case "testpb.Nested2A.name": x.Name = "" - case "testdata.Nested2A.nested": + case "testpb.Nested2A.nested": x.Nested = nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested2A")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested2A")) } - panic(fmt.Errorf("message testdata.Nested2A does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Nested2A does not contain field %s", fd.FullName())) } } @@ -2868,20 +2868,20 @@ func (x *fastReflection_Nested2A) Clear(fd protoreflect.FieldDescriptor) { // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_Nested2A) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.Nested2A.id": + case "testpb.Nested2A.id": value := x.Id return protoreflect.ValueOfInt32(value) - case "testdata.Nested2A.name": + case "testpb.Nested2A.name": value := x.Name return protoreflect.ValueOfString(value) - case "testdata.Nested2A.nested": + case "testpb.Nested2A.nested": value := x.Nested return protoreflect.ValueOfMessage(value.ProtoReflect()) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested2A")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested2A")) } - panic(fmt.Errorf("message testdata.Nested2A does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.Nested2A does not contain field %s", descriptor.FullName())) } } @@ -2897,17 +2897,17 @@ func (x *fastReflection_Nested2A) Get(descriptor protoreflect.FieldDescriptor) p // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Nested2A) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.Nested2A.id": + case "testpb.Nested2A.id": x.Id = int32(value.Int()) - case "testdata.Nested2A.name": + case "testpb.Nested2A.name": x.Name = value.Interface().(string) - case "testdata.Nested2A.nested": + case "testpb.Nested2A.nested": x.Nested = value.Message().Interface().(*Nested3A) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested2A")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested2A")) } - panic(fmt.Errorf("message testdata.Nested2A does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Nested2A does not contain field %s", fd.FullName())) } } @@ -2923,20 +2923,20 @@ func (x *fastReflection_Nested2A) Set(fd protoreflect.FieldDescriptor, value pro // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Nested2A) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.Nested2A.nested": + case "testpb.Nested2A.nested": if x.Nested == nil { x.Nested = new(Nested3A) } return protoreflect.ValueOfMessage(x.Nested.ProtoReflect()) - case "testdata.Nested2A.id": - panic(fmt.Errorf("field id of message testdata.Nested2A is not mutable")) - case "testdata.Nested2A.name": - panic(fmt.Errorf("field name of message testdata.Nested2A is not mutable")) + case "testpb.Nested2A.id": + panic(fmt.Errorf("field id of message testpb.Nested2A is not mutable")) + case "testpb.Nested2A.name": + panic(fmt.Errorf("field name of message testpb.Nested2A is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested2A")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested2A")) } - panic(fmt.Errorf("message testdata.Nested2A does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Nested2A does not contain field %s", fd.FullName())) } } @@ -2945,18 +2945,18 @@ func (x *fastReflection_Nested2A) Mutable(fd protoreflect.FieldDescriptor) proto // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_Nested2A) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.Nested2A.id": + case "testpb.Nested2A.id": return protoreflect.ValueOfInt32(int32(0)) - case "testdata.Nested2A.name": + case "testpb.Nested2A.name": return protoreflect.ValueOfString("") - case "testdata.Nested2A.nested": + case "testpb.Nested2A.nested": m := new(Nested3A) return protoreflect.ValueOfMessage(m.ProtoReflect()) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested2A")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested2A")) } - panic(fmt.Errorf("message testdata.Nested2A does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Nested2A does not contain field %s", fd.FullName())) } } @@ -2966,7 +2966,7 @@ func (x *fastReflection_Nested2A) NewField(fd protoreflect.FieldDescriptor) prot func (x *fastReflection_Nested2A) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in testdata.Nested2A", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.Nested2A", d.FullName())) } panic("unreachable") } @@ -3265,8 +3265,8 @@ var ( ) func init() { - file_unknonwnproto_proto_init() - md_Nested1A = File_unknonwnproto_proto.Messages().ByName("Nested1A") + file_testpb_unknonwnproto_proto_init() + md_Nested1A = File_testpb_unknonwnproto_proto.Messages().ByName("Nested1A") fd_Nested1A_id = md_Nested1A.Fields().ByName("id") fd_Nested1A_nested = md_Nested1A.Fields().ByName("nested") } @@ -3280,7 +3280,7 @@ func (x *Nested1A) ProtoReflect() protoreflect.Message { } func (x *Nested1A) slowProtoReflect() protoreflect.Message { - mi := &file_unknonwnproto_proto_msgTypes[5] + mi := &file_testpb_unknonwnproto_proto_msgTypes[5] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3363,15 +3363,15 @@ func (x *fastReflection_Nested1A) Range(f func(protoreflect.FieldDescriptor, pro // a repeated field is populated if it is non-empty. func (x *fastReflection_Nested1A) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.Nested1A.id": + case "testpb.Nested1A.id": return x.Id != int32(0) - case "testdata.Nested1A.nested": + case "testpb.Nested1A.nested": return x.Nested != nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested1A")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested1A")) } - panic(fmt.Errorf("message testdata.Nested1A does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Nested1A does not contain field %s", fd.FullName())) } } @@ -3383,15 +3383,15 @@ func (x *fastReflection_Nested1A) Has(fd protoreflect.FieldDescriptor) bool { // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Nested1A) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.Nested1A.id": + case "testpb.Nested1A.id": x.Id = int32(0) - case "testdata.Nested1A.nested": + case "testpb.Nested1A.nested": x.Nested = nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested1A")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested1A")) } - panic(fmt.Errorf("message testdata.Nested1A does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Nested1A does not contain field %s", fd.FullName())) } } @@ -3403,17 +3403,17 @@ func (x *fastReflection_Nested1A) Clear(fd protoreflect.FieldDescriptor) { // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_Nested1A) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.Nested1A.id": + case "testpb.Nested1A.id": value := x.Id return protoreflect.ValueOfInt32(value) - case "testdata.Nested1A.nested": + case "testpb.Nested1A.nested": value := x.Nested return protoreflect.ValueOfMessage(value.ProtoReflect()) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested1A")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested1A")) } - panic(fmt.Errorf("message testdata.Nested1A does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.Nested1A does not contain field %s", descriptor.FullName())) } } @@ -3429,15 +3429,15 @@ func (x *fastReflection_Nested1A) Get(descriptor protoreflect.FieldDescriptor) p // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Nested1A) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.Nested1A.id": + case "testpb.Nested1A.id": x.Id = int32(value.Int()) - case "testdata.Nested1A.nested": + case "testpb.Nested1A.nested": x.Nested = value.Message().Interface().(*Nested2A) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested1A")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested1A")) } - panic(fmt.Errorf("message testdata.Nested1A does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Nested1A does not contain field %s", fd.FullName())) } } @@ -3453,18 +3453,18 @@ func (x *fastReflection_Nested1A) Set(fd protoreflect.FieldDescriptor, value pro // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Nested1A) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.Nested1A.nested": + case "testpb.Nested1A.nested": if x.Nested == nil { x.Nested = new(Nested2A) } return protoreflect.ValueOfMessage(x.Nested.ProtoReflect()) - case "testdata.Nested1A.id": - panic(fmt.Errorf("field id of message testdata.Nested1A is not mutable")) + case "testpb.Nested1A.id": + panic(fmt.Errorf("field id of message testpb.Nested1A is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested1A")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested1A")) } - panic(fmt.Errorf("message testdata.Nested1A does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Nested1A does not contain field %s", fd.FullName())) } } @@ -3473,16 +3473,16 @@ func (x *fastReflection_Nested1A) Mutable(fd protoreflect.FieldDescriptor) proto // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_Nested1A) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.Nested1A.id": + case "testpb.Nested1A.id": return protoreflect.ValueOfInt32(int32(0)) - case "testdata.Nested1A.nested": + case "testpb.Nested1A.nested": m := new(Nested2A) return protoreflect.ValueOfMessage(m.ProtoReflect()) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested1A")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested1A")) } - panic(fmt.Errorf("message testdata.Nested1A does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Nested1A does not contain field %s", fd.FullName())) } } @@ -3492,7 +3492,7 @@ func (x *fastReflection_Nested1A) NewField(fd protoreflect.FieldDescriptor) prot func (x *fastReflection_Nested1A) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in testdata.Nested1A", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.Nested1A", d.FullName())) } panic("unreachable") } @@ -3749,8 +3749,8 @@ var ( ) func init() { - file_unknonwnproto_proto_init() - md_Nested4B = File_unknonwnproto_proto.Messages().ByName("Nested4B") + file_testpb_unknonwnproto_proto_init() + md_Nested4B = File_testpb_unknonwnproto_proto.Messages().ByName("Nested4B") fd_Nested4B_id = md_Nested4B.Fields().ByName("id") fd_Nested4B_age = md_Nested4B.Fields().ByName("age") fd_Nested4B_name = md_Nested4B.Fields().ByName("name") @@ -3765,7 +3765,7 @@ func (x *Nested4B) ProtoReflect() protoreflect.Message { } func (x *Nested4B) slowProtoReflect() protoreflect.Message { - mi := &file_unknonwnproto_proto_msgTypes[6] + mi := &file_testpb_unknonwnproto_proto_msgTypes[6] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3854,17 +3854,17 @@ func (x *fastReflection_Nested4B) Range(f func(protoreflect.FieldDescriptor, pro // a repeated field is populated if it is non-empty. func (x *fastReflection_Nested4B) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.Nested4B.id": + case "testpb.Nested4B.id": return x.Id != int32(0) - case "testdata.Nested4B.age": + case "testpb.Nested4B.age": return x.Age != int32(0) - case "testdata.Nested4B.name": + case "testpb.Nested4B.name": return x.Name != "" default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested4B")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested4B")) } - panic(fmt.Errorf("message testdata.Nested4B does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Nested4B does not contain field %s", fd.FullName())) } } @@ -3876,17 +3876,17 @@ func (x *fastReflection_Nested4B) Has(fd protoreflect.FieldDescriptor) bool { // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Nested4B) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.Nested4B.id": + case "testpb.Nested4B.id": x.Id = int32(0) - case "testdata.Nested4B.age": + case "testpb.Nested4B.age": x.Age = int32(0) - case "testdata.Nested4B.name": + case "testpb.Nested4B.name": x.Name = "" default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested4B")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested4B")) } - panic(fmt.Errorf("message testdata.Nested4B does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Nested4B does not contain field %s", fd.FullName())) } } @@ -3898,20 +3898,20 @@ func (x *fastReflection_Nested4B) Clear(fd protoreflect.FieldDescriptor) { // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_Nested4B) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.Nested4B.id": + case "testpb.Nested4B.id": value := x.Id return protoreflect.ValueOfInt32(value) - case "testdata.Nested4B.age": + case "testpb.Nested4B.age": value := x.Age return protoreflect.ValueOfInt32(value) - case "testdata.Nested4B.name": + case "testpb.Nested4B.name": value := x.Name return protoreflect.ValueOfString(value) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested4B")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested4B")) } - panic(fmt.Errorf("message testdata.Nested4B does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.Nested4B does not contain field %s", descriptor.FullName())) } } @@ -3927,17 +3927,17 @@ func (x *fastReflection_Nested4B) Get(descriptor protoreflect.FieldDescriptor) p // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Nested4B) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.Nested4B.id": + case "testpb.Nested4B.id": x.Id = int32(value.Int()) - case "testdata.Nested4B.age": + case "testpb.Nested4B.age": x.Age = int32(value.Int()) - case "testdata.Nested4B.name": + case "testpb.Nested4B.name": x.Name = value.Interface().(string) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested4B")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested4B")) } - panic(fmt.Errorf("message testdata.Nested4B does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Nested4B does not contain field %s", fd.FullName())) } } @@ -3953,17 +3953,17 @@ func (x *fastReflection_Nested4B) Set(fd protoreflect.FieldDescriptor, value pro // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Nested4B) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.Nested4B.id": - panic(fmt.Errorf("field id of message testdata.Nested4B is not mutable")) - case "testdata.Nested4B.age": - panic(fmt.Errorf("field age of message testdata.Nested4B is not mutable")) - case "testdata.Nested4B.name": - panic(fmt.Errorf("field name of message testdata.Nested4B is not mutable")) + case "testpb.Nested4B.id": + panic(fmt.Errorf("field id of message testpb.Nested4B is not mutable")) + case "testpb.Nested4B.age": + panic(fmt.Errorf("field age of message testpb.Nested4B is not mutable")) + case "testpb.Nested4B.name": + panic(fmt.Errorf("field name of message testpb.Nested4B is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested4B")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested4B")) } - panic(fmt.Errorf("message testdata.Nested4B does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Nested4B does not contain field %s", fd.FullName())) } } @@ -3972,17 +3972,17 @@ func (x *fastReflection_Nested4B) Mutable(fd protoreflect.FieldDescriptor) proto // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_Nested4B) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.Nested4B.id": + case "testpb.Nested4B.id": return protoreflect.ValueOfInt32(int32(0)) - case "testdata.Nested4B.age": + case "testpb.Nested4B.age": return protoreflect.ValueOfInt32(int32(0)) - case "testdata.Nested4B.name": + case "testpb.Nested4B.name": return protoreflect.ValueOfString("") default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested4B")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested4B")) } - panic(fmt.Errorf("message testdata.Nested4B does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Nested4B does not contain field %s", fd.FullName())) } } @@ -3992,7 +3992,7 @@ func (x *fastReflection_Nested4B) NewField(fd protoreflect.FieldDescriptor) prot func (x *fastReflection_Nested4B) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in testdata.Nested4B", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.Nested4B", d.FullName())) } panic("unreachable") } @@ -4317,8 +4317,8 @@ var ( ) func init() { - file_unknonwnproto_proto_init() - md_Nested3B = File_unknonwnproto_proto.Messages().ByName("Nested3B") + file_testpb_unknonwnproto_proto_init() + md_Nested3B = File_testpb_unknonwnproto_proto.Messages().ByName("Nested3B") fd_Nested3B_id = md_Nested3B.Fields().ByName("id") fd_Nested3B_age = md_Nested3B.Fields().ByName("age") fd_Nested3B_name = md_Nested3B.Fields().ByName("name") @@ -4334,7 +4334,7 @@ func (x *Nested3B) ProtoReflect() protoreflect.Message { } func (x *Nested3B) slowProtoReflect() protoreflect.Message { - mi := &file_unknonwnproto_proto_msgTypes[7] + mi := &file_testpb_unknonwnproto_proto_msgTypes[7] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4429,19 +4429,19 @@ func (x *fastReflection_Nested3B) Range(f func(protoreflect.FieldDescriptor, pro // a repeated field is populated if it is non-empty. func (x *fastReflection_Nested3B) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.Nested3B.id": + case "testpb.Nested3B.id": return x.Id != int32(0) - case "testdata.Nested3B.age": + case "testpb.Nested3B.age": return x.Age != int32(0) - case "testdata.Nested3B.name": + case "testpb.Nested3B.name": return x.Name != "" - case "testdata.Nested3B.b4": + case "testpb.Nested3B.b4": return len(x.B4) != 0 default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested3B")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested3B")) } - panic(fmt.Errorf("message testdata.Nested3B does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Nested3B does not contain field %s", fd.FullName())) } } @@ -4453,19 +4453,19 @@ func (x *fastReflection_Nested3B) Has(fd protoreflect.FieldDescriptor) bool { // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Nested3B) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.Nested3B.id": + case "testpb.Nested3B.id": x.Id = int32(0) - case "testdata.Nested3B.age": + case "testpb.Nested3B.age": x.Age = int32(0) - case "testdata.Nested3B.name": + case "testpb.Nested3B.name": x.Name = "" - case "testdata.Nested3B.b4": + case "testpb.Nested3B.b4": x.B4 = nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested3B")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested3B")) } - panic(fmt.Errorf("message testdata.Nested3B does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Nested3B does not contain field %s", fd.FullName())) } } @@ -4477,16 +4477,16 @@ func (x *fastReflection_Nested3B) Clear(fd protoreflect.FieldDescriptor) { // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_Nested3B) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.Nested3B.id": + case "testpb.Nested3B.id": value := x.Id return protoreflect.ValueOfInt32(value) - case "testdata.Nested3B.age": + case "testpb.Nested3B.age": value := x.Age return protoreflect.ValueOfInt32(value) - case "testdata.Nested3B.name": + case "testpb.Nested3B.name": value := x.Name return protoreflect.ValueOfString(value) - case "testdata.Nested3B.b4": + case "testpb.Nested3B.b4": if len(x.B4) == 0 { return protoreflect.ValueOfList(&_Nested3B_4_list{}) } @@ -4494,9 +4494,9 @@ func (x *fastReflection_Nested3B) Get(descriptor protoreflect.FieldDescriptor) p return protoreflect.ValueOfList(listValue) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested3B")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested3B")) } - panic(fmt.Errorf("message testdata.Nested3B does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.Nested3B does not contain field %s", descriptor.FullName())) } } @@ -4512,21 +4512,21 @@ func (x *fastReflection_Nested3B) Get(descriptor protoreflect.FieldDescriptor) p // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Nested3B) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.Nested3B.id": + case "testpb.Nested3B.id": x.Id = int32(value.Int()) - case "testdata.Nested3B.age": + case "testpb.Nested3B.age": x.Age = int32(value.Int()) - case "testdata.Nested3B.name": + case "testpb.Nested3B.name": x.Name = value.Interface().(string) - case "testdata.Nested3B.b4": + case "testpb.Nested3B.b4": lv := value.List() clv := lv.(*_Nested3B_4_list) x.B4 = *clv.list default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested3B")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested3B")) } - panic(fmt.Errorf("message testdata.Nested3B does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Nested3B does not contain field %s", fd.FullName())) } } @@ -4542,23 +4542,23 @@ func (x *fastReflection_Nested3B) Set(fd protoreflect.FieldDescriptor, value pro // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Nested3B) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.Nested3B.b4": + case "testpb.Nested3B.b4": if x.B4 == nil { x.B4 = []*Nested4B{} } value := &_Nested3B_4_list{list: &x.B4} return protoreflect.ValueOfList(value) - case "testdata.Nested3B.id": - panic(fmt.Errorf("field id of message testdata.Nested3B is not mutable")) - case "testdata.Nested3B.age": - panic(fmt.Errorf("field age of message testdata.Nested3B is not mutable")) - case "testdata.Nested3B.name": - panic(fmt.Errorf("field name of message testdata.Nested3B is not mutable")) + case "testpb.Nested3B.id": + panic(fmt.Errorf("field id of message testpb.Nested3B is not mutable")) + case "testpb.Nested3B.age": + panic(fmt.Errorf("field age of message testpb.Nested3B is not mutable")) + case "testpb.Nested3B.name": + panic(fmt.Errorf("field name of message testpb.Nested3B is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested3B")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested3B")) } - panic(fmt.Errorf("message testdata.Nested3B does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Nested3B does not contain field %s", fd.FullName())) } } @@ -4567,20 +4567,20 @@ func (x *fastReflection_Nested3B) Mutable(fd protoreflect.FieldDescriptor) proto // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_Nested3B) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.Nested3B.id": + case "testpb.Nested3B.id": return protoreflect.ValueOfInt32(int32(0)) - case "testdata.Nested3B.age": + case "testpb.Nested3B.age": return protoreflect.ValueOfInt32(int32(0)) - case "testdata.Nested3B.name": + case "testpb.Nested3B.name": return protoreflect.ValueOfString("") - case "testdata.Nested3B.b4": + case "testpb.Nested3B.b4": list := []*Nested4B{} return protoreflect.ValueOfList(&_Nested3B_4_list{list: &list}) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested3B")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested3B")) } - panic(fmt.Errorf("message testdata.Nested3B does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Nested3B does not contain field %s", fd.FullName())) } } @@ -4590,7 +4590,7 @@ func (x *fastReflection_Nested3B) NewField(fd protoreflect.FieldDescriptor) prot func (x *fastReflection_Nested3B) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in testdata.Nested3B", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.Nested3B", d.FullName())) } panic("unreachable") } @@ -4920,8 +4920,8 @@ var ( ) func init() { - file_unknonwnproto_proto_init() - md_Nested2B = File_unknonwnproto_proto.Messages().ByName("Nested2B") + file_testpb_unknonwnproto_proto_init() + md_Nested2B = File_testpb_unknonwnproto_proto.Messages().ByName("Nested2B") fd_Nested2B_id = md_Nested2B.Fields().ByName("id") fd_Nested2B_fee = md_Nested2B.Fields().ByName("fee") fd_Nested2B_nested = md_Nested2B.Fields().ByName("nested") @@ -4937,7 +4937,7 @@ func (x *Nested2B) ProtoReflect() protoreflect.Message { } func (x *Nested2B) slowProtoReflect() protoreflect.Message { - mi := &file_unknonwnproto_proto_msgTypes[8] + mi := &file_testpb_unknonwnproto_proto_msgTypes[8] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5032,19 +5032,19 @@ func (x *fastReflection_Nested2B) Range(f func(protoreflect.FieldDescriptor, pro // a repeated field is populated if it is non-empty. func (x *fastReflection_Nested2B) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.Nested2B.id": + case "testpb.Nested2B.id": return x.Id != int32(0) - case "testdata.Nested2B.fee": + case "testpb.Nested2B.fee": return x.Fee != float64(0) || math.Signbit(x.Fee) - case "testdata.Nested2B.nested": + case "testpb.Nested2B.nested": return x.Nested != nil - case "testdata.Nested2B.route": + case "testpb.Nested2B.route": return x.Route != "" default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested2B")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested2B")) } - panic(fmt.Errorf("message testdata.Nested2B does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Nested2B does not contain field %s", fd.FullName())) } } @@ -5056,19 +5056,19 @@ func (x *fastReflection_Nested2B) Has(fd protoreflect.FieldDescriptor) bool { // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Nested2B) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.Nested2B.id": + case "testpb.Nested2B.id": x.Id = int32(0) - case "testdata.Nested2B.fee": + case "testpb.Nested2B.fee": x.Fee = float64(0) - case "testdata.Nested2B.nested": + case "testpb.Nested2B.nested": x.Nested = nil - case "testdata.Nested2B.route": + case "testpb.Nested2B.route": x.Route = "" default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested2B")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested2B")) } - panic(fmt.Errorf("message testdata.Nested2B does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Nested2B does not contain field %s", fd.FullName())) } } @@ -5080,23 +5080,23 @@ func (x *fastReflection_Nested2B) Clear(fd protoreflect.FieldDescriptor) { // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_Nested2B) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.Nested2B.id": + case "testpb.Nested2B.id": value := x.Id return protoreflect.ValueOfInt32(value) - case "testdata.Nested2B.fee": + case "testpb.Nested2B.fee": value := x.Fee return protoreflect.ValueOfFloat64(value) - case "testdata.Nested2B.nested": + case "testpb.Nested2B.nested": value := x.Nested return protoreflect.ValueOfMessage(value.ProtoReflect()) - case "testdata.Nested2B.route": + case "testpb.Nested2B.route": value := x.Route return protoreflect.ValueOfString(value) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested2B")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested2B")) } - panic(fmt.Errorf("message testdata.Nested2B does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.Nested2B does not contain field %s", descriptor.FullName())) } } @@ -5112,19 +5112,19 @@ func (x *fastReflection_Nested2B) Get(descriptor protoreflect.FieldDescriptor) p // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Nested2B) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.Nested2B.id": + case "testpb.Nested2B.id": x.Id = int32(value.Int()) - case "testdata.Nested2B.fee": + case "testpb.Nested2B.fee": x.Fee = value.Float() - case "testdata.Nested2B.nested": + case "testpb.Nested2B.nested": x.Nested = value.Message().Interface().(*Nested3B) - case "testdata.Nested2B.route": + case "testpb.Nested2B.route": x.Route = value.Interface().(string) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested2B")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested2B")) } - panic(fmt.Errorf("message testdata.Nested2B does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Nested2B does not contain field %s", fd.FullName())) } } @@ -5140,22 +5140,22 @@ func (x *fastReflection_Nested2B) Set(fd protoreflect.FieldDescriptor, value pro // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Nested2B) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.Nested2B.nested": + case "testpb.Nested2B.nested": if x.Nested == nil { x.Nested = new(Nested3B) } return protoreflect.ValueOfMessage(x.Nested.ProtoReflect()) - case "testdata.Nested2B.id": - panic(fmt.Errorf("field id of message testdata.Nested2B is not mutable")) - case "testdata.Nested2B.fee": - panic(fmt.Errorf("field fee of message testdata.Nested2B is not mutable")) - case "testdata.Nested2B.route": - panic(fmt.Errorf("field route of message testdata.Nested2B is not mutable")) + case "testpb.Nested2B.id": + panic(fmt.Errorf("field id of message testpb.Nested2B is not mutable")) + case "testpb.Nested2B.fee": + panic(fmt.Errorf("field fee of message testpb.Nested2B is not mutable")) + case "testpb.Nested2B.route": + panic(fmt.Errorf("field route of message testpb.Nested2B is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested2B")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested2B")) } - panic(fmt.Errorf("message testdata.Nested2B does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Nested2B does not contain field %s", fd.FullName())) } } @@ -5164,20 +5164,20 @@ func (x *fastReflection_Nested2B) Mutable(fd protoreflect.FieldDescriptor) proto // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_Nested2B) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.Nested2B.id": + case "testpb.Nested2B.id": return protoreflect.ValueOfInt32(int32(0)) - case "testdata.Nested2B.fee": + case "testpb.Nested2B.fee": return protoreflect.ValueOfFloat64(float64(0)) - case "testdata.Nested2B.nested": + case "testpb.Nested2B.nested": m := new(Nested3B) return protoreflect.ValueOfMessage(m.ProtoReflect()) - case "testdata.Nested2B.route": + case "testpb.Nested2B.route": return protoreflect.ValueOfString("") default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested2B")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested2B")) } - panic(fmt.Errorf("message testdata.Nested2B does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Nested2B does not contain field %s", fd.FullName())) } } @@ -5187,7 +5187,7 @@ func (x *fastReflection_Nested2B) NewField(fd protoreflect.FieldDescriptor) prot func (x *fastReflection_Nested2B) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in testdata.Nested2B", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.Nested2B", d.FullName())) } panic("unreachable") } @@ -5507,8 +5507,8 @@ var ( ) func init() { - file_unknonwnproto_proto_init() - md_Nested1B = File_unknonwnproto_proto.Messages().ByName("Nested1B") + file_testpb_unknonwnproto_proto_init() + md_Nested1B = File_testpb_unknonwnproto_proto.Messages().ByName("Nested1B") fd_Nested1B_id = md_Nested1B.Fields().ByName("id") fd_Nested1B_nested = md_Nested1B.Fields().ByName("nested") fd_Nested1B_age = md_Nested1B.Fields().ByName("age") @@ -5523,7 +5523,7 @@ func (x *Nested1B) ProtoReflect() protoreflect.Message { } func (x *Nested1B) slowProtoReflect() protoreflect.Message { - mi := &file_unknonwnproto_proto_msgTypes[9] + mi := &file_testpb_unknonwnproto_proto_msgTypes[9] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5612,17 +5612,17 @@ func (x *fastReflection_Nested1B) Range(f func(protoreflect.FieldDescriptor, pro // a repeated field is populated if it is non-empty. func (x *fastReflection_Nested1B) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.Nested1B.id": + case "testpb.Nested1B.id": return x.Id != int32(0) - case "testdata.Nested1B.nested": + case "testpb.Nested1B.nested": return x.Nested != nil - case "testdata.Nested1B.age": + case "testpb.Nested1B.age": return x.Age != int32(0) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested1B")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested1B")) } - panic(fmt.Errorf("message testdata.Nested1B does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Nested1B does not contain field %s", fd.FullName())) } } @@ -5634,17 +5634,17 @@ func (x *fastReflection_Nested1B) Has(fd protoreflect.FieldDescriptor) bool { // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Nested1B) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.Nested1B.id": + case "testpb.Nested1B.id": x.Id = int32(0) - case "testdata.Nested1B.nested": + case "testpb.Nested1B.nested": x.Nested = nil - case "testdata.Nested1B.age": + case "testpb.Nested1B.age": x.Age = int32(0) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested1B")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested1B")) } - panic(fmt.Errorf("message testdata.Nested1B does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Nested1B does not contain field %s", fd.FullName())) } } @@ -5656,20 +5656,20 @@ func (x *fastReflection_Nested1B) Clear(fd protoreflect.FieldDescriptor) { // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_Nested1B) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.Nested1B.id": + case "testpb.Nested1B.id": value := x.Id return protoreflect.ValueOfInt32(value) - case "testdata.Nested1B.nested": + case "testpb.Nested1B.nested": value := x.Nested return protoreflect.ValueOfMessage(value.ProtoReflect()) - case "testdata.Nested1B.age": + case "testpb.Nested1B.age": value := x.Age return protoreflect.ValueOfInt32(value) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested1B")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested1B")) } - panic(fmt.Errorf("message testdata.Nested1B does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.Nested1B does not contain field %s", descriptor.FullName())) } } @@ -5685,17 +5685,17 @@ func (x *fastReflection_Nested1B) Get(descriptor protoreflect.FieldDescriptor) p // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Nested1B) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.Nested1B.id": + case "testpb.Nested1B.id": x.Id = int32(value.Int()) - case "testdata.Nested1B.nested": + case "testpb.Nested1B.nested": x.Nested = value.Message().Interface().(*Nested2B) - case "testdata.Nested1B.age": + case "testpb.Nested1B.age": x.Age = int32(value.Int()) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested1B")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested1B")) } - panic(fmt.Errorf("message testdata.Nested1B does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Nested1B does not contain field %s", fd.FullName())) } } @@ -5711,20 +5711,20 @@ func (x *fastReflection_Nested1B) Set(fd protoreflect.FieldDescriptor, value pro // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Nested1B) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.Nested1B.nested": + case "testpb.Nested1B.nested": if x.Nested == nil { x.Nested = new(Nested2B) } return protoreflect.ValueOfMessage(x.Nested.ProtoReflect()) - case "testdata.Nested1B.id": - panic(fmt.Errorf("field id of message testdata.Nested1B is not mutable")) - case "testdata.Nested1B.age": - panic(fmt.Errorf("field age of message testdata.Nested1B is not mutable")) + case "testpb.Nested1B.id": + panic(fmt.Errorf("field id of message testpb.Nested1B is not mutable")) + case "testpb.Nested1B.age": + panic(fmt.Errorf("field age of message testpb.Nested1B is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested1B")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested1B")) } - panic(fmt.Errorf("message testdata.Nested1B does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Nested1B does not contain field %s", fd.FullName())) } } @@ -5733,18 +5733,18 @@ func (x *fastReflection_Nested1B) Mutable(fd protoreflect.FieldDescriptor) proto // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_Nested1B) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.Nested1B.id": + case "testpb.Nested1B.id": return protoreflect.ValueOfInt32(int32(0)) - case "testdata.Nested1B.nested": + case "testpb.Nested1B.nested": m := new(Nested2B) return protoreflect.ValueOfMessage(m.ProtoReflect()) - case "testdata.Nested1B.age": + case "testpb.Nested1B.age": return protoreflect.ValueOfInt32(int32(0)) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Nested1B")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Nested1B")) } - panic(fmt.Errorf("message testdata.Nested1B does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Nested1B does not contain field %s", fd.FullName())) } } @@ -5754,7 +5754,7 @@ func (x *fastReflection_Nested1B) NewField(fd protoreflect.FieldDescriptor) prot func (x *fastReflection_Nested1B) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in testdata.Nested1B", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.Nested1B", d.FullName())) } panic("unreachable") } @@ -6043,8 +6043,8 @@ var ( ) func init() { - file_unknonwnproto_proto_init() - md_Customer3 = File_unknonwnproto_proto.Messages().ByName("Customer3") + file_testpb_unknonwnproto_proto_init() + md_Customer3 = File_testpb_unknonwnproto_proto.Messages().ByName("Customer3") fd_Customer3_id = md_Customer3.Fields().ByName("id") fd_Customer3_name = md_Customer3.Fields().ByName("name") fd_Customer3_sf = md_Customer3.Fields().ByName("sf") @@ -6064,7 +6064,7 @@ func (x *Customer3) ProtoReflect() protoreflect.Message { } func (x *Customer3) slowProtoReflect() protoreflect.Message { - mi := &file_unknonwnproto_proto_msgTypes[10] + mi := &file_testpb_unknonwnproto_proto_msgTypes[10] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6187,17 +6187,17 @@ func (x *fastReflection_Customer3) Range(f func(protoreflect.FieldDescriptor, pr // a repeated field is populated if it is non-empty. func (x *fastReflection_Customer3) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.Customer3.id": + case "testpb.Customer3.id": return x.Id != int32(0) - case "testdata.Customer3.name": + case "testpb.Customer3.name": return x.Name != "" - case "testdata.Customer3.sf": + case "testpb.Customer3.sf": return x.Sf != float32(0) || math.Signbit(float64(x.Sf)) - case "testdata.Customer3.surcharge": + case "testpb.Customer3.surcharge": return x.Surcharge != float32(0) || math.Signbit(float64(x.Surcharge)) - case "testdata.Customer3.destination": + case "testpb.Customer3.destination": return x.Destination != "" - case "testdata.Customer3.credit_card_no": + case "testpb.Customer3.credit_card_no": if x.Payment == nil { return false } else if _, ok := x.Payment.(*Customer3_CreditCardNo); ok { @@ -6205,7 +6205,7 @@ func (x *fastReflection_Customer3) Has(fd protoreflect.FieldDescriptor) bool { } else { return false } - case "testdata.Customer3.cheque_no": + case "testpb.Customer3.cheque_no": if x.Payment == nil { return false } else if _, ok := x.Payment.(*Customer3_ChequeNo); ok { @@ -6213,13 +6213,13 @@ func (x *fastReflection_Customer3) Has(fd protoreflect.FieldDescriptor) bool { } else { return false } - case "testdata.Customer3.original": + case "testpb.Customer3.original": return x.Original != nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Customer3")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Customer3")) } - panic(fmt.Errorf("message testdata.Customer3 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Customer3 does not contain field %s", fd.FullName())) } } @@ -6231,27 +6231,27 @@ func (x *fastReflection_Customer3) Has(fd protoreflect.FieldDescriptor) bool { // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Customer3) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.Customer3.id": + case "testpb.Customer3.id": x.Id = int32(0) - case "testdata.Customer3.name": + case "testpb.Customer3.name": x.Name = "" - case "testdata.Customer3.sf": + case "testpb.Customer3.sf": x.Sf = float32(0) - case "testdata.Customer3.surcharge": + case "testpb.Customer3.surcharge": x.Surcharge = float32(0) - case "testdata.Customer3.destination": + case "testpb.Customer3.destination": x.Destination = "" - case "testdata.Customer3.credit_card_no": + case "testpb.Customer3.credit_card_no": x.Payment = nil - case "testdata.Customer3.cheque_no": + case "testpb.Customer3.cheque_no": x.Payment = nil - case "testdata.Customer3.original": + case "testpb.Customer3.original": x.Original = nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Customer3")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Customer3")) } - panic(fmt.Errorf("message testdata.Customer3 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Customer3 does not contain field %s", fd.FullName())) } } @@ -6263,22 +6263,22 @@ func (x *fastReflection_Customer3) Clear(fd protoreflect.FieldDescriptor) { // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_Customer3) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.Customer3.id": + case "testpb.Customer3.id": value := x.Id return protoreflect.ValueOfInt32(value) - case "testdata.Customer3.name": + case "testpb.Customer3.name": value := x.Name return protoreflect.ValueOfString(value) - case "testdata.Customer3.sf": + case "testpb.Customer3.sf": value := x.Sf return protoreflect.ValueOfFloat32(value) - case "testdata.Customer3.surcharge": + case "testpb.Customer3.surcharge": value := x.Surcharge return protoreflect.ValueOfFloat32(value) - case "testdata.Customer3.destination": + case "testpb.Customer3.destination": value := x.Destination return protoreflect.ValueOfString(value) - case "testdata.Customer3.credit_card_no": + case "testpb.Customer3.credit_card_no": if x.Payment == nil { return protoreflect.ValueOfString("") } else if v, ok := x.Payment.(*Customer3_CreditCardNo); ok { @@ -6286,7 +6286,7 @@ func (x *fastReflection_Customer3) Get(descriptor protoreflect.FieldDescriptor) } else { return protoreflect.ValueOfString("") } - case "testdata.Customer3.cheque_no": + case "testpb.Customer3.cheque_no": if x.Payment == nil { return protoreflect.ValueOfString("") } else if v, ok := x.Payment.(*Customer3_ChequeNo); ok { @@ -6294,14 +6294,14 @@ func (x *fastReflection_Customer3) Get(descriptor protoreflect.FieldDescriptor) } else { return protoreflect.ValueOfString("") } - case "testdata.Customer3.original": + case "testpb.Customer3.original": value := x.Original return protoreflect.ValueOfMessage(value.ProtoReflect()) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Customer3")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Customer3")) } - panic(fmt.Errorf("message testdata.Customer3 does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.Customer3 does not contain field %s", descriptor.FullName())) } } @@ -6317,29 +6317,29 @@ func (x *fastReflection_Customer3) Get(descriptor protoreflect.FieldDescriptor) // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Customer3) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.Customer3.id": + case "testpb.Customer3.id": x.Id = int32(value.Int()) - case "testdata.Customer3.name": + case "testpb.Customer3.name": x.Name = value.Interface().(string) - case "testdata.Customer3.sf": + case "testpb.Customer3.sf": x.Sf = float32(value.Float()) - case "testdata.Customer3.surcharge": + case "testpb.Customer3.surcharge": x.Surcharge = float32(value.Float()) - case "testdata.Customer3.destination": + case "testpb.Customer3.destination": x.Destination = value.Interface().(string) - case "testdata.Customer3.credit_card_no": + case "testpb.Customer3.credit_card_no": cv := value.Interface().(string) x.Payment = &Customer3_CreditCardNo{CreditCardNo: cv} - case "testdata.Customer3.cheque_no": + case "testpb.Customer3.cheque_no": cv := value.Interface().(string) x.Payment = &Customer3_ChequeNo{ChequeNo: cv} - case "testdata.Customer3.original": + case "testpb.Customer3.original": x.Original = value.Message().Interface().(*Customer1) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Customer3")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Customer3")) } - panic(fmt.Errorf("message testdata.Customer3 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Customer3 does not contain field %s", fd.FullName())) } } @@ -6355,30 +6355,30 @@ func (x *fastReflection_Customer3) Set(fd protoreflect.FieldDescriptor, value pr // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Customer3) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.Customer3.original": + case "testpb.Customer3.original": if x.Original == nil { x.Original = new(Customer1) } return protoreflect.ValueOfMessage(x.Original.ProtoReflect()) - case "testdata.Customer3.id": - panic(fmt.Errorf("field id of message testdata.Customer3 is not mutable")) - case "testdata.Customer3.name": - panic(fmt.Errorf("field name of message testdata.Customer3 is not mutable")) - case "testdata.Customer3.sf": - panic(fmt.Errorf("field sf of message testdata.Customer3 is not mutable")) - case "testdata.Customer3.surcharge": - panic(fmt.Errorf("field surcharge of message testdata.Customer3 is not mutable")) - case "testdata.Customer3.destination": - panic(fmt.Errorf("field destination of message testdata.Customer3 is not mutable")) - case "testdata.Customer3.credit_card_no": - panic(fmt.Errorf("field credit_card_no of message testdata.Customer3 is not mutable")) - case "testdata.Customer3.cheque_no": - panic(fmt.Errorf("field cheque_no of message testdata.Customer3 is not mutable")) + case "testpb.Customer3.id": + panic(fmt.Errorf("field id of message testpb.Customer3 is not mutable")) + case "testpb.Customer3.name": + panic(fmt.Errorf("field name of message testpb.Customer3 is not mutable")) + case "testpb.Customer3.sf": + panic(fmt.Errorf("field sf of message testpb.Customer3 is not mutable")) + case "testpb.Customer3.surcharge": + panic(fmt.Errorf("field surcharge of message testpb.Customer3 is not mutable")) + case "testpb.Customer3.destination": + panic(fmt.Errorf("field destination of message testpb.Customer3 is not mutable")) + case "testpb.Customer3.credit_card_no": + panic(fmt.Errorf("field credit_card_no of message testpb.Customer3 is not mutable")) + case "testpb.Customer3.cheque_no": + panic(fmt.Errorf("field cheque_no of message testpb.Customer3 is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Customer3")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Customer3")) } - panic(fmt.Errorf("message testdata.Customer3 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Customer3 does not contain field %s", fd.FullName())) } } @@ -6387,28 +6387,28 @@ func (x *fastReflection_Customer3) Mutable(fd protoreflect.FieldDescriptor) prot // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_Customer3) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.Customer3.id": + case "testpb.Customer3.id": return protoreflect.ValueOfInt32(int32(0)) - case "testdata.Customer3.name": + case "testpb.Customer3.name": return protoreflect.ValueOfString("") - case "testdata.Customer3.sf": + case "testpb.Customer3.sf": return protoreflect.ValueOfFloat32(float32(0)) - case "testdata.Customer3.surcharge": + case "testpb.Customer3.surcharge": return protoreflect.ValueOfFloat32(float32(0)) - case "testdata.Customer3.destination": + case "testpb.Customer3.destination": return protoreflect.ValueOfString("") - case "testdata.Customer3.credit_card_no": + case "testpb.Customer3.credit_card_no": return protoreflect.ValueOfString("") - case "testdata.Customer3.cheque_no": + case "testpb.Customer3.cheque_no": return protoreflect.ValueOfString("") - case "testdata.Customer3.original": + case "testpb.Customer3.original": m := new(Customer1) return protoreflect.ValueOfMessage(m.ProtoReflect()) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.Customer3")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.Customer3")) } - panic(fmt.Errorf("message testdata.Customer3 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.Customer3 does not contain field %s", fd.FullName())) } } @@ -6417,7 +6417,7 @@ func (x *fastReflection_Customer3) NewField(fd protoreflect.FieldDescriptor) pro // It panics if the oneof descriptor does not belong to this message. func (x *fastReflection_Customer3) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { - case "testdata.Customer3.payment": + case "testpb.Customer3.payment": if x.Payment == nil { return nil } @@ -6428,7 +6428,7 @@ func (x *fastReflection_Customer3) WhichOneof(d protoreflect.OneofDescriptor) pr return x.Descriptor().Fields().ByName("cheque_no") } default: - panic(fmt.Errorf("%s is not a oneof field in testdata.Customer3", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.Customer3", d.FullName())) } panic("unreachable") } @@ -7063,8 +7063,8 @@ var ( ) func init() { - file_unknonwnproto_proto_init() - md_TestVersion1 = File_unknonwnproto_proto.Messages().ByName("TestVersion1") + file_testpb_unknonwnproto_proto_init() + md_TestVersion1 = File_testpb_unknonwnproto_proto.Messages().ByName("TestVersion1") fd_TestVersion1_x = md_TestVersion1.Fields().ByName("x") fd_TestVersion1_a = md_TestVersion1.Fields().ByName("a") fd_TestVersion1_b = md_TestVersion1.Fields().ByName("b") @@ -7086,7 +7086,7 @@ func (x *TestVersion1) ProtoReflect() protoreflect.Message { } func (x *TestVersion1) slowProtoReflect() protoreflect.Message { - mi := &file_unknonwnproto_proto_msgTypes[11] + mi := &file_testpb_unknonwnproto_proto_msgTypes[11] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7221,17 +7221,17 @@ func (x *fastReflection_TestVersion1) Range(f func(protoreflect.FieldDescriptor, // a repeated field is populated if it is non-empty. func (x *fastReflection_TestVersion1) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.TestVersion1.x": + case "testpb.TestVersion1.x": return x.X != int64(0) - case "testdata.TestVersion1.a": + case "testpb.TestVersion1.a": return x.A != nil - case "testdata.TestVersion1.b": + case "testpb.TestVersion1.b": return x.B != nil - case "testdata.TestVersion1.c": + case "testpb.TestVersion1.c": return len(x.C) != 0 - case "testdata.TestVersion1.d": + case "testpb.TestVersion1.d": return len(x.D) != 0 - case "testdata.TestVersion1.e": + case "testpb.TestVersion1.e": if x.Sum == nil { return false } else if _, ok := x.Sum.(*TestVersion1_E); ok { @@ -7239,7 +7239,7 @@ func (x *fastReflection_TestVersion1) Has(fd protoreflect.FieldDescriptor) bool } else { return false } - case "testdata.TestVersion1.f": + case "testpb.TestVersion1.f": if x.Sum == nil { return false } else if _, ok := x.Sum.(*TestVersion1_F); ok { @@ -7247,17 +7247,17 @@ func (x *fastReflection_TestVersion1) Has(fd protoreflect.FieldDescriptor) bool } else { return false } - case "testdata.TestVersion1.g": + case "testpb.TestVersion1.g": return x.G != nil - case "testdata.TestVersion1.h": + case "testpb.TestVersion1.h": return len(x.H) != 0 - case "testdata.TestVersion1.k": + case "testpb.TestVersion1.k": return x.K != nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion1")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion1")) } - panic(fmt.Errorf("message testdata.TestVersion1 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion1 does not contain field %s", fd.FullName())) } } @@ -7269,31 +7269,31 @@ func (x *fastReflection_TestVersion1) Has(fd protoreflect.FieldDescriptor) bool // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersion1) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.TestVersion1.x": + case "testpb.TestVersion1.x": x.X = int64(0) - case "testdata.TestVersion1.a": + case "testpb.TestVersion1.a": x.A = nil - case "testdata.TestVersion1.b": + case "testpb.TestVersion1.b": x.B = nil - case "testdata.TestVersion1.c": + case "testpb.TestVersion1.c": x.C = nil - case "testdata.TestVersion1.d": + case "testpb.TestVersion1.d": x.D = nil - case "testdata.TestVersion1.e": + case "testpb.TestVersion1.e": x.Sum = nil - case "testdata.TestVersion1.f": + case "testpb.TestVersion1.f": x.Sum = nil - case "testdata.TestVersion1.g": + case "testpb.TestVersion1.g": x.G = nil - case "testdata.TestVersion1.h": + case "testpb.TestVersion1.h": x.H = nil - case "testdata.TestVersion1.k": + case "testpb.TestVersion1.k": x.K = nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion1")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion1")) } - panic(fmt.Errorf("message testdata.TestVersion1 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion1 does not contain field %s", fd.FullName())) } } @@ -7305,28 +7305,28 @@ func (x *fastReflection_TestVersion1) Clear(fd protoreflect.FieldDescriptor) { // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_TestVersion1) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.TestVersion1.x": + case "testpb.TestVersion1.x": value := x.X return protoreflect.ValueOfInt64(value) - case "testdata.TestVersion1.a": + case "testpb.TestVersion1.a": value := x.A return protoreflect.ValueOfMessage(value.ProtoReflect()) - case "testdata.TestVersion1.b": + case "testpb.TestVersion1.b": value := x.B return protoreflect.ValueOfMessage(value.ProtoReflect()) - case "testdata.TestVersion1.c": + case "testpb.TestVersion1.c": if len(x.C) == 0 { return protoreflect.ValueOfList(&_TestVersion1_4_list{}) } listValue := &_TestVersion1_4_list{list: &x.C} return protoreflect.ValueOfList(listValue) - case "testdata.TestVersion1.d": + case "testpb.TestVersion1.d": if len(x.D) == 0 { return protoreflect.ValueOfList(&_TestVersion1_5_list{}) } listValue := &_TestVersion1_5_list{list: &x.D} return protoreflect.ValueOfList(listValue) - case "testdata.TestVersion1.e": + case "testpb.TestVersion1.e": if x.Sum == nil { return protoreflect.ValueOfInt32(int32(0)) } else if v, ok := x.Sum.(*TestVersion1_E); ok { @@ -7334,7 +7334,7 @@ func (x *fastReflection_TestVersion1) Get(descriptor protoreflect.FieldDescripto } else { return protoreflect.ValueOfInt32(int32(0)) } - case "testdata.TestVersion1.f": + case "testpb.TestVersion1.f": if x.Sum == nil { return protoreflect.ValueOfMessage((*TestVersion1)(nil).ProtoReflect()) } else if v, ok := x.Sum.(*TestVersion1_F); ok { @@ -7342,23 +7342,23 @@ func (x *fastReflection_TestVersion1) Get(descriptor protoreflect.FieldDescripto } else { return protoreflect.ValueOfMessage((*TestVersion1)(nil).ProtoReflect()) } - case "testdata.TestVersion1.g": + case "testpb.TestVersion1.g": value := x.G return protoreflect.ValueOfMessage(value.ProtoReflect()) - case "testdata.TestVersion1.h": + case "testpb.TestVersion1.h": if len(x.H) == 0 { return protoreflect.ValueOfList(&_TestVersion1_9_list{}) } listValue := &_TestVersion1_9_list{list: &x.H} return protoreflect.ValueOfList(listValue) - case "testdata.TestVersion1.k": + case "testpb.TestVersion1.k": value := x.K return protoreflect.ValueOfMessage(value.ProtoReflect()) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion1")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion1")) } - panic(fmt.Errorf("message testdata.TestVersion1 does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.TestVersion1 does not contain field %s", descriptor.FullName())) } } @@ -7374,39 +7374,39 @@ func (x *fastReflection_TestVersion1) Get(descriptor protoreflect.FieldDescripto // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersion1) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.TestVersion1.x": + case "testpb.TestVersion1.x": x.X = value.Int() - case "testdata.TestVersion1.a": + case "testpb.TestVersion1.a": x.A = value.Message().Interface().(*TestVersion1) - case "testdata.TestVersion1.b": + case "testpb.TestVersion1.b": x.B = value.Message().Interface().(*TestVersion1) - case "testdata.TestVersion1.c": + case "testpb.TestVersion1.c": lv := value.List() clv := lv.(*_TestVersion1_4_list) x.C = *clv.list - case "testdata.TestVersion1.d": + case "testpb.TestVersion1.d": lv := value.List() clv := lv.(*_TestVersion1_5_list) x.D = *clv.list - case "testdata.TestVersion1.e": + case "testpb.TestVersion1.e": cv := int32(value.Int()) x.Sum = &TestVersion1_E{E: cv} - case "testdata.TestVersion1.f": + case "testpb.TestVersion1.f": cv := value.Message().Interface().(*TestVersion1) x.Sum = &TestVersion1_F{F: cv} - case "testdata.TestVersion1.g": + case "testpb.TestVersion1.g": x.G = value.Message().Interface().(*anypb.Any) - case "testdata.TestVersion1.h": + case "testpb.TestVersion1.h": lv := value.List() clv := lv.(*_TestVersion1_9_list) x.H = *clv.list - case "testdata.TestVersion1.k": + case "testpb.TestVersion1.k": x.K = value.Message().Interface().(*Customer1) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion1")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion1")) } - panic(fmt.Errorf("message testdata.TestVersion1 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion1 does not contain field %s", fd.FullName())) } } @@ -7422,29 +7422,29 @@ func (x *fastReflection_TestVersion1) Set(fd protoreflect.FieldDescriptor, value // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersion1) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestVersion1.a": + case "testpb.TestVersion1.a": if x.A == nil { x.A = new(TestVersion1) } return protoreflect.ValueOfMessage(x.A.ProtoReflect()) - case "testdata.TestVersion1.b": + case "testpb.TestVersion1.b": if x.B == nil { x.B = new(TestVersion1) } return protoreflect.ValueOfMessage(x.B.ProtoReflect()) - case "testdata.TestVersion1.c": + case "testpb.TestVersion1.c": if x.C == nil { x.C = []*TestVersion1{} } value := &_TestVersion1_4_list{list: &x.C} return protoreflect.ValueOfList(value) - case "testdata.TestVersion1.d": + case "testpb.TestVersion1.d": if x.D == nil { x.D = []*TestVersion1{} } value := &_TestVersion1_5_list{list: &x.D} return protoreflect.ValueOfList(value) - case "testdata.TestVersion1.f": + case "testpb.TestVersion1.f": if x.Sum == nil { value := &TestVersion1{} oneofValue := &TestVersion1_F{F: value} @@ -7460,31 +7460,31 @@ func (x *fastReflection_TestVersion1) Mutable(fd protoreflect.FieldDescriptor) p x.Sum = oneofValue return protoreflect.ValueOfMessage(value.ProtoReflect()) } - case "testdata.TestVersion1.g": + case "testpb.TestVersion1.g": if x.G == nil { x.G = new(anypb.Any) } return protoreflect.ValueOfMessage(x.G.ProtoReflect()) - case "testdata.TestVersion1.h": + case "testpb.TestVersion1.h": if x.H == nil { x.H = []*TestVersion1{} } value := &_TestVersion1_9_list{list: &x.H} return protoreflect.ValueOfList(value) - case "testdata.TestVersion1.k": + case "testpb.TestVersion1.k": if x.K == nil { x.K = new(Customer1) } return protoreflect.ValueOfMessage(x.K.ProtoReflect()) - case "testdata.TestVersion1.x": - panic(fmt.Errorf("field x of message testdata.TestVersion1 is not mutable")) - case "testdata.TestVersion1.e": - panic(fmt.Errorf("field e of message testdata.TestVersion1 is not mutable")) + case "testpb.TestVersion1.x": + panic(fmt.Errorf("field x of message testpb.TestVersion1 is not mutable")) + case "testpb.TestVersion1.e": + panic(fmt.Errorf("field e of message testpb.TestVersion1 is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion1")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion1")) } - panic(fmt.Errorf("message testdata.TestVersion1 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion1 does not contain field %s", fd.FullName())) } } @@ -7493,39 +7493,39 @@ func (x *fastReflection_TestVersion1) Mutable(fd protoreflect.FieldDescriptor) p // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_TestVersion1) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestVersion1.x": + case "testpb.TestVersion1.x": return protoreflect.ValueOfInt64(int64(0)) - case "testdata.TestVersion1.a": + case "testpb.TestVersion1.a": m := new(TestVersion1) return protoreflect.ValueOfMessage(m.ProtoReflect()) - case "testdata.TestVersion1.b": + case "testpb.TestVersion1.b": m := new(TestVersion1) return protoreflect.ValueOfMessage(m.ProtoReflect()) - case "testdata.TestVersion1.c": + case "testpb.TestVersion1.c": list := []*TestVersion1{} return protoreflect.ValueOfList(&_TestVersion1_4_list{list: &list}) - case "testdata.TestVersion1.d": + case "testpb.TestVersion1.d": list := []*TestVersion1{} return protoreflect.ValueOfList(&_TestVersion1_5_list{list: &list}) - case "testdata.TestVersion1.e": + case "testpb.TestVersion1.e": return protoreflect.ValueOfInt32(int32(0)) - case "testdata.TestVersion1.f": + case "testpb.TestVersion1.f": value := &TestVersion1{} return protoreflect.ValueOfMessage(value.ProtoReflect()) - case "testdata.TestVersion1.g": + case "testpb.TestVersion1.g": m := new(anypb.Any) return protoreflect.ValueOfMessage(m.ProtoReflect()) - case "testdata.TestVersion1.h": + case "testpb.TestVersion1.h": list := []*TestVersion1{} return protoreflect.ValueOfList(&_TestVersion1_9_list{list: &list}) - case "testdata.TestVersion1.k": + case "testpb.TestVersion1.k": m := new(Customer1) return protoreflect.ValueOfMessage(m.ProtoReflect()) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion1")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion1")) } - panic(fmt.Errorf("message testdata.TestVersion1 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion1 does not contain field %s", fd.FullName())) } } @@ -7534,7 +7534,7 @@ func (x *fastReflection_TestVersion1) NewField(fd protoreflect.FieldDescriptor) // It panics if the oneof descriptor does not belong to this message. func (x *fastReflection_TestVersion1) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { - case "testdata.TestVersion1.sum": + case "testpb.TestVersion1.sum": if x.Sum == nil { return nil } @@ -7545,7 +7545,7 @@ func (x *fastReflection_TestVersion1) WhichOneof(d protoreflect.OneofDescriptor) return x.Descriptor().Fields().ByName("f") } default: - panic(fmt.Errorf("%s is not a oneof field in testdata.TestVersion1", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.TestVersion1", d.FullName())) } panic("unreachable") } @@ -8380,8 +8380,8 @@ var ( ) func init() { - file_unknonwnproto_proto_init() - md_TestVersion2 = File_unknonwnproto_proto.Messages().ByName("TestVersion2") + file_testpb_unknonwnproto_proto_init() + md_TestVersion2 = File_testpb_unknonwnproto_proto.Messages().ByName("TestVersion2") fd_TestVersion2_x = md_TestVersion2.Fields().ByName("x") fd_TestVersion2_a = md_TestVersion2.Fields().ByName("a") fd_TestVersion2_b = md_TestVersion2.Fields().ByName("b") @@ -8404,7 +8404,7 @@ func (x *TestVersion2) ProtoReflect() protoreflect.Message { } func (x *TestVersion2) slowProtoReflect() protoreflect.Message { - mi := &file_unknonwnproto_proto_msgTypes[12] + mi := &file_testpb_unknonwnproto_proto_msgTypes[12] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8545,17 +8545,17 @@ func (x *fastReflection_TestVersion2) Range(f func(protoreflect.FieldDescriptor, // a repeated field is populated if it is non-empty. func (x *fastReflection_TestVersion2) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.TestVersion2.x": + case "testpb.TestVersion2.x": return x.X != int64(0) - case "testdata.TestVersion2.a": + case "testpb.TestVersion2.a": return x.A != nil - case "testdata.TestVersion2.b": + case "testpb.TestVersion2.b": return x.B != nil - case "testdata.TestVersion2.c": + case "testpb.TestVersion2.c": return len(x.C) != 0 - case "testdata.TestVersion2.d": + case "testpb.TestVersion2.d": return len(x.D) != 0 - case "testdata.TestVersion2.e": + case "testpb.TestVersion2.e": if x.Sum == nil { return false } else if _, ok := x.Sum.(*TestVersion2_E); ok { @@ -8563,7 +8563,7 @@ func (x *fastReflection_TestVersion2) Has(fd protoreflect.FieldDescriptor) bool } else { return false } - case "testdata.TestVersion2.f": + case "testpb.TestVersion2.f": if x.Sum == nil { return false } else if _, ok := x.Sum.(*TestVersion2_F); ok { @@ -8571,19 +8571,19 @@ func (x *fastReflection_TestVersion2) Has(fd protoreflect.FieldDescriptor) bool } else { return false } - case "testdata.TestVersion2.g": + case "testpb.TestVersion2.g": return x.G != nil - case "testdata.TestVersion2.h": + case "testpb.TestVersion2.h": return len(x.H) != 0 - case "testdata.TestVersion2.k": + case "testpb.TestVersion2.k": return x.K != nil - case "testdata.TestVersion2.new_field": + case "testpb.TestVersion2.new_field": return x.NewField_ != uint64(0) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion2")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion2")) } - panic(fmt.Errorf("message testdata.TestVersion2 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion2 does not contain field %s", fd.FullName())) } } @@ -8595,33 +8595,33 @@ func (x *fastReflection_TestVersion2) Has(fd protoreflect.FieldDescriptor) bool // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersion2) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.TestVersion2.x": + case "testpb.TestVersion2.x": x.X = int64(0) - case "testdata.TestVersion2.a": + case "testpb.TestVersion2.a": x.A = nil - case "testdata.TestVersion2.b": + case "testpb.TestVersion2.b": x.B = nil - case "testdata.TestVersion2.c": + case "testpb.TestVersion2.c": x.C = nil - case "testdata.TestVersion2.d": + case "testpb.TestVersion2.d": x.D = nil - case "testdata.TestVersion2.e": + case "testpb.TestVersion2.e": x.Sum = nil - case "testdata.TestVersion2.f": + case "testpb.TestVersion2.f": x.Sum = nil - case "testdata.TestVersion2.g": + case "testpb.TestVersion2.g": x.G = nil - case "testdata.TestVersion2.h": + case "testpb.TestVersion2.h": x.H = nil - case "testdata.TestVersion2.k": + case "testpb.TestVersion2.k": x.K = nil - case "testdata.TestVersion2.new_field": + case "testpb.TestVersion2.new_field": x.NewField_ = uint64(0) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion2")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion2")) } - panic(fmt.Errorf("message testdata.TestVersion2 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion2 does not contain field %s", fd.FullName())) } } @@ -8633,28 +8633,28 @@ func (x *fastReflection_TestVersion2) Clear(fd protoreflect.FieldDescriptor) { // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_TestVersion2) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.TestVersion2.x": + case "testpb.TestVersion2.x": value := x.X return protoreflect.ValueOfInt64(value) - case "testdata.TestVersion2.a": + case "testpb.TestVersion2.a": value := x.A return protoreflect.ValueOfMessage(value.ProtoReflect()) - case "testdata.TestVersion2.b": + case "testpb.TestVersion2.b": value := x.B return protoreflect.ValueOfMessage(value.ProtoReflect()) - case "testdata.TestVersion2.c": + case "testpb.TestVersion2.c": if len(x.C) == 0 { return protoreflect.ValueOfList(&_TestVersion2_4_list{}) } listValue := &_TestVersion2_4_list{list: &x.C} return protoreflect.ValueOfList(listValue) - case "testdata.TestVersion2.d": + case "testpb.TestVersion2.d": if len(x.D) == 0 { return protoreflect.ValueOfList(&_TestVersion2_5_list{}) } listValue := &_TestVersion2_5_list{list: &x.D} return protoreflect.ValueOfList(listValue) - case "testdata.TestVersion2.e": + case "testpb.TestVersion2.e": if x.Sum == nil { return protoreflect.ValueOfInt32(int32(0)) } else if v, ok := x.Sum.(*TestVersion2_E); ok { @@ -8662,7 +8662,7 @@ func (x *fastReflection_TestVersion2) Get(descriptor protoreflect.FieldDescripto } else { return protoreflect.ValueOfInt32(int32(0)) } - case "testdata.TestVersion2.f": + case "testpb.TestVersion2.f": if x.Sum == nil { return protoreflect.ValueOfMessage((*TestVersion2)(nil).ProtoReflect()) } else if v, ok := x.Sum.(*TestVersion2_F); ok { @@ -8670,26 +8670,26 @@ func (x *fastReflection_TestVersion2) Get(descriptor protoreflect.FieldDescripto } else { return protoreflect.ValueOfMessage((*TestVersion2)(nil).ProtoReflect()) } - case "testdata.TestVersion2.g": + case "testpb.TestVersion2.g": value := x.G return protoreflect.ValueOfMessage(value.ProtoReflect()) - case "testdata.TestVersion2.h": + case "testpb.TestVersion2.h": if len(x.H) == 0 { return protoreflect.ValueOfList(&_TestVersion2_9_list{}) } listValue := &_TestVersion2_9_list{list: &x.H} return protoreflect.ValueOfList(listValue) - case "testdata.TestVersion2.k": + case "testpb.TestVersion2.k": value := x.K return protoreflect.ValueOfMessage(value.ProtoReflect()) - case "testdata.TestVersion2.new_field": + case "testpb.TestVersion2.new_field": value := x.NewField_ return protoreflect.ValueOfUint64(value) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion2")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion2")) } - panic(fmt.Errorf("message testdata.TestVersion2 does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.TestVersion2 does not contain field %s", descriptor.FullName())) } } @@ -8705,41 +8705,41 @@ func (x *fastReflection_TestVersion2) Get(descriptor protoreflect.FieldDescripto // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersion2) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.TestVersion2.x": + case "testpb.TestVersion2.x": x.X = value.Int() - case "testdata.TestVersion2.a": + case "testpb.TestVersion2.a": x.A = value.Message().Interface().(*TestVersion2) - case "testdata.TestVersion2.b": + case "testpb.TestVersion2.b": x.B = value.Message().Interface().(*TestVersion2) - case "testdata.TestVersion2.c": + case "testpb.TestVersion2.c": lv := value.List() clv := lv.(*_TestVersion2_4_list) x.C = *clv.list - case "testdata.TestVersion2.d": + case "testpb.TestVersion2.d": lv := value.List() clv := lv.(*_TestVersion2_5_list) x.D = *clv.list - case "testdata.TestVersion2.e": + case "testpb.TestVersion2.e": cv := int32(value.Int()) x.Sum = &TestVersion2_E{E: cv} - case "testdata.TestVersion2.f": + case "testpb.TestVersion2.f": cv := value.Message().Interface().(*TestVersion2) x.Sum = &TestVersion2_F{F: cv} - case "testdata.TestVersion2.g": + case "testpb.TestVersion2.g": x.G = value.Message().Interface().(*anypb.Any) - case "testdata.TestVersion2.h": + case "testpb.TestVersion2.h": lv := value.List() clv := lv.(*_TestVersion2_9_list) x.H = *clv.list - case "testdata.TestVersion2.k": + case "testpb.TestVersion2.k": x.K = value.Message().Interface().(*Customer1) - case "testdata.TestVersion2.new_field": + case "testpb.TestVersion2.new_field": x.NewField_ = value.Uint() default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion2")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion2")) } - panic(fmt.Errorf("message testdata.TestVersion2 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion2 does not contain field %s", fd.FullName())) } } @@ -8755,29 +8755,29 @@ func (x *fastReflection_TestVersion2) Set(fd protoreflect.FieldDescriptor, value // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersion2) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestVersion2.a": + case "testpb.TestVersion2.a": if x.A == nil { x.A = new(TestVersion2) } return protoreflect.ValueOfMessage(x.A.ProtoReflect()) - case "testdata.TestVersion2.b": + case "testpb.TestVersion2.b": if x.B == nil { x.B = new(TestVersion2) } return protoreflect.ValueOfMessage(x.B.ProtoReflect()) - case "testdata.TestVersion2.c": + case "testpb.TestVersion2.c": if x.C == nil { x.C = []*TestVersion2{} } value := &_TestVersion2_4_list{list: &x.C} return protoreflect.ValueOfList(value) - case "testdata.TestVersion2.d": + case "testpb.TestVersion2.d": if x.D == nil { x.D = []*TestVersion2{} } value := &_TestVersion2_5_list{list: &x.D} return protoreflect.ValueOfList(value) - case "testdata.TestVersion2.f": + case "testpb.TestVersion2.f": if x.Sum == nil { value := &TestVersion2{} oneofValue := &TestVersion2_F{F: value} @@ -8793,33 +8793,33 @@ func (x *fastReflection_TestVersion2) Mutable(fd protoreflect.FieldDescriptor) p x.Sum = oneofValue return protoreflect.ValueOfMessage(value.ProtoReflect()) } - case "testdata.TestVersion2.g": + case "testpb.TestVersion2.g": if x.G == nil { x.G = new(anypb.Any) } return protoreflect.ValueOfMessage(x.G.ProtoReflect()) - case "testdata.TestVersion2.h": + case "testpb.TestVersion2.h": if x.H == nil { x.H = []*TestVersion1{} } value := &_TestVersion2_9_list{list: &x.H} return protoreflect.ValueOfList(value) - case "testdata.TestVersion2.k": + case "testpb.TestVersion2.k": if x.K == nil { x.K = new(Customer1) } return protoreflect.ValueOfMessage(x.K.ProtoReflect()) - case "testdata.TestVersion2.x": - panic(fmt.Errorf("field x of message testdata.TestVersion2 is not mutable")) - case "testdata.TestVersion2.e": - panic(fmt.Errorf("field e of message testdata.TestVersion2 is not mutable")) - case "testdata.TestVersion2.new_field": - panic(fmt.Errorf("field new_field of message testdata.TestVersion2 is not mutable")) + case "testpb.TestVersion2.x": + panic(fmt.Errorf("field x of message testpb.TestVersion2 is not mutable")) + case "testpb.TestVersion2.e": + panic(fmt.Errorf("field e of message testpb.TestVersion2 is not mutable")) + case "testpb.TestVersion2.new_field": + panic(fmt.Errorf("field new_field of message testpb.TestVersion2 is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion2")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion2")) } - panic(fmt.Errorf("message testdata.TestVersion2 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion2 does not contain field %s", fd.FullName())) } } @@ -8828,41 +8828,41 @@ func (x *fastReflection_TestVersion2) Mutable(fd protoreflect.FieldDescriptor) p // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_TestVersion2) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestVersion2.x": + case "testpb.TestVersion2.x": return protoreflect.ValueOfInt64(int64(0)) - case "testdata.TestVersion2.a": + case "testpb.TestVersion2.a": m := new(TestVersion2) return protoreflect.ValueOfMessage(m.ProtoReflect()) - case "testdata.TestVersion2.b": + case "testpb.TestVersion2.b": m := new(TestVersion2) return protoreflect.ValueOfMessage(m.ProtoReflect()) - case "testdata.TestVersion2.c": + case "testpb.TestVersion2.c": list := []*TestVersion2{} return protoreflect.ValueOfList(&_TestVersion2_4_list{list: &list}) - case "testdata.TestVersion2.d": + case "testpb.TestVersion2.d": list := []*TestVersion2{} return protoreflect.ValueOfList(&_TestVersion2_5_list{list: &list}) - case "testdata.TestVersion2.e": + case "testpb.TestVersion2.e": return protoreflect.ValueOfInt32(int32(0)) - case "testdata.TestVersion2.f": + case "testpb.TestVersion2.f": value := &TestVersion2{} return protoreflect.ValueOfMessage(value.ProtoReflect()) - case "testdata.TestVersion2.g": + case "testpb.TestVersion2.g": m := new(anypb.Any) return protoreflect.ValueOfMessage(m.ProtoReflect()) - case "testdata.TestVersion2.h": + case "testpb.TestVersion2.h": list := []*TestVersion1{} return protoreflect.ValueOfList(&_TestVersion2_9_list{list: &list}) - case "testdata.TestVersion2.k": + case "testpb.TestVersion2.k": m := new(Customer1) return protoreflect.ValueOfMessage(m.ProtoReflect()) - case "testdata.TestVersion2.new_field": + case "testpb.TestVersion2.new_field": return protoreflect.ValueOfUint64(uint64(0)) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion2")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion2")) } - panic(fmt.Errorf("message testdata.TestVersion2 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion2 does not contain field %s", fd.FullName())) } } @@ -8871,7 +8871,7 @@ func (x *fastReflection_TestVersion2) NewField(fd protoreflect.FieldDescriptor) // It panics if the oneof descriptor does not belong to this message. func (x *fastReflection_TestVersion2) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { - case "testdata.TestVersion2.sum": + case "testpb.TestVersion2.sum": if x.Sum == nil { return nil } @@ -8882,7 +8882,7 @@ func (x *fastReflection_TestVersion2) WhichOneof(d protoreflect.OneofDescriptor) return x.Descriptor().Fields().ByName("f") } default: - panic(fmt.Errorf("%s is not a oneof field in testdata.TestVersion2", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.TestVersion2", d.FullName())) } panic("unreachable") } @@ -9746,8 +9746,8 @@ var ( ) func init() { - file_unknonwnproto_proto_init() - md_TestVersion3 = File_unknonwnproto_proto.Messages().ByName("TestVersion3") + file_testpb_unknonwnproto_proto_init() + md_TestVersion3 = File_testpb_unknonwnproto_proto.Messages().ByName("TestVersion3") fd_TestVersion3_x = md_TestVersion3.Fields().ByName("x") fd_TestVersion3_a = md_TestVersion3.Fields().ByName("a") fd_TestVersion3_b = md_TestVersion3.Fields().ByName("b") @@ -9770,7 +9770,7 @@ func (x *TestVersion3) ProtoReflect() protoreflect.Message { } func (x *TestVersion3) slowProtoReflect() protoreflect.Message { - mi := &file_unknonwnproto_proto_msgTypes[13] + mi := &file_testpb_unknonwnproto_proto_msgTypes[13] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9911,17 +9911,17 @@ func (x *fastReflection_TestVersion3) Range(f func(protoreflect.FieldDescriptor, // a repeated field is populated if it is non-empty. func (x *fastReflection_TestVersion3) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.TestVersion3.x": + case "testpb.TestVersion3.x": return x.X != int64(0) - case "testdata.TestVersion3.a": + case "testpb.TestVersion3.a": return x.A != nil - case "testdata.TestVersion3.b": + case "testpb.TestVersion3.b": return x.B != nil - case "testdata.TestVersion3.c": + case "testpb.TestVersion3.c": return len(x.C) != 0 - case "testdata.TestVersion3.d": + case "testpb.TestVersion3.d": return len(x.D) != 0 - case "testdata.TestVersion3.e": + case "testpb.TestVersion3.e": if x.Sum == nil { return false } else if _, ok := x.Sum.(*TestVersion3_E); ok { @@ -9929,7 +9929,7 @@ func (x *fastReflection_TestVersion3) Has(fd protoreflect.FieldDescriptor) bool } else { return false } - case "testdata.TestVersion3.f": + case "testpb.TestVersion3.f": if x.Sum == nil { return false } else if _, ok := x.Sum.(*TestVersion3_F); ok { @@ -9937,19 +9937,19 @@ func (x *fastReflection_TestVersion3) Has(fd protoreflect.FieldDescriptor) bool } else { return false } - case "testdata.TestVersion3.g": + case "testpb.TestVersion3.g": return x.G != nil - case "testdata.TestVersion3.h": + case "testpb.TestVersion3.h": return len(x.H) != 0 - case "testdata.TestVersion3.k": + case "testpb.TestVersion3.k": return x.K != nil - case "testdata.TestVersion3.non_critical_field": + case "testpb.TestVersion3.non_critical_field": return x.NonCriticalField != "" default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion3")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion3")) } - panic(fmt.Errorf("message testdata.TestVersion3 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion3 does not contain field %s", fd.FullName())) } } @@ -9961,33 +9961,33 @@ func (x *fastReflection_TestVersion3) Has(fd protoreflect.FieldDescriptor) bool // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersion3) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.TestVersion3.x": + case "testpb.TestVersion3.x": x.X = int64(0) - case "testdata.TestVersion3.a": + case "testpb.TestVersion3.a": x.A = nil - case "testdata.TestVersion3.b": + case "testpb.TestVersion3.b": x.B = nil - case "testdata.TestVersion3.c": + case "testpb.TestVersion3.c": x.C = nil - case "testdata.TestVersion3.d": + case "testpb.TestVersion3.d": x.D = nil - case "testdata.TestVersion3.e": + case "testpb.TestVersion3.e": x.Sum = nil - case "testdata.TestVersion3.f": + case "testpb.TestVersion3.f": x.Sum = nil - case "testdata.TestVersion3.g": + case "testpb.TestVersion3.g": x.G = nil - case "testdata.TestVersion3.h": + case "testpb.TestVersion3.h": x.H = nil - case "testdata.TestVersion3.k": + case "testpb.TestVersion3.k": x.K = nil - case "testdata.TestVersion3.non_critical_field": + case "testpb.TestVersion3.non_critical_field": x.NonCriticalField = "" default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion3")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion3")) } - panic(fmt.Errorf("message testdata.TestVersion3 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion3 does not contain field %s", fd.FullName())) } } @@ -9999,28 +9999,28 @@ func (x *fastReflection_TestVersion3) Clear(fd protoreflect.FieldDescriptor) { // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_TestVersion3) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.TestVersion3.x": + case "testpb.TestVersion3.x": value := x.X return protoreflect.ValueOfInt64(value) - case "testdata.TestVersion3.a": + case "testpb.TestVersion3.a": value := x.A return protoreflect.ValueOfMessage(value.ProtoReflect()) - case "testdata.TestVersion3.b": + case "testpb.TestVersion3.b": value := x.B return protoreflect.ValueOfMessage(value.ProtoReflect()) - case "testdata.TestVersion3.c": + case "testpb.TestVersion3.c": if len(x.C) == 0 { return protoreflect.ValueOfList(&_TestVersion3_4_list{}) } listValue := &_TestVersion3_4_list{list: &x.C} return protoreflect.ValueOfList(listValue) - case "testdata.TestVersion3.d": + case "testpb.TestVersion3.d": if len(x.D) == 0 { return protoreflect.ValueOfList(&_TestVersion3_5_list{}) } listValue := &_TestVersion3_5_list{list: &x.D} return protoreflect.ValueOfList(listValue) - case "testdata.TestVersion3.e": + case "testpb.TestVersion3.e": if x.Sum == nil { return protoreflect.ValueOfInt32(int32(0)) } else if v, ok := x.Sum.(*TestVersion3_E); ok { @@ -10028,7 +10028,7 @@ func (x *fastReflection_TestVersion3) Get(descriptor protoreflect.FieldDescripto } else { return protoreflect.ValueOfInt32(int32(0)) } - case "testdata.TestVersion3.f": + case "testpb.TestVersion3.f": if x.Sum == nil { return protoreflect.ValueOfMessage((*TestVersion3)(nil).ProtoReflect()) } else if v, ok := x.Sum.(*TestVersion3_F); ok { @@ -10036,26 +10036,26 @@ func (x *fastReflection_TestVersion3) Get(descriptor protoreflect.FieldDescripto } else { return protoreflect.ValueOfMessage((*TestVersion3)(nil).ProtoReflect()) } - case "testdata.TestVersion3.g": + case "testpb.TestVersion3.g": value := x.G return protoreflect.ValueOfMessage(value.ProtoReflect()) - case "testdata.TestVersion3.h": + case "testpb.TestVersion3.h": if len(x.H) == 0 { return protoreflect.ValueOfList(&_TestVersion3_9_list{}) } listValue := &_TestVersion3_9_list{list: &x.H} return protoreflect.ValueOfList(listValue) - case "testdata.TestVersion3.k": + case "testpb.TestVersion3.k": value := x.K return protoreflect.ValueOfMessage(value.ProtoReflect()) - case "testdata.TestVersion3.non_critical_field": + case "testpb.TestVersion3.non_critical_field": value := x.NonCriticalField return protoreflect.ValueOfString(value) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion3")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion3")) } - panic(fmt.Errorf("message testdata.TestVersion3 does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.TestVersion3 does not contain field %s", descriptor.FullName())) } } @@ -10071,41 +10071,41 @@ func (x *fastReflection_TestVersion3) Get(descriptor protoreflect.FieldDescripto // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersion3) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.TestVersion3.x": + case "testpb.TestVersion3.x": x.X = value.Int() - case "testdata.TestVersion3.a": + case "testpb.TestVersion3.a": x.A = value.Message().Interface().(*TestVersion3) - case "testdata.TestVersion3.b": + case "testpb.TestVersion3.b": x.B = value.Message().Interface().(*TestVersion3) - case "testdata.TestVersion3.c": + case "testpb.TestVersion3.c": lv := value.List() clv := lv.(*_TestVersion3_4_list) x.C = *clv.list - case "testdata.TestVersion3.d": + case "testpb.TestVersion3.d": lv := value.List() clv := lv.(*_TestVersion3_5_list) x.D = *clv.list - case "testdata.TestVersion3.e": + case "testpb.TestVersion3.e": cv := int32(value.Int()) x.Sum = &TestVersion3_E{E: cv} - case "testdata.TestVersion3.f": + case "testpb.TestVersion3.f": cv := value.Message().Interface().(*TestVersion3) x.Sum = &TestVersion3_F{F: cv} - case "testdata.TestVersion3.g": + case "testpb.TestVersion3.g": x.G = value.Message().Interface().(*anypb.Any) - case "testdata.TestVersion3.h": + case "testpb.TestVersion3.h": lv := value.List() clv := lv.(*_TestVersion3_9_list) x.H = *clv.list - case "testdata.TestVersion3.k": + case "testpb.TestVersion3.k": x.K = value.Message().Interface().(*Customer1) - case "testdata.TestVersion3.non_critical_field": + case "testpb.TestVersion3.non_critical_field": x.NonCriticalField = value.Interface().(string) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion3")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion3")) } - panic(fmt.Errorf("message testdata.TestVersion3 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion3 does not contain field %s", fd.FullName())) } } @@ -10121,29 +10121,29 @@ func (x *fastReflection_TestVersion3) Set(fd protoreflect.FieldDescriptor, value // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersion3) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestVersion3.a": + case "testpb.TestVersion3.a": if x.A == nil { x.A = new(TestVersion3) } return protoreflect.ValueOfMessage(x.A.ProtoReflect()) - case "testdata.TestVersion3.b": + case "testpb.TestVersion3.b": if x.B == nil { x.B = new(TestVersion3) } return protoreflect.ValueOfMessage(x.B.ProtoReflect()) - case "testdata.TestVersion3.c": + case "testpb.TestVersion3.c": if x.C == nil { x.C = []*TestVersion3{} } value := &_TestVersion3_4_list{list: &x.C} return protoreflect.ValueOfList(value) - case "testdata.TestVersion3.d": + case "testpb.TestVersion3.d": if x.D == nil { x.D = []*TestVersion3{} } value := &_TestVersion3_5_list{list: &x.D} return protoreflect.ValueOfList(value) - case "testdata.TestVersion3.f": + case "testpb.TestVersion3.f": if x.Sum == nil { value := &TestVersion3{} oneofValue := &TestVersion3_F{F: value} @@ -10159,33 +10159,33 @@ func (x *fastReflection_TestVersion3) Mutable(fd protoreflect.FieldDescriptor) p x.Sum = oneofValue return protoreflect.ValueOfMessage(value.ProtoReflect()) } - case "testdata.TestVersion3.g": + case "testpb.TestVersion3.g": if x.G == nil { x.G = new(anypb.Any) } return protoreflect.ValueOfMessage(x.G.ProtoReflect()) - case "testdata.TestVersion3.h": + case "testpb.TestVersion3.h": if x.H == nil { x.H = []*TestVersion1{} } value := &_TestVersion3_9_list{list: &x.H} return protoreflect.ValueOfList(value) - case "testdata.TestVersion3.k": + case "testpb.TestVersion3.k": if x.K == nil { x.K = new(Customer1) } return protoreflect.ValueOfMessage(x.K.ProtoReflect()) - case "testdata.TestVersion3.x": - panic(fmt.Errorf("field x of message testdata.TestVersion3 is not mutable")) - case "testdata.TestVersion3.e": - panic(fmt.Errorf("field e of message testdata.TestVersion3 is not mutable")) - case "testdata.TestVersion3.non_critical_field": - panic(fmt.Errorf("field non_critical_field of message testdata.TestVersion3 is not mutable")) + case "testpb.TestVersion3.x": + panic(fmt.Errorf("field x of message testpb.TestVersion3 is not mutable")) + case "testpb.TestVersion3.e": + panic(fmt.Errorf("field e of message testpb.TestVersion3 is not mutable")) + case "testpb.TestVersion3.non_critical_field": + panic(fmt.Errorf("field non_critical_field of message testpb.TestVersion3 is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion3")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion3")) } - panic(fmt.Errorf("message testdata.TestVersion3 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion3 does not contain field %s", fd.FullName())) } } @@ -10194,41 +10194,41 @@ func (x *fastReflection_TestVersion3) Mutable(fd protoreflect.FieldDescriptor) p // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_TestVersion3) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestVersion3.x": + case "testpb.TestVersion3.x": return protoreflect.ValueOfInt64(int64(0)) - case "testdata.TestVersion3.a": + case "testpb.TestVersion3.a": m := new(TestVersion3) return protoreflect.ValueOfMessage(m.ProtoReflect()) - case "testdata.TestVersion3.b": + case "testpb.TestVersion3.b": m := new(TestVersion3) return protoreflect.ValueOfMessage(m.ProtoReflect()) - case "testdata.TestVersion3.c": + case "testpb.TestVersion3.c": list := []*TestVersion3{} return protoreflect.ValueOfList(&_TestVersion3_4_list{list: &list}) - case "testdata.TestVersion3.d": + case "testpb.TestVersion3.d": list := []*TestVersion3{} return protoreflect.ValueOfList(&_TestVersion3_5_list{list: &list}) - case "testdata.TestVersion3.e": + case "testpb.TestVersion3.e": return protoreflect.ValueOfInt32(int32(0)) - case "testdata.TestVersion3.f": + case "testpb.TestVersion3.f": value := &TestVersion3{} return protoreflect.ValueOfMessage(value.ProtoReflect()) - case "testdata.TestVersion3.g": + case "testpb.TestVersion3.g": m := new(anypb.Any) return protoreflect.ValueOfMessage(m.ProtoReflect()) - case "testdata.TestVersion3.h": + case "testpb.TestVersion3.h": list := []*TestVersion1{} return protoreflect.ValueOfList(&_TestVersion3_9_list{list: &list}) - case "testdata.TestVersion3.k": + case "testpb.TestVersion3.k": m := new(Customer1) return protoreflect.ValueOfMessage(m.ProtoReflect()) - case "testdata.TestVersion3.non_critical_field": + case "testpb.TestVersion3.non_critical_field": return protoreflect.ValueOfString("") default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion3")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion3")) } - panic(fmt.Errorf("message testdata.TestVersion3 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion3 does not contain field %s", fd.FullName())) } } @@ -10237,7 +10237,7 @@ func (x *fastReflection_TestVersion3) NewField(fd protoreflect.FieldDescriptor) // It panics if the oneof descriptor does not belong to this message. func (x *fastReflection_TestVersion3) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { - case "testdata.TestVersion3.sum": + case "testpb.TestVersion3.sum": if x.Sum == nil { return nil } @@ -10248,7 +10248,7 @@ func (x *fastReflection_TestVersion3) WhichOneof(d protoreflect.OneofDescriptor) return x.Descriptor().Fields().ByName("f") } default: - panic(fmt.Errorf("%s is not a oneof field in testdata.TestVersion3", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.TestVersion3", d.FullName())) } panic("unreachable") } @@ -11127,8 +11127,8 @@ var ( ) func init() { - file_unknonwnproto_proto_init() - md_TestVersion3LoneOneOfValue = File_unknonwnproto_proto.Messages().ByName("TestVersion3LoneOneOfValue") + file_testpb_unknonwnproto_proto_init() + md_TestVersion3LoneOneOfValue = File_testpb_unknonwnproto_proto.Messages().ByName("TestVersion3LoneOneOfValue") fd_TestVersion3LoneOneOfValue_x = md_TestVersion3LoneOneOfValue.Fields().ByName("x") fd_TestVersion3LoneOneOfValue_a = md_TestVersion3LoneOneOfValue.Fields().ByName("a") fd_TestVersion3LoneOneOfValue_b = md_TestVersion3LoneOneOfValue.Fields().ByName("b") @@ -11150,7 +11150,7 @@ func (x *TestVersion3LoneOneOfValue) ProtoReflect() protoreflect.Message { } func (x *TestVersion3LoneOneOfValue) slowProtoReflect() protoreflect.Message { - mi := &file_unknonwnproto_proto_msgTypes[14] + mi := &file_testpb_unknonwnproto_proto_msgTypes[14] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11285,17 +11285,17 @@ func (x *fastReflection_TestVersion3LoneOneOfValue) Range(f func(protoreflect.Fi // a repeated field is populated if it is non-empty. func (x *fastReflection_TestVersion3LoneOneOfValue) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.TestVersion3LoneOneOfValue.x": + case "testpb.TestVersion3LoneOneOfValue.x": return x.X != int64(0) - case "testdata.TestVersion3LoneOneOfValue.a": + case "testpb.TestVersion3LoneOneOfValue.a": return x.A != nil - case "testdata.TestVersion3LoneOneOfValue.b": + case "testpb.TestVersion3LoneOneOfValue.b": return x.B != nil - case "testdata.TestVersion3LoneOneOfValue.c": + case "testpb.TestVersion3LoneOneOfValue.c": return len(x.C) != 0 - case "testdata.TestVersion3LoneOneOfValue.d": + case "testpb.TestVersion3LoneOneOfValue.d": return len(x.D) != 0 - case "testdata.TestVersion3LoneOneOfValue.e": + case "testpb.TestVersion3LoneOneOfValue.e": if x.Sum == nil { return false } else if _, ok := x.Sum.(*TestVersion3LoneOneOfValue_E); ok { @@ -11303,19 +11303,19 @@ func (x *fastReflection_TestVersion3LoneOneOfValue) Has(fd protoreflect.FieldDes } else { return false } - case "testdata.TestVersion3LoneOneOfValue.g": + case "testpb.TestVersion3LoneOneOfValue.g": return x.G != nil - case "testdata.TestVersion3LoneOneOfValue.h": + case "testpb.TestVersion3LoneOneOfValue.h": return len(x.H) != 0 - case "testdata.TestVersion3LoneOneOfValue.k": + case "testpb.TestVersion3LoneOneOfValue.k": return x.K != nil - case "testdata.TestVersion3LoneOneOfValue.non_critical_field": + case "testpb.TestVersion3LoneOneOfValue.non_critical_field": return x.NonCriticalField != "" default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion3LoneOneOfValue")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion3LoneOneOfValue")) } - panic(fmt.Errorf("message testdata.TestVersion3LoneOneOfValue does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion3LoneOneOfValue does not contain field %s", fd.FullName())) } } @@ -11327,31 +11327,31 @@ func (x *fastReflection_TestVersion3LoneOneOfValue) Has(fd protoreflect.FieldDes // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersion3LoneOneOfValue) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.TestVersion3LoneOneOfValue.x": + case "testpb.TestVersion3LoneOneOfValue.x": x.X = int64(0) - case "testdata.TestVersion3LoneOneOfValue.a": + case "testpb.TestVersion3LoneOneOfValue.a": x.A = nil - case "testdata.TestVersion3LoneOneOfValue.b": + case "testpb.TestVersion3LoneOneOfValue.b": x.B = nil - case "testdata.TestVersion3LoneOneOfValue.c": + case "testpb.TestVersion3LoneOneOfValue.c": x.C = nil - case "testdata.TestVersion3LoneOneOfValue.d": + case "testpb.TestVersion3LoneOneOfValue.d": x.D = nil - case "testdata.TestVersion3LoneOneOfValue.e": + case "testpb.TestVersion3LoneOneOfValue.e": x.Sum = nil - case "testdata.TestVersion3LoneOneOfValue.g": + case "testpb.TestVersion3LoneOneOfValue.g": x.G = nil - case "testdata.TestVersion3LoneOneOfValue.h": + case "testpb.TestVersion3LoneOneOfValue.h": x.H = nil - case "testdata.TestVersion3LoneOneOfValue.k": + case "testpb.TestVersion3LoneOneOfValue.k": x.K = nil - case "testdata.TestVersion3LoneOneOfValue.non_critical_field": + case "testpb.TestVersion3LoneOneOfValue.non_critical_field": x.NonCriticalField = "" default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion3LoneOneOfValue")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion3LoneOneOfValue")) } - panic(fmt.Errorf("message testdata.TestVersion3LoneOneOfValue does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion3LoneOneOfValue does not contain field %s", fd.FullName())) } } @@ -11363,28 +11363,28 @@ func (x *fastReflection_TestVersion3LoneOneOfValue) Clear(fd protoreflect.FieldD // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_TestVersion3LoneOneOfValue) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.TestVersion3LoneOneOfValue.x": + case "testpb.TestVersion3LoneOneOfValue.x": value := x.X return protoreflect.ValueOfInt64(value) - case "testdata.TestVersion3LoneOneOfValue.a": + case "testpb.TestVersion3LoneOneOfValue.a": value := x.A return protoreflect.ValueOfMessage(value.ProtoReflect()) - case "testdata.TestVersion3LoneOneOfValue.b": + case "testpb.TestVersion3LoneOneOfValue.b": value := x.B return protoreflect.ValueOfMessage(value.ProtoReflect()) - case "testdata.TestVersion3LoneOneOfValue.c": + case "testpb.TestVersion3LoneOneOfValue.c": if len(x.C) == 0 { return protoreflect.ValueOfList(&_TestVersion3LoneOneOfValue_4_list{}) } listValue := &_TestVersion3LoneOneOfValue_4_list{list: &x.C} return protoreflect.ValueOfList(listValue) - case "testdata.TestVersion3LoneOneOfValue.d": + case "testpb.TestVersion3LoneOneOfValue.d": if len(x.D) == 0 { return protoreflect.ValueOfList(&_TestVersion3LoneOneOfValue_5_list{}) } listValue := &_TestVersion3LoneOneOfValue_5_list{list: &x.D} return protoreflect.ValueOfList(listValue) - case "testdata.TestVersion3LoneOneOfValue.e": + case "testpb.TestVersion3LoneOneOfValue.e": if x.Sum == nil { return protoreflect.ValueOfInt32(int32(0)) } else if v, ok := x.Sum.(*TestVersion3LoneOneOfValue_E); ok { @@ -11392,26 +11392,26 @@ func (x *fastReflection_TestVersion3LoneOneOfValue) Get(descriptor protoreflect. } else { return protoreflect.ValueOfInt32(int32(0)) } - case "testdata.TestVersion3LoneOneOfValue.g": + case "testpb.TestVersion3LoneOneOfValue.g": value := x.G return protoreflect.ValueOfMessage(value.ProtoReflect()) - case "testdata.TestVersion3LoneOneOfValue.h": + case "testpb.TestVersion3LoneOneOfValue.h": if len(x.H) == 0 { return protoreflect.ValueOfList(&_TestVersion3LoneOneOfValue_9_list{}) } listValue := &_TestVersion3LoneOneOfValue_9_list{list: &x.H} return protoreflect.ValueOfList(listValue) - case "testdata.TestVersion3LoneOneOfValue.k": + case "testpb.TestVersion3LoneOneOfValue.k": value := x.K return protoreflect.ValueOfMessage(value.ProtoReflect()) - case "testdata.TestVersion3LoneOneOfValue.non_critical_field": + case "testpb.TestVersion3LoneOneOfValue.non_critical_field": value := x.NonCriticalField return protoreflect.ValueOfString(value) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion3LoneOneOfValue")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion3LoneOneOfValue")) } - panic(fmt.Errorf("message testdata.TestVersion3LoneOneOfValue does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.TestVersion3LoneOneOfValue does not contain field %s", descriptor.FullName())) } } @@ -11427,38 +11427,38 @@ func (x *fastReflection_TestVersion3LoneOneOfValue) Get(descriptor protoreflect. // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersion3LoneOneOfValue) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.TestVersion3LoneOneOfValue.x": + case "testpb.TestVersion3LoneOneOfValue.x": x.X = value.Int() - case "testdata.TestVersion3LoneOneOfValue.a": + case "testpb.TestVersion3LoneOneOfValue.a": x.A = value.Message().Interface().(*TestVersion3) - case "testdata.TestVersion3LoneOneOfValue.b": + case "testpb.TestVersion3LoneOneOfValue.b": x.B = value.Message().Interface().(*TestVersion3) - case "testdata.TestVersion3LoneOneOfValue.c": + case "testpb.TestVersion3LoneOneOfValue.c": lv := value.List() clv := lv.(*_TestVersion3LoneOneOfValue_4_list) x.C = *clv.list - case "testdata.TestVersion3LoneOneOfValue.d": + case "testpb.TestVersion3LoneOneOfValue.d": lv := value.List() clv := lv.(*_TestVersion3LoneOneOfValue_5_list) x.D = *clv.list - case "testdata.TestVersion3LoneOneOfValue.e": + case "testpb.TestVersion3LoneOneOfValue.e": cv := int32(value.Int()) x.Sum = &TestVersion3LoneOneOfValue_E{E: cv} - case "testdata.TestVersion3LoneOneOfValue.g": + case "testpb.TestVersion3LoneOneOfValue.g": x.G = value.Message().Interface().(*anypb.Any) - case "testdata.TestVersion3LoneOneOfValue.h": + case "testpb.TestVersion3LoneOneOfValue.h": lv := value.List() clv := lv.(*_TestVersion3LoneOneOfValue_9_list) x.H = *clv.list - case "testdata.TestVersion3LoneOneOfValue.k": + case "testpb.TestVersion3LoneOneOfValue.k": x.K = value.Message().Interface().(*Customer1) - case "testdata.TestVersion3LoneOneOfValue.non_critical_field": + case "testpb.TestVersion3LoneOneOfValue.non_critical_field": x.NonCriticalField = value.Interface().(string) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion3LoneOneOfValue")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion3LoneOneOfValue")) } - panic(fmt.Errorf("message testdata.TestVersion3LoneOneOfValue does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion3LoneOneOfValue does not contain field %s", fd.FullName())) } } @@ -11474,55 +11474,55 @@ func (x *fastReflection_TestVersion3LoneOneOfValue) Set(fd protoreflect.FieldDes // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersion3LoneOneOfValue) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestVersion3LoneOneOfValue.a": + case "testpb.TestVersion3LoneOneOfValue.a": if x.A == nil { x.A = new(TestVersion3) } return protoreflect.ValueOfMessage(x.A.ProtoReflect()) - case "testdata.TestVersion3LoneOneOfValue.b": + case "testpb.TestVersion3LoneOneOfValue.b": if x.B == nil { x.B = new(TestVersion3) } return protoreflect.ValueOfMessage(x.B.ProtoReflect()) - case "testdata.TestVersion3LoneOneOfValue.c": + case "testpb.TestVersion3LoneOneOfValue.c": if x.C == nil { x.C = []*TestVersion3{} } value := &_TestVersion3LoneOneOfValue_4_list{list: &x.C} return protoreflect.ValueOfList(value) - case "testdata.TestVersion3LoneOneOfValue.d": + case "testpb.TestVersion3LoneOneOfValue.d": if x.D == nil { x.D = []*TestVersion3{} } value := &_TestVersion3LoneOneOfValue_5_list{list: &x.D} return protoreflect.ValueOfList(value) - case "testdata.TestVersion3LoneOneOfValue.g": + case "testpb.TestVersion3LoneOneOfValue.g": if x.G == nil { x.G = new(anypb.Any) } return protoreflect.ValueOfMessage(x.G.ProtoReflect()) - case "testdata.TestVersion3LoneOneOfValue.h": + case "testpb.TestVersion3LoneOneOfValue.h": if x.H == nil { x.H = []*TestVersion1{} } value := &_TestVersion3LoneOneOfValue_9_list{list: &x.H} return protoreflect.ValueOfList(value) - case "testdata.TestVersion3LoneOneOfValue.k": + case "testpb.TestVersion3LoneOneOfValue.k": if x.K == nil { x.K = new(Customer1) } return protoreflect.ValueOfMessage(x.K.ProtoReflect()) - case "testdata.TestVersion3LoneOneOfValue.x": - panic(fmt.Errorf("field x of message testdata.TestVersion3LoneOneOfValue is not mutable")) - case "testdata.TestVersion3LoneOneOfValue.e": - panic(fmt.Errorf("field e of message testdata.TestVersion3LoneOneOfValue is not mutable")) - case "testdata.TestVersion3LoneOneOfValue.non_critical_field": - panic(fmt.Errorf("field non_critical_field of message testdata.TestVersion3LoneOneOfValue is not mutable")) + case "testpb.TestVersion3LoneOneOfValue.x": + panic(fmt.Errorf("field x of message testpb.TestVersion3LoneOneOfValue is not mutable")) + case "testpb.TestVersion3LoneOneOfValue.e": + panic(fmt.Errorf("field e of message testpb.TestVersion3LoneOneOfValue is not mutable")) + case "testpb.TestVersion3LoneOneOfValue.non_critical_field": + panic(fmt.Errorf("field non_critical_field of message testpb.TestVersion3LoneOneOfValue is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion3LoneOneOfValue")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion3LoneOneOfValue")) } - panic(fmt.Errorf("message testdata.TestVersion3LoneOneOfValue does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion3LoneOneOfValue does not contain field %s", fd.FullName())) } } @@ -11531,38 +11531,38 @@ func (x *fastReflection_TestVersion3LoneOneOfValue) Mutable(fd protoreflect.Fiel // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_TestVersion3LoneOneOfValue) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestVersion3LoneOneOfValue.x": + case "testpb.TestVersion3LoneOneOfValue.x": return protoreflect.ValueOfInt64(int64(0)) - case "testdata.TestVersion3LoneOneOfValue.a": + case "testpb.TestVersion3LoneOneOfValue.a": m := new(TestVersion3) return protoreflect.ValueOfMessage(m.ProtoReflect()) - case "testdata.TestVersion3LoneOneOfValue.b": + case "testpb.TestVersion3LoneOneOfValue.b": m := new(TestVersion3) return protoreflect.ValueOfMessage(m.ProtoReflect()) - case "testdata.TestVersion3LoneOneOfValue.c": + case "testpb.TestVersion3LoneOneOfValue.c": list := []*TestVersion3{} return protoreflect.ValueOfList(&_TestVersion3LoneOneOfValue_4_list{list: &list}) - case "testdata.TestVersion3LoneOneOfValue.d": + case "testpb.TestVersion3LoneOneOfValue.d": list := []*TestVersion3{} return protoreflect.ValueOfList(&_TestVersion3LoneOneOfValue_5_list{list: &list}) - case "testdata.TestVersion3LoneOneOfValue.e": + case "testpb.TestVersion3LoneOneOfValue.e": return protoreflect.ValueOfInt32(int32(0)) - case "testdata.TestVersion3LoneOneOfValue.g": + case "testpb.TestVersion3LoneOneOfValue.g": m := new(anypb.Any) return protoreflect.ValueOfMessage(m.ProtoReflect()) - case "testdata.TestVersion3LoneOneOfValue.h": + case "testpb.TestVersion3LoneOneOfValue.h": list := []*TestVersion1{} return protoreflect.ValueOfList(&_TestVersion3LoneOneOfValue_9_list{list: &list}) - case "testdata.TestVersion3LoneOneOfValue.k": + case "testpb.TestVersion3LoneOneOfValue.k": m := new(Customer1) return protoreflect.ValueOfMessage(m.ProtoReflect()) - case "testdata.TestVersion3LoneOneOfValue.non_critical_field": + case "testpb.TestVersion3LoneOneOfValue.non_critical_field": return protoreflect.ValueOfString("") default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion3LoneOneOfValue")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion3LoneOneOfValue")) } - panic(fmt.Errorf("message testdata.TestVersion3LoneOneOfValue does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion3LoneOneOfValue does not contain field %s", fd.FullName())) } } @@ -11571,7 +11571,7 @@ func (x *fastReflection_TestVersion3LoneOneOfValue) NewField(fd protoreflect.Fie // It panics if the oneof descriptor does not belong to this message. func (x *fastReflection_TestVersion3LoneOneOfValue) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { - case "testdata.TestVersion3LoneOneOfValue.sum": + case "testpb.TestVersion3LoneOneOfValue.sum": if x.Sum == nil { return nil } @@ -11580,7 +11580,7 @@ func (x *fastReflection_TestVersion3LoneOneOfValue) WhichOneof(d protoreflect.On return x.Descriptor().Fields().ByName("e") } default: - panic(fmt.Errorf("%s is not a oneof field in testdata.TestVersion3LoneOneOfValue", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.TestVersion3LoneOneOfValue", d.FullName())) } panic("unreachable") } @@ -12407,8 +12407,8 @@ var ( ) func init() { - file_unknonwnproto_proto_init() - md_TestVersion3LoneNesting = File_unknonwnproto_proto.Messages().ByName("TestVersion3LoneNesting") + file_testpb_unknonwnproto_proto_init() + md_TestVersion3LoneNesting = File_testpb_unknonwnproto_proto.Messages().ByName("TestVersion3LoneNesting") fd_TestVersion3LoneNesting_x = md_TestVersion3LoneNesting.Fields().ByName("x") fd_TestVersion3LoneNesting_a = md_TestVersion3LoneNesting.Fields().ByName("a") fd_TestVersion3LoneNesting_b = md_TestVersion3LoneNesting.Fields().ByName("b") @@ -12432,7 +12432,7 @@ func (x *TestVersion3LoneNesting) ProtoReflect() protoreflect.Message { } func (x *TestVersion3LoneNesting) slowProtoReflect() protoreflect.Message { - mi := &file_unknonwnproto_proto_msgTypes[15] + mi := &file_testpb_unknonwnproto_proto_msgTypes[15] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12579,17 +12579,17 @@ func (x *fastReflection_TestVersion3LoneNesting) Range(f func(protoreflect.Field // a repeated field is populated if it is non-empty. func (x *fastReflection_TestVersion3LoneNesting) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.TestVersion3LoneNesting.x": + case "testpb.TestVersion3LoneNesting.x": return x.X != int64(0) - case "testdata.TestVersion3LoneNesting.a": + case "testpb.TestVersion3LoneNesting.a": return x.A != nil - case "testdata.TestVersion3LoneNesting.b": + case "testpb.TestVersion3LoneNesting.b": return x.B != nil - case "testdata.TestVersion3LoneNesting.c": + case "testpb.TestVersion3LoneNesting.c": return len(x.C) != 0 - case "testdata.TestVersion3LoneNesting.d": + case "testpb.TestVersion3LoneNesting.d": return len(x.D) != 0 - case "testdata.TestVersion3LoneNesting.f": + case "testpb.TestVersion3LoneNesting.f": if x.Sum == nil { return false } else if _, ok := x.Sum.(*TestVersion3LoneNesting_F); ok { @@ -12597,23 +12597,23 @@ func (x *fastReflection_TestVersion3LoneNesting) Has(fd protoreflect.FieldDescri } else { return false } - case "testdata.TestVersion3LoneNesting.g": + case "testpb.TestVersion3LoneNesting.g": return x.G != nil - case "testdata.TestVersion3LoneNesting.h": + case "testpb.TestVersion3LoneNesting.h": return len(x.H) != 0 - case "testdata.TestVersion3LoneNesting.k": + case "testpb.TestVersion3LoneNesting.k": return x.K != nil - case "testdata.TestVersion3LoneNesting.non_critical_field": + case "testpb.TestVersion3LoneNesting.non_critical_field": return x.NonCriticalField != "" - case "testdata.TestVersion3LoneNesting.inner1": + case "testpb.TestVersion3LoneNesting.inner1": return x.Inner1 != nil - case "testdata.TestVersion3LoneNesting.inner2": + case "testpb.TestVersion3LoneNesting.inner2": return x.Inner2 != nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion3LoneNesting")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion3LoneNesting")) } - panic(fmt.Errorf("message testdata.TestVersion3LoneNesting does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion3LoneNesting does not contain field %s", fd.FullName())) } } @@ -12625,35 +12625,35 @@ func (x *fastReflection_TestVersion3LoneNesting) Has(fd protoreflect.FieldDescri // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersion3LoneNesting) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.TestVersion3LoneNesting.x": + case "testpb.TestVersion3LoneNesting.x": x.X = int64(0) - case "testdata.TestVersion3LoneNesting.a": + case "testpb.TestVersion3LoneNesting.a": x.A = nil - case "testdata.TestVersion3LoneNesting.b": + case "testpb.TestVersion3LoneNesting.b": x.B = nil - case "testdata.TestVersion3LoneNesting.c": + case "testpb.TestVersion3LoneNesting.c": x.C = nil - case "testdata.TestVersion3LoneNesting.d": + case "testpb.TestVersion3LoneNesting.d": x.D = nil - case "testdata.TestVersion3LoneNesting.f": + case "testpb.TestVersion3LoneNesting.f": x.Sum = nil - case "testdata.TestVersion3LoneNesting.g": + case "testpb.TestVersion3LoneNesting.g": x.G = nil - case "testdata.TestVersion3LoneNesting.h": + case "testpb.TestVersion3LoneNesting.h": x.H = nil - case "testdata.TestVersion3LoneNesting.k": + case "testpb.TestVersion3LoneNesting.k": x.K = nil - case "testdata.TestVersion3LoneNesting.non_critical_field": + case "testpb.TestVersion3LoneNesting.non_critical_field": x.NonCriticalField = "" - case "testdata.TestVersion3LoneNesting.inner1": + case "testpb.TestVersion3LoneNesting.inner1": x.Inner1 = nil - case "testdata.TestVersion3LoneNesting.inner2": + case "testpb.TestVersion3LoneNesting.inner2": x.Inner2 = nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion3LoneNesting")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion3LoneNesting")) } - panic(fmt.Errorf("message testdata.TestVersion3LoneNesting does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion3LoneNesting does not contain field %s", fd.FullName())) } } @@ -12665,28 +12665,28 @@ func (x *fastReflection_TestVersion3LoneNesting) Clear(fd protoreflect.FieldDesc // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_TestVersion3LoneNesting) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.TestVersion3LoneNesting.x": + case "testpb.TestVersion3LoneNesting.x": value := x.X return protoreflect.ValueOfInt64(value) - case "testdata.TestVersion3LoneNesting.a": + case "testpb.TestVersion3LoneNesting.a": value := x.A return protoreflect.ValueOfMessage(value.ProtoReflect()) - case "testdata.TestVersion3LoneNesting.b": + case "testpb.TestVersion3LoneNesting.b": value := x.B return protoreflect.ValueOfMessage(value.ProtoReflect()) - case "testdata.TestVersion3LoneNesting.c": + case "testpb.TestVersion3LoneNesting.c": if len(x.C) == 0 { return protoreflect.ValueOfList(&_TestVersion3LoneNesting_4_list{}) } listValue := &_TestVersion3LoneNesting_4_list{list: &x.C} return protoreflect.ValueOfList(listValue) - case "testdata.TestVersion3LoneNesting.d": + case "testpb.TestVersion3LoneNesting.d": if len(x.D) == 0 { return protoreflect.ValueOfList(&_TestVersion3LoneNesting_5_list{}) } listValue := &_TestVersion3LoneNesting_5_list{list: &x.D} return protoreflect.ValueOfList(listValue) - case "testdata.TestVersion3LoneNesting.f": + case "testpb.TestVersion3LoneNesting.f": if x.Sum == nil { return protoreflect.ValueOfMessage((*TestVersion3LoneNesting)(nil).ProtoReflect()) } else if v, ok := x.Sum.(*TestVersion3LoneNesting_F); ok { @@ -12694,32 +12694,32 @@ func (x *fastReflection_TestVersion3LoneNesting) Get(descriptor protoreflect.Fie } else { return protoreflect.ValueOfMessage((*TestVersion3LoneNesting)(nil).ProtoReflect()) } - case "testdata.TestVersion3LoneNesting.g": + case "testpb.TestVersion3LoneNesting.g": value := x.G return protoreflect.ValueOfMessage(value.ProtoReflect()) - case "testdata.TestVersion3LoneNesting.h": + case "testpb.TestVersion3LoneNesting.h": if len(x.H) == 0 { return protoreflect.ValueOfList(&_TestVersion3LoneNesting_9_list{}) } listValue := &_TestVersion3LoneNesting_9_list{list: &x.H} return protoreflect.ValueOfList(listValue) - case "testdata.TestVersion3LoneNesting.k": + case "testpb.TestVersion3LoneNesting.k": value := x.K return protoreflect.ValueOfMessage(value.ProtoReflect()) - case "testdata.TestVersion3LoneNesting.non_critical_field": + case "testpb.TestVersion3LoneNesting.non_critical_field": value := x.NonCriticalField return protoreflect.ValueOfString(value) - case "testdata.TestVersion3LoneNesting.inner1": + case "testpb.TestVersion3LoneNesting.inner1": value := x.Inner1 return protoreflect.ValueOfMessage(value.ProtoReflect()) - case "testdata.TestVersion3LoneNesting.inner2": + case "testpb.TestVersion3LoneNesting.inner2": value := x.Inner2 return protoreflect.ValueOfMessage(value.ProtoReflect()) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion3LoneNesting")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion3LoneNesting")) } - panic(fmt.Errorf("message testdata.TestVersion3LoneNesting does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.TestVersion3LoneNesting does not contain field %s", descriptor.FullName())) } } @@ -12735,42 +12735,42 @@ func (x *fastReflection_TestVersion3LoneNesting) Get(descriptor protoreflect.Fie // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersion3LoneNesting) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.TestVersion3LoneNesting.x": + case "testpb.TestVersion3LoneNesting.x": x.X = value.Int() - case "testdata.TestVersion3LoneNesting.a": + case "testpb.TestVersion3LoneNesting.a": x.A = value.Message().Interface().(*TestVersion3) - case "testdata.TestVersion3LoneNesting.b": + case "testpb.TestVersion3LoneNesting.b": x.B = value.Message().Interface().(*TestVersion3) - case "testdata.TestVersion3LoneNesting.c": + case "testpb.TestVersion3LoneNesting.c": lv := value.List() clv := lv.(*_TestVersion3LoneNesting_4_list) x.C = *clv.list - case "testdata.TestVersion3LoneNesting.d": + case "testpb.TestVersion3LoneNesting.d": lv := value.List() clv := lv.(*_TestVersion3LoneNesting_5_list) x.D = *clv.list - case "testdata.TestVersion3LoneNesting.f": + case "testpb.TestVersion3LoneNesting.f": cv := value.Message().Interface().(*TestVersion3LoneNesting) x.Sum = &TestVersion3LoneNesting_F{F: cv} - case "testdata.TestVersion3LoneNesting.g": + case "testpb.TestVersion3LoneNesting.g": x.G = value.Message().Interface().(*anypb.Any) - case "testdata.TestVersion3LoneNesting.h": + case "testpb.TestVersion3LoneNesting.h": lv := value.List() clv := lv.(*_TestVersion3LoneNesting_9_list) x.H = *clv.list - case "testdata.TestVersion3LoneNesting.k": + case "testpb.TestVersion3LoneNesting.k": x.K = value.Message().Interface().(*Customer1) - case "testdata.TestVersion3LoneNesting.non_critical_field": + case "testpb.TestVersion3LoneNesting.non_critical_field": x.NonCriticalField = value.Interface().(string) - case "testdata.TestVersion3LoneNesting.inner1": + case "testpb.TestVersion3LoneNesting.inner1": x.Inner1 = value.Message().Interface().(*TestVersion3LoneNesting_Inner1) - case "testdata.TestVersion3LoneNesting.inner2": + case "testpb.TestVersion3LoneNesting.inner2": x.Inner2 = value.Message().Interface().(*TestVersion3LoneNesting_Inner2) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion3LoneNesting")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion3LoneNesting")) } - panic(fmt.Errorf("message testdata.TestVersion3LoneNesting does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion3LoneNesting does not contain field %s", fd.FullName())) } } @@ -12786,29 +12786,29 @@ func (x *fastReflection_TestVersion3LoneNesting) Set(fd protoreflect.FieldDescri // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersion3LoneNesting) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestVersion3LoneNesting.a": + case "testpb.TestVersion3LoneNesting.a": if x.A == nil { x.A = new(TestVersion3) } return protoreflect.ValueOfMessage(x.A.ProtoReflect()) - case "testdata.TestVersion3LoneNesting.b": + case "testpb.TestVersion3LoneNesting.b": if x.B == nil { x.B = new(TestVersion3) } return protoreflect.ValueOfMessage(x.B.ProtoReflect()) - case "testdata.TestVersion3LoneNesting.c": + case "testpb.TestVersion3LoneNesting.c": if x.C == nil { x.C = []*TestVersion3{} } value := &_TestVersion3LoneNesting_4_list{list: &x.C} return protoreflect.ValueOfList(value) - case "testdata.TestVersion3LoneNesting.d": + case "testpb.TestVersion3LoneNesting.d": if x.D == nil { x.D = []*TestVersion3{} } value := &_TestVersion3LoneNesting_5_list{list: &x.D} return protoreflect.ValueOfList(value) - case "testdata.TestVersion3LoneNesting.f": + case "testpb.TestVersion3LoneNesting.f": if x.Sum == nil { value := &TestVersion3LoneNesting{} oneofValue := &TestVersion3LoneNesting_F{F: value} @@ -12824,41 +12824,41 @@ func (x *fastReflection_TestVersion3LoneNesting) Mutable(fd protoreflect.FieldDe x.Sum = oneofValue return protoreflect.ValueOfMessage(value.ProtoReflect()) } - case "testdata.TestVersion3LoneNesting.g": + case "testpb.TestVersion3LoneNesting.g": if x.G == nil { x.G = new(anypb.Any) } return protoreflect.ValueOfMessage(x.G.ProtoReflect()) - case "testdata.TestVersion3LoneNesting.h": + case "testpb.TestVersion3LoneNesting.h": if x.H == nil { x.H = []*TestVersion1{} } value := &_TestVersion3LoneNesting_9_list{list: &x.H} return protoreflect.ValueOfList(value) - case "testdata.TestVersion3LoneNesting.k": + case "testpb.TestVersion3LoneNesting.k": if x.K == nil { x.K = new(Customer1) } return protoreflect.ValueOfMessage(x.K.ProtoReflect()) - case "testdata.TestVersion3LoneNesting.inner1": + case "testpb.TestVersion3LoneNesting.inner1": if x.Inner1 == nil { x.Inner1 = new(TestVersion3LoneNesting_Inner1) } return protoreflect.ValueOfMessage(x.Inner1.ProtoReflect()) - case "testdata.TestVersion3LoneNesting.inner2": + case "testpb.TestVersion3LoneNesting.inner2": if x.Inner2 == nil { x.Inner2 = new(TestVersion3LoneNesting_Inner2) } return protoreflect.ValueOfMessage(x.Inner2.ProtoReflect()) - case "testdata.TestVersion3LoneNesting.x": - panic(fmt.Errorf("field x of message testdata.TestVersion3LoneNesting is not mutable")) - case "testdata.TestVersion3LoneNesting.non_critical_field": - panic(fmt.Errorf("field non_critical_field of message testdata.TestVersion3LoneNesting is not mutable")) + case "testpb.TestVersion3LoneNesting.x": + panic(fmt.Errorf("field x of message testpb.TestVersion3LoneNesting is not mutable")) + case "testpb.TestVersion3LoneNesting.non_critical_field": + panic(fmt.Errorf("field non_critical_field of message testpb.TestVersion3LoneNesting is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion3LoneNesting")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion3LoneNesting")) } - panic(fmt.Errorf("message testdata.TestVersion3LoneNesting does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion3LoneNesting does not contain field %s", fd.FullName())) } } @@ -12867,45 +12867,45 @@ func (x *fastReflection_TestVersion3LoneNesting) Mutable(fd protoreflect.FieldDe // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_TestVersion3LoneNesting) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestVersion3LoneNesting.x": + case "testpb.TestVersion3LoneNesting.x": return protoreflect.ValueOfInt64(int64(0)) - case "testdata.TestVersion3LoneNesting.a": + case "testpb.TestVersion3LoneNesting.a": m := new(TestVersion3) return protoreflect.ValueOfMessage(m.ProtoReflect()) - case "testdata.TestVersion3LoneNesting.b": + case "testpb.TestVersion3LoneNesting.b": m := new(TestVersion3) return protoreflect.ValueOfMessage(m.ProtoReflect()) - case "testdata.TestVersion3LoneNesting.c": + case "testpb.TestVersion3LoneNesting.c": list := []*TestVersion3{} return protoreflect.ValueOfList(&_TestVersion3LoneNesting_4_list{list: &list}) - case "testdata.TestVersion3LoneNesting.d": + case "testpb.TestVersion3LoneNesting.d": list := []*TestVersion3{} return protoreflect.ValueOfList(&_TestVersion3LoneNesting_5_list{list: &list}) - case "testdata.TestVersion3LoneNesting.f": + case "testpb.TestVersion3LoneNesting.f": value := &TestVersion3LoneNesting{} return protoreflect.ValueOfMessage(value.ProtoReflect()) - case "testdata.TestVersion3LoneNesting.g": + case "testpb.TestVersion3LoneNesting.g": m := new(anypb.Any) return protoreflect.ValueOfMessage(m.ProtoReflect()) - case "testdata.TestVersion3LoneNesting.h": + case "testpb.TestVersion3LoneNesting.h": list := []*TestVersion1{} return protoreflect.ValueOfList(&_TestVersion3LoneNesting_9_list{list: &list}) - case "testdata.TestVersion3LoneNesting.k": + case "testpb.TestVersion3LoneNesting.k": m := new(Customer1) return protoreflect.ValueOfMessage(m.ProtoReflect()) - case "testdata.TestVersion3LoneNesting.non_critical_field": + case "testpb.TestVersion3LoneNesting.non_critical_field": return protoreflect.ValueOfString("") - case "testdata.TestVersion3LoneNesting.inner1": + case "testpb.TestVersion3LoneNesting.inner1": m := new(TestVersion3LoneNesting_Inner1) return protoreflect.ValueOfMessage(m.ProtoReflect()) - case "testdata.TestVersion3LoneNesting.inner2": + case "testpb.TestVersion3LoneNesting.inner2": m := new(TestVersion3LoneNesting_Inner2) return protoreflect.ValueOfMessage(m.ProtoReflect()) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion3LoneNesting")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion3LoneNesting")) } - panic(fmt.Errorf("message testdata.TestVersion3LoneNesting does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion3LoneNesting does not contain field %s", fd.FullName())) } } @@ -12914,7 +12914,7 @@ func (x *fastReflection_TestVersion3LoneNesting) NewField(fd protoreflect.FieldD // It panics if the oneof descriptor does not belong to this message. func (x *fastReflection_TestVersion3LoneNesting) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { - case "testdata.TestVersion3LoneNesting.sum": + case "testpb.TestVersion3LoneNesting.sum": if x.Sum == nil { return nil } @@ -12923,7 +12923,7 @@ func (x *fastReflection_TestVersion3LoneNesting) WhichOneof(d protoreflect.Oneof return x.Descriptor().Fields().ByName("f") } default: - panic(fmt.Errorf("%s is not a oneof field in testdata.TestVersion3LoneNesting", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.TestVersion3LoneNesting", d.FullName())) } panic("unreachable") } @@ -13721,8 +13721,8 @@ var ( ) func init() { - file_unknonwnproto_proto_init() - md_TestVersion3LoneNesting_Inner1 = File_unknonwnproto_proto.Messages().ByName("TestVersion3LoneNesting").Messages().ByName("Inner1") + file_testpb_unknonwnproto_proto_init() + md_TestVersion3LoneNesting_Inner1 = File_testpb_unknonwnproto_proto.Messages().ByName("TestVersion3LoneNesting").Messages().ByName("Inner1") fd_TestVersion3LoneNesting_Inner1_id = md_TestVersion3LoneNesting_Inner1.Fields().ByName("id") fd_TestVersion3LoneNesting_Inner1_name = md_TestVersion3LoneNesting_Inner1.Fields().ByName("name") fd_TestVersion3LoneNesting_Inner1_inner = md_TestVersion3LoneNesting_Inner1.Fields().ByName("inner") @@ -13737,7 +13737,7 @@ func (x *TestVersion3LoneNesting_Inner1) ProtoReflect() protoreflect.Message { } func (x *TestVersion3LoneNesting_Inner1) slowProtoReflect() protoreflect.Message { - mi := &file_unknonwnproto_proto_msgTypes[25] + mi := &file_testpb_unknonwnproto_proto_msgTypes[25] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13826,17 +13826,17 @@ func (x *fastReflection_TestVersion3LoneNesting_Inner1) Range(f func(protoreflec // a repeated field is populated if it is non-empty. func (x *fastReflection_TestVersion3LoneNesting_Inner1) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.TestVersion3LoneNesting.Inner1.id": + case "testpb.TestVersion3LoneNesting.Inner1.id": return x.Id != int64(0) - case "testdata.TestVersion3LoneNesting.Inner1.name": + case "testpb.TestVersion3LoneNesting.Inner1.name": return x.Name != "" - case "testdata.TestVersion3LoneNesting.Inner1.inner": + case "testpb.TestVersion3LoneNesting.Inner1.inner": return x.Inner != nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion3LoneNesting.Inner1")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion3LoneNesting.Inner1")) } - panic(fmt.Errorf("message testdata.TestVersion3LoneNesting.Inner1 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion3LoneNesting.Inner1 does not contain field %s", fd.FullName())) } } @@ -13848,17 +13848,17 @@ func (x *fastReflection_TestVersion3LoneNesting_Inner1) Has(fd protoreflect.Fiel // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersion3LoneNesting_Inner1) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.TestVersion3LoneNesting.Inner1.id": + case "testpb.TestVersion3LoneNesting.Inner1.id": x.Id = int64(0) - case "testdata.TestVersion3LoneNesting.Inner1.name": + case "testpb.TestVersion3LoneNesting.Inner1.name": x.Name = "" - case "testdata.TestVersion3LoneNesting.Inner1.inner": + case "testpb.TestVersion3LoneNesting.Inner1.inner": x.Inner = nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion3LoneNesting.Inner1")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion3LoneNesting.Inner1")) } - panic(fmt.Errorf("message testdata.TestVersion3LoneNesting.Inner1 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion3LoneNesting.Inner1 does not contain field %s", fd.FullName())) } } @@ -13870,20 +13870,20 @@ func (x *fastReflection_TestVersion3LoneNesting_Inner1) Clear(fd protoreflect.Fi // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_TestVersion3LoneNesting_Inner1) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.TestVersion3LoneNesting.Inner1.id": + case "testpb.TestVersion3LoneNesting.Inner1.id": value := x.Id return protoreflect.ValueOfInt64(value) - case "testdata.TestVersion3LoneNesting.Inner1.name": + case "testpb.TestVersion3LoneNesting.Inner1.name": value := x.Name return protoreflect.ValueOfString(value) - case "testdata.TestVersion3LoneNesting.Inner1.inner": + case "testpb.TestVersion3LoneNesting.Inner1.inner": value := x.Inner return protoreflect.ValueOfMessage(value.ProtoReflect()) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion3LoneNesting.Inner1")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion3LoneNesting.Inner1")) } - panic(fmt.Errorf("message testdata.TestVersion3LoneNesting.Inner1 does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.TestVersion3LoneNesting.Inner1 does not contain field %s", descriptor.FullName())) } } @@ -13899,17 +13899,17 @@ func (x *fastReflection_TestVersion3LoneNesting_Inner1) Get(descriptor protorefl // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersion3LoneNesting_Inner1) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.TestVersion3LoneNesting.Inner1.id": + case "testpb.TestVersion3LoneNesting.Inner1.id": x.Id = value.Int() - case "testdata.TestVersion3LoneNesting.Inner1.name": + case "testpb.TestVersion3LoneNesting.Inner1.name": x.Name = value.Interface().(string) - case "testdata.TestVersion3LoneNesting.Inner1.inner": + case "testpb.TestVersion3LoneNesting.Inner1.inner": x.Inner = value.Message().Interface().(*TestVersion3LoneNesting_Inner1_InnerInner) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion3LoneNesting.Inner1")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion3LoneNesting.Inner1")) } - panic(fmt.Errorf("message testdata.TestVersion3LoneNesting.Inner1 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion3LoneNesting.Inner1 does not contain field %s", fd.FullName())) } } @@ -13925,20 +13925,20 @@ func (x *fastReflection_TestVersion3LoneNesting_Inner1) Set(fd protoreflect.Fiel // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersion3LoneNesting_Inner1) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestVersion3LoneNesting.Inner1.inner": + case "testpb.TestVersion3LoneNesting.Inner1.inner": if x.Inner == nil { x.Inner = new(TestVersion3LoneNesting_Inner1_InnerInner) } return protoreflect.ValueOfMessage(x.Inner.ProtoReflect()) - case "testdata.TestVersion3LoneNesting.Inner1.id": - panic(fmt.Errorf("field id of message testdata.TestVersion3LoneNesting.Inner1 is not mutable")) - case "testdata.TestVersion3LoneNesting.Inner1.name": - panic(fmt.Errorf("field name of message testdata.TestVersion3LoneNesting.Inner1 is not mutable")) + case "testpb.TestVersion3LoneNesting.Inner1.id": + panic(fmt.Errorf("field id of message testpb.TestVersion3LoneNesting.Inner1 is not mutable")) + case "testpb.TestVersion3LoneNesting.Inner1.name": + panic(fmt.Errorf("field name of message testpb.TestVersion3LoneNesting.Inner1 is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion3LoneNesting.Inner1")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion3LoneNesting.Inner1")) } - panic(fmt.Errorf("message testdata.TestVersion3LoneNesting.Inner1 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion3LoneNesting.Inner1 does not contain field %s", fd.FullName())) } } @@ -13947,18 +13947,18 @@ func (x *fastReflection_TestVersion3LoneNesting_Inner1) Mutable(fd protoreflect. // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_TestVersion3LoneNesting_Inner1) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestVersion3LoneNesting.Inner1.id": + case "testpb.TestVersion3LoneNesting.Inner1.id": return protoreflect.ValueOfInt64(int64(0)) - case "testdata.TestVersion3LoneNesting.Inner1.name": + case "testpb.TestVersion3LoneNesting.Inner1.name": return protoreflect.ValueOfString("") - case "testdata.TestVersion3LoneNesting.Inner1.inner": + case "testpb.TestVersion3LoneNesting.Inner1.inner": m := new(TestVersion3LoneNesting_Inner1_InnerInner) return protoreflect.ValueOfMessage(m.ProtoReflect()) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion3LoneNesting.Inner1")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion3LoneNesting.Inner1")) } - panic(fmt.Errorf("message testdata.TestVersion3LoneNesting.Inner1 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion3LoneNesting.Inner1 does not contain field %s", fd.FullName())) } } @@ -13968,7 +13968,7 @@ func (x *fastReflection_TestVersion3LoneNesting_Inner1) NewField(fd protoreflect func (x *fastReflection_TestVersion3LoneNesting_Inner1) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in testdata.TestVersion3LoneNesting.Inner1", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.TestVersion3LoneNesting.Inner1", d.FullName())) } panic("unreachable") } @@ -14267,8 +14267,8 @@ var ( ) func init() { - file_unknonwnproto_proto_init() - md_TestVersion3LoneNesting_Inner1_InnerInner = File_unknonwnproto_proto.Messages().ByName("TestVersion3LoneNesting").Messages().ByName("Inner1").Messages().ByName("InnerInner") + file_testpb_unknonwnproto_proto_init() + md_TestVersion3LoneNesting_Inner1_InnerInner = File_testpb_unknonwnproto_proto.Messages().ByName("TestVersion3LoneNesting").Messages().ByName("Inner1").Messages().ByName("InnerInner") fd_TestVersion3LoneNesting_Inner1_InnerInner_id = md_TestVersion3LoneNesting_Inner1_InnerInner.Fields().ByName("id") fd_TestVersion3LoneNesting_Inner1_InnerInner_city = md_TestVersion3LoneNesting_Inner1_InnerInner.Fields().ByName("city") } @@ -14282,7 +14282,7 @@ func (x *TestVersion3LoneNesting_Inner1_InnerInner) ProtoReflect() protoreflect. } func (x *TestVersion3LoneNesting_Inner1_InnerInner) slowProtoReflect() protoreflect.Message { - mi := &file_unknonwnproto_proto_msgTypes[27] + mi := &file_testpb_unknonwnproto_proto_msgTypes[27] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14365,15 +14365,15 @@ func (x *fastReflection_TestVersion3LoneNesting_Inner1_InnerInner) Range(f func( // a repeated field is populated if it is non-empty. func (x *fastReflection_TestVersion3LoneNesting_Inner1_InnerInner) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.TestVersion3LoneNesting.Inner1.InnerInner.id": + case "testpb.TestVersion3LoneNesting.Inner1.InnerInner.id": return x.Id != "" - case "testdata.TestVersion3LoneNesting.Inner1.InnerInner.city": + case "testpb.TestVersion3LoneNesting.Inner1.InnerInner.city": return x.City != "" default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion3LoneNesting.Inner1.InnerInner")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion3LoneNesting.Inner1.InnerInner")) } - panic(fmt.Errorf("message testdata.TestVersion3LoneNesting.Inner1.InnerInner does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion3LoneNesting.Inner1.InnerInner does not contain field %s", fd.FullName())) } } @@ -14385,15 +14385,15 @@ func (x *fastReflection_TestVersion3LoneNesting_Inner1_InnerInner) Has(fd protor // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersion3LoneNesting_Inner1_InnerInner) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.TestVersion3LoneNesting.Inner1.InnerInner.id": + case "testpb.TestVersion3LoneNesting.Inner1.InnerInner.id": x.Id = "" - case "testdata.TestVersion3LoneNesting.Inner1.InnerInner.city": + case "testpb.TestVersion3LoneNesting.Inner1.InnerInner.city": x.City = "" default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion3LoneNesting.Inner1.InnerInner")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion3LoneNesting.Inner1.InnerInner")) } - panic(fmt.Errorf("message testdata.TestVersion3LoneNesting.Inner1.InnerInner does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion3LoneNesting.Inner1.InnerInner does not contain field %s", fd.FullName())) } } @@ -14405,17 +14405,17 @@ func (x *fastReflection_TestVersion3LoneNesting_Inner1_InnerInner) Clear(fd prot // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_TestVersion3LoneNesting_Inner1_InnerInner) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.TestVersion3LoneNesting.Inner1.InnerInner.id": + case "testpb.TestVersion3LoneNesting.Inner1.InnerInner.id": value := x.Id return protoreflect.ValueOfString(value) - case "testdata.TestVersion3LoneNesting.Inner1.InnerInner.city": + case "testpb.TestVersion3LoneNesting.Inner1.InnerInner.city": value := x.City return protoreflect.ValueOfString(value) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion3LoneNesting.Inner1.InnerInner")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion3LoneNesting.Inner1.InnerInner")) } - panic(fmt.Errorf("message testdata.TestVersion3LoneNesting.Inner1.InnerInner does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.TestVersion3LoneNesting.Inner1.InnerInner does not contain field %s", descriptor.FullName())) } } @@ -14431,15 +14431,15 @@ func (x *fastReflection_TestVersion3LoneNesting_Inner1_InnerInner) Get(descripto // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersion3LoneNesting_Inner1_InnerInner) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.TestVersion3LoneNesting.Inner1.InnerInner.id": + case "testpb.TestVersion3LoneNesting.Inner1.InnerInner.id": x.Id = value.Interface().(string) - case "testdata.TestVersion3LoneNesting.Inner1.InnerInner.city": + case "testpb.TestVersion3LoneNesting.Inner1.InnerInner.city": x.City = value.Interface().(string) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion3LoneNesting.Inner1.InnerInner")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion3LoneNesting.Inner1.InnerInner")) } - panic(fmt.Errorf("message testdata.TestVersion3LoneNesting.Inner1.InnerInner does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion3LoneNesting.Inner1.InnerInner does not contain field %s", fd.FullName())) } } @@ -14455,15 +14455,15 @@ func (x *fastReflection_TestVersion3LoneNesting_Inner1_InnerInner) Set(fd protor // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersion3LoneNesting_Inner1_InnerInner) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestVersion3LoneNesting.Inner1.InnerInner.id": - panic(fmt.Errorf("field id of message testdata.TestVersion3LoneNesting.Inner1.InnerInner is not mutable")) - case "testdata.TestVersion3LoneNesting.Inner1.InnerInner.city": - panic(fmt.Errorf("field city of message testdata.TestVersion3LoneNesting.Inner1.InnerInner is not mutable")) + case "testpb.TestVersion3LoneNesting.Inner1.InnerInner.id": + panic(fmt.Errorf("field id of message testpb.TestVersion3LoneNesting.Inner1.InnerInner is not mutable")) + case "testpb.TestVersion3LoneNesting.Inner1.InnerInner.city": + panic(fmt.Errorf("field city of message testpb.TestVersion3LoneNesting.Inner1.InnerInner is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion3LoneNesting.Inner1.InnerInner")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion3LoneNesting.Inner1.InnerInner")) } - panic(fmt.Errorf("message testdata.TestVersion3LoneNesting.Inner1.InnerInner does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion3LoneNesting.Inner1.InnerInner does not contain field %s", fd.FullName())) } } @@ -14472,15 +14472,15 @@ func (x *fastReflection_TestVersion3LoneNesting_Inner1_InnerInner) Mutable(fd pr // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_TestVersion3LoneNesting_Inner1_InnerInner) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestVersion3LoneNesting.Inner1.InnerInner.id": + case "testpb.TestVersion3LoneNesting.Inner1.InnerInner.id": return protoreflect.ValueOfString("") - case "testdata.TestVersion3LoneNesting.Inner1.InnerInner.city": + case "testpb.TestVersion3LoneNesting.Inner1.InnerInner.city": return protoreflect.ValueOfString("") default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion3LoneNesting.Inner1.InnerInner")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion3LoneNesting.Inner1.InnerInner")) } - panic(fmt.Errorf("message testdata.TestVersion3LoneNesting.Inner1.InnerInner does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion3LoneNesting.Inner1.InnerInner does not contain field %s", fd.FullName())) } } @@ -14490,7 +14490,7 @@ func (x *fastReflection_TestVersion3LoneNesting_Inner1_InnerInner) NewField(fd p func (x *fastReflection_TestVersion3LoneNesting_Inner1_InnerInner) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in testdata.TestVersion3LoneNesting.Inner1.InnerInner", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.TestVersion3LoneNesting.Inner1.InnerInner", d.FullName())) } panic("unreachable") } @@ -14752,8 +14752,8 @@ var ( ) func init() { - file_unknonwnproto_proto_init() - md_TestVersion3LoneNesting_Inner2 = File_unknonwnproto_proto.Messages().ByName("TestVersion3LoneNesting").Messages().ByName("Inner2") + file_testpb_unknonwnproto_proto_init() + md_TestVersion3LoneNesting_Inner2 = File_testpb_unknonwnproto_proto.Messages().ByName("TestVersion3LoneNesting").Messages().ByName("Inner2") fd_TestVersion3LoneNesting_Inner2_id = md_TestVersion3LoneNesting_Inner2.Fields().ByName("id") fd_TestVersion3LoneNesting_Inner2_country = md_TestVersion3LoneNesting_Inner2.Fields().ByName("country") fd_TestVersion3LoneNesting_Inner2_inner = md_TestVersion3LoneNesting_Inner2.Fields().ByName("inner") @@ -14768,7 +14768,7 @@ func (x *TestVersion3LoneNesting_Inner2) ProtoReflect() protoreflect.Message { } func (x *TestVersion3LoneNesting_Inner2) slowProtoReflect() protoreflect.Message { - mi := &file_unknonwnproto_proto_msgTypes[26] + mi := &file_testpb_unknonwnproto_proto_msgTypes[26] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14857,17 +14857,17 @@ func (x *fastReflection_TestVersion3LoneNesting_Inner2) Range(f func(protoreflec // a repeated field is populated if it is non-empty. func (x *fastReflection_TestVersion3LoneNesting_Inner2) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.TestVersion3LoneNesting.Inner2.id": + case "testpb.TestVersion3LoneNesting.Inner2.id": return x.Id != "" - case "testdata.TestVersion3LoneNesting.Inner2.country": + case "testpb.TestVersion3LoneNesting.Inner2.country": return x.Country != "" - case "testdata.TestVersion3LoneNesting.Inner2.inner": + case "testpb.TestVersion3LoneNesting.Inner2.inner": return x.Inner != nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion3LoneNesting.Inner2")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion3LoneNesting.Inner2")) } - panic(fmt.Errorf("message testdata.TestVersion3LoneNesting.Inner2 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion3LoneNesting.Inner2 does not contain field %s", fd.FullName())) } } @@ -14879,17 +14879,17 @@ func (x *fastReflection_TestVersion3LoneNesting_Inner2) Has(fd protoreflect.Fiel // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersion3LoneNesting_Inner2) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.TestVersion3LoneNesting.Inner2.id": + case "testpb.TestVersion3LoneNesting.Inner2.id": x.Id = "" - case "testdata.TestVersion3LoneNesting.Inner2.country": + case "testpb.TestVersion3LoneNesting.Inner2.country": x.Country = "" - case "testdata.TestVersion3LoneNesting.Inner2.inner": + case "testpb.TestVersion3LoneNesting.Inner2.inner": x.Inner = nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion3LoneNesting.Inner2")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion3LoneNesting.Inner2")) } - panic(fmt.Errorf("message testdata.TestVersion3LoneNesting.Inner2 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion3LoneNesting.Inner2 does not contain field %s", fd.FullName())) } } @@ -14901,20 +14901,20 @@ func (x *fastReflection_TestVersion3LoneNesting_Inner2) Clear(fd protoreflect.Fi // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_TestVersion3LoneNesting_Inner2) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.TestVersion3LoneNesting.Inner2.id": + case "testpb.TestVersion3LoneNesting.Inner2.id": value := x.Id return protoreflect.ValueOfString(value) - case "testdata.TestVersion3LoneNesting.Inner2.country": + case "testpb.TestVersion3LoneNesting.Inner2.country": value := x.Country return protoreflect.ValueOfString(value) - case "testdata.TestVersion3LoneNesting.Inner2.inner": + case "testpb.TestVersion3LoneNesting.Inner2.inner": value := x.Inner return protoreflect.ValueOfMessage(value.ProtoReflect()) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion3LoneNesting.Inner2")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion3LoneNesting.Inner2")) } - panic(fmt.Errorf("message testdata.TestVersion3LoneNesting.Inner2 does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.TestVersion3LoneNesting.Inner2 does not contain field %s", descriptor.FullName())) } } @@ -14930,17 +14930,17 @@ func (x *fastReflection_TestVersion3LoneNesting_Inner2) Get(descriptor protorefl // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersion3LoneNesting_Inner2) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.TestVersion3LoneNesting.Inner2.id": + case "testpb.TestVersion3LoneNesting.Inner2.id": x.Id = value.Interface().(string) - case "testdata.TestVersion3LoneNesting.Inner2.country": + case "testpb.TestVersion3LoneNesting.Inner2.country": x.Country = value.Interface().(string) - case "testdata.TestVersion3LoneNesting.Inner2.inner": + case "testpb.TestVersion3LoneNesting.Inner2.inner": x.Inner = value.Message().Interface().(*TestVersion3LoneNesting_Inner2_InnerInner) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion3LoneNesting.Inner2")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion3LoneNesting.Inner2")) } - panic(fmt.Errorf("message testdata.TestVersion3LoneNesting.Inner2 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion3LoneNesting.Inner2 does not contain field %s", fd.FullName())) } } @@ -14956,20 +14956,20 @@ func (x *fastReflection_TestVersion3LoneNesting_Inner2) Set(fd protoreflect.Fiel // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersion3LoneNesting_Inner2) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestVersion3LoneNesting.Inner2.inner": + case "testpb.TestVersion3LoneNesting.Inner2.inner": if x.Inner == nil { x.Inner = new(TestVersion3LoneNesting_Inner2_InnerInner) } return protoreflect.ValueOfMessage(x.Inner.ProtoReflect()) - case "testdata.TestVersion3LoneNesting.Inner2.id": - panic(fmt.Errorf("field id of message testdata.TestVersion3LoneNesting.Inner2 is not mutable")) - case "testdata.TestVersion3LoneNesting.Inner2.country": - panic(fmt.Errorf("field country of message testdata.TestVersion3LoneNesting.Inner2 is not mutable")) + case "testpb.TestVersion3LoneNesting.Inner2.id": + panic(fmt.Errorf("field id of message testpb.TestVersion3LoneNesting.Inner2 is not mutable")) + case "testpb.TestVersion3LoneNesting.Inner2.country": + panic(fmt.Errorf("field country of message testpb.TestVersion3LoneNesting.Inner2 is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion3LoneNesting.Inner2")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion3LoneNesting.Inner2")) } - panic(fmt.Errorf("message testdata.TestVersion3LoneNesting.Inner2 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion3LoneNesting.Inner2 does not contain field %s", fd.FullName())) } } @@ -14978,18 +14978,18 @@ func (x *fastReflection_TestVersion3LoneNesting_Inner2) Mutable(fd protoreflect. // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_TestVersion3LoneNesting_Inner2) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestVersion3LoneNesting.Inner2.id": + case "testpb.TestVersion3LoneNesting.Inner2.id": return protoreflect.ValueOfString("") - case "testdata.TestVersion3LoneNesting.Inner2.country": + case "testpb.TestVersion3LoneNesting.Inner2.country": return protoreflect.ValueOfString("") - case "testdata.TestVersion3LoneNesting.Inner2.inner": + case "testpb.TestVersion3LoneNesting.Inner2.inner": m := new(TestVersion3LoneNesting_Inner2_InnerInner) return protoreflect.ValueOfMessage(m.ProtoReflect()) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion3LoneNesting.Inner2")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion3LoneNesting.Inner2")) } - panic(fmt.Errorf("message testdata.TestVersion3LoneNesting.Inner2 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion3LoneNesting.Inner2 does not contain field %s", fd.FullName())) } } @@ -14999,7 +14999,7 @@ func (x *fastReflection_TestVersion3LoneNesting_Inner2) NewField(fd protoreflect func (x *fastReflection_TestVersion3LoneNesting_Inner2) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in testdata.TestVersion3LoneNesting.Inner2", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.TestVersion3LoneNesting.Inner2", d.FullName())) } panic("unreachable") } @@ -15314,8 +15314,8 @@ var ( ) func init() { - file_unknonwnproto_proto_init() - md_TestVersion3LoneNesting_Inner2_InnerInner = File_unknonwnproto_proto.Messages().ByName("TestVersion3LoneNesting").Messages().ByName("Inner2").Messages().ByName("InnerInner") + file_testpb_unknonwnproto_proto_init() + md_TestVersion3LoneNesting_Inner2_InnerInner = File_testpb_unknonwnproto_proto.Messages().ByName("TestVersion3LoneNesting").Messages().ByName("Inner2").Messages().ByName("InnerInner") fd_TestVersion3LoneNesting_Inner2_InnerInner_id = md_TestVersion3LoneNesting_Inner2_InnerInner.Fields().ByName("id") fd_TestVersion3LoneNesting_Inner2_InnerInner_city = md_TestVersion3LoneNesting_Inner2_InnerInner.Fields().ByName("city") } @@ -15329,7 +15329,7 @@ func (x *TestVersion3LoneNesting_Inner2_InnerInner) ProtoReflect() protoreflect. } func (x *TestVersion3LoneNesting_Inner2_InnerInner) slowProtoReflect() protoreflect.Message { - mi := &file_unknonwnproto_proto_msgTypes[28] + mi := &file_testpb_unknonwnproto_proto_msgTypes[28] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15412,15 +15412,15 @@ func (x *fastReflection_TestVersion3LoneNesting_Inner2_InnerInner) Range(f func( // a repeated field is populated if it is non-empty. func (x *fastReflection_TestVersion3LoneNesting_Inner2_InnerInner) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.TestVersion3LoneNesting.Inner2.InnerInner.id": + case "testpb.TestVersion3LoneNesting.Inner2.InnerInner.id": return x.Id != "" - case "testdata.TestVersion3LoneNesting.Inner2.InnerInner.city": + case "testpb.TestVersion3LoneNesting.Inner2.InnerInner.city": return x.City != "" default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion3LoneNesting.Inner2.InnerInner")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion3LoneNesting.Inner2.InnerInner")) } - panic(fmt.Errorf("message testdata.TestVersion3LoneNesting.Inner2.InnerInner does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion3LoneNesting.Inner2.InnerInner does not contain field %s", fd.FullName())) } } @@ -15432,15 +15432,15 @@ func (x *fastReflection_TestVersion3LoneNesting_Inner2_InnerInner) Has(fd protor // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersion3LoneNesting_Inner2_InnerInner) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.TestVersion3LoneNesting.Inner2.InnerInner.id": + case "testpb.TestVersion3LoneNesting.Inner2.InnerInner.id": x.Id = "" - case "testdata.TestVersion3LoneNesting.Inner2.InnerInner.city": + case "testpb.TestVersion3LoneNesting.Inner2.InnerInner.city": x.City = "" default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion3LoneNesting.Inner2.InnerInner")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion3LoneNesting.Inner2.InnerInner")) } - panic(fmt.Errorf("message testdata.TestVersion3LoneNesting.Inner2.InnerInner does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion3LoneNesting.Inner2.InnerInner does not contain field %s", fd.FullName())) } } @@ -15452,17 +15452,17 @@ func (x *fastReflection_TestVersion3LoneNesting_Inner2_InnerInner) Clear(fd prot // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_TestVersion3LoneNesting_Inner2_InnerInner) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.TestVersion3LoneNesting.Inner2.InnerInner.id": + case "testpb.TestVersion3LoneNesting.Inner2.InnerInner.id": value := x.Id return protoreflect.ValueOfString(value) - case "testdata.TestVersion3LoneNesting.Inner2.InnerInner.city": + case "testpb.TestVersion3LoneNesting.Inner2.InnerInner.city": value := x.City return protoreflect.ValueOfString(value) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion3LoneNesting.Inner2.InnerInner")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion3LoneNesting.Inner2.InnerInner")) } - panic(fmt.Errorf("message testdata.TestVersion3LoneNesting.Inner2.InnerInner does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.TestVersion3LoneNesting.Inner2.InnerInner does not contain field %s", descriptor.FullName())) } } @@ -15478,15 +15478,15 @@ func (x *fastReflection_TestVersion3LoneNesting_Inner2_InnerInner) Get(descripto // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersion3LoneNesting_Inner2_InnerInner) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.TestVersion3LoneNesting.Inner2.InnerInner.id": + case "testpb.TestVersion3LoneNesting.Inner2.InnerInner.id": x.Id = value.Interface().(string) - case "testdata.TestVersion3LoneNesting.Inner2.InnerInner.city": + case "testpb.TestVersion3LoneNesting.Inner2.InnerInner.city": x.City = value.Interface().(string) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion3LoneNesting.Inner2.InnerInner")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion3LoneNesting.Inner2.InnerInner")) } - panic(fmt.Errorf("message testdata.TestVersion3LoneNesting.Inner2.InnerInner does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion3LoneNesting.Inner2.InnerInner does not contain field %s", fd.FullName())) } } @@ -15502,15 +15502,15 @@ func (x *fastReflection_TestVersion3LoneNesting_Inner2_InnerInner) Set(fd protor // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersion3LoneNesting_Inner2_InnerInner) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestVersion3LoneNesting.Inner2.InnerInner.id": - panic(fmt.Errorf("field id of message testdata.TestVersion3LoneNesting.Inner2.InnerInner is not mutable")) - case "testdata.TestVersion3LoneNesting.Inner2.InnerInner.city": - panic(fmt.Errorf("field city of message testdata.TestVersion3LoneNesting.Inner2.InnerInner is not mutable")) + case "testpb.TestVersion3LoneNesting.Inner2.InnerInner.id": + panic(fmt.Errorf("field id of message testpb.TestVersion3LoneNesting.Inner2.InnerInner is not mutable")) + case "testpb.TestVersion3LoneNesting.Inner2.InnerInner.city": + panic(fmt.Errorf("field city of message testpb.TestVersion3LoneNesting.Inner2.InnerInner is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion3LoneNesting.Inner2.InnerInner")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion3LoneNesting.Inner2.InnerInner")) } - panic(fmt.Errorf("message testdata.TestVersion3LoneNesting.Inner2.InnerInner does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion3LoneNesting.Inner2.InnerInner does not contain field %s", fd.FullName())) } } @@ -15519,15 +15519,15 @@ func (x *fastReflection_TestVersion3LoneNesting_Inner2_InnerInner) Mutable(fd pr // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_TestVersion3LoneNesting_Inner2_InnerInner) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestVersion3LoneNesting.Inner2.InnerInner.id": + case "testpb.TestVersion3LoneNesting.Inner2.InnerInner.id": return protoreflect.ValueOfString("") - case "testdata.TestVersion3LoneNesting.Inner2.InnerInner.city": + case "testpb.TestVersion3LoneNesting.Inner2.InnerInner.city": return protoreflect.ValueOfString("") default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion3LoneNesting.Inner2.InnerInner")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion3LoneNesting.Inner2.InnerInner")) } - panic(fmt.Errorf("message testdata.TestVersion3LoneNesting.Inner2.InnerInner does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion3LoneNesting.Inner2.InnerInner does not contain field %s", fd.FullName())) } } @@ -15537,7 +15537,7 @@ func (x *fastReflection_TestVersion3LoneNesting_Inner2_InnerInner) NewField(fd p func (x *fastReflection_TestVersion3LoneNesting_Inner2_InnerInner) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in testdata.TestVersion3LoneNesting.Inner2.InnerInner", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.TestVersion3LoneNesting.Inner2.InnerInner", d.FullName())) } panic("unreachable") } @@ -15961,8 +15961,8 @@ var ( ) func init() { - file_unknonwnproto_proto_init() - md_TestVersion4LoneNesting = File_unknonwnproto_proto.Messages().ByName("TestVersion4LoneNesting") + file_testpb_unknonwnproto_proto_init() + md_TestVersion4LoneNesting = File_testpb_unknonwnproto_proto.Messages().ByName("TestVersion4LoneNesting") fd_TestVersion4LoneNesting_x = md_TestVersion4LoneNesting.Fields().ByName("x") fd_TestVersion4LoneNesting_a = md_TestVersion4LoneNesting.Fields().ByName("a") fd_TestVersion4LoneNesting_b = md_TestVersion4LoneNesting.Fields().ByName("b") @@ -15986,7 +15986,7 @@ func (x *TestVersion4LoneNesting) ProtoReflect() protoreflect.Message { } func (x *TestVersion4LoneNesting) slowProtoReflect() protoreflect.Message { - mi := &file_unknonwnproto_proto_msgTypes[16] + mi := &file_testpb_unknonwnproto_proto_msgTypes[16] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16133,17 +16133,17 @@ func (x *fastReflection_TestVersion4LoneNesting) Range(f func(protoreflect.Field // a repeated field is populated if it is non-empty. func (x *fastReflection_TestVersion4LoneNesting) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.TestVersion4LoneNesting.x": + case "testpb.TestVersion4LoneNesting.x": return x.X != int64(0) - case "testdata.TestVersion4LoneNesting.a": + case "testpb.TestVersion4LoneNesting.a": return x.A != nil - case "testdata.TestVersion4LoneNesting.b": + case "testpb.TestVersion4LoneNesting.b": return x.B != nil - case "testdata.TestVersion4LoneNesting.c": + case "testpb.TestVersion4LoneNesting.c": return len(x.C) != 0 - case "testdata.TestVersion4LoneNesting.d": + case "testpb.TestVersion4LoneNesting.d": return len(x.D) != 0 - case "testdata.TestVersion4LoneNesting.f": + case "testpb.TestVersion4LoneNesting.f": if x.Sum == nil { return false } else if _, ok := x.Sum.(*TestVersion4LoneNesting_F); ok { @@ -16151,23 +16151,23 @@ func (x *fastReflection_TestVersion4LoneNesting) Has(fd protoreflect.FieldDescri } else { return false } - case "testdata.TestVersion4LoneNesting.g": + case "testpb.TestVersion4LoneNesting.g": return x.G != nil - case "testdata.TestVersion4LoneNesting.h": + case "testpb.TestVersion4LoneNesting.h": return len(x.H) != 0 - case "testdata.TestVersion4LoneNesting.k": + case "testpb.TestVersion4LoneNesting.k": return x.K != nil - case "testdata.TestVersion4LoneNesting.non_critical_field": + case "testpb.TestVersion4LoneNesting.non_critical_field": return x.NonCriticalField != "" - case "testdata.TestVersion4LoneNesting.inner1": + case "testpb.TestVersion4LoneNesting.inner1": return x.Inner1 != nil - case "testdata.TestVersion4LoneNesting.inner2": + case "testpb.TestVersion4LoneNesting.inner2": return x.Inner2 != nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion4LoneNesting")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion4LoneNesting")) } - panic(fmt.Errorf("message testdata.TestVersion4LoneNesting does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion4LoneNesting does not contain field %s", fd.FullName())) } } @@ -16179,35 +16179,35 @@ func (x *fastReflection_TestVersion4LoneNesting) Has(fd protoreflect.FieldDescri // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersion4LoneNesting) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.TestVersion4LoneNesting.x": + case "testpb.TestVersion4LoneNesting.x": x.X = int64(0) - case "testdata.TestVersion4LoneNesting.a": + case "testpb.TestVersion4LoneNesting.a": x.A = nil - case "testdata.TestVersion4LoneNesting.b": + case "testpb.TestVersion4LoneNesting.b": x.B = nil - case "testdata.TestVersion4LoneNesting.c": + case "testpb.TestVersion4LoneNesting.c": x.C = nil - case "testdata.TestVersion4LoneNesting.d": + case "testpb.TestVersion4LoneNesting.d": x.D = nil - case "testdata.TestVersion4LoneNesting.f": + case "testpb.TestVersion4LoneNesting.f": x.Sum = nil - case "testdata.TestVersion4LoneNesting.g": + case "testpb.TestVersion4LoneNesting.g": x.G = nil - case "testdata.TestVersion4LoneNesting.h": + case "testpb.TestVersion4LoneNesting.h": x.H = nil - case "testdata.TestVersion4LoneNesting.k": + case "testpb.TestVersion4LoneNesting.k": x.K = nil - case "testdata.TestVersion4LoneNesting.non_critical_field": + case "testpb.TestVersion4LoneNesting.non_critical_field": x.NonCriticalField = "" - case "testdata.TestVersion4LoneNesting.inner1": + case "testpb.TestVersion4LoneNesting.inner1": x.Inner1 = nil - case "testdata.TestVersion4LoneNesting.inner2": + case "testpb.TestVersion4LoneNesting.inner2": x.Inner2 = nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion4LoneNesting")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion4LoneNesting")) } - panic(fmt.Errorf("message testdata.TestVersion4LoneNesting does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion4LoneNesting does not contain field %s", fd.FullName())) } } @@ -16219,28 +16219,28 @@ func (x *fastReflection_TestVersion4LoneNesting) Clear(fd protoreflect.FieldDesc // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_TestVersion4LoneNesting) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.TestVersion4LoneNesting.x": + case "testpb.TestVersion4LoneNesting.x": value := x.X return protoreflect.ValueOfInt64(value) - case "testdata.TestVersion4LoneNesting.a": + case "testpb.TestVersion4LoneNesting.a": value := x.A return protoreflect.ValueOfMessage(value.ProtoReflect()) - case "testdata.TestVersion4LoneNesting.b": + case "testpb.TestVersion4LoneNesting.b": value := x.B return protoreflect.ValueOfMessage(value.ProtoReflect()) - case "testdata.TestVersion4LoneNesting.c": + case "testpb.TestVersion4LoneNesting.c": if len(x.C) == 0 { return protoreflect.ValueOfList(&_TestVersion4LoneNesting_4_list{}) } listValue := &_TestVersion4LoneNesting_4_list{list: &x.C} return protoreflect.ValueOfList(listValue) - case "testdata.TestVersion4LoneNesting.d": + case "testpb.TestVersion4LoneNesting.d": if len(x.D) == 0 { return protoreflect.ValueOfList(&_TestVersion4LoneNesting_5_list{}) } listValue := &_TestVersion4LoneNesting_5_list{list: &x.D} return protoreflect.ValueOfList(listValue) - case "testdata.TestVersion4LoneNesting.f": + case "testpb.TestVersion4LoneNesting.f": if x.Sum == nil { return protoreflect.ValueOfMessage((*TestVersion3LoneNesting)(nil).ProtoReflect()) } else if v, ok := x.Sum.(*TestVersion4LoneNesting_F); ok { @@ -16248,32 +16248,32 @@ func (x *fastReflection_TestVersion4LoneNesting) Get(descriptor protoreflect.Fie } else { return protoreflect.ValueOfMessage((*TestVersion3LoneNesting)(nil).ProtoReflect()) } - case "testdata.TestVersion4LoneNesting.g": + case "testpb.TestVersion4LoneNesting.g": value := x.G return protoreflect.ValueOfMessage(value.ProtoReflect()) - case "testdata.TestVersion4LoneNesting.h": + case "testpb.TestVersion4LoneNesting.h": if len(x.H) == 0 { return protoreflect.ValueOfList(&_TestVersion4LoneNesting_9_list{}) } listValue := &_TestVersion4LoneNesting_9_list{list: &x.H} return protoreflect.ValueOfList(listValue) - case "testdata.TestVersion4LoneNesting.k": + case "testpb.TestVersion4LoneNesting.k": value := x.K return protoreflect.ValueOfMessage(value.ProtoReflect()) - case "testdata.TestVersion4LoneNesting.non_critical_field": + case "testpb.TestVersion4LoneNesting.non_critical_field": value := x.NonCriticalField return protoreflect.ValueOfString(value) - case "testdata.TestVersion4LoneNesting.inner1": + case "testpb.TestVersion4LoneNesting.inner1": value := x.Inner1 return protoreflect.ValueOfMessage(value.ProtoReflect()) - case "testdata.TestVersion4LoneNesting.inner2": + case "testpb.TestVersion4LoneNesting.inner2": value := x.Inner2 return protoreflect.ValueOfMessage(value.ProtoReflect()) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion4LoneNesting")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion4LoneNesting")) } - panic(fmt.Errorf("message testdata.TestVersion4LoneNesting does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.TestVersion4LoneNesting does not contain field %s", descriptor.FullName())) } } @@ -16289,42 +16289,42 @@ func (x *fastReflection_TestVersion4LoneNesting) Get(descriptor protoreflect.Fie // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersion4LoneNesting) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.TestVersion4LoneNesting.x": + case "testpb.TestVersion4LoneNesting.x": x.X = value.Int() - case "testdata.TestVersion4LoneNesting.a": + case "testpb.TestVersion4LoneNesting.a": x.A = value.Message().Interface().(*TestVersion3) - case "testdata.TestVersion4LoneNesting.b": + case "testpb.TestVersion4LoneNesting.b": x.B = value.Message().Interface().(*TestVersion3) - case "testdata.TestVersion4LoneNesting.c": + case "testpb.TestVersion4LoneNesting.c": lv := value.List() clv := lv.(*_TestVersion4LoneNesting_4_list) x.C = *clv.list - case "testdata.TestVersion4LoneNesting.d": + case "testpb.TestVersion4LoneNesting.d": lv := value.List() clv := lv.(*_TestVersion4LoneNesting_5_list) x.D = *clv.list - case "testdata.TestVersion4LoneNesting.f": + case "testpb.TestVersion4LoneNesting.f": cv := value.Message().Interface().(*TestVersion3LoneNesting) x.Sum = &TestVersion4LoneNesting_F{F: cv} - case "testdata.TestVersion4LoneNesting.g": + case "testpb.TestVersion4LoneNesting.g": x.G = value.Message().Interface().(*anypb.Any) - case "testdata.TestVersion4LoneNesting.h": + case "testpb.TestVersion4LoneNesting.h": lv := value.List() clv := lv.(*_TestVersion4LoneNesting_9_list) x.H = *clv.list - case "testdata.TestVersion4LoneNesting.k": + case "testpb.TestVersion4LoneNesting.k": x.K = value.Message().Interface().(*Customer1) - case "testdata.TestVersion4LoneNesting.non_critical_field": + case "testpb.TestVersion4LoneNesting.non_critical_field": x.NonCriticalField = value.Interface().(string) - case "testdata.TestVersion4LoneNesting.inner1": + case "testpb.TestVersion4LoneNesting.inner1": x.Inner1 = value.Message().Interface().(*TestVersion4LoneNesting_Inner1) - case "testdata.TestVersion4LoneNesting.inner2": + case "testpb.TestVersion4LoneNesting.inner2": x.Inner2 = value.Message().Interface().(*TestVersion4LoneNesting_Inner2) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion4LoneNesting")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion4LoneNesting")) } - panic(fmt.Errorf("message testdata.TestVersion4LoneNesting does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion4LoneNesting does not contain field %s", fd.FullName())) } } @@ -16340,29 +16340,29 @@ func (x *fastReflection_TestVersion4LoneNesting) Set(fd protoreflect.FieldDescri // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersion4LoneNesting) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestVersion4LoneNesting.a": + case "testpb.TestVersion4LoneNesting.a": if x.A == nil { x.A = new(TestVersion3) } return protoreflect.ValueOfMessage(x.A.ProtoReflect()) - case "testdata.TestVersion4LoneNesting.b": + case "testpb.TestVersion4LoneNesting.b": if x.B == nil { x.B = new(TestVersion3) } return protoreflect.ValueOfMessage(x.B.ProtoReflect()) - case "testdata.TestVersion4LoneNesting.c": + case "testpb.TestVersion4LoneNesting.c": if x.C == nil { x.C = []*TestVersion3{} } value := &_TestVersion4LoneNesting_4_list{list: &x.C} return protoreflect.ValueOfList(value) - case "testdata.TestVersion4LoneNesting.d": + case "testpb.TestVersion4LoneNesting.d": if x.D == nil { x.D = []*TestVersion3{} } value := &_TestVersion4LoneNesting_5_list{list: &x.D} return protoreflect.ValueOfList(value) - case "testdata.TestVersion4LoneNesting.f": + case "testpb.TestVersion4LoneNesting.f": if x.Sum == nil { value := &TestVersion3LoneNesting{} oneofValue := &TestVersion4LoneNesting_F{F: value} @@ -16378,41 +16378,41 @@ func (x *fastReflection_TestVersion4LoneNesting) Mutable(fd protoreflect.FieldDe x.Sum = oneofValue return protoreflect.ValueOfMessage(value.ProtoReflect()) } - case "testdata.TestVersion4LoneNesting.g": + case "testpb.TestVersion4LoneNesting.g": if x.G == nil { x.G = new(anypb.Any) } return protoreflect.ValueOfMessage(x.G.ProtoReflect()) - case "testdata.TestVersion4LoneNesting.h": + case "testpb.TestVersion4LoneNesting.h": if x.H == nil { x.H = []*TestVersion1{} } value := &_TestVersion4LoneNesting_9_list{list: &x.H} return protoreflect.ValueOfList(value) - case "testdata.TestVersion4LoneNesting.k": + case "testpb.TestVersion4LoneNesting.k": if x.K == nil { x.K = new(Customer1) } return protoreflect.ValueOfMessage(x.K.ProtoReflect()) - case "testdata.TestVersion4LoneNesting.inner1": + case "testpb.TestVersion4LoneNesting.inner1": if x.Inner1 == nil { x.Inner1 = new(TestVersion4LoneNesting_Inner1) } return protoreflect.ValueOfMessage(x.Inner1.ProtoReflect()) - case "testdata.TestVersion4LoneNesting.inner2": + case "testpb.TestVersion4LoneNesting.inner2": if x.Inner2 == nil { x.Inner2 = new(TestVersion4LoneNesting_Inner2) } return protoreflect.ValueOfMessage(x.Inner2.ProtoReflect()) - case "testdata.TestVersion4LoneNesting.x": - panic(fmt.Errorf("field x of message testdata.TestVersion4LoneNesting is not mutable")) - case "testdata.TestVersion4LoneNesting.non_critical_field": - panic(fmt.Errorf("field non_critical_field of message testdata.TestVersion4LoneNesting is not mutable")) + case "testpb.TestVersion4LoneNesting.x": + panic(fmt.Errorf("field x of message testpb.TestVersion4LoneNesting is not mutable")) + case "testpb.TestVersion4LoneNesting.non_critical_field": + panic(fmt.Errorf("field non_critical_field of message testpb.TestVersion4LoneNesting is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion4LoneNesting")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion4LoneNesting")) } - panic(fmt.Errorf("message testdata.TestVersion4LoneNesting does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion4LoneNesting does not contain field %s", fd.FullName())) } } @@ -16421,45 +16421,45 @@ func (x *fastReflection_TestVersion4LoneNesting) Mutable(fd protoreflect.FieldDe // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_TestVersion4LoneNesting) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestVersion4LoneNesting.x": + case "testpb.TestVersion4LoneNesting.x": return protoreflect.ValueOfInt64(int64(0)) - case "testdata.TestVersion4LoneNesting.a": + case "testpb.TestVersion4LoneNesting.a": m := new(TestVersion3) return protoreflect.ValueOfMessage(m.ProtoReflect()) - case "testdata.TestVersion4LoneNesting.b": + case "testpb.TestVersion4LoneNesting.b": m := new(TestVersion3) return protoreflect.ValueOfMessage(m.ProtoReflect()) - case "testdata.TestVersion4LoneNesting.c": + case "testpb.TestVersion4LoneNesting.c": list := []*TestVersion3{} return protoreflect.ValueOfList(&_TestVersion4LoneNesting_4_list{list: &list}) - case "testdata.TestVersion4LoneNesting.d": + case "testpb.TestVersion4LoneNesting.d": list := []*TestVersion3{} return protoreflect.ValueOfList(&_TestVersion4LoneNesting_5_list{list: &list}) - case "testdata.TestVersion4LoneNesting.f": + case "testpb.TestVersion4LoneNesting.f": value := &TestVersion3LoneNesting{} return protoreflect.ValueOfMessage(value.ProtoReflect()) - case "testdata.TestVersion4LoneNesting.g": + case "testpb.TestVersion4LoneNesting.g": m := new(anypb.Any) return protoreflect.ValueOfMessage(m.ProtoReflect()) - case "testdata.TestVersion4LoneNesting.h": + case "testpb.TestVersion4LoneNesting.h": list := []*TestVersion1{} return protoreflect.ValueOfList(&_TestVersion4LoneNesting_9_list{list: &list}) - case "testdata.TestVersion4LoneNesting.k": + case "testpb.TestVersion4LoneNesting.k": m := new(Customer1) return protoreflect.ValueOfMessage(m.ProtoReflect()) - case "testdata.TestVersion4LoneNesting.non_critical_field": + case "testpb.TestVersion4LoneNesting.non_critical_field": return protoreflect.ValueOfString("") - case "testdata.TestVersion4LoneNesting.inner1": + case "testpb.TestVersion4LoneNesting.inner1": m := new(TestVersion4LoneNesting_Inner1) return protoreflect.ValueOfMessage(m.ProtoReflect()) - case "testdata.TestVersion4LoneNesting.inner2": + case "testpb.TestVersion4LoneNesting.inner2": m := new(TestVersion4LoneNesting_Inner2) return protoreflect.ValueOfMessage(m.ProtoReflect()) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion4LoneNesting")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion4LoneNesting")) } - panic(fmt.Errorf("message testdata.TestVersion4LoneNesting does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion4LoneNesting does not contain field %s", fd.FullName())) } } @@ -16468,7 +16468,7 @@ func (x *fastReflection_TestVersion4LoneNesting) NewField(fd protoreflect.FieldD // It panics if the oneof descriptor does not belong to this message. func (x *fastReflection_TestVersion4LoneNesting) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { - case "testdata.TestVersion4LoneNesting.sum": + case "testpb.TestVersion4LoneNesting.sum": if x.Sum == nil { return nil } @@ -16477,7 +16477,7 @@ func (x *fastReflection_TestVersion4LoneNesting) WhichOneof(d protoreflect.Oneof return x.Descriptor().Fields().ByName("f") } default: - panic(fmt.Errorf("%s is not a oneof field in testdata.TestVersion4LoneNesting", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.TestVersion4LoneNesting", d.FullName())) } panic("unreachable") } @@ -17275,8 +17275,8 @@ var ( ) func init() { - file_unknonwnproto_proto_init() - md_TestVersion4LoneNesting_Inner1 = File_unknonwnproto_proto.Messages().ByName("TestVersion4LoneNesting").Messages().ByName("Inner1") + file_testpb_unknonwnproto_proto_init() + md_TestVersion4LoneNesting_Inner1 = File_testpb_unknonwnproto_proto.Messages().ByName("TestVersion4LoneNesting").Messages().ByName("Inner1") fd_TestVersion4LoneNesting_Inner1_id = md_TestVersion4LoneNesting_Inner1.Fields().ByName("id") fd_TestVersion4LoneNesting_Inner1_name = md_TestVersion4LoneNesting_Inner1.Fields().ByName("name") fd_TestVersion4LoneNesting_Inner1_inner = md_TestVersion4LoneNesting_Inner1.Fields().ByName("inner") @@ -17291,7 +17291,7 @@ func (x *TestVersion4LoneNesting_Inner1) ProtoReflect() protoreflect.Message { } func (x *TestVersion4LoneNesting_Inner1) slowProtoReflect() protoreflect.Message { - mi := &file_unknonwnproto_proto_msgTypes[29] + mi := &file_testpb_unknonwnproto_proto_msgTypes[29] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17380,17 +17380,17 @@ func (x *fastReflection_TestVersion4LoneNesting_Inner1) Range(f func(protoreflec // a repeated field is populated if it is non-empty. func (x *fastReflection_TestVersion4LoneNesting_Inner1) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.TestVersion4LoneNesting.Inner1.id": + case "testpb.TestVersion4LoneNesting.Inner1.id": return x.Id != int64(0) - case "testdata.TestVersion4LoneNesting.Inner1.name": + case "testpb.TestVersion4LoneNesting.Inner1.name": return x.Name != "" - case "testdata.TestVersion4LoneNesting.Inner1.inner": + case "testpb.TestVersion4LoneNesting.Inner1.inner": return x.Inner != nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion4LoneNesting.Inner1")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion4LoneNesting.Inner1")) } - panic(fmt.Errorf("message testdata.TestVersion4LoneNesting.Inner1 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion4LoneNesting.Inner1 does not contain field %s", fd.FullName())) } } @@ -17402,17 +17402,17 @@ func (x *fastReflection_TestVersion4LoneNesting_Inner1) Has(fd protoreflect.Fiel // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersion4LoneNesting_Inner1) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.TestVersion4LoneNesting.Inner1.id": + case "testpb.TestVersion4LoneNesting.Inner1.id": x.Id = int64(0) - case "testdata.TestVersion4LoneNesting.Inner1.name": + case "testpb.TestVersion4LoneNesting.Inner1.name": x.Name = "" - case "testdata.TestVersion4LoneNesting.Inner1.inner": + case "testpb.TestVersion4LoneNesting.Inner1.inner": x.Inner = nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion4LoneNesting.Inner1")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion4LoneNesting.Inner1")) } - panic(fmt.Errorf("message testdata.TestVersion4LoneNesting.Inner1 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion4LoneNesting.Inner1 does not contain field %s", fd.FullName())) } } @@ -17424,20 +17424,20 @@ func (x *fastReflection_TestVersion4LoneNesting_Inner1) Clear(fd protoreflect.Fi // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_TestVersion4LoneNesting_Inner1) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.TestVersion4LoneNesting.Inner1.id": + case "testpb.TestVersion4LoneNesting.Inner1.id": value := x.Id return protoreflect.ValueOfInt64(value) - case "testdata.TestVersion4LoneNesting.Inner1.name": + case "testpb.TestVersion4LoneNesting.Inner1.name": value := x.Name return protoreflect.ValueOfString(value) - case "testdata.TestVersion4LoneNesting.Inner1.inner": + case "testpb.TestVersion4LoneNesting.Inner1.inner": value := x.Inner return protoreflect.ValueOfMessage(value.ProtoReflect()) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion4LoneNesting.Inner1")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion4LoneNesting.Inner1")) } - panic(fmt.Errorf("message testdata.TestVersion4LoneNesting.Inner1 does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.TestVersion4LoneNesting.Inner1 does not contain field %s", descriptor.FullName())) } } @@ -17453,17 +17453,17 @@ func (x *fastReflection_TestVersion4LoneNesting_Inner1) Get(descriptor protorefl // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersion4LoneNesting_Inner1) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.TestVersion4LoneNesting.Inner1.id": + case "testpb.TestVersion4LoneNesting.Inner1.id": x.Id = value.Int() - case "testdata.TestVersion4LoneNesting.Inner1.name": + case "testpb.TestVersion4LoneNesting.Inner1.name": x.Name = value.Interface().(string) - case "testdata.TestVersion4LoneNesting.Inner1.inner": + case "testpb.TestVersion4LoneNesting.Inner1.inner": x.Inner = value.Message().Interface().(*TestVersion4LoneNesting_Inner1_InnerInner) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion4LoneNesting.Inner1")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion4LoneNesting.Inner1")) } - panic(fmt.Errorf("message testdata.TestVersion4LoneNesting.Inner1 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion4LoneNesting.Inner1 does not contain field %s", fd.FullName())) } } @@ -17479,20 +17479,20 @@ func (x *fastReflection_TestVersion4LoneNesting_Inner1) Set(fd protoreflect.Fiel // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersion4LoneNesting_Inner1) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestVersion4LoneNesting.Inner1.inner": + case "testpb.TestVersion4LoneNesting.Inner1.inner": if x.Inner == nil { x.Inner = new(TestVersion4LoneNesting_Inner1_InnerInner) } return protoreflect.ValueOfMessage(x.Inner.ProtoReflect()) - case "testdata.TestVersion4LoneNesting.Inner1.id": - panic(fmt.Errorf("field id of message testdata.TestVersion4LoneNesting.Inner1 is not mutable")) - case "testdata.TestVersion4LoneNesting.Inner1.name": - panic(fmt.Errorf("field name of message testdata.TestVersion4LoneNesting.Inner1 is not mutable")) + case "testpb.TestVersion4LoneNesting.Inner1.id": + panic(fmt.Errorf("field id of message testpb.TestVersion4LoneNesting.Inner1 is not mutable")) + case "testpb.TestVersion4LoneNesting.Inner1.name": + panic(fmt.Errorf("field name of message testpb.TestVersion4LoneNesting.Inner1 is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion4LoneNesting.Inner1")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion4LoneNesting.Inner1")) } - panic(fmt.Errorf("message testdata.TestVersion4LoneNesting.Inner1 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion4LoneNesting.Inner1 does not contain field %s", fd.FullName())) } } @@ -17501,18 +17501,18 @@ func (x *fastReflection_TestVersion4LoneNesting_Inner1) Mutable(fd protoreflect. // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_TestVersion4LoneNesting_Inner1) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestVersion4LoneNesting.Inner1.id": + case "testpb.TestVersion4LoneNesting.Inner1.id": return protoreflect.ValueOfInt64(int64(0)) - case "testdata.TestVersion4LoneNesting.Inner1.name": + case "testpb.TestVersion4LoneNesting.Inner1.name": return protoreflect.ValueOfString("") - case "testdata.TestVersion4LoneNesting.Inner1.inner": + case "testpb.TestVersion4LoneNesting.Inner1.inner": m := new(TestVersion4LoneNesting_Inner1_InnerInner) return protoreflect.ValueOfMessage(m.ProtoReflect()) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion4LoneNesting.Inner1")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion4LoneNesting.Inner1")) } - panic(fmt.Errorf("message testdata.TestVersion4LoneNesting.Inner1 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion4LoneNesting.Inner1 does not contain field %s", fd.FullName())) } } @@ -17522,7 +17522,7 @@ func (x *fastReflection_TestVersion4LoneNesting_Inner1) NewField(fd protoreflect func (x *fastReflection_TestVersion4LoneNesting_Inner1) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in testdata.TestVersion4LoneNesting.Inner1", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.TestVersion4LoneNesting.Inner1", d.FullName())) } panic("unreachable") } @@ -17821,8 +17821,8 @@ var ( ) func init() { - file_unknonwnproto_proto_init() - md_TestVersion4LoneNesting_Inner1_InnerInner = File_unknonwnproto_proto.Messages().ByName("TestVersion4LoneNesting").Messages().ByName("Inner1").Messages().ByName("InnerInner") + file_testpb_unknonwnproto_proto_init() + md_TestVersion4LoneNesting_Inner1_InnerInner = File_testpb_unknonwnproto_proto.Messages().ByName("TestVersion4LoneNesting").Messages().ByName("Inner1").Messages().ByName("InnerInner") fd_TestVersion4LoneNesting_Inner1_InnerInner_id = md_TestVersion4LoneNesting_Inner1_InnerInner.Fields().ByName("id") fd_TestVersion4LoneNesting_Inner1_InnerInner_city = md_TestVersion4LoneNesting_Inner1_InnerInner.Fields().ByName("city") } @@ -17836,7 +17836,7 @@ func (x *TestVersion4LoneNesting_Inner1_InnerInner) ProtoReflect() protoreflect. } func (x *TestVersion4LoneNesting_Inner1_InnerInner) slowProtoReflect() protoreflect.Message { - mi := &file_unknonwnproto_proto_msgTypes[31] + mi := &file_testpb_unknonwnproto_proto_msgTypes[31] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17919,15 +17919,15 @@ func (x *fastReflection_TestVersion4LoneNesting_Inner1_InnerInner) Range(f func( // a repeated field is populated if it is non-empty. func (x *fastReflection_TestVersion4LoneNesting_Inner1_InnerInner) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.TestVersion4LoneNesting.Inner1.InnerInner.id": + case "testpb.TestVersion4LoneNesting.Inner1.InnerInner.id": return x.Id != int64(0) - case "testdata.TestVersion4LoneNesting.Inner1.InnerInner.city": + case "testpb.TestVersion4LoneNesting.Inner1.InnerInner.city": return x.City != "" default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion4LoneNesting.Inner1.InnerInner")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion4LoneNesting.Inner1.InnerInner")) } - panic(fmt.Errorf("message testdata.TestVersion4LoneNesting.Inner1.InnerInner does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion4LoneNesting.Inner1.InnerInner does not contain field %s", fd.FullName())) } } @@ -17939,15 +17939,15 @@ func (x *fastReflection_TestVersion4LoneNesting_Inner1_InnerInner) Has(fd protor // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersion4LoneNesting_Inner1_InnerInner) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.TestVersion4LoneNesting.Inner1.InnerInner.id": + case "testpb.TestVersion4LoneNesting.Inner1.InnerInner.id": x.Id = int64(0) - case "testdata.TestVersion4LoneNesting.Inner1.InnerInner.city": + case "testpb.TestVersion4LoneNesting.Inner1.InnerInner.city": x.City = "" default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion4LoneNesting.Inner1.InnerInner")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion4LoneNesting.Inner1.InnerInner")) } - panic(fmt.Errorf("message testdata.TestVersion4LoneNesting.Inner1.InnerInner does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion4LoneNesting.Inner1.InnerInner does not contain field %s", fd.FullName())) } } @@ -17959,17 +17959,17 @@ func (x *fastReflection_TestVersion4LoneNesting_Inner1_InnerInner) Clear(fd prot // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_TestVersion4LoneNesting_Inner1_InnerInner) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.TestVersion4LoneNesting.Inner1.InnerInner.id": + case "testpb.TestVersion4LoneNesting.Inner1.InnerInner.id": value := x.Id return protoreflect.ValueOfInt64(value) - case "testdata.TestVersion4LoneNesting.Inner1.InnerInner.city": + case "testpb.TestVersion4LoneNesting.Inner1.InnerInner.city": value := x.City return protoreflect.ValueOfString(value) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion4LoneNesting.Inner1.InnerInner")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion4LoneNesting.Inner1.InnerInner")) } - panic(fmt.Errorf("message testdata.TestVersion4LoneNesting.Inner1.InnerInner does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.TestVersion4LoneNesting.Inner1.InnerInner does not contain field %s", descriptor.FullName())) } } @@ -17985,15 +17985,15 @@ func (x *fastReflection_TestVersion4LoneNesting_Inner1_InnerInner) Get(descripto // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersion4LoneNesting_Inner1_InnerInner) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.TestVersion4LoneNesting.Inner1.InnerInner.id": + case "testpb.TestVersion4LoneNesting.Inner1.InnerInner.id": x.Id = value.Int() - case "testdata.TestVersion4LoneNesting.Inner1.InnerInner.city": + case "testpb.TestVersion4LoneNesting.Inner1.InnerInner.city": x.City = value.Interface().(string) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion4LoneNesting.Inner1.InnerInner")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion4LoneNesting.Inner1.InnerInner")) } - panic(fmt.Errorf("message testdata.TestVersion4LoneNesting.Inner1.InnerInner does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion4LoneNesting.Inner1.InnerInner does not contain field %s", fd.FullName())) } } @@ -18009,15 +18009,15 @@ func (x *fastReflection_TestVersion4LoneNesting_Inner1_InnerInner) Set(fd protor // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersion4LoneNesting_Inner1_InnerInner) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestVersion4LoneNesting.Inner1.InnerInner.id": - panic(fmt.Errorf("field id of message testdata.TestVersion4LoneNesting.Inner1.InnerInner is not mutable")) - case "testdata.TestVersion4LoneNesting.Inner1.InnerInner.city": - panic(fmt.Errorf("field city of message testdata.TestVersion4LoneNesting.Inner1.InnerInner is not mutable")) + case "testpb.TestVersion4LoneNesting.Inner1.InnerInner.id": + panic(fmt.Errorf("field id of message testpb.TestVersion4LoneNesting.Inner1.InnerInner is not mutable")) + case "testpb.TestVersion4LoneNesting.Inner1.InnerInner.city": + panic(fmt.Errorf("field city of message testpb.TestVersion4LoneNesting.Inner1.InnerInner is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion4LoneNesting.Inner1.InnerInner")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion4LoneNesting.Inner1.InnerInner")) } - panic(fmt.Errorf("message testdata.TestVersion4LoneNesting.Inner1.InnerInner does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion4LoneNesting.Inner1.InnerInner does not contain field %s", fd.FullName())) } } @@ -18026,15 +18026,15 @@ func (x *fastReflection_TestVersion4LoneNesting_Inner1_InnerInner) Mutable(fd pr // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_TestVersion4LoneNesting_Inner1_InnerInner) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestVersion4LoneNesting.Inner1.InnerInner.id": + case "testpb.TestVersion4LoneNesting.Inner1.InnerInner.id": return protoreflect.ValueOfInt64(int64(0)) - case "testdata.TestVersion4LoneNesting.Inner1.InnerInner.city": + case "testpb.TestVersion4LoneNesting.Inner1.InnerInner.city": return protoreflect.ValueOfString("") default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion4LoneNesting.Inner1.InnerInner")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion4LoneNesting.Inner1.InnerInner")) } - panic(fmt.Errorf("message testdata.TestVersion4LoneNesting.Inner1.InnerInner does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion4LoneNesting.Inner1.InnerInner does not contain field %s", fd.FullName())) } } @@ -18044,7 +18044,7 @@ func (x *fastReflection_TestVersion4LoneNesting_Inner1_InnerInner) NewField(fd p func (x *fastReflection_TestVersion4LoneNesting_Inner1_InnerInner) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in testdata.TestVersion4LoneNesting.Inner1.InnerInner", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.TestVersion4LoneNesting.Inner1.InnerInner", d.FullName())) } panic("unreachable") } @@ -18290,8 +18290,8 @@ var ( ) func init() { - file_unknonwnproto_proto_init() - md_TestVersion4LoneNesting_Inner2 = File_unknonwnproto_proto.Messages().ByName("TestVersion4LoneNesting").Messages().ByName("Inner2") + file_testpb_unknonwnproto_proto_init() + md_TestVersion4LoneNesting_Inner2 = File_testpb_unknonwnproto_proto.Messages().ByName("TestVersion4LoneNesting").Messages().ByName("Inner2") fd_TestVersion4LoneNesting_Inner2_id = md_TestVersion4LoneNesting_Inner2.Fields().ByName("id") fd_TestVersion4LoneNesting_Inner2_country = md_TestVersion4LoneNesting_Inner2.Fields().ByName("country") fd_TestVersion4LoneNesting_Inner2_inner = md_TestVersion4LoneNesting_Inner2.Fields().ByName("inner") @@ -18306,7 +18306,7 @@ func (x *TestVersion4LoneNesting_Inner2) ProtoReflect() protoreflect.Message { } func (x *TestVersion4LoneNesting_Inner2) slowProtoReflect() protoreflect.Message { - mi := &file_unknonwnproto_proto_msgTypes[30] + mi := &file_testpb_unknonwnproto_proto_msgTypes[30] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18395,17 +18395,17 @@ func (x *fastReflection_TestVersion4LoneNesting_Inner2) Range(f func(protoreflec // a repeated field is populated if it is non-empty. func (x *fastReflection_TestVersion4LoneNesting_Inner2) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.TestVersion4LoneNesting.Inner2.id": + case "testpb.TestVersion4LoneNesting.Inner2.id": return x.Id != "" - case "testdata.TestVersion4LoneNesting.Inner2.country": + case "testpb.TestVersion4LoneNesting.Inner2.country": return x.Country != "" - case "testdata.TestVersion4LoneNesting.Inner2.inner": + case "testpb.TestVersion4LoneNesting.Inner2.inner": return x.Inner != nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion4LoneNesting.Inner2")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion4LoneNesting.Inner2")) } - panic(fmt.Errorf("message testdata.TestVersion4LoneNesting.Inner2 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion4LoneNesting.Inner2 does not contain field %s", fd.FullName())) } } @@ -18417,17 +18417,17 @@ func (x *fastReflection_TestVersion4LoneNesting_Inner2) Has(fd protoreflect.Fiel // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersion4LoneNesting_Inner2) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.TestVersion4LoneNesting.Inner2.id": + case "testpb.TestVersion4LoneNesting.Inner2.id": x.Id = "" - case "testdata.TestVersion4LoneNesting.Inner2.country": + case "testpb.TestVersion4LoneNesting.Inner2.country": x.Country = "" - case "testdata.TestVersion4LoneNesting.Inner2.inner": + case "testpb.TestVersion4LoneNesting.Inner2.inner": x.Inner = nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion4LoneNesting.Inner2")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion4LoneNesting.Inner2")) } - panic(fmt.Errorf("message testdata.TestVersion4LoneNesting.Inner2 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion4LoneNesting.Inner2 does not contain field %s", fd.FullName())) } } @@ -18439,20 +18439,20 @@ func (x *fastReflection_TestVersion4LoneNesting_Inner2) Clear(fd protoreflect.Fi // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_TestVersion4LoneNesting_Inner2) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.TestVersion4LoneNesting.Inner2.id": + case "testpb.TestVersion4LoneNesting.Inner2.id": value := x.Id return protoreflect.ValueOfString(value) - case "testdata.TestVersion4LoneNesting.Inner2.country": + case "testpb.TestVersion4LoneNesting.Inner2.country": value := x.Country return protoreflect.ValueOfString(value) - case "testdata.TestVersion4LoneNesting.Inner2.inner": + case "testpb.TestVersion4LoneNesting.Inner2.inner": value := x.Inner return protoreflect.ValueOfMessage(value.ProtoReflect()) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion4LoneNesting.Inner2")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion4LoneNesting.Inner2")) } - panic(fmt.Errorf("message testdata.TestVersion4LoneNesting.Inner2 does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.TestVersion4LoneNesting.Inner2 does not contain field %s", descriptor.FullName())) } } @@ -18468,17 +18468,17 @@ func (x *fastReflection_TestVersion4LoneNesting_Inner2) Get(descriptor protorefl // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersion4LoneNesting_Inner2) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.TestVersion4LoneNesting.Inner2.id": + case "testpb.TestVersion4LoneNesting.Inner2.id": x.Id = value.Interface().(string) - case "testdata.TestVersion4LoneNesting.Inner2.country": + case "testpb.TestVersion4LoneNesting.Inner2.country": x.Country = value.Interface().(string) - case "testdata.TestVersion4LoneNesting.Inner2.inner": + case "testpb.TestVersion4LoneNesting.Inner2.inner": x.Inner = value.Message().Interface().(*TestVersion4LoneNesting_Inner2_InnerInner) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion4LoneNesting.Inner2")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion4LoneNesting.Inner2")) } - panic(fmt.Errorf("message testdata.TestVersion4LoneNesting.Inner2 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion4LoneNesting.Inner2 does not contain field %s", fd.FullName())) } } @@ -18494,20 +18494,20 @@ func (x *fastReflection_TestVersion4LoneNesting_Inner2) Set(fd protoreflect.Fiel // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersion4LoneNesting_Inner2) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestVersion4LoneNesting.Inner2.inner": + case "testpb.TestVersion4LoneNesting.Inner2.inner": if x.Inner == nil { x.Inner = new(TestVersion4LoneNesting_Inner2_InnerInner) } return protoreflect.ValueOfMessage(x.Inner.ProtoReflect()) - case "testdata.TestVersion4LoneNesting.Inner2.id": - panic(fmt.Errorf("field id of message testdata.TestVersion4LoneNesting.Inner2 is not mutable")) - case "testdata.TestVersion4LoneNesting.Inner2.country": - panic(fmt.Errorf("field country of message testdata.TestVersion4LoneNesting.Inner2 is not mutable")) + case "testpb.TestVersion4LoneNesting.Inner2.id": + panic(fmt.Errorf("field id of message testpb.TestVersion4LoneNesting.Inner2 is not mutable")) + case "testpb.TestVersion4LoneNesting.Inner2.country": + panic(fmt.Errorf("field country of message testpb.TestVersion4LoneNesting.Inner2 is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion4LoneNesting.Inner2")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion4LoneNesting.Inner2")) } - panic(fmt.Errorf("message testdata.TestVersion4LoneNesting.Inner2 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion4LoneNesting.Inner2 does not contain field %s", fd.FullName())) } } @@ -18516,18 +18516,18 @@ func (x *fastReflection_TestVersion4LoneNesting_Inner2) Mutable(fd protoreflect. // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_TestVersion4LoneNesting_Inner2) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestVersion4LoneNesting.Inner2.id": + case "testpb.TestVersion4LoneNesting.Inner2.id": return protoreflect.ValueOfString("") - case "testdata.TestVersion4LoneNesting.Inner2.country": + case "testpb.TestVersion4LoneNesting.Inner2.country": return protoreflect.ValueOfString("") - case "testdata.TestVersion4LoneNesting.Inner2.inner": + case "testpb.TestVersion4LoneNesting.Inner2.inner": m := new(TestVersion4LoneNesting_Inner2_InnerInner) return protoreflect.ValueOfMessage(m.ProtoReflect()) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion4LoneNesting.Inner2")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion4LoneNesting.Inner2")) } - panic(fmt.Errorf("message testdata.TestVersion4LoneNesting.Inner2 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion4LoneNesting.Inner2 does not contain field %s", fd.FullName())) } } @@ -18537,7 +18537,7 @@ func (x *fastReflection_TestVersion4LoneNesting_Inner2) NewField(fd protoreflect func (x *fastReflection_TestVersion4LoneNesting_Inner2) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in testdata.TestVersion4LoneNesting.Inner2", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.TestVersion4LoneNesting.Inner2", d.FullName())) } panic("unreachable") } @@ -18852,8 +18852,8 @@ var ( ) func init() { - file_unknonwnproto_proto_init() - md_TestVersion4LoneNesting_Inner2_InnerInner = File_unknonwnproto_proto.Messages().ByName("TestVersion4LoneNesting").Messages().ByName("Inner2").Messages().ByName("InnerInner") + file_testpb_unknonwnproto_proto_init() + md_TestVersion4LoneNesting_Inner2_InnerInner = File_testpb_unknonwnproto_proto.Messages().ByName("TestVersion4LoneNesting").Messages().ByName("Inner2").Messages().ByName("InnerInner") fd_TestVersion4LoneNesting_Inner2_InnerInner_id = md_TestVersion4LoneNesting_Inner2_InnerInner.Fields().ByName("id") fd_TestVersion4LoneNesting_Inner2_InnerInner_value = md_TestVersion4LoneNesting_Inner2_InnerInner.Fields().ByName("value") } @@ -18867,7 +18867,7 @@ func (x *TestVersion4LoneNesting_Inner2_InnerInner) ProtoReflect() protoreflect. } func (x *TestVersion4LoneNesting_Inner2_InnerInner) slowProtoReflect() protoreflect.Message { - mi := &file_unknonwnproto_proto_msgTypes[32] + mi := &file_testpb_unknonwnproto_proto_msgTypes[32] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18950,15 +18950,15 @@ func (x *fastReflection_TestVersion4LoneNesting_Inner2_InnerInner) Range(f func( // a repeated field is populated if it is non-empty. func (x *fastReflection_TestVersion4LoneNesting_Inner2_InnerInner) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.TestVersion4LoneNesting.Inner2.InnerInner.id": + case "testpb.TestVersion4LoneNesting.Inner2.InnerInner.id": return x.Id != "" - case "testdata.TestVersion4LoneNesting.Inner2.InnerInner.value": + case "testpb.TestVersion4LoneNesting.Inner2.InnerInner.value": return x.Value != int64(0) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion4LoneNesting.Inner2.InnerInner")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion4LoneNesting.Inner2.InnerInner")) } - panic(fmt.Errorf("message testdata.TestVersion4LoneNesting.Inner2.InnerInner does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion4LoneNesting.Inner2.InnerInner does not contain field %s", fd.FullName())) } } @@ -18970,15 +18970,15 @@ func (x *fastReflection_TestVersion4LoneNesting_Inner2_InnerInner) Has(fd protor // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersion4LoneNesting_Inner2_InnerInner) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.TestVersion4LoneNesting.Inner2.InnerInner.id": + case "testpb.TestVersion4LoneNesting.Inner2.InnerInner.id": x.Id = "" - case "testdata.TestVersion4LoneNesting.Inner2.InnerInner.value": + case "testpb.TestVersion4LoneNesting.Inner2.InnerInner.value": x.Value = int64(0) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion4LoneNesting.Inner2.InnerInner")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion4LoneNesting.Inner2.InnerInner")) } - panic(fmt.Errorf("message testdata.TestVersion4LoneNesting.Inner2.InnerInner does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion4LoneNesting.Inner2.InnerInner does not contain field %s", fd.FullName())) } } @@ -18990,17 +18990,17 @@ func (x *fastReflection_TestVersion4LoneNesting_Inner2_InnerInner) Clear(fd prot // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_TestVersion4LoneNesting_Inner2_InnerInner) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.TestVersion4LoneNesting.Inner2.InnerInner.id": + case "testpb.TestVersion4LoneNesting.Inner2.InnerInner.id": value := x.Id return protoreflect.ValueOfString(value) - case "testdata.TestVersion4LoneNesting.Inner2.InnerInner.value": + case "testpb.TestVersion4LoneNesting.Inner2.InnerInner.value": value := x.Value return protoreflect.ValueOfInt64(value) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion4LoneNesting.Inner2.InnerInner")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion4LoneNesting.Inner2.InnerInner")) } - panic(fmt.Errorf("message testdata.TestVersion4LoneNesting.Inner2.InnerInner does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.TestVersion4LoneNesting.Inner2.InnerInner does not contain field %s", descriptor.FullName())) } } @@ -19016,15 +19016,15 @@ func (x *fastReflection_TestVersion4LoneNesting_Inner2_InnerInner) Get(descripto // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersion4LoneNesting_Inner2_InnerInner) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.TestVersion4LoneNesting.Inner2.InnerInner.id": + case "testpb.TestVersion4LoneNesting.Inner2.InnerInner.id": x.Id = value.Interface().(string) - case "testdata.TestVersion4LoneNesting.Inner2.InnerInner.value": + case "testpb.TestVersion4LoneNesting.Inner2.InnerInner.value": x.Value = value.Int() default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion4LoneNesting.Inner2.InnerInner")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion4LoneNesting.Inner2.InnerInner")) } - panic(fmt.Errorf("message testdata.TestVersion4LoneNesting.Inner2.InnerInner does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion4LoneNesting.Inner2.InnerInner does not contain field %s", fd.FullName())) } } @@ -19040,15 +19040,15 @@ func (x *fastReflection_TestVersion4LoneNesting_Inner2_InnerInner) Set(fd protor // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersion4LoneNesting_Inner2_InnerInner) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestVersion4LoneNesting.Inner2.InnerInner.id": - panic(fmt.Errorf("field id of message testdata.TestVersion4LoneNesting.Inner2.InnerInner is not mutable")) - case "testdata.TestVersion4LoneNesting.Inner2.InnerInner.value": - panic(fmt.Errorf("field value of message testdata.TestVersion4LoneNesting.Inner2.InnerInner is not mutable")) + case "testpb.TestVersion4LoneNesting.Inner2.InnerInner.id": + panic(fmt.Errorf("field id of message testpb.TestVersion4LoneNesting.Inner2.InnerInner is not mutable")) + case "testpb.TestVersion4LoneNesting.Inner2.InnerInner.value": + panic(fmt.Errorf("field value of message testpb.TestVersion4LoneNesting.Inner2.InnerInner is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion4LoneNesting.Inner2.InnerInner")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion4LoneNesting.Inner2.InnerInner")) } - panic(fmt.Errorf("message testdata.TestVersion4LoneNesting.Inner2.InnerInner does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion4LoneNesting.Inner2.InnerInner does not contain field %s", fd.FullName())) } } @@ -19057,15 +19057,15 @@ func (x *fastReflection_TestVersion4LoneNesting_Inner2_InnerInner) Mutable(fd pr // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_TestVersion4LoneNesting_Inner2_InnerInner) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestVersion4LoneNesting.Inner2.InnerInner.id": + case "testpb.TestVersion4LoneNesting.Inner2.InnerInner.id": return protoreflect.ValueOfString("") - case "testdata.TestVersion4LoneNesting.Inner2.InnerInner.value": + case "testpb.TestVersion4LoneNesting.Inner2.InnerInner.value": return protoreflect.ValueOfInt64(int64(0)) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersion4LoneNesting.Inner2.InnerInner")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersion4LoneNesting.Inner2.InnerInner")) } - panic(fmt.Errorf("message testdata.TestVersion4LoneNesting.Inner2.InnerInner does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersion4LoneNesting.Inner2.InnerInner does not contain field %s", fd.FullName())) } } @@ -19075,7 +19075,7 @@ func (x *fastReflection_TestVersion4LoneNesting_Inner2_InnerInner) NewField(fd p func (x *fastReflection_TestVersion4LoneNesting_Inner2_InnerInner) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in testdata.TestVersion4LoneNesting.Inner2.InnerInner", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.TestVersion4LoneNesting.Inner2.InnerInner", d.FullName())) } panic("unreachable") } @@ -19375,8 +19375,8 @@ var ( ) func init() { - file_unknonwnproto_proto_init() - md_TestVersionFD1 = File_unknonwnproto_proto.Messages().ByName("TestVersionFD1") + file_testpb_unknonwnproto_proto_init() + md_TestVersionFD1 = File_testpb_unknonwnproto_proto.Messages().ByName("TestVersionFD1") fd_TestVersionFD1_x = md_TestVersionFD1.Fields().ByName("x") fd_TestVersionFD1_a = md_TestVersionFD1.Fields().ByName("a") fd_TestVersionFD1_e = md_TestVersionFD1.Fields().ByName("e") @@ -19394,7 +19394,7 @@ func (x *TestVersionFD1) ProtoReflect() protoreflect.Message { } func (x *TestVersionFD1) slowProtoReflect() protoreflect.Message { - mi := &file_unknonwnproto_proto_msgTypes[17] + mi := &file_testpb_unknonwnproto_proto_msgTypes[17] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19505,11 +19505,11 @@ func (x *fastReflection_TestVersionFD1) Range(f func(protoreflect.FieldDescripto // a repeated field is populated if it is non-empty. func (x *fastReflection_TestVersionFD1) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.TestVersionFD1.x": + case "testpb.TestVersionFD1.x": return x.X != int64(0) - case "testdata.TestVersionFD1.a": + case "testpb.TestVersionFD1.a": return x.A != nil - case "testdata.TestVersionFD1.e": + case "testpb.TestVersionFD1.e": if x.Sum == nil { return false } else if _, ok := x.Sum.(*TestVersionFD1_E); ok { @@ -19517,7 +19517,7 @@ func (x *fastReflection_TestVersionFD1) Has(fd protoreflect.FieldDescriptor) boo } else { return false } - case "testdata.TestVersionFD1.f": + case "testpb.TestVersionFD1.f": if x.Sum == nil { return false } else if _, ok := x.Sum.(*TestVersionFD1_F); ok { @@ -19525,15 +19525,15 @@ func (x *fastReflection_TestVersionFD1) Has(fd protoreflect.FieldDescriptor) boo } else { return false } - case "testdata.TestVersionFD1.g": + case "testpb.TestVersionFD1.g": return x.G != nil - case "testdata.TestVersionFD1.h": + case "testpb.TestVersionFD1.h": return len(x.H) != 0 default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersionFD1")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersionFD1")) } - panic(fmt.Errorf("message testdata.TestVersionFD1 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersionFD1 does not contain field %s", fd.FullName())) } } @@ -19545,23 +19545,23 @@ func (x *fastReflection_TestVersionFD1) Has(fd protoreflect.FieldDescriptor) boo // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersionFD1) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.TestVersionFD1.x": + case "testpb.TestVersionFD1.x": x.X = int64(0) - case "testdata.TestVersionFD1.a": + case "testpb.TestVersionFD1.a": x.A = nil - case "testdata.TestVersionFD1.e": + case "testpb.TestVersionFD1.e": x.Sum = nil - case "testdata.TestVersionFD1.f": + case "testpb.TestVersionFD1.f": x.Sum = nil - case "testdata.TestVersionFD1.g": + case "testpb.TestVersionFD1.g": x.G = nil - case "testdata.TestVersionFD1.h": + case "testpb.TestVersionFD1.h": x.H = nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersionFD1")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersionFD1")) } - panic(fmt.Errorf("message testdata.TestVersionFD1 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersionFD1 does not contain field %s", fd.FullName())) } } @@ -19573,13 +19573,13 @@ func (x *fastReflection_TestVersionFD1) Clear(fd protoreflect.FieldDescriptor) { // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_TestVersionFD1) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.TestVersionFD1.x": + case "testpb.TestVersionFD1.x": value := x.X return protoreflect.ValueOfInt64(value) - case "testdata.TestVersionFD1.a": + case "testpb.TestVersionFD1.a": value := x.A return protoreflect.ValueOfMessage(value.ProtoReflect()) - case "testdata.TestVersionFD1.e": + case "testpb.TestVersionFD1.e": if x.Sum == nil { return protoreflect.ValueOfInt32(int32(0)) } else if v, ok := x.Sum.(*TestVersionFD1_E); ok { @@ -19587,7 +19587,7 @@ func (x *fastReflection_TestVersionFD1) Get(descriptor protoreflect.FieldDescrip } else { return protoreflect.ValueOfInt32(int32(0)) } - case "testdata.TestVersionFD1.f": + case "testpb.TestVersionFD1.f": if x.Sum == nil { return protoreflect.ValueOfMessage((*TestVersion1)(nil).ProtoReflect()) } else if v, ok := x.Sum.(*TestVersionFD1_F); ok { @@ -19595,10 +19595,10 @@ func (x *fastReflection_TestVersionFD1) Get(descriptor protoreflect.FieldDescrip } else { return protoreflect.ValueOfMessage((*TestVersion1)(nil).ProtoReflect()) } - case "testdata.TestVersionFD1.g": + case "testpb.TestVersionFD1.g": value := x.G return protoreflect.ValueOfMessage(value.ProtoReflect()) - case "testdata.TestVersionFD1.h": + case "testpb.TestVersionFD1.h": if len(x.H) == 0 { return protoreflect.ValueOfList(&_TestVersionFD1_9_list{}) } @@ -19606,9 +19606,9 @@ func (x *fastReflection_TestVersionFD1) Get(descriptor protoreflect.FieldDescrip return protoreflect.ValueOfList(listValue) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersionFD1")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersionFD1")) } - panic(fmt.Errorf("message testdata.TestVersionFD1 does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.TestVersionFD1 does not contain field %s", descriptor.FullName())) } } @@ -19624,27 +19624,27 @@ func (x *fastReflection_TestVersionFD1) Get(descriptor protoreflect.FieldDescrip // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersionFD1) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.TestVersionFD1.x": + case "testpb.TestVersionFD1.x": x.X = value.Int() - case "testdata.TestVersionFD1.a": + case "testpb.TestVersionFD1.a": x.A = value.Message().Interface().(*TestVersion1) - case "testdata.TestVersionFD1.e": + case "testpb.TestVersionFD1.e": cv := int32(value.Int()) x.Sum = &TestVersionFD1_E{E: cv} - case "testdata.TestVersionFD1.f": + case "testpb.TestVersionFD1.f": cv := value.Message().Interface().(*TestVersion1) x.Sum = &TestVersionFD1_F{F: cv} - case "testdata.TestVersionFD1.g": + case "testpb.TestVersionFD1.g": x.G = value.Message().Interface().(*anypb.Any) - case "testdata.TestVersionFD1.h": + case "testpb.TestVersionFD1.h": lv := value.List() clv := lv.(*_TestVersionFD1_9_list) x.H = *clv.list default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersionFD1")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersionFD1")) } - panic(fmt.Errorf("message testdata.TestVersionFD1 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersionFD1 does not contain field %s", fd.FullName())) } } @@ -19660,12 +19660,12 @@ func (x *fastReflection_TestVersionFD1) Set(fd protoreflect.FieldDescriptor, val // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersionFD1) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestVersionFD1.a": + case "testpb.TestVersionFD1.a": if x.A == nil { x.A = new(TestVersion1) } return protoreflect.ValueOfMessage(x.A.ProtoReflect()) - case "testdata.TestVersionFD1.f": + case "testpb.TestVersionFD1.f": if x.Sum == nil { value := &TestVersion1{} oneofValue := &TestVersionFD1_F{F: value} @@ -19681,26 +19681,26 @@ func (x *fastReflection_TestVersionFD1) Mutable(fd protoreflect.FieldDescriptor) x.Sum = oneofValue return protoreflect.ValueOfMessage(value.ProtoReflect()) } - case "testdata.TestVersionFD1.g": + case "testpb.TestVersionFD1.g": if x.G == nil { x.G = new(anypb.Any) } return protoreflect.ValueOfMessage(x.G.ProtoReflect()) - case "testdata.TestVersionFD1.h": + case "testpb.TestVersionFD1.h": if x.H == nil { x.H = []*TestVersion1{} } value := &_TestVersionFD1_9_list{list: &x.H} return protoreflect.ValueOfList(value) - case "testdata.TestVersionFD1.x": - panic(fmt.Errorf("field x of message testdata.TestVersionFD1 is not mutable")) - case "testdata.TestVersionFD1.e": - panic(fmt.Errorf("field e of message testdata.TestVersionFD1 is not mutable")) + case "testpb.TestVersionFD1.x": + panic(fmt.Errorf("field x of message testpb.TestVersionFD1 is not mutable")) + case "testpb.TestVersionFD1.e": + panic(fmt.Errorf("field e of message testpb.TestVersionFD1 is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersionFD1")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersionFD1")) } - panic(fmt.Errorf("message testdata.TestVersionFD1 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersionFD1 does not contain field %s", fd.FullName())) } } @@ -19709,27 +19709,27 @@ func (x *fastReflection_TestVersionFD1) Mutable(fd protoreflect.FieldDescriptor) // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_TestVersionFD1) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestVersionFD1.x": + case "testpb.TestVersionFD1.x": return protoreflect.ValueOfInt64(int64(0)) - case "testdata.TestVersionFD1.a": + case "testpb.TestVersionFD1.a": m := new(TestVersion1) return protoreflect.ValueOfMessage(m.ProtoReflect()) - case "testdata.TestVersionFD1.e": + case "testpb.TestVersionFD1.e": return protoreflect.ValueOfInt32(int32(0)) - case "testdata.TestVersionFD1.f": + case "testpb.TestVersionFD1.f": value := &TestVersion1{} return protoreflect.ValueOfMessage(value.ProtoReflect()) - case "testdata.TestVersionFD1.g": + case "testpb.TestVersionFD1.g": m := new(anypb.Any) return protoreflect.ValueOfMessage(m.ProtoReflect()) - case "testdata.TestVersionFD1.h": + case "testpb.TestVersionFD1.h": list := []*TestVersion1{} return protoreflect.ValueOfList(&_TestVersionFD1_9_list{list: &list}) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersionFD1")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersionFD1")) } - panic(fmt.Errorf("message testdata.TestVersionFD1 does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersionFD1 does not contain field %s", fd.FullName())) } } @@ -19738,7 +19738,7 @@ func (x *fastReflection_TestVersionFD1) NewField(fd protoreflect.FieldDescriptor // It panics if the oneof descriptor does not belong to this message. func (x *fastReflection_TestVersionFD1) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { - case "testdata.TestVersionFD1.sum": + case "testpb.TestVersionFD1.sum": if x.Sum == nil { return nil } @@ -19749,7 +19749,7 @@ func (x *fastReflection_TestVersionFD1) WhichOneof(d protoreflect.OneofDescripto return x.Descriptor().Fields().ByName("f") } default: - panic(fmt.Errorf("%s is not a oneof field in testdata.TestVersionFD1", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.TestVersionFD1", d.FullName())) } panic("unreachable") } @@ -20257,8 +20257,8 @@ var ( ) func init() { - file_unknonwnproto_proto_init() - md_TestVersionFD1WithExtraAny = File_unknonwnproto_proto.Messages().ByName("TestVersionFD1WithExtraAny") + file_testpb_unknonwnproto_proto_init() + md_TestVersionFD1WithExtraAny = File_testpb_unknonwnproto_proto.Messages().ByName("TestVersionFD1WithExtraAny") fd_TestVersionFD1WithExtraAny_x = md_TestVersionFD1WithExtraAny.Fields().ByName("x") fd_TestVersionFD1WithExtraAny_a = md_TestVersionFD1WithExtraAny.Fields().ByName("a") fd_TestVersionFD1WithExtraAny_e = md_TestVersionFD1WithExtraAny.Fields().ByName("e") @@ -20276,7 +20276,7 @@ func (x *TestVersionFD1WithExtraAny) ProtoReflect() protoreflect.Message { } func (x *TestVersionFD1WithExtraAny) slowProtoReflect() protoreflect.Message { - mi := &file_unknonwnproto_proto_msgTypes[18] + mi := &file_testpb_unknonwnproto_proto_msgTypes[18] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20387,11 +20387,11 @@ func (x *fastReflection_TestVersionFD1WithExtraAny) Range(f func(protoreflect.Fi // a repeated field is populated if it is non-empty. func (x *fastReflection_TestVersionFD1WithExtraAny) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.TestVersionFD1WithExtraAny.x": + case "testpb.TestVersionFD1WithExtraAny.x": return x.X != int64(0) - case "testdata.TestVersionFD1WithExtraAny.a": + case "testpb.TestVersionFD1WithExtraAny.a": return x.A != nil - case "testdata.TestVersionFD1WithExtraAny.e": + case "testpb.TestVersionFD1WithExtraAny.e": if x.Sum == nil { return false } else if _, ok := x.Sum.(*TestVersionFD1WithExtraAny_E); ok { @@ -20399,7 +20399,7 @@ func (x *fastReflection_TestVersionFD1WithExtraAny) Has(fd protoreflect.FieldDes } else { return false } - case "testdata.TestVersionFD1WithExtraAny.f": + case "testpb.TestVersionFD1WithExtraAny.f": if x.Sum == nil { return false } else if _, ok := x.Sum.(*TestVersionFD1WithExtraAny_F); ok { @@ -20407,15 +20407,15 @@ func (x *fastReflection_TestVersionFD1WithExtraAny) Has(fd protoreflect.FieldDes } else { return false } - case "testdata.TestVersionFD1WithExtraAny.g": + case "testpb.TestVersionFD1WithExtraAny.g": return x.G != nil - case "testdata.TestVersionFD1WithExtraAny.h": + case "testpb.TestVersionFD1WithExtraAny.h": return len(x.H) != 0 default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersionFD1WithExtraAny")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersionFD1WithExtraAny")) } - panic(fmt.Errorf("message testdata.TestVersionFD1WithExtraAny does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersionFD1WithExtraAny does not contain field %s", fd.FullName())) } } @@ -20427,23 +20427,23 @@ func (x *fastReflection_TestVersionFD1WithExtraAny) Has(fd protoreflect.FieldDes // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersionFD1WithExtraAny) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.TestVersionFD1WithExtraAny.x": + case "testpb.TestVersionFD1WithExtraAny.x": x.X = int64(0) - case "testdata.TestVersionFD1WithExtraAny.a": + case "testpb.TestVersionFD1WithExtraAny.a": x.A = nil - case "testdata.TestVersionFD1WithExtraAny.e": + case "testpb.TestVersionFD1WithExtraAny.e": x.Sum = nil - case "testdata.TestVersionFD1WithExtraAny.f": + case "testpb.TestVersionFD1WithExtraAny.f": x.Sum = nil - case "testdata.TestVersionFD1WithExtraAny.g": + case "testpb.TestVersionFD1WithExtraAny.g": x.G = nil - case "testdata.TestVersionFD1WithExtraAny.h": + case "testpb.TestVersionFD1WithExtraAny.h": x.H = nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersionFD1WithExtraAny")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersionFD1WithExtraAny")) } - panic(fmt.Errorf("message testdata.TestVersionFD1WithExtraAny does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersionFD1WithExtraAny does not contain field %s", fd.FullName())) } } @@ -20455,13 +20455,13 @@ func (x *fastReflection_TestVersionFD1WithExtraAny) Clear(fd protoreflect.FieldD // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_TestVersionFD1WithExtraAny) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.TestVersionFD1WithExtraAny.x": + case "testpb.TestVersionFD1WithExtraAny.x": value := x.X return protoreflect.ValueOfInt64(value) - case "testdata.TestVersionFD1WithExtraAny.a": + case "testpb.TestVersionFD1WithExtraAny.a": value := x.A return protoreflect.ValueOfMessage(value.ProtoReflect()) - case "testdata.TestVersionFD1WithExtraAny.e": + case "testpb.TestVersionFD1WithExtraAny.e": if x.Sum == nil { return protoreflect.ValueOfInt32(int32(0)) } else if v, ok := x.Sum.(*TestVersionFD1WithExtraAny_E); ok { @@ -20469,7 +20469,7 @@ func (x *fastReflection_TestVersionFD1WithExtraAny) Get(descriptor protoreflect. } else { return protoreflect.ValueOfInt32(int32(0)) } - case "testdata.TestVersionFD1WithExtraAny.f": + case "testpb.TestVersionFD1WithExtraAny.f": if x.Sum == nil { return protoreflect.ValueOfMessage((*TestVersion1)(nil).ProtoReflect()) } else if v, ok := x.Sum.(*TestVersionFD1WithExtraAny_F); ok { @@ -20477,10 +20477,10 @@ func (x *fastReflection_TestVersionFD1WithExtraAny) Get(descriptor protoreflect. } else { return protoreflect.ValueOfMessage((*TestVersion1)(nil).ProtoReflect()) } - case "testdata.TestVersionFD1WithExtraAny.g": + case "testpb.TestVersionFD1WithExtraAny.g": value := x.G return protoreflect.ValueOfMessage(value.ProtoReflect()) - case "testdata.TestVersionFD1WithExtraAny.h": + case "testpb.TestVersionFD1WithExtraAny.h": if len(x.H) == 0 { return protoreflect.ValueOfList(&_TestVersionFD1WithExtraAny_9_list{}) } @@ -20488,9 +20488,9 @@ func (x *fastReflection_TestVersionFD1WithExtraAny) Get(descriptor protoreflect. return protoreflect.ValueOfList(listValue) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersionFD1WithExtraAny")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersionFD1WithExtraAny")) } - panic(fmt.Errorf("message testdata.TestVersionFD1WithExtraAny does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.TestVersionFD1WithExtraAny does not contain field %s", descriptor.FullName())) } } @@ -20506,27 +20506,27 @@ func (x *fastReflection_TestVersionFD1WithExtraAny) Get(descriptor protoreflect. // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersionFD1WithExtraAny) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.TestVersionFD1WithExtraAny.x": + case "testpb.TestVersionFD1WithExtraAny.x": x.X = value.Int() - case "testdata.TestVersionFD1WithExtraAny.a": + case "testpb.TestVersionFD1WithExtraAny.a": x.A = value.Message().Interface().(*TestVersion1) - case "testdata.TestVersionFD1WithExtraAny.e": + case "testpb.TestVersionFD1WithExtraAny.e": cv := int32(value.Int()) x.Sum = &TestVersionFD1WithExtraAny_E{E: cv} - case "testdata.TestVersionFD1WithExtraAny.f": + case "testpb.TestVersionFD1WithExtraAny.f": cv := value.Message().Interface().(*TestVersion1) x.Sum = &TestVersionFD1WithExtraAny_F{F: cv} - case "testdata.TestVersionFD1WithExtraAny.g": + case "testpb.TestVersionFD1WithExtraAny.g": x.G = value.Message().Interface().(*AnyWithExtra) - case "testdata.TestVersionFD1WithExtraAny.h": + case "testpb.TestVersionFD1WithExtraAny.h": lv := value.List() clv := lv.(*_TestVersionFD1WithExtraAny_9_list) x.H = *clv.list default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersionFD1WithExtraAny")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersionFD1WithExtraAny")) } - panic(fmt.Errorf("message testdata.TestVersionFD1WithExtraAny does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersionFD1WithExtraAny does not contain field %s", fd.FullName())) } } @@ -20542,12 +20542,12 @@ func (x *fastReflection_TestVersionFD1WithExtraAny) Set(fd protoreflect.FieldDes // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestVersionFD1WithExtraAny) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestVersionFD1WithExtraAny.a": + case "testpb.TestVersionFD1WithExtraAny.a": if x.A == nil { x.A = new(TestVersion1) } return protoreflect.ValueOfMessage(x.A.ProtoReflect()) - case "testdata.TestVersionFD1WithExtraAny.f": + case "testpb.TestVersionFD1WithExtraAny.f": if x.Sum == nil { value := &TestVersion1{} oneofValue := &TestVersionFD1WithExtraAny_F{F: value} @@ -20563,26 +20563,26 @@ func (x *fastReflection_TestVersionFD1WithExtraAny) Mutable(fd protoreflect.Fiel x.Sum = oneofValue return protoreflect.ValueOfMessage(value.ProtoReflect()) } - case "testdata.TestVersionFD1WithExtraAny.g": + case "testpb.TestVersionFD1WithExtraAny.g": if x.G == nil { x.G = new(AnyWithExtra) } return protoreflect.ValueOfMessage(x.G.ProtoReflect()) - case "testdata.TestVersionFD1WithExtraAny.h": + case "testpb.TestVersionFD1WithExtraAny.h": if x.H == nil { x.H = []*TestVersion1{} } value := &_TestVersionFD1WithExtraAny_9_list{list: &x.H} return protoreflect.ValueOfList(value) - case "testdata.TestVersionFD1WithExtraAny.x": - panic(fmt.Errorf("field x of message testdata.TestVersionFD1WithExtraAny is not mutable")) - case "testdata.TestVersionFD1WithExtraAny.e": - panic(fmt.Errorf("field e of message testdata.TestVersionFD1WithExtraAny is not mutable")) + case "testpb.TestVersionFD1WithExtraAny.x": + panic(fmt.Errorf("field x of message testpb.TestVersionFD1WithExtraAny is not mutable")) + case "testpb.TestVersionFD1WithExtraAny.e": + panic(fmt.Errorf("field e of message testpb.TestVersionFD1WithExtraAny is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersionFD1WithExtraAny")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersionFD1WithExtraAny")) } - panic(fmt.Errorf("message testdata.TestVersionFD1WithExtraAny does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersionFD1WithExtraAny does not contain field %s", fd.FullName())) } } @@ -20591,27 +20591,27 @@ func (x *fastReflection_TestVersionFD1WithExtraAny) Mutable(fd protoreflect.Fiel // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_TestVersionFD1WithExtraAny) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestVersionFD1WithExtraAny.x": + case "testpb.TestVersionFD1WithExtraAny.x": return protoreflect.ValueOfInt64(int64(0)) - case "testdata.TestVersionFD1WithExtraAny.a": + case "testpb.TestVersionFD1WithExtraAny.a": m := new(TestVersion1) return protoreflect.ValueOfMessage(m.ProtoReflect()) - case "testdata.TestVersionFD1WithExtraAny.e": + case "testpb.TestVersionFD1WithExtraAny.e": return protoreflect.ValueOfInt32(int32(0)) - case "testdata.TestVersionFD1WithExtraAny.f": + case "testpb.TestVersionFD1WithExtraAny.f": value := &TestVersion1{} return protoreflect.ValueOfMessage(value.ProtoReflect()) - case "testdata.TestVersionFD1WithExtraAny.g": + case "testpb.TestVersionFD1WithExtraAny.g": m := new(AnyWithExtra) return protoreflect.ValueOfMessage(m.ProtoReflect()) - case "testdata.TestVersionFD1WithExtraAny.h": + case "testpb.TestVersionFD1WithExtraAny.h": list := []*TestVersion1{} return protoreflect.ValueOfList(&_TestVersionFD1WithExtraAny_9_list{list: &list}) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestVersionFD1WithExtraAny")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestVersionFD1WithExtraAny")) } - panic(fmt.Errorf("message testdata.TestVersionFD1WithExtraAny does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestVersionFD1WithExtraAny does not contain field %s", fd.FullName())) } } @@ -20620,7 +20620,7 @@ func (x *fastReflection_TestVersionFD1WithExtraAny) NewField(fd protoreflect.Fie // It panics if the oneof descriptor does not belong to this message. func (x *fastReflection_TestVersionFD1WithExtraAny) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { - case "testdata.TestVersionFD1WithExtraAny.sum": + case "testpb.TestVersionFD1WithExtraAny.sum": if x.Sum == nil { return nil } @@ -20631,7 +20631,7 @@ func (x *fastReflection_TestVersionFD1WithExtraAny) WhichOneof(d protoreflect.On return x.Descriptor().Fields().ByName("f") } default: - panic(fmt.Errorf("%s is not a oneof field in testdata.TestVersionFD1WithExtraAny", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.TestVersionFD1WithExtraAny", d.FullName())) } panic("unreachable") } @@ -21085,8 +21085,8 @@ var ( ) func init() { - file_unknonwnproto_proto_init() - md_AnyWithExtra = File_unknonwnproto_proto.Messages().ByName("AnyWithExtra") + file_testpb_unknonwnproto_proto_init() + md_AnyWithExtra = File_testpb_unknonwnproto_proto.Messages().ByName("AnyWithExtra") fd_AnyWithExtra_a = md_AnyWithExtra.Fields().ByName("a") fd_AnyWithExtra_b = md_AnyWithExtra.Fields().ByName("b") fd_AnyWithExtra_c = md_AnyWithExtra.Fields().ByName("c") @@ -21101,7 +21101,7 @@ func (x *AnyWithExtra) ProtoReflect() protoreflect.Message { } func (x *AnyWithExtra) slowProtoReflect() protoreflect.Message { - mi := &file_unknonwnproto_proto_msgTypes[19] + mi := &file_testpb_unknonwnproto_proto_msgTypes[19] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21190,17 +21190,17 @@ func (x *fastReflection_AnyWithExtra) Range(f func(protoreflect.FieldDescriptor, // a repeated field is populated if it is non-empty. func (x *fastReflection_AnyWithExtra) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.AnyWithExtra.a": + case "testpb.AnyWithExtra.a": return x.A != nil - case "testdata.AnyWithExtra.b": + case "testpb.AnyWithExtra.b": return x.B != int64(0) - case "testdata.AnyWithExtra.c": + case "testpb.AnyWithExtra.c": return x.C != int64(0) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.AnyWithExtra")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.AnyWithExtra")) } - panic(fmt.Errorf("message testdata.AnyWithExtra does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.AnyWithExtra does not contain field %s", fd.FullName())) } } @@ -21212,17 +21212,17 @@ func (x *fastReflection_AnyWithExtra) Has(fd protoreflect.FieldDescriptor) bool // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_AnyWithExtra) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.AnyWithExtra.a": + case "testpb.AnyWithExtra.a": x.A = nil - case "testdata.AnyWithExtra.b": + case "testpb.AnyWithExtra.b": x.B = int64(0) - case "testdata.AnyWithExtra.c": + case "testpb.AnyWithExtra.c": x.C = int64(0) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.AnyWithExtra")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.AnyWithExtra")) } - panic(fmt.Errorf("message testdata.AnyWithExtra does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.AnyWithExtra does not contain field %s", fd.FullName())) } } @@ -21234,20 +21234,20 @@ func (x *fastReflection_AnyWithExtra) Clear(fd protoreflect.FieldDescriptor) { // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_AnyWithExtra) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.AnyWithExtra.a": + case "testpb.AnyWithExtra.a": value := x.A return protoreflect.ValueOfMessage(value.ProtoReflect()) - case "testdata.AnyWithExtra.b": + case "testpb.AnyWithExtra.b": value := x.B return protoreflect.ValueOfInt64(value) - case "testdata.AnyWithExtra.c": + case "testpb.AnyWithExtra.c": value := x.C return protoreflect.ValueOfInt64(value) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.AnyWithExtra")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.AnyWithExtra")) } - panic(fmt.Errorf("message testdata.AnyWithExtra does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.AnyWithExtra does not contain field %s", descriptor.FullName())) } } @@ -21263,17 +21263,17 @@ func (x *fastReflection_AnyWithExtra) Get(descriptor protoreflect.FieldDescripto // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_AnyWithExtra) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.AnyWithExtra.a": + case "testpb.AnyWithExtra.a": x.A = value.Message().Interface().(*anypb.Any) - case "testdata.AnyWithExtra.b": + case "testpb.AnyWithExtra.b": x.B = value.Int() - case "testdata.AnyWithExtra.c": + case "testpb.AnyWithExtra.c": x.C = value.Int() default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.AnyWithExtra")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.AnyWithExtra")) } - panic(fmt.Errorf("message testdata.AnyWithExtra does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.AnyWithExtra does not contain field %s", fd.FullName())) } } @@ -21289,20 +21289,20 @@ func (x *fastReflection_AnyWithExtra) Set(fd protoreflect.FieldDescriptor, value // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_AnyWithExtra) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.AnyWithExtra.a": + case "testpb.AnyWithExtra.a": if x.A == nil { x.A = new(anypb.Any) } return protoreflect.ValueOfMessage(x.A.ProtoReflect()) - case "testdata.AnyWithExtra.b": - panic(fmt.Errorf("field b of message testdata.AnyWithExtra is not mutable")) - case "testdata.AnyWithExtra.c": - panic(fmt.Errorf("field c of message testdata.AnyWithExtra is not mutable")) + case "testpb.AnyWithExtra.b": + panic(fmt.Errorf("field b of message testpb.AnyWithExtra is not mutable")) + case "testpb.AnyWithExtra.c": + panic(fmt.Errorf("field c of message testpb.AnyWithExtra is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.AnyWithExtra")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.AnyWithExtra")) } - panic(fmt.Errorf("message testdata.AnyWithExtra does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.AnyWithExtra does not contain field %s", fd.FullName())) } } @@ -21311,18 +21311,18 @@ func (x *fastReflection_AnyWithExtra) Mutable(fd protoreflect.FieldDescriptor) p // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_AnyWithExtra) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.AnyWithExtra.a": + case "testpb.AnyWithExtra.a": m := new(anypb.Any) return protoreflect.ValueOfMessage(m.ProtoReflect()) - case "testdata.AnyWithExtra.b": + case "testpb.AnyWithExtra.b": return protoreflect.ValueOfInt64(int64(0)) - case "testdata.AnyWithExtra.c": + case "testpb.AnyWithExtra.c": return protoreflect.ValueOfInt64(int64(0)) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.AnyWithExtra")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.AnyWithExtra")) } - panic(fmt.Errorf("message testdata.AnyWithExtra does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.AnyWithExtra does not contain field %s", fd.FullName())) } } @@ -21332,7 +21332,7 @@ func (x *fastReflection_AnyWithExtra) NewField(fd protoreflect.FieldDescriptor) func (x *fastReflection_AnyWithExtra) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in testdata.AnyWithExtra", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.AnyWithExtra", d.FullName())) } panic("unreachable") } @@ -21664,8 +21664,8 @@ var ( ) func init() { - file_unknonwnproto_proto_init() - md_TestUpdatedTxRaw = File_unknonwnproto_proto.Messages().ByName("TestUpdatedTxRaw") + file_testpb_unknonwnproto_proto_init() + md_TestUpdatedTxRaw = File_testpb_unknonwnproto_proto.Messages().ByName("TestUpdatedTxRaw") fd_TestUpdatedTxRaw_body_bytes = md_TestUpdatedTxRaw.Fields().ByName("body_bytes") fd_TestUpdatedTxRaw_auth_info_bytes = md_TestUpdatedTxRaw.Fields().ByName("auth_info_bytes") fd_TestUpdatedTxRaw_signatures = md_TestUpdatedTxRaw.Fields().ByName("signatures") @@ -21682,7 +21682,7 @@ func (x *TestUpdatedTxRaw) ProtoReflect() protoreflect.Message { } func (x *TestUpdatedTxRaw) slowProtoReflect() protoreflect.Message { - mi := &file_unknonwnproto_proto_msgTypes[20] + mi := &file_testpb_unknonwnproto_proto_msgTypes[20] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21783,21 +21783,21 @@ func (x *fastReflection_TestUpdatedTxRaw) Range(f func(protoreflect.FieldDescrip // a repeated field is populated if it is non-empty. func (x *fastReflection_TestUpdatedTxRaw) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.TestUpdatedTxRaw.body_bytes": + case "testpb.TestUpdatedTxRaw.body_bytes": return len(x.BodyBytes) != 0 - case "testdata.TestUpdatedTxRaw.auth_info_bytes": + case "testpb.TestUpdatedTxRaw.auth_info_bytes": return len(x.AuthInfoBytes) != 0 - case "testdata.TestUpdatedTxRaw.signatures": + case "testpb.TestUpdatedTxRaw.signatures": return len(x.Signatures) != 0 - case "testdata.TestUpdatedTxRaw.new_field_5": + case "testpb.TestUpdatedTxRaw.new_field_5": return len(x.NewField_5) != 0 - case "testdata.TestUpdatedTxRaw.new_field_1024": + case "testpb.TestUpdatedTxRaw.new_field_1024": return len(x.NewField_1024) != 0 default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestUpdatedTxRaw")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestUpdatedTxRaw")) } - panic(fmt.Errorf("message testdata.TestUpdatedTxRaw does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestUpdatedTxRaw does not contain field %s", fd.FullName())) } } @@ -21809,21 +21809,21 @@ func (x *fastReflection_TestUpdatedTxRaw) Has(fd protoreflect.FieldDescriptor) b // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestUpdatedTxRaw) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.TestUpdatedTxRaw.body_bytes": + case "testpb.TestUpdatedTxRaw.body_bytes": x.BodyBytes = nil - case "testdata.TestUpdatedTxRaw.auth_info_bytes": + case "testpb.TestUpdatedTxRaw.auth_info_bytes": x.AuthInfoBytes = nil - case "testdata.TestUpdatedTxRaw.signatures": + case "testpb.TestUpdatedTxRaw.signatures": x.Signatures = nil - case "testdata.TestUpdatedTxRaw.new_field_5": + case "testpb.TestUpdatedTxRaw.new_field_5": x.NewField_5 = nil - case "testdata.TestUpdatedTxRaw.new_field_1024": + case "testpb.TestUpdatedTxRaw.new_field_1024": x.NewField_1024 = nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestUpdatedTxRaw")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestUpdatedTxRaw")) } - panic(fmt.Errorf("message testdata.TestUpdatedTxRaw does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestUpdatedTxRaw does not contain field %s", fd.FullName())) } } @@ -21835,29 +21835,29 @@ func (x *fastReflection_TestUpdatedTxRaw) Clear(fd protoreflect.FieldDescriptor) // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_TestUpdatedTxRaw) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.TestUpdatedTxRaw.body_bytes": + case "testpb.TestUpdatedTxRaw.body_bytes": value := x.BodyBytes return protoreflect.ValueOfBytes(value) - case "testdata.TestUpdatedTxRaw.auth_info_bytes": + case "testpb.TestUpdatedTxRaw.auth_info_bytes": value := x.AuthInfoBytes return protoreflect.ValueOfBytes(value) - case "testdata.TestUpdatedTxRaw.signatures": + case "testpb.TestUpdatedTxRaw.signatures": if len(x.Signatures) == 0 { return protoreflect.ValueOfList(&_TestUpdatedTxRaw_3_list{}) } listValue := &_TestUpdatedTxRaw_3_list{list: &x.Signatures} return protoreflect.ValueOfList(listValue) - case "testdata.TestUpdatedTxRaw.new_field_5": + case "testpb.TestUpdatedTxRaw.new_field_5": value := x.NewField_5 return protoreflect.ValueOfBytes(value) - case "testdata.TestUpdatedTxRaw.new_field_1024": + case "testpb.TestUpdatedTxRaw.new_field_1024": value := x.NewField_1024 return protoreflect.ValueOfBytes(value) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestUpdatedTxRaw")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestUpdatedTxRaw")) } - panic(fmt.Errorf("message testdata.TestUpdatedTxRaw does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.TestUpdatedTxRaw does not contain field %s", descriptor.FullName())) } } @@ -21873,23 +21873,23 @@ func (x *fastReflection_TestUpdatedTxRaw) Get(descriptor protoreflect.FieldDescr // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestUpdatedTxRaw) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.TestUpdatedTxRaw.body_bytes": + case "testpb.TestUpdatedTxRaw.body_bytes": x.BodyBytes = value.Bytes() - case "testdata.TestUpdatedTxRaw.auth_info_bytes": + case "testpb.TestUpdatedTxRaw.auth_info_bytes": x.AuthInfoBytes = value.Bytes() - case "testdata.TestUpdatedTxRaw.signatures": + case "testpb.TestUpdatedTxRaw.signatures": lv := value.List() clv := lv.(*_TestUpdatedTxRaw_3_list) x.Signatures = *clv.list - case "testdata.TestUpdatedTxRaw.new_field_5": + case "testpb.TestUpdatedTxRaw.new_field_5": x.NewField_5 = value.Bytes() - case "testdata.TestUpdatedTxRaw.new_field_1024": + case "testpb.TestUpdatedTxRaw.new_field_1024": x.NewField_1024 = value.Bytes() default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestUpdatedTxRaw")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestUpdatedTxRaw")) } - panic(fmt.Errorf("message testdata.TestUpdatedTxRaw does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestUpdatedTxRaw does not contain field %s", fd.FullName())) } } @@ -21905,25 +21905,25 @@ func (x *fastReflection_TestUpdatedTxRaw) Set(fd protoreflect.FieldDescriptor, v // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestUpdatedTxRaw) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestUpdatedTxRaw.signatures": + case "testpb.TestUpdatedTxRaw.signatures": if x.Signatures == nil { x.Signatures = [][]byte{} } value := &_TestUpdatedTxRaw_3_list{list: &x.Signatures} return protoreflect.ValueOfList(value) - case "testdata.TestUpdatedTxRaw.body_bytes": - panic(fmt.Errorf("field body_bytes of message testdata.TestUpdatedTxRaw is not mutable")) - case "testdata.TestUpdatedTxRaw.auth_info_bytes": - panic(fmt.Errorf("field auth_info_bytes of message testdata.TestUpdatedTxRaw is not mutable")) - case "testdata.TestUpdatedTxRaw.new_field_5": - panic(fmt.Errorf("field new_field_5 of message testdata.TestUpdatedTxRaw is not mutable")) - case "testdata.TestUpdatedTxRaw.new_field_1024": - panic(fmt.Errorf("field new_field_1024 of message testdata.TestUpdatedTxRaw is not mutable")) + case "testpb.TestUpdatedTxRaw.body_bytes": + panic(fmt.Errorf("field body_bytes of message testpb.TestUpdatedTxRaw is not mutable")) + case "testpb.TestUpdatedTxRaw.auth_info_bytes": + panic(fmt.Errorf("field auth_info_bytes of message testpb.TestUpdatedTxRaw is not mutable")) + case "testpb.TestUpdatedTxRaw.new_field_5": + panic(fmt.Errorf("field new_field_5 of message testpb.TestUpdatedTxRaw is not mutable")) + case "testpb.TestUpdatedTxRaw.new_field_1024": + panic(fmt.Errorf("field new_field_1024 of message testpb.TestUpdatedTxRaw is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestUpdatedTxRaw")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestUpdatedTxRaw")) } - panic(fmt.Errorf("message testdata.TestUpdatedTxRaw does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestUpdatedTxRaw does not contain field %s", fd.FullName())) } } @@ -21932,22 +21932,22 @@ func (x *fastReflection_TestUpdatedTxRaw) Mutable(fd protoreflect.FieldDescripto // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_TestUpdatedTxRaw) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestUpdatedTxRaw.body_bytes": + case "testpb.TestUpdatedTxRaw.body_bytes": return protoreflect.ValueOfBytes(nil) - case "testdata.TestUpdatedTxRaw.auth_info_bytes": + case "testpb.TestUpdatedTxRaw.auth_info_bytes": return protoreflect.ValueOfBytes(nil) - case "testdata.TestUpdatedTxRaw.signatures": + case "testpb.TestUpdatedTxRaw.signatures": list := [][]byte{} return protoreflect.ValueOfList(&_TestUpdatedTxRaw_3_list{list: &list}) - case "testdata.TestUpdatedTxRaw.new_field_5": + case "testpb.TestUpdatedTxRaw.new_field_5": return protoreflect.ValueOfBytes(nil) - case "testdata.TestUpdatedTxRaw.new_field_1024": + case "testpb.TestUpdatedTxRaw.new_field_1024": return protoreflect.ValueOfBytes(nil) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestUpdatedTxRaw")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestUpdatedTxRaw")) } - panic(fmt.Errorf("message testdata.TestUpdatedTxRaw does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestUpdatedTxRaw does not contain field %s", fd.FullName())) } } @@ -21957,7 +21957,7 @@ func (x *fastReflection_TestUpdatedTxRaw) NewField(fd protoreflect.FieldDescript func (x *fastReflection_TestUpdatedTxRaw) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in testdata.TestUpdatedTxRaw", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.TestUpdatedTxRaw", d.FullName())) } panic("unreachable") } @@ -22519,8 +22519,8 @@ var ( ) func init() { - file_unknonwnproto_proto_init() - md_TestUpdatedTxBody = File_unknonwnproto_proto.Messages().ByName("TestUpdatedTxBody") + file_testpb_unknonwnproto_proto_init() + md_TestUpdatedTxBody = File_testpb_unknonwnproto_proto.Messages().ByName("TestUpdatedTxBody") fd_TestUpdatedTxBody_messages = md_TestUpdatedTxBody.Fields().ByName("messages") fd_TestUpdatedTxBody_memo = md_TestUpdatedTxBody.Fields().ByName("memo") fd_TestUpdatedTxBody_timeout_height = md_TestUpdatedTxBody.Fields().ByName("timeout_height") @@ -22539,7 +22539,7 @@ func (x *TestUpdatedTxBody) ProtoReflect() protoreflect.Message { } func (x *TestUpdatedTxBody) slowProtoReflect() protoreflect.Message { - mi := &file_unknonwnproto_proto_msgTypes[21] + mi := &file_testpb_unknonwnproto_proto_msgTypes[21] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22652,25 +22652,25 @@ func (x *fastReflection_TestUpdatedTxBody) Range(f func(protoreflect.FieldDescri // a repeated field is populated if it is non-empty. func (x *fastReflection_TestUpdatedTxBody) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.TestUpdatedTxBody.messages": + case "testpb.TestUpdatedTxBody.messages": return len(x.Messages) != 0 - case "testdata.TestUpdatedTxBody.memo": + case "testpb.TestUpdatedTxBody.memo": return x.Memo != "" - case "testdata.TestUpdatedTxBody.timeout_height": + case "testpb.TestUpdatedTxBody.timeout_height": return x.TimeoutHeight != int64(0) - case "testdata.TestUpdatedTxBody.some_new_field": + case "testpb.TestUpdatedTxBody.some_new_field": return x.SomeNewField != uint64(0) - case "testdata.TestUpdatedTxBody.some_new_field_non_critical_field": + case "testpb.TestUpdatedTxBody.some_new_field_non_critical_field": return x.SomeNewFieldNonCriticalField != "" - case "testdata.TestUpdatedTxBody.extension_options": + case "testpb.TestUpdatedTxBody.extension_options": return len(x.ExtensionOptions) != 0 - case "testdata.TestUpdatedTxBody.non_critical_extension_options": + case "testpb.TestUpdatedTxBody.non_critical_extension_options": return len(x.NonCriticalExtensionOptions) != 0 default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestUpdatedTxBody")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestUpdatedTxBody")) } - panic(fmt.Errorf("message testdata.TestUpdatedTxBody does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestUpdatedTxBody does not contain field %s", fd.FullName())) } } @@ -22682,25 +22682,25 @@ func (x *fastReflection_TestUpdatedTxBody) Has(fd protoreflect.FieldDescriptor) // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestUpdatedTxBody) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.TestUpdatedTxBody.messages": + case "testpb.TestUpdatedTxBody.messages": x.Messages = nil - case "testdata.TestUpdatedTxBody.memo": + case "testpb.TestUpdatedTxBody.memo": x.Memo = "" - case "testdata.TestUpdatedTxBody.timeout_height": + case "testpb.TestUpdatedTxBody.timeout_height": x.TimeoutHeight = int64(0) - case "testdata.TestUpdatedTxBody.some_new_field": + case "testpb.TestUpdatedTxBody.some_new_field": x.SomeNewField = uint64(0) - case "testdata.TestUpdatedTxBody.some_new_field_non_critical_field": + case "testpb.TestUpdatedTxBody.some_new_field_non_critical_field": x.SomeNewFieldNonCriticalField = "" - case "testdata.TestUpdatedTxBody.extension_options": + case "testpb.TestUpdatedTxBody.extension_options": x.ExtensionOptions = nil - case "testdata.TestUpdatedTxBody.non_critical_extension_options": + case "testpb.TestUpdatedTxBody.non_critical_extension_options": x.NonCriticalExtensionOptions = nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestUpdatedTxBody")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestUpdatedTxBody")) } - panic(fmt.Errorf("message testdata.TestUpdatedTxBody does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestUpdatedTxBody does not contain field %s", fd.FullName())) } } @@ -22712,31 +22712,31 @@ func (x *fastReflection_TestUpdatedTxBody) Clear(fd protoreflect.FieldDescriptor // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_TestUpdatedTxBody) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.TestUpdatedTxBody.messages": + case "testpb.TestUpdatedTxBody.messages": if len(x.Messages) == 0 { return protoreflect.ValueOfList(&_TestUpdatedTxBody_1_list{}) } listValue := &_TestUpdatedTxBody_1_list{list: &x.Messages} return protoreflect.ValueOfList(listValue) - case "testdata.TestUpdatedTxBody.memo": + case "testpb.TestUpdatedTxBody.memo": value := x.Memo return protoreflect.ValueOfString(value) - case "testdata.TestUpdatedTxBody.timeout_height": + case "testpb.TestUpdatedTxBody.timeout_height": value := x.TimeoutHeight return protoreflect.ValueOfInt64(value) - case "testdata.TestUpdatedTxBody.some_new_field": + case "testpb.TestUpdatedTxBody.some_new_field": value := x.SomeNewField return protoreflect.ValueOfUint64(value) - case "testdata.TestUpdatedTxBody.some_new_field_non_critical_field": + case "testpb.TestUpdatedTxBody.some_new_field_non_critical_field": value := x.SomeNewFieldNonCriticalField return protoreflect.ValueOfString(value) - case "testdata.TestUpdatedTxBody.extension_options": + case "testpb.TestUpdatedTxBody.extension_options": if len(x.ExtensionOptions) == 0 { return protoreflect.ValueOfList(&_TestUpdatedTxBody_1023_list{}) } listValue := &_TestUpdatedTxBody_1023_list{list: &x.ExtensionOptions} return protoreflect.ValueOfList(listValue) - case "testdata.TestUpdatedTxBody.non_critical_extension_options": + case "testpb.TestUpdatedTxBody.non_critical_extension_options": if len(x.NonCriticalExtensionOptions) == 0 { return protoreflect.ValueOfList(&_TestUpdatedTxBody_2047_list{}) } @@ -22744,9 +22744,9 @@ func (x *fastReflection_TestUpdatedTxBody) Get(descriptor protoreflect.FieldDesc return protoreflect.ValueOfList(listValue) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestUpdatedTxBody")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestUpdatedTxBody")) } - panic(fmt.Errorf("message testdata.TestUpdatedTxBody does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.TestUpdatedTxBody does not contain field %s", descriptor.FullName())) } } @@ -22762,31 +22762,31 @@ func (x *fastReflection_TestUpdatedTxBody) Get(descriptor protoreflect.FieldDesc // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestUpdatedTxBody) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.TestUpdatedTxBody.messages": + case "testpb.TestUpdatedTxBody.messages": lv := value.List() clv := lv.(*_TestUpdatedTxBody_1_list) x.Messages = *clv.list - case "testdata.TestUpdatedTxBody.memo": + case "testpb.TestUpdatedTxBody.memo": x.Memo = value.Interface().(string) - case "testdata.TestUpdatedTxBody.timeout_height": + case "testpb.TestUpdatedTxBody.timeout_height": x.TimeoutHeight = value.Int() - case "testdata.TestUpdatedTxBody.some_new_field": + case "testpb.TestUpdatedTxBody.some_new_field": x.SomeNewField = value.Uint() - case "testdata.TestUpdatedTxBody.some_new_field_non_critical_field": + case "testpb.TestUpdatedTxBody.some_new_field_non_critical_field": x.SomeNewFieldNonCriticalField = value.Interface().(string) - case "testdata.TestUpdatedTxBody.extension_options": + case "testpb.TestUpdatedTxBody.extension_options": lv := value.List() clv := lv.(*_TestUpdatedTxBody_1023_list) x.ExtensionOptions = *clv.list - case "testdata.TestUpdatedTxBody.non_critical_extension_options": + case "testpb.TestUpdatedTxBody.non_critical_extension_options": lv := value.List() clv := lv.(*_TestUpdatedTxBody_2047_list) x.NonCriticalExtensionOptions = *clv.list default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestUpdatedTxBody")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestUpdatedTxBody")) } - panic(fmt.Errorf("message testdata.TestUpdatedTxBody does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestUpdatedTxBody does not contain field %s", fd.FullName())) } } @@ -22802,37 +22802,37 @@ func (x *fastReflection_TestUpdatedTxBody) Set(fd protoreflect.FieldDescriptor, // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestUpdatedTxBody) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestUpdatedTxBody.messages": + case "testpb.TestUpdatedTxBody.messages": if x.Messages == nil { x.Messages = []*anypb.Any{} } value := &_TestUpdatedTxBody_1_list{list: &x.Messages} return protoreflect.ValueOfList(value) - case "testdata.TestUpdatedTxBody.extension_options": + case "testpb.TestUpdatedTxBody.extension_options": if x.ExtensionOptions == nil { x.ExtensionOptions = []*anypb.Any{} } value := &_TestUpdatedTxBody_1023_list{list: &x.ExtensionOptions} return protoreflect.ValueOfList(value) - case "testdata.TestUpdatedTxBody.non_critical_extension_options": + case "testpb.TestUpdatedTxBody.non_critical_extension_options": if x.NonCriticalExtensionOptions == nil { x.NonCriticalExtensionOptions = []*anypb.Any{} } value := &_TestUpdatedTxBody_2047_list{list: &x.NonCriticalExtensionOptions} return protoreflect.ValueOfList(value) - case "testdata.TestUpdatedTxBody.memo": - panic(fmt.Errorf("field memo of message testdata.TestUpdatedTxBody is not mutable")) - case "testdata.TestUpdatedTxBody.timeout_height": - panic(fmt.Errorf("field timeout_height of message testdata.TestUpdatedTxBody is not mutable")) - case "testdata.TestUpdatedTxBody.some_new_field": - panic(fmt.Errorf("field some_new_field of message testdata.TestUpdatedTxBody is not mutable")) - case "testdata.TestUpdatedTxBody.some_new_field_non_critical_field": - panic(fmt.Errorf("field some_new_field_non_critical_field of message testdata.TestUpdatedTxBody is not mutable")) + case "testpb.TestUpdatedTxBody.memo": + panic(fmt.Errorf("field memo of message testpb.TestUpdatedTxBody is not mutable")) + case "testpb.TestUpdatedTxBody.timeout_height": + panic(fmt.Errorf("field timeout_height of message testpb.TestUpdatedTxBody is not mutable")) + case "testpb.TestUpdatedTxBody.some_new_field": + panic(fmt.Errorf("field some_new_field of message testpb.TestUpdatedTxBody is not mutable")) + case "testpb.TestUpdatedTxBody.some_new_field_non_critical_field": + panic(fmt.Errorf("field some_new_field_non_critical_field of message testpb.TestUpdatedTxBody is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestUpdatedTxBody")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestUpdatedTxBody")) } - panic(fmt.Errorf("message testdata.TestUpdatedTxBody does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestUpdatedTxBody does not contain field %s", fd.FullName())) } } @@ -22841,28 +22841,28 @@ func (x *fastReflection_TestUpdatedTxBody) Mutable(fd protoreflect.FieldDescript // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_TestUpdatedTxBody) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestUpdatedTxBody.messages": + case "testpb.TestUpdatedTxBody.messages": list := []*anypb.Any{} return protoreflect.ValueOfList(&_TestUpdatedTxBody_1_list{list: &list}) - case "testdata.TestUpdatedTxBody.memo": + case "testpb.TestUpdatedTxBody.memo": return protoreflect.ValueOfString("") - case "testdata.TestUpdatedTxBody.timeout_height": + case "testpb.TestUpdatedTxBody.timeout_height": return protoreflect.ValueOfInt64(int64(0)) - case "testdata.TestUpdatedTxBody.some_new_field": + case "testpb.TestUpdatedTxBody.some_new_field": return protoreflect.ValueOfUint64(uint64(0)) - case "testdata.TestUpdatedTxBody.some_new_field_non_critical_field": + case "testpb.TestUpdatedTxBody.some_new_field_non_critical_field": return protoreflect.ValueOfString("") - case "testdata.TestUpdatedTxBody.extension_options": + case "testpb.TestUpdatedTxBody.extension_options": list := []*anypb.Any{} return protoreflect.ValueOfList(&_TestUpdatedTxBody_1023_list{list: &list}) - case "testdata.TestUpdatedTxBody.non_critical_extension_options": + case "testpb.TestUpdatedTxBody.non_critical_extension_options": list := []*anypb.Any{} return protoreflect.ValueOfList(&_TestUpdatedTxBody_2047_list{list: &list}) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestUpdatedTxBody")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestUpdatedTxBody")) } - panic(fmt.Errorf("message testdata.TestUpdatedTxBody does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestUpdatedTxBody does not contain field %s", fd.FullName())) } } @@ -22872,7 +22872,7 @@ func (x *fastReflection_TestUpdatedTxBody) NewField(fd protoreflect.FieldDescrip func (x *fastReflection_TestUpdatedTxBody) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in testdata.TestUpdatedTxBody", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.TestUpdatedTxBody", d.FullName())) } panic("unreachable") } @@ -23414,8 +23414,8 @@ var ( ) func init() { - file_unknonwnproto_proto_init() - md_TestUpdatedAuthInfo = File_unknonwnproto_proto.Messages().ByName("TestUpdatedAuthInfo") + file_testpb_unknonwnproto_proto_init() + md_TestUpdatedAuthInfo = File_testpb_unknonwnproto_proto.Messages().ByName("TestUpdatedAuthInfo") fd_TestUpdatedAuthInfo_signer_infos = md_TestUpdatedAuthInfo.Fields().ByName("signer_infos") fd_TestUpdatedAuthInfo_fee = md_TestUpdatedAuthInfo.Fields().ByName("fee") fd_TestUpdatedAuthInfo_new_field_3 = md_TestUpdatedAuthInfo.Fields().ByName("new_field_3") @@ -23431,7 +23431,7 @@ func (x *TestUpdatedAuthInfo) ProtoReflect() protoreflect.Message { } func (x *TestUpdatedAuthInfo) slowProtoReflect() protoreflect.Message { - mi := &file_unknonwnproto_proto_msgTypes[22] + mi := &file_testpb_unknonwnproto_proto_msgTypes[22] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23526,19 +23526,19 @@ func (x *fastReflection_TestUpdatedAuthInfo) Range(f func(protoreflect.FieldDesc // a repeated field is populated if it is non-empty. func (x *fastReflection_TestUpdatedAuthInfo) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.TestUpdatedAuthInfo.signer_infos": + case "testpb.TestUpdatedAuthInfo.signer_infos": return len(x.SignerInfos) != 0 - case "testdata.TestUpdatedAuthInfo.fee": + case "testpb.TestUpdatedAuthInfo.fee": return x.Fee != nil - case "testdata.TestUpdatedAuthInfo.new_field_3": + case "testpb.TestUpdatedAuthInfo.new_field_3": return len(x.NewField_3) != 0 - case "testdata.TestUpdatedAuthInfo.new_field_1024": + case "testpb.TestUpdatedAuthInfo.new_field_1024": return len(x.NewField_1024) != 0 default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestUpdatedAuthInfo")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestUpdatedAuthInfo")) } - panic(fmt.Errorf("message testdata.TestUpdatedAuthInfo does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestUpdatedAuthInfo does not contain field %s", fd.FullName())) } } @@ -23550,19 +23550,19 @@ func (x *fastReflection_TestUpdatedAuthInfo) Has(fd protoreflect.FieldDescriptor // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestUpdatedAuthInfo) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.TestUpdatedAuthInfo.signer_infos": + case "testpb.TestUpdatedAuthInfo.signer_infos": x.SignerInfos = nil - case "testdata.TestUpdatedAuthInfo.fee": + case "testpb.TestUpdatedAuthInfo.fee": x.Fee = nil - case "testdata.TestUpdatedAuthInfo.new_field_3": + case "testpb.TestUpdatedAuthInfo.new_field_3": x.NewField_3 = nil - case "testdata.TestUpdatedAuthInfo.new_field_1024": + case "testpb.TestUpdatedAuthInfo.new_field_1024": x.NewField_1024 = nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestUpdatedAuthInfo")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestUpdatedAuthInfo")) } - panic(fmt.Errorf("message testdata.TestUpdatedAuthInfo does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestUpdatedAuthInfo does not contain field %s", fd.FullName())) } } @@ -23574,26 +23574,26 @@ func (x *fastReflection_TestUpdatedAuthInfo) Clear(fd protoreflect.FieldDescript // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_TestUpdatedAuthInfo) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.TestUpdatedAuthInfo.signer_infos": + case "testpb.TestUpdatedAuthInfo.signer_infos": if len(x.SignerInfos) == 0 { return protoreflect.ValueOfList(&_TestUpdatedAuthInfo_1_list{}) } listValue := &_TestUpdatedAuthInfo_1_list{list: &x.SignerInfos} return protoreflect.ValueOfList(listValue) - case "testdata.TestUpdatedAuthInfo.fee": + case "testpb.TestUpdatedAuthInfo.fee": value := x.Fee return protoreflect.ValueOfMessage(value.ProtoReflect()) - case "testdata.TestUpdatedAuthInfo.new_field_3": + case "testpb.TestUpdatedAuthInfo.new_field_3": value := x.NewField_3 return protoreflect.ValueOfBytes(value) - case "testdata.TestUpdatedAuthInfo.new_field_1024": + case "testpb.TestUpdatedAuthInfo.new_field_1024": value := x.NewField_1024 return protoreflect.ValueOfBytes(value) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestUpdatedAuthInfo")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestUpdatedAuthInfo")) } - panic(fmt.Errorf("message testdata.TestUpdatedAuthInfo does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.TestUpdatedAuthInfo does not contain field %s", descriptor.FullName())) } } @@ -23609,21 +23609,21 @@ func (x *fastReflection_TestUpdatedAuthInfo) Get(descriptor protoreflect.FieldDe // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestUpdatedAuthInfo) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.TestUpdatedAuthInfo.signer_infos": + case "testpb.TestUpdatedAuthInfo.signer_infos": lv := value.List() clv := lv.(*_TestUpdatedAuthInfo_1_list) x.SignerInfos = *clv.list - case "testdata.TestUpdatedAuthInfo.fee": + case "testpb.TestUpdatedAuthInfo.fee": x.Fee = value.Message().Interface().(*v1beta1.Fee) - case "testdata.TestUpdatedAuthInfo.new_field_3": + case "testpb.TestUpdatedAuthInfo.new_field_3": x.NewField_3 = value.Bytes() - case "testdata.TestUpdatedAuthInfo.new_field_1024": + case "testpb.TestUpdatedAuthInfo.new_field_1024": x.NewField_1024 = value.Bytes() default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestUpdatedAuthInfo")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestUpdatedAuthInfo")) } - panic(fmt.Errorf("message testdata.TestUpdatedAuthInfo does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestUpdatedAuthInfo does not contain field %s", fd.FullName())) } } @@ -23639,26 +23639,26 @@ func (x *fastReflection_TestUpdatedAuthInfo) Set(fd protoreflect.FieldDescriptor // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestUpdatedAuthInfo) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestUpdatedAuthInfo.signer_infos": + case "testpb.TestUpdatedAuthInfo.signer_infos": if x.SignerInfos == nil { x.SignerInfos = []*v1beta1.SignerInfo{} } value := &_TestUpdatedAuthInfo_1_list{list: &x.SignerInfos} return protoreflect.ValueOfList(value) - case "testdata.TestUpdatedAuthInfo.fee": + case "testpb.TestUpdatedAuthInfo.fee": if x.Fee == nil { x.Fee = new(v1beta1.Fee) } return protoreflect.ValueOfMessage(x.Fee.ProtoReflect()) - case "testdata.TestUpdatedAuthInfo.new_field_3": - panic(fmt.Errorf("field new_field_3 of message testdata.TestUpdatedAuthInfo is not mutable")) - case "testdata.TestUpdatedAuthInfo.new_field_1024": - panic(fmt.Errorf("field new_field_1024 of message testdata.TestUpdatedAuthInfo is not mutable")) + case "testpb.TestUpdatedAuthInfo.new_field_3": + panic(fmt.Errorf("field new_field_3 of message testpb.TestUpdatedAuthInfo is not mutable")) + case "testpb.TestUpdatedAuthInfo.new_field_1024": + panic(fmt.Errorf("field new_field_1024 of message testpb.TestUpdatedAuthInfo is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestUpdatedAuthInfo")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestUpdatedAuthInfo")) } - panic(fmt.Errorf("message testdata.TestUpdatedAuthInfo does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestUpdatedAuthInfo does not contain field %s", fd.FullName())) } } @@ -23667,21 +23667,21 @@ func (x *fastReflection_TestUpdatedAuthInfo) Mutable(fd protoreflect.FieldDescri // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_TestUpdatedAuthInfo) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestUpdatedAuthInfo.signer_infos": + case "testpb.TestUpdatedAuthInfo.signer_infos": list := []*v1beta1.SignerInfo{} return protoreflect.ValueOfList(&_TestUpdatedAuthInfo_1_list{list: &list}) - case "testdata.TestUpdatedAuthInfo.fee": + case "testpb.TestUpdatedAuthInfo.fee": m := new(v1beta1.Fee) return protoreflect.ValueOfMessage(m.ProtoReflect()) - case "testdata.TestUpdatedAuthInfo.new_field_3": + case "testpb.TestUpdatedAuthInfo.new_field_3": return protoreflect.ValueOfBytes(nil) - case "testdata.TestUpdatedAuthInfo.new_field_1024": + case "testpb.TestUpdatedAuthInfo.new_field_1024": return protoreflect.ValueOfBytes(nil) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestUpdatedAuthInfo")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestUpdatedAuthInfo")) } - panic(fmt.Errorf("message testdata.TestUpdatedAuthInfo does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestUpdatedAuthInfo does not contain field %s", fd.FullName())) } } @@ -23691,7 +23691,7 @@ func (x *fastReflection_TestUpdatedAuthInfo) NewField(fd protoreflect.FieldDescr func (x *fastReflection_TestUpdatedAuthInfo) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in testdata.TestUpdatedAuthInfo", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.TestUpdatedAuthInfo", d.FullName())) } panic("unreachable") } @@ -24113,8 +24113,8 @@ var ( ) func init() { - file_unknonwnproto_proto_init() - md_TestRepeatedUints = File_unknonwnproto_proto.Messages().ByName("TestRepeatedUints") + file_testpb_unknonwnproto_proto_init() + md_TestRepeatedUints = File_testpb_unknonwnproto_proto.Messages().ByName("TestRepeatedUints") fd_TestRepeatedUints_nums = md_TestRepeatedUints.Fields().ByName("nums") } @@ -24127,7 +24127,7 @@ func (x *TestRepeatedUints) ProtoReflect() protoreflect.Message { } func (x *TestRepeatedUints) slowProtoReflect() protoreflect.Message { - mi := &file_unknonwnproto_proto_msgTypes[23] + mi := &file_testpb_unknonwnproto_proto_msgTypes[23] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24204,13 +24204,13 @@ func (x *fastReflection_TestRepeatedUints) Range(f func(protoreflect.FieldDescri // a repeated field is populated if it is non-empty. func (x *fastReflection_TestRepeatedUints) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "testdata.TestRepeatedUints.nums": + case "testpb.TestRepeatedUints.nums": return len(x.Nums) != 0 default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestRepeatedUints")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestRepeatedUints")) } - panic(fmt.Errorf("message testdata.TestRepeatedUints does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestRepeatedUints does not contain field %s", fd.FullName())) } } @@ -24222,13 +24222,13 @@ func (x *fastReflection_TestRepeatedUints) Has(fd protoreflect.FieldDescriptor) // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestRepeatedUints) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "testdata.TestRepeatedUints.nums": + case "testpb.TestRepeatedUints.nums": x.Nums = nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestRepeatedUints")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestRepeatedUints")) } - panic(fmt.Errorf("message testdata.TestRepeatedUints does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestRepeatedUints does not contain field %s", fd.FullName())) } } @@ -24240,7 +24240,7 @@ func (x *fastReflection_TestRepeatedUints) Clear(fd protoreflect.FieldDescriptor // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_TestRepeatedUints) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "testdata.TestRepeatedUints.nums": + case "testpb.TestRepeatedUints.nums": if len(x.Nums) == 0 { return protoreflect.ValueOfList(&_TestRepeatedUints_1_list{}) } @@ -24248,9 +24248,9 @@ func (x *fastReflection_TestRepeatedUints) Get(descriptor protoreflect.FieldDesc return protoreflect.ValueOfList(listValue) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestRepeatedUints")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestRepeatedUints")) } - panic(fmt.Errorf("message testdata.TestRepeatedUints does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message testpb.TestRepeatedUints does not contain field %s", descriptor.FullName())) } } @@ -24266,15 +24266,15 @@ func (x *fastReflection_TestRepeatedUints) Get(descriptor protoreflect.FieldDesc // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestRepeatedUints) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "testdata.TestRepeatedUints.nums": + case "testpb.TestRepeatedUints.nums": lv := value.List() clv := lv.(*_TestRepeatedUints_1_list) x.Nums = *clv.list default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestRepeatedUints")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestRepeatedUints")) } - panic(fmt.Errorf("message testdata.TestRepeatedUints does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestRepeatedUints does not contain field %s", fd.FullName())) } } @@ -24290,7 +24290,7 @@ func (x *fastReflection_TestRepeatedUints) Set(fd protoreflect.FieldDescriptor, // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_TestRepeatedUints) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestRepeatedUints.nums": + case "testpb.TestRepeatedUints.nums": if x.Nums == nil { x.Nums = []uint64{} } @@ -24298,9 +24298,9 @@ func (x *fastReflection_TestRepeatedUints) Mutable(fd protoreflect.FieldDescript return protoreflect.ValueOfList(value) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestRepeatedUints")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestRepeatedUints")) } - panic(fmt.Errorf("message testdata.TestRepeatedUints does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestRepeatedUints does not contain field %s", fd.FullName())) } } @@ -24309,14 +24309,14 @@ func (x *fastReflection_TestRepeatedUints) Mutable(fd protoreflect.FieldDescript // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_TestRepeatedUints) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "testdata.TestRepeatedUints.nums": + case "testpb.TestRepeatedUints.nums": list := []uint64{} return protoreflect.ValueOfList(&_TestRepeatedUints_1_list{list: &list}) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: testdata.TestRepeatedUints")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: testpb.TestRepeatedUints")) } - panic(fmt.Errorf("message testdata.TestRepeatedUints does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message testpb.TestRepeatedUints does not contain field %s", fd.FullName())) } } @@ -24326,7 +24326,7 @@ func (x *fastReflection_TestRepeatedUints) NewField(fd protoreflect.FieldDescrip func (x *fastReflection_TestRepeatedUints) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in testdata.TestRepeatedUints", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in testpb.TestRepeatedUints", d.FullName())) } panic("unreachable") } @@ -24601,7 +24601,7 @@ func (x *fastReflection_TestRepeatedUints) ProtoMethods() *protoiface.Methods { // versions: // protoc-gen-go v1.27.0 // protoc (unknown) -// source: unknonwnproto.proto +// source: testpb/unknonwnproto.proto const ( // Verify that this generated code is sufficiently up-to-date. @@ -24649,11 +24649,11 @@ func (x Customer2_City) String() string { } func (Customer2_City) Descriptor() protoreflect.EnumDescriptor { - return file_unknonwnproto_proto_enumTypes[0].Descriptor() + return file_testpb_unknonwnproto_proto_enumTypes[0].Descriptor() } func (Customer2_City) Type() protoreflect.EnumType { - return &file_unknonwnproto_proto_enumTypes[0] + return &file_testpb_unknonwnproto_proto_enumTypes[0] } func (x Customer2_City) Number() protoreflect.EnumNumber { @@ -24662,7 +24662,7 @@ func (x Customer2_City) Number() protoreflect.EnumNumber { // Deprecated: Use Customer2_City.Descriptor instead. func (Customer2_City) EnumDescriptor() ([]byte, []int) { - return file_unknonwnproto_proto_rawDescGZIP(), []int{1, 0} + return file_testpb_unknonwnproto_proto_rawDescGZIP(), []int{1, 0} } type Customer1 struct { @@ -24679,7 +24679,7 @@ type Customer1 struct { func (x *Customer1) Reset() { *x = Customer1{} if protoimpl.UnsafeEnabled { - mi := &file_unknonwnproto_proto_msgTypes[0] + mi := &file_testpb_unknonwnproto_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24693,7 +24693,7 @@ func (*Customer1) ProtoMessage() {} // Deprecated: Use Customer1.ProtoReflect.Descriptor instead. func (*Customer1) Descriptor() ([]byte, []int) { - return file_unknonwnproto_proto_rawDescGZIP(), []int{0} + return file_testpb_unknonwnproto_proto_rawDescGZIP(), []int{0} } func (x *Customer1) GetId() int32 { @@ -24734,14 +24734,14 @@ type Customer2 struct { Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"` Fewer float32 `protobuf:"fixed32,4,opt,name=fewer,proto3" json:"fewer,omitempty"` Reserved int64 `protobuf:"varint,1047,opt,name=reserved,proto3" json:"reserved,omitempty"` - City Customer2_City `protobuf:"varint,6,opt,name=city,proto3,enum=testdata.Customer2_City" json:"city,omitempty"` + City Customer2_City `protobuf:"varint,6,opt,name=city,proto3,enum=testpb.Customer2_City" json:"city,omitempty"` Miscellaneous *anypb.Any `protobuf:"bytes,10,opt,name=miscellaneous,proto3" json:"miscellaneous,omitempty"` } func (x *Customer2) Reset() { *x = Customer2{} if protoimpl.UnsafeEnabled { - mi := &file_unknonwnproto_proto_msgTypes[1] + mi := &file_testpb_unknonwnproto_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24755,7 +24755,7 @@ func (*Customer2) ProtoMessage() {} // Deprecated: Use Customer2.ProtoReflect.Descriptor instead. func (*Customer2) Descriptor() ([]byte, []int) { - return file_unknonwnproto_proto_rawDescGZIP(), []int{1} + return file_testpb_unknonwnproto_proto_rawDescGZIP(), []int{1} } func (x *Customer2) GetId() int32 { @@ -24819,7 +24819,7 @@ type Nested4A struct { func (x *Nested4A) Reset() { *x = Nested4A{} if protoimpl.UnsafeEnabled { - mi := &file_unknonwnproto_proto_msgTypes[2] + mi := &file_testpb_unknonwnproto_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24833,7 +24833,7 @@ func (*Nested4A) ProtoMessage() {} // Deprecated: Use Nested4A.ProtoReflect.Descriptor instead. func (*Nested4A) Descriptor() ([]byte, []int) { - return file_unknonwnproto_proto_rawDescGZIP(), []int{2} + return file_testpb_unknonwnproto_proto_rawDescGZIP(), []int{2} } func (x *Nested4A) GetId() int32 { @@ -24864,7 +24864,7 @@ type Nested3A struct { func (x *Nested3A) Reset() { *x = Nested3A{} if protoimpl.UnsafeEnabled { - mi := &file_unknonwnproto_proto_msgTypes[3] + mi := &file_testpb_unknonwnproto_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24878,7 +24878,7 @@ func (*Nested3A) ProtoMessage() {} // Deprecated: Use Nested3A.ProtoReflect.Descriptor instead. func (*Nested3A) Descriptor() ([]byte, []int) { - return file_unknonwnproto_proto_rawDescGZIP(), []int{3} + return file_testpb_unknonwnproto_proto_rawDescGZIP(), []int{3} } func (x *Nested3A) GetId() int32 { @@ -24922,7 +24922,7 @@ type Nested2A struct { func (x *Nested2A) Reset() { *x = Nested2A{} if protoimpl.UnsafeEnabled { - mi := &file_unknonwnproto_proto_msgTypes[4] + mi := &file_testpb_unknonwnproto_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24936,7 +24936,7 @@ func (*Nested2A) ProtoMessage() {} // Deprecated: Use Nested2A.ProtoReflect.Descriptor instead. func (*Nested2A) Descriptor() ([]byte, []int) { - return file_unknonwnproto_proto_rawDescGZIP(), []int{4} + return file_testpb_unknonwnproto_proto_rawDescGZIP(), []int{4} } func (x *Nested2A) GetId() int32 { @@ -24972,7 +24972,7 @@ type Nested1A struct { func (x *Nested1A) Reset() { *x = Nested1A{} if protoimpl.UnsafeEnabled { - mi := &file_unknonwnproto_proto_msgTypes[5] + mi := &file_testpb_unknonwnproto_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24986,7 +24986,7 @@ func (*Nested1A) ProtoMessage() {} // Deprecated: Use Nested1A.ProtoReflect.Descriptor instead. func (*Nested1A) Descriptor() ([]byte, []int) { - return file_unknonwnproto_proto_rawDescGZIP(), []int{5} + return file_testpb_unknonwnproto_proto_rawDescGZIP(), []int{5} } func (x *Nested1A) GetId() int32 { @@ -25016,7 +25016,7 @@ type Nested4B struct { func (x *Nested4B) Reset() { *x = Nested4B{} if protoimpl.UnsafeEnabled { - mi := &file_unknonwnproto_proto_msgTypes[6] + mi := &file_testpb_unknonwnproto_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25030,7 +25030,7 @@ func (*Nested4B) ProtoMessage() {} // Deprecated: Use Nested4B.ProtoReflect.Descriptor instead. func (*Nested4B) Descriptor() ([]byte, []int) { - return file_unknonwnproto_proto_rawDescGZIP(), []int{6} + return file_testpb_unknonwnproto_proto_rawDescGZIP(), []int{6} } func (x *Nested4B) GetId() int32 { @@ -25068,7 +25068,7 @@ type Nested3B struct { func (x *Nested3B) Reset() { *x = Nested3B{} if protoimpl.UnsafeEnabled { - mi := &file_unknonwnproto_proto_msgTypes[7] + mi := &file_testpb_unknonwnproto_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25082,7 +25082,7 @@ func (*Nested3B) ProtoMessage() {} // Deprecated: Use Nested3B.ProtoReflect.Descriptor instead. func (*Nested3B) Descriptor() ([]byte, []int) { - return file_unknonwnproto_proto_rawDescGZIP(), []int{7} + return file_testpb_unknonwnproto_proto_rawDescGZIP(), []int{7} } func (x *Nested3B) GetId() int32 { @@ -25127,7 +25127,7 @@ type Nested2B struct { func (x *Nested2B) Reset() { *x = Nested2B{} if protoimpl.UnsafeEnabled { - mi := &file_unknonwnproto_proto_msgTypes[8] + mi := &file_testpb_unknonwnproto_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25141,7 +25141,7 @@ func (*Nested2B) ProtoMessage() {} // Deprecated: Use Nested2B.ProtoReflect.Descriptor instead. func (*Nested2B) Descriptor() ([]byte, []int) { - return file_unknonwnproto_proto_rawDescGZIP(), []int{8} + return file_testpb_unknonwnproto_proto_rawDescGZIP(), []int{8} } func (x *Nested2B) GetId() int32 { @@ -25185,7 +25185,7 @@ type Nested1B struct { func (x *Nested1B) Reset() { *x = Nested1B{} if protoimpl.UnsafeEnabled { - mi := &file_unknonwnproto_proto_msgTypes[9] + mi := &file_testpb_unknonwnproto_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25199,7 +25199,7 @@ func (*Nested1B) ProtoMessage() {} // Deprecated: Use Nested1B.ProtoReflect.Descriptor instead. func (*Nested1B) Descriptor() ([]byte, []int) { - return file_unknonwnproto_proto_rawDescGZIP(), []int{9} + return file_testpb_unknonwnproto_proto_rawDescGZIP(), []int{9} } func (x *Nested1B) GetId() int32 { @@ -25244,7 +25244,7 @@ type Customer3 struct { func (x *Customer3) Reset() { *x = Customer3{} if protoimpl.UnsafeEnabled { - mi := &file_unknonwnproto_proto_msgTypes[10] + mi := &file_testpb_unknonwnproto_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25258,7 +25258,7 @@ func (*Customer3) ProtoMessage() {} // Deprecated: Use Customer3.ProtoReflect.Descriptor instead. func (*Customer3) Descriptor() ([]byte, []int) { - return file_unknonwnproto_proto_rawDescGZIP(), []int{10} + return file_testpb_unknonwnproto_proto_rawDescGZIP(), []int{10} } func (x *Customer3) GetId() int32 { @@ -25365,7 +25365,7 @@ type TestVersion1 struct { func (x *TestVersion1) Reset() { *x = TestVersion1{} if protoimpl.UnsafeEnabled { - mi := &file_unknonwnproto_proto_msgTypes[11] + mi := &file_testpb_unknonwnproto_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25379,7 +25379,7 @@ func (*TestVersion1) ProtoMessage() {} // Deprecated: Use TestVersion1.ProtoReflect.Descriptor instead. func (*TestVersion1) Descriptor() ([]byte, []int) { - return file_unknonwnproto_proto_rawDescGZIP(), []int{11} + return file_testpb_unknonwnproto_proto_rawDescGZIP(), []int{11} } func (x *TestVersion1) GetX() int64 { @@ -25501,7 +25501,7 @@ type TestVersion2 struct { func (x *TestVersion2) Reset() { *x = TestVersion2{} if protoimpl.UnsafeEnabled { - mi := &file_unknonwnproto_proto_msgTypes[12] + mi := &file_testpb_unknonwnproto_proto_msgTypes[12] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25515,7 +25515,7 @@ func (*TestVersion2) ProtoMessage() {} // Deprecated: Use TestVersion2.ProtoReflect.Descriptor instead. func (*TestVersion2) Descriptor() ([]byte, []int) { - return file_unknonwnproto_proto_rawDescGZIP(), []int{12} + return file_testpb_unknonwnproto_proto_rawDescGZIP(), []int{12} } func (x *TestVersion2) GetX() int64 { @@ -25644,7 +25644,7 @@ type TestVersion3 struct { func (x *TestVersion3) Reset() { *x = TestVersion3{} if protoimpl.UnsafeEnabled { - mi := &file_unknonwnproto_proto_msgTypes[13] + mi := &file_testpb_unknonwnproto_proto_msgTypes[13] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25658,7 +25658,7 @@ func (*TestVersion3) ProtoMessage() {} // Deprecated: Use TestVersion3.ProtoReflect.Descriptor instead. func (*TestVersion3) Descriptor() ([]byte, []int) { - return file_unknonwnproto_proto_rawDescGZIP(), []int{13} + return file_testpb_unknonwnproto_proto_rawDescGZIP(), []int{13} } func (x *TestVersion3) GetX() int64 { @@ -25786,7 +25786,7 @@ type TestVersion3LoneOneOfValue struct { func (x *TestVersion3LoneOneOfValue) Reset() { *x = TestVersion3LoneOneOfValue{} if protoimpl.UnsafeEnabled { - mi := &file_unknonwnproto_proto_msgTypes[14] + mi := &file_testpb_unknonwnproto_proto_msgTypes[14] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25800,7 +25800,7 @@ func (*TestVersion3LoneOneOfValue) ProtoMessage() {} // Deprecated: Use TestVersion3LoneOneOfValue.ProtoReflect.Descriptor instead. func (*TestVersion3LoneOneOfValue) Descriptor() ([]byte, []int) { - return file_unknonwnproto_proto_rawDescGZIP(), []int{14} + return file_testpb_unknonwnproto_proto_rawDescGZIP(), []int{14} } func (x *TestVersion3LoneOneOfValue) GetX() int64 { @@ -25917,7 +25917,7 @@ type TestVersion3LoneNesting struct { func (x *TestVersion3LoneNesting) Reset() { *x = TestVersion3LoneNesting{} if protoimpl.UnsafeEnabled { - mi := &file_unknonwnproto_proto_msgTypes[15] + mi := &file_testpb_unknonwnproto_proto_msgTypes[15] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25931,7 +25931,7 @@ func (*TestVersion3LoneNesting) ProtoMessage() {} // Deprecated: Use TestVersion3LoneNesting.ProtoReflect.Descriptor instead. func (*TestVersion3LoneNesting) Descriptor() ([]byte, []int) { - return file_unknonwnproto_proto_rawDescGZIP(), []int{15} + return file_testpb_unknonwnproto_proto_rawDescGZIP(), []int{15} } func (x *TestVersion3LoneNesting) GetX() int64 { @@ -26062,7 +26062,7 @@ type TestVersion4LoneNesting struct { func (x *TestVersion4LoneNesting) Reset() { *x = TestVersion4LoneNesting{} if protoimpl.UnsafeEnabled { - mi := &file_unknonwnproto_proto_msgTypes[16] + mi := &file_testpb_unknonwnproto_proto_msgTypes[16] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26076,7 +26076,7 @@ func (*TestVersion4LoneNesting) ProtoMessage() {} // Deprecated: Use TestVersion4LoneNesting.ProtoReflect.Descriptor instead. func (*TestVersion4LoneNesting) Descriptor() ([]byte, []int) { - return file_unknonwnproto_proto_rawDescGZIP(), []int{16} + return file_testpb_unknonwnproto_proto_rawDescGZIP(), []int{16} } func (x *TestVersion4LoneNesting) GetX() int64 { @@ -26199,7 +26199,7 @@ type TestVersionFD1 struct { func (x *TestVersionFD1) Reset() { *x = TestVersionFD1{} if protoimpl.UnsafeEnabled { - mi := &file_unknonwnproto_proto_msgTypes[17] + mi := &file_testpb_unknonwnproto_proto_msgTypes[17] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26213,7 +26213,7 @@ func (*TestVersionFD1) ProtoMessage() {} // Deprecated: Use TestVersionFD1.ProtoReflect.Descriptor instead. func (*TestVersionFD1) Descriptor() ([]byte, []int) { - return file_unknonwnproto_proto_rawDescGZIP(), []int{17} + return file_testpb_unknonwnproto_proto_rawDescGZIP(), []int{17} } func (x *TestVersionFD1) GetX() int64 { @@ -26300,7 +26300,7 @@ type TestVersionFD1WithExtraAny struct { func (x *TestVersionFD1WithExtraAny) Reset() { *x = TestVersionFD1WithExtraAny{} if protoimpl.UnsafeEnabled { - mi := &file_unknonwnproto_proto_msgTypes[18] + mi := &file_testpb_unknonwnproto_proto_msgTypes[18] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26314,7 +26314,7 @@ func (*TestVersionFD1WithExtraAny) ProtoMessage() {} // Deprecated: Use TestVersionFD1WithExtraAny.ProtoReflect.Descriptor instead. func (*TestVersionFD1WithExtraAny) Descriptor() ([]byte, []int) { - return file_unknonwnproto_proto_rawDescGZIP(), []int{18} + return file_testpb_unknonwnproto_proto_rawDescGZIP(), []int{18} } func (x *TestVersionFD1WithExtraAny) GetX() int64 { @@ -26395,7 +26395,7 @@ type AnyWithExtra struct { func (x *AnyWithExtra) Reset() { *x = AnyWithExtra{} if protoimpl.UnsafeEnabled { - mi := &file_unknonwnproto_proto_msgTypes[19] + mi := &file_testpb_unknonwnproto_proto_msgTypes[19] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26409,7 +26409,7 @@ func (*AnyWithExtra) ProtoMessage() {} // Deprecated: Use AnyWithExtra.ProtoReflect.Descriptor instead. func (*AnyWithExtra) Descriptor() ([]byte, []int) { - return file_unknonwnproto_proto_rawDescGZIP(), []int{19} + return file_testpb_unknonwnproto_proto_rawDescGZIP(), []int{19} } func (x *AnyWithExtra) GetA() *anypb.Any { @@ -26448,7 +26448,7 @@ type TestUpdatedTxRaw struct { func (x *TestUpdatedTxRaw) Reset() { *x = TestUpdatedTxRaw{} if protoimpl.UnsafeEnabled { - mi := &file_unknonwnproto_proto_msgTypes[20] + mi := &file_testpb_unknonwnproto_proto_msgTypes[20] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26462,7 +26462,7 @@ func (*TestUpdatedTxRaw) ProtoMessage() {} // Deprecated: Use TestUpdatedTxRaw.ProtoReflect.Descriptor instead. func (*TestUpdatedTxRaw) Descriptor() ([]byte, []int) { - return file_unknonwnproto_proto_rawDescGZIP(), []int{20} + return file_testpb_unknonwnproto_proto_rawDescGZIP(), []int{20} } func (x *TestUpdatedTxRaw) GetBodyBytes() []byte { @@ -26517,7 +26517,7 @@ type TestUpdatedTxBody struct { func (x *TestUpdatedTxBody) Reset() { *x = TestUpdatedTxBody{} if protoimpl.UnsafeEnabled { - mi := &file_unknonwnproto_proto_msgTypes[21] + mi := &file_testpb_unknonwnproto_proto_msgTypes[21] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26531,7 +26531,7 @@ func (*TestUpdatedTxBody) ProtoMessage() {} // Deprecated: Use TestUpdatedTxBody.ProtoReflect.Descriptor instead. func (*TestUpdatedTxBody) Descriptor() ([]byte, []int) { - return file_unknonwnproto_proto_rawDescGZIP(), []int{21} + return file_testpb_unknonwnproto_proto_rawDescGZIP(), []int{21} } func (x *TestUpdatedTxBody) GetMessages() []*anypb.Any { @@ -26597,7 +26597,7 @@ type TestUpdatedAuthInfo struct { func (x *TestUpdatedAuthInfo) Reset() { *x = TestUpdatedAuthInfo{} if protoimpl.UnsafeEnabled { - mi := &file_unknonwnproto_proto_msgTypes[22] + mi := &file_testpb_unknonwnproto_proto_msgTypes[22] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26611,7 +26611,7 @@ func (*TestUpdatedAuthInfo) ProtoMessage() {} // Deprecated: Use TestUpdatedAuthInfo.ProtoReflect.Descriptor instead. func (*TestUpdatedAuthInfo) Descriptor() ([]byte, []int) { - return file_unknonwnproto_proto_rawDescGZIP(), []int{22} + return file_testpb_unknonwnproto_proto_rawDescGZIP(), []int{22} } func (x *TestUpdatedAuthInfo) GetSignerInfos() []*v1beta1.SignerInfo { @@ -26653,7 +26653,7 @@ type TestRepeatedUints struct { func (x *TestRepeatedUints) Reset() { *x = TestRepeatedUints{} if protoimpl.UnsafeEnabled { - mi := &file_unknonwnproto_proto_msgTypes[23] + mi := &file_testpb_unknonwnproto_proto_msgTypes[23] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26667,7 +26667,7 @@ func (*TestRepeatedUints) ProtoMessage() {} // Deprecated: Use TestRepeatedUints.ProtoReflect.Descriptor instead. func (*TestRepeatedUints) Descriptor() ([]byte, []int) { - return file_unknonwnproto_proto_rawDescGZIP(), []int{23} + return file_testpb_unknonwnproto_proto_rawDescGZIP(), []int{23} } func (x *TestRepeatedUints) GetNums() []uint64 { @@ -26690,7 +26690,7 @@ type TestVersion3LoneNesting_Inner1 struct { func (x *TestVersion3LoneNesting_Inner1) Reset() { *x = TestVersion3LoneNesting_Inner1{} if protoimpl.UnsafeEnabled { - mi := &file_unknonwnproto_proto_msgTypes[25] + mi := &file_testpb_unknonwnproto_proto_msgTypes[25] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26704,7 +26704,7 @@ func (*TestVersion3LoneNesting_Inner1) ProtoMessage() {} // Deprecated: Use TestVersion3LoneNesting_Inner1.ProtoReflect.Descriptor instead. func (*TestVersion3LoneNesting_Inner1) Descriptor() ([]byte, []int) { - return file_unknonwnproto_proto_rawDescGZIP(), []int{15, 0} + return file_testpb_unknonwnproto_proto_rawDescGZIP(), []int{15, 0} } func (x *TestVersion3LoneNesting_Inner1) GetId() int64 { @@ -26741,7 +26741,7 @@ type TestVersion3LoneNesting_Inner2 struct { func (x *TestVersion3LoneNesting_Inner2) Reset() { *x = TestVersion3LoneNesting_Inner2{} if protoimpl.UnsafeEnabled { - mi := &file_unknonwnproto_proto_msgTypes[26] + mi := &file_testpb_unknonwnproto_proto_msgTypes[26] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26755,7 +26755,7 @@ func (*TestVersion3LoneNesting_Inner2) ProtoMessage() {} // Deprecated: Use TestVersion3LoneNesting_Inner2.ProtoReflect.Descriptor instead. func (*TestVersion3LoneNesting_Inner2) Descriptor() ([]byte, []int) { - return file_unknonwnproto_proto_rawDescGZIP(), []int{15, 1} + return file_testpb_unknonwnproto_proto_rawDescGZIP(), []int{15, 1} } func (x *TestVersion3LoneNesting_Inner2) GetId() string { @@ -26791,7 +26791,7 @@ type TestVersion3LoneNesting_Inner1_InnerInner struct { func (x *TestVersion3LoneNesting_Inner1_InnerInner) Reset() { *x = TestVersion3LoneNesting_Inner1_InnerInner{} if protoimpl.UnsafeEnabled { - mi := &file_unknonwnproto_proto_msgTypes[27] + mi := &file_testpb_unknonwnproto_proto_msgTypes[27] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26805,7 +26805,7 @@ func (*TestVersion3LoneNesting_Inner1_InnerInner) ProtoMessage() {} // Deprecated: Use TestVersion3LoneNesting_Inner1_InnerInner.ProtoReflect.Descriptor instead. func (*TestVersion3LoneNesting_Inner1_InnerInner) Descriptor() ([]byte, []int) { - return file_unknonwnproto_proto_rawDescGZIP(), []int{15, 0, 0} + return file_testpb_unknonwnproto_proto_rawDescGZIP(), []int{15, 0, 0} } func (x *TestVersion3LoneNesting_Inner1_InnerInner) GetId() string { @@ -26834,7 +26834,7 @@ type TestVersion3LoneNesting_Inner2_InnerInner struct { func (x *TestVersion3LoneNesting_Inner2_InnerInner) Reset() { *x = TestVersion3LoneNesting_Inner2_InnerInner{} if protoimpl.UnsafeEnabled { - mi := &file_unknonwnproto_proto_msgTypes[28] + mi := &file_testpb_unknonwnproto_proto_msgTypes[28] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26848,7 +26848,7 @@ func (*TestVersion3LoneNesting_Inner2_InnerInner) ProtoMessage() {} // Deprecated: Use TestVersion3LoneNesting_Inner2_InnerInner.ProtoReflect.Descriptor instead. func (*TestVersion3LoneNesting_Inner2_InnerInner) Descriptor() ([]byte, []int) { - return file_unknonwnproto_proto_rawDescGZIP(), []int{15, 1, 0} + return file_testpb_unknonwnproto_proto_rawDescGZIP(), []int{15, 1, 0} } func (x *TestVersion3LoneNesting_Inner2_InnerInner) GetId() string { @@ -26878,7 +26878,7 @@ type TestVersion4LoneNesting_Inner1 struct { func (x *TestVersion4LoneNesting_Inner1) Reset() { *x = TestVersion4LoneNesting_Inner1{} if protoimpl.UnsafeEnabled { - mi := &file_unknonwnproto_proto_msgTypes[29] + mi := &file_testpb_unknonwnproto_proto_msgTypes[29] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26892,7 +26892,7 @@ func (*TestVersion4LoneNesting_Inner1) ProtoMessage() {} // Deprecated: Use TestVersion4LoneNesting_Inner1.ProtoReflect.Descriptor instead. func (*TestVersion4LoneNesting_Inner1) Descriptor() ([]byte, []int) { - return file_unknonwnproto_proto_rawDescGZIP(), []int{16, 0} + return file_testpb_unknonwnproto_proto_rawDescGZIP(), []int{16, 0} } func (x *TestVersion4LoneNesting_Inner1) GetId() int64 { @@ -26929,7 +26929,7 @@ type TestVersion4LoneNesting_Inner2 struct { func (x *TestVersion4LoneNesting_Inner2) Reset() { *x = TestVersion4LoneNesting_Inner2{} if protoimpl.UnsafeEnabled { - mi := &file_unknonwnproto_proto_msgTypes[30] + mi := &file_testpb_unknonwnproto_proto_msgTypes[30] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26943,7 +26943,7 @@ func (*TestVersion4LoneNesting_Inner2) ProtoMessage() {} // Deprecated: Use TestVersion4LoneNesting_Inner2.ProtoReflect.Descriptor instead. func (*TestVersion4LoneNesting_Inner2) Descriptor() ([]byte, []int) { - return file_unknonwnproto_proto_rawDescGZIP(), []int{16, 1} + return file_testpb_unknonwnproto_proto_rawDescGZIP(), []int{16, 1} } func (x *TestVersion4LoneNesting_Inner2) GetId() string { @@ -26979,7 +26979,7 @@ type TestVersion4LoneNesting_Inner1_InnerInner struct { func (x *TestVersion4LoneNesting_Inner1_InnerInner) Reset() { *x = TestVersion4LoneNesting_Inner1_InnerInner{} if protoimpl.UnsafeEnabled { - mi := &file_unknonwnproto_proto_msgTypes[31] + mi := &file_testpb_unknonwnproto_proto_msgTypes[31] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26993,7 +26993,7 @@ func (*TestVersion4LoneNesting_Inner1_InnerInner) ProtoMessage() {} // Deprecated: Use TestVersion4LoneNesting_Inner1_InnerInner.ProtoReflect.Descriptor instead. func (*TestVersion4LoneNesting_Inner1_InnerInner) Descriptor() ([]byte, []int) { - return file_unknonwnproto_proto_rawDescGZIP(), []int{16, 0, 0} + return file_testpb_unknonwnproto_proto_rawDescGZIP(), []int{16, 0, 0} } func (x *TestVersion4LoneNesting_Inner1_InnerInner) GetId() int64 { @@ -27022,7 +27022,7 @@ type TestVersion4LoneNesting_Inner2_InnerInner struct { func (x *TestVersion4LoneNesting_Inner2_InnerInner) Reset() { *x = TestVersion4LoneNesting_Inner2_InnerInner{} if protoimpl.UnsafeEnabled { - mi := &file_unknonwnproto_proto_msgTypes[32] + mi := &file_testpb_unknonwnproto_proto_msgTypes[32] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27036,7 +27036,7 @@ func (*TestVersion4LoneNesting_Inner2_InnerInner) ProtoMessage() {} // Deprecated: Use TestVersion4LoneNesting_Inner2_InnerInner.ProtoReflect.Descriptor instead. func (*TestVersion4LoneNesting_Inner2_InnerInner) Descriptor() ([]byte, []int) { - return file_unknonwnproto_proto_rawDescGZIP(), []int{16, 1, 0} + return file_testpb_unknonwnproto_proto_rawDescGZIP(), []int{16, 1, 0} } func (x *TestVersion4LoneNesting_Inner2_InnerInner) GetId() string { @@ -27053,549 +27053,541 @@ func (x *TestVersion4LoneNesting_Inner2_InnerInner) GetValue() int64 { return 0 } -var File_unknonwnproto_proto protoreflect.FileDescriptor - -var file_unknonwnproto_proto_rawDesc = []byte{ - 0x0a, 0x13, 0x75, 0x6e, 0x6b, 0x6e, 0x6f, 0x6e, 0x77, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, - 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x08, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x1a, - 0x14, 0x67, 0x6f, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x67, 0x6f, 0x2e, - 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x19, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x61, 0x6e, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, - 0x1a, 0x1a, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2f, 0x74, 0x78, 0x2f, 0x76, 0x31, 0x62, 0x65, - 0x74, 0x61, 0x31, 0x2f, 0x74, 0x78, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x74, 0x0a, 0x09, - 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x31, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, - 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, - 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x29, 0x0a, - 0x10, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x66, 0x65, - 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x02, 0x52, 0x0f, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, - 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x46, 0x65, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x61, 0x79, 0x6d, - 0x65, 0x6e, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x70, 0x61, 0x79, 0x6d, 0x65, - 0x6e, 0x74, 0x22, 0xb1, 0x02, 0x0a, 0x09, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x32, - 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x69, 0x64, - 0x12, 0x1a, 0x0a, 0x08, 0x69, 0x6e, 0x64, 0x75, 0x73, 0x74, 0x72, 0x79, 0x18, 0x02, 0x20, 0x01, - 0x28, 0x05, 0x52, 0x08, 0x69, 0x6e, 0x64, 0x75, 0x73, 0x74, 0x72, 0x79, 0x12, 0x12, 0x0a, 0x04, - 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, - 0x12, 0x14, 0x0a, 0x05, 0x66, 0x65, 0x77, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x02, 0x52, - 0x05, 0x66, 0x65, 0x77, 0x65, 0x72, 0x12, 0x1b, 0x0a, 0x08, 0x72, 0x65, 0x73, 0x65, 0x72, 0x76, - 0x65, 0x64, 0x18, 0x97, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x72, 0x65, 0x73, 0x65, 0x72, - 0x76, 0x65, 0x64, 0x12, 0x2c, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, - 0x0e, 0x32, 0x18, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43, 0x75, 0x73, - 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x32, 0x2e, 0x43, 0x69, 0x74, 0x79, 0x52, 0x04, 0x63, 0x69, 0x74, - 0x79, 0x12, 0x3a, 0x0a, 0x0d, 0x6d, 0x69, 0x73, 0x63, 0x65, 0x6c, 0x6c, 0x61, 0x6e, 0x65, 0x6f, - 0x75, 0x73, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e, 0x79, 0x52, 0x0d, - 0x6d, 0x69, 0x73, 0x63, 0x65, 0x6c, 0x6c, 0x61, 0x6e, 0x65, 0x6f, 0x75, 0x73, 0x22, 0x47, 0x0a, - 0x04, 0x43, 0x69, 0x74, 0x79, 0x12, 0x08, 0x0a, 0x04, 0x4c, 0x61, 0x6f, 0x73, 0x10, 0x00, 0x12, - 0x0e, 0x0a, 0x0a, 0x4c, 0x6f, 0x73, 0x41, 0x6e, 0x67, 0x65, 0x6c, 0x65, 0x73, 0x10, 0x01, 0x12, - 0x0c, 0x0a, 0x08, 0x50, 0x61, 0x6c, 0x6f, 0x41, 0x6c, 0x74, 0x6f, 0x10, 0x02, 0x12, 0x0a, 0x0a, - 0x06, 0x4d, 0x6f, 0x73, 0x63, 0x6f, 0x77, 0x10, 0x03, 0x12, 0x0b, 0x0a, 0x07, 0x4e, 0x61, 0x69, - 0x72, 0x6f, 0x62, 0x69, 0x10, 0x04, 0x22, 0x2e, 0x0a, 0x08, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, - 0x34, 0x41, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, - 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0xd5, 0x01, 0x0a, 0x08, 0x4e, 0x65, 0x73, 0x74, 0x65, - 0x64, 0x33, 0x41, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, - 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x22, 0x0a, 0x02, 0x61, 0x34, 0x18, 0x04, 0x20, - 0x03, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4e, - 0x65, 0x73, 0x74, 0x65, 0x64, 0x34, 0x41, 0x52, 0x02, 0x61, 0x34, 0x12, 0x33, 0x0a, 0x05, 0x69, - 0x6e, 0x64, 0x65, 0x78, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x74, 0x65, 0x73, - 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x33, 0x41, 0x2e, 0x49, - 0x6e, 0x64, 0x65, 0x78, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x05, 0x69, 0x6e, 0x64, 0x65, 0x78, - 0x1a, 0x4c, 0x0a, 0x0a, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, - 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6b, 0x65, 0x79, - 0x12, 0x28, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x12, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, - 0x64, 0x34, 0x41, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x5a, - 0x0a, 0x08, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x32, 0x41, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, - 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, - 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x2a, - 0x0a, 0x06, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, - 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, - 0x33, 0x41, 0x52, 0x06, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x22, 0x46, 0x0a, 0x08, 0x4e, 0x65, - 0x73, 0x74, 0x65, 0x64, 0x31, 0x41, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x05, 0x52, 0x02, 0x69, 0x64, 0x12, 0x2a, 0x0a, 0x06, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, - 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, - 0x61, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x32, 0x41, 0x52, 0x06, 0x6e, 0x65, 0x73, 0x74, - 0x65, 0x64, 0x22, 0x40, 0x0a, 0x08, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x34, 0x42, 0x12, 0x0e, - 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x69, 0x64, 0x12, 0x10, - 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x61, 0x67, 0x65, - 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, - 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x64, 0x0a, 0x08, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x33, 0x42, - 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x69, 0x64, - 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x61, - 0x67, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x22, 0x0a, 0x02, 0x62, 0x34, 0x18, 0x04, 0x20, 0x03, - 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4e, 0x65, - 0x73, 0x74, 0x65, 0x64, 0x34, 0x42, 0x52, 0x02, 0x62, 0x34, 0x22, 0x6e, 0x0a, 0x08, 0x4e, 0x65, - 0x73, 0x74, 0x65, 0x64, 0x32, 0x42, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x05, 0x52, 0x02, 0x69, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x66, 0x65, 0x65, 0x18, 0x02, 0x20, - 0x01, 0x28, 0x01, 0x52, 0x03, 0x66, 0x65, 0x65, 0x12, 0x2a, 0x0a, 0x06, 0x6e, 0x65, 0x73, 0x74, - 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, - 0x61, 0x74, 0x61, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x33, 0x42, 0x52, 0x06, 0x6e, 0x65, - 0x73, 0x74, 0x65, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x72, 0x6f, 0x75, 0x74, 0x65, 0x18, 0x04, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x05, 0x72, 0x6f, 0x75, 0x74, 0x65, 0x22, 0x58, 0x0a, 0x08, 0x4e, 0x65, - 0x73, 0x74, 0x65, 0x64, 0x31, 0x42, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x05, 0x52, 0x02, 0x69, 0x64, 0x12, 0x2a, 0x0a, 0x06, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, - 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, - 0x61, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x32, 0x42, 0x52, 0x06, 0x6e, 0x65, 0x73, 0x74, - 0x65, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, - 0x03, 0x61, 0x67, 0x65, 0x22, 0x82, 0x02, 0x0a, 0x09, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, - 0x72, 0x33, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, - 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x73, 0x66, 0x18, 0x03, 0x20, 0x01, - 0x28, 0x02, 0x52, 0x02, 0x73, 0x66, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x75, 0x72, 0x63, 0x68, 0x61, - 0x72, 0x67, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x02, 0x52, 0x09, 0x73, 0x75, 0x72, 0x63, 0x68, - 0x61, 0x72, 0x67, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, - 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x74, 0x69, - 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x26, 0x0a, 0x0e, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, - 0x5f, 0x63, 0x61, 0x72, 0x64, 0x5f, 0x6e, 0x6f, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, - 0x52, 0x0c, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x43, 0x61, 0x72, 0x64, 0x4e, 0x6f, 0x12, 0x1d, - 0x0a, 0x09, 0x63, 0x68, 0x65, 0x71, 0x75, 0x65, 0x5f, 0x6e, 0x6f, 0x18, 0x08, 0x20, 0x01, 0x28, - 0x09, 0x48, 0x00, 0x52, 0x08, 0x63, 0x68, 0x65, 0x71, 0x75, 0x65, 0x4e, 0x6f, 0x12, 0x2f, 0x0a, - 0x08, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x13, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, - 0x6d, 0x65, 0x72, 0x31, 0x52, 0x08, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x42, 0x09, - 0x0a, 0x07, 0x70, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x22, 0xec, 0x02, 0x0a, 0x0c, 0x54, 0x65, - 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x31, 0x12, 0x0c, 0x0a, 0x01, 0x78, 0x18, - 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x01, 0x78, 0x12, 0x24, 0x0a, 0x01, 0x61, 0x18, 0x02, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, - 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x31, 0x52, 0x01, 0x61, 0x12, 0x24, - 0x0a, 0x01, 0x62, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x74, 0x65, 0x73, 0x74, - 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, - 0x31, 0x52, 0x01, 0x62, 0x12, 0x24, 0x0a, 0x01, 0x63, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, - 0x16, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, - 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x31, 0x52, 0x01, 0x63, 0x12, 0x2a, 0x0a, 0x01, 0x64, 0x18, - 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, - 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x31, 0x42, 0x04, 0xc8, - 0xde, 0x1f, 0x00, 0x52, 0x01, 0x64, 0x12, 0x0e, 0x0a, 0x01, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, - 0x05, 0x48, 0x00, 0x52, 0x01, 0x65, 0x12, 0x26, 0x0a, 0x01, 0x66, 0x18, 0x07, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x16, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x65, 0x73, - 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x31, 0x48, 0x00, 0x52, 0x01, 0x66, 0x12, 0x22, - 0x0a, 0x01, 0x67, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e, 0x79, 0x52, - 0x01, 0x67, 0x12, 0x24, 0x0a, 0x01, 0x68, 0x18, 0x09, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, - 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, - 0x73, 0x69, 0x6f, 0x6e, 0x31, 0x52, 0x01, 0x68, 0x12, 0x27, 0x0a, 0x01, 0x6b, 0x18, 0x0c, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43, - 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x31, 0x42, 0x04, 0xd0, 0xde, 0x1f, 0x01, 0x52, 0x01, - 0x6b, 0x42, 0x05, 0x0a, 0x03, 0x73, 0x75, 0x6d, 0x22, 0x83, 0x03, 0x0a, 0x0c, 0x54, 0x65, 0x73, - 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x32, 0x12, 0x0c, 0x0a, 0x01, 0x78, 0x18, 0x01, - 0x20, 0x01, 0x28, 0x03, 0x52, 0x01, 0x78, 0x12, 0x24, 0x0a, 0x01, 0x61, 0x18, 0x02, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x65, - 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x32, 0x52, 0x01, 0x61, 0x12, 0x24, 0x0a, - 0x01, 0x62, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, - 0x61, 0x74, 0x61, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x32, - 0x52, 0x01, 0x62, 0x12, 0x24, 0x0a, 0x01, 0x63, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, - 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, - 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x32, 0x52, 0x01, 0x63, 0x12, 0x24, 0x0a, 0x01, 0x64, 0x18, 0x05, - 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, - 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x32, 0x52, 0x01, 0x64, 0x12, +var File_testpb_unknonwnproto_proto protoreflect.FileDescriptor + +var file_testpb_unknonwnproto_proto_rawDesc = []byte{ + 0x0a, 0x1a, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2f, 0x75, 0x6e, 0x6b, 0x6e, 0x6f, 0x6e, 0x77, + 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x06, 0x74, 0x65, + 0x73, 0x74, 0x70, 0x62, 0x1a, 0x14, 0x67, 0x6f, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, + 0x67, 0x6f, 0x67, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x19, 0x67, 0x6f, 0x6f, 0x67, + 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x61, 0x6e, 0x79, 0x2e, + 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1a, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2f, 0x74, 0x78, + 0x2f, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x31, 0x2f, 0x74, 0x78, 0x2e, 0x70, 0x72, 0x6f, 0x74, + 0x6f, 0x22, 0x74, 0x0a, 0x09, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x31, 0x12, 0x0e, + 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, + 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, + 0x6d, 0x65, 0x12, 0x29, 0x0a, 0x10, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, + 0x6f, 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x02, 0x52, 0x0f, 0x73, 0x75, + 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x46, 0x65, 0x65, 0x12, 0x18, 0x0a, + 0x07, 0x70, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, + 0x70, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x22, 0xaf, 0x02, 0x0a, 0x09, 0x43, 0x75, 0x73, 0x74, + 0x6f, 0x6d, 0x65, 0x72, 0x32, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, + 0x05, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x69, 0x6e, 0x64, 0x75, 0x73, 0x74, 0x72, + 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x69, 0x6e, 0x64, 0x75, 0x73, 0x74, 0x72, + 0x79, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x66, 0x65, 0x77, 0x65, 0x72, 0x18, 0x04, + 0x20, 0x01, 0x28, 0x02, 0x52, 0x05, 0x66, 0x65, 0x77, 0x65, 0x72, 0x12, 0x1b, 0x0a, 0x08, 0x72, + 0x65, 0x73, 0x65, 0x72, 0x76, 0x65, 0x64, 0x18, 0x97, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, + 0x72, 0x65, 0x73, 0x65, 0x72, 0x76, 0x65, 0x64, 0x12, 0x2a, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, + 0x18, 0x06, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x16, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, + 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x32, 0x2e, 0x43, 0x69, 0x74, 0x79, 0x52, 0x04, + 0x63, 0x69, 0x74, 0x79, 0x12, 0x3a, 0x0a, 0x0d, 0x6d, 0x69, 0x73, 0x63, 0x65, 0x6c, 0x6c, 0x61, + 0x6e, 0x65, 0x6f, 0x75, 0x73, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e, + 0x79, 0x52, 0x0d, 0x6d, 0x69, 0x73, 0x63, 0x65, 0x6c, 0x6c, 0x61, 0x6e, 0x65, 0x6f, 0x75, 0x73, + 0x22, 0x47, 0x0a, 0x04, 0x43, 0x69, 0x74, 0x79, 0x12, 0x08, 0x0a, 0x04, 0x4c, 0x61, 0x6f, 0x73, + 0x10, 0x00, 0x12, 0x0e, 0x0a, 0x0a, 0x4c, 0x6f, 0x73, 0x41, 0x6e, 0x67, 0x65, 0x6c, 0x65, 0x73, + 0x10, 0x01, 0x12, 0x0c, 0x0a, 0x08, 0x50, 0x61, 0x6c, 0x6f, 0x41, 0x6c, 0x74, 0x6f, 0x10, 0x02, + 0x12, 0x0a, 0x0a, 0x06, 0x4d, 0x6f, 0x73, 0x63, 0x6f, 0x77, 0x10, 0x03, 0x12, 0x0b, 0x0a, 0x07, + 0x4e, 0x61, 0x69, 0x72, 0x6f, 0x62, 0x69, 0x10, 0x04, 0x22, 0x2e, 0x0a, 0x08, 0x4e, 0x65, 0x73, + 0x74, 0x65, 0x64, 0x34, 0x41, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, + 0x05, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0xcf, 0x01, 0x0a, 0x08, 0x4e, 0x65, + 0x73, 0x74, 0x65, 0x64, 0x33, 0x41, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, + 0x28, 0x05, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x02, 0x61, 0x34, + 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, + 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x34, 0x41, 0x52, 0x02, 0x61, 0x34, 0x12, 0x31, 0x0a, 0x05, + 0x69, 0x6e, 0x64, 0x65, 0x78, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x74, 0x65, + 0x73, 0x74, 0x70, 0x62, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x33, 0x41, 0x2e, 0x49, 0x6e, + 0x64, 0x65, 0x78, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x05, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x1a, + 0x4a, 0x0a, 0x0a, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, + 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, + 0x26, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, + 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x34, 0x41, + 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x58, 0x0a, 0x08, 0x4e, + 0x65, 0x73, 0x74, 0x65, 0x64, 0x32, 0x41, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x05, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, + 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x28, 0x0a, 0x06, 0x6e, + 0x65, 0x73, 0x74, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x74, 0x65, + 0x73, 0x74, 0x70, 0x62, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x33, 0x41, 0x52, 0x06, 0x6e, + 0x65, 0x73, 0x74, 0x65, 0x64, 0x22, 0x44, 0x0a, 0x08, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x31, + 0x41, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x69, + 0x64, 0x12, 0x28, 0x0a, 0x06, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, + 0x0b, 0x32, 0x10, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, + 0x64, 0x32, 0x41, 0x52, 0x06, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x22, 0x40, 0x0a, 0x08, 0x4e, + 0x65, 0x73, 0x74, 0x65, 0x64, 0x34, 0x42, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x05, 0x52, 0x02, 0x69, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x02, + 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, + 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x62, 0x0a, + 0x08, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x33, 0x42, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, + 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x69, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, + 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, + 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, + 0x20, 0x0a, 0x02, 0x62, 0x34, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x74, 0x65, + 0x73, 0x74, 0x70, 0x62, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x34, 0x42, 0x52, 0x02, 0x62, + 0x34, 0x22, 0x6c, 0x0a, 0x08, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x32, 0x42, 0x12, 0x0e, 0x0a, + 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x69, 0x64, 0x12, 0x10, 0x0a, + 0x03, 0x66, 0x65, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x01, 0x52, 0x03, 0x66, 0x65, 0x65, 0x12, + 0x28, 0x0a, 0x06, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, + 0x10, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x33, + 0x42, 0x52, 0x06, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x72, 0x6f, 0x75, + 0x74, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x72, 0x6f, 0x75, 0x74, 0x65, 0x22, + 0x56, 0x0a, 0x08, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x31, 0x42, 0x12, 0x0e, 0x0a, 0x02, 0x69, + 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x69, 0x64, 0x12, 0x28, 0x0a, 0x06, 0x6e, + 0x65, 0x73, 0x74, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x74, 0x65, + 0x73, 0x74, 0x70, 0x62, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x32, 0x42, 0x52, 0x06, 0x6e, + 0x65, 0x73, 0x74, 0x65, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x03, 0x20, 0x01, + 0x28, 0x05, 0x52, 0x03, 0x61, 0x67, 0x65, 0x22, 0x80, 0x02, 0x0a, 0x09, 0x43, 0x75, 0x73, 0x74, + 0x6f, 0x6d, 0x65, 0x72, 0x33, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, + 0x05, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x73, 0x66, 0x18, + 0x03, 0x20, 0x01, 0x28, 0x02, 0x52, 0x02, 0x73, 0x66, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x75, 0x72, + 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x02, 0x52, 0x09, 0x73, 0x75, + 0x72, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x74, 0x69, + 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, + 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x26, 0x0a, 0x0e, 0x63, 0x72, 0x65, + 0x64, 0x69, 0x74, 0x5f, 0x63, 0x61, 0x72, 0x64, 0x5f, 0x6e, 0x6f, 0x18, 0x07, 0x20, 0x01, 0x28, + 0x09, 0x48, 0x00, 0x52, 0x0c, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x43, 0x61, 0x72, 0x64, 0x4e, + 0x6f, 0x12, 0x1d, 0x0a, 0x09, 0x63, 0x68, 0x65, 0x71, 0x75, 0x65, 0x5f, 0x6e, 0x6f, 0x18, 0x08, + 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x08, 0x63, 0x68, 0x65, 0x71, 0x75, 0x65, 0x4e, 0x6f, + 0x12, 0x2d, 0x0a, 0x08, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x18, 0x09, 0x20, 0x01, + 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, 0x43, 0x75, 0x73, 0x74, + 0x6f, 0x6d, 0x65, 0x72, 0x31, 0x52, 0x08, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x42, + 0x09, 0x0a, 0x07, 0x70, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x22, 0xde, 0x02, 0x0a, 0x0c, 0x54, + 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x31, 0x12, 0x0c, 0x0a, 0x01, 0x78, + 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x01, 0x78, 0x12, 0x22, 0x0a, 0x01, 0x61, 0x18, 0x02, + 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, 0x54, 0x65, + 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x31, 0x52, 0x01, 0x61, 0x12, 0x22, 0x0a, + 0x01, 0x62, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, + 0x62, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x31, 0x52, 0x01, + 0x62, 0x12, 0x22, 0x0a, 0x01, 0x63, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x74, + 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, + 0x6e, 0x31, 0x52, 0x01, 0x63, 0x12, 0x28, 0x0a, 0x01, 0x64, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, + 0x32, 0x14, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, + 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x31, 0x42, 0x04, 0xc8, 0xde, 0x1f, 0x00, 0x52, 0x01, 0x64, 0x12, 0x0e, 0x0a, 0x01, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x48, 0x00, 0x52, 0x01, 0x65, 0x12, - 0x26, 0x0a, 0x01, 0x66, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x74, 0x65, 0x73, - 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, - 0x6e, 0x32, 0x48, 0x00, 0x52, 0x01, 0x66, 0x12, 0x22, 0x0a, 0x01, 0x67, 0x18, 0x08, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e, 0x79, 0x52, 0x01, 0x67, 0x12, 0x24, 0x0a, 0x01, 0x68, - 0x18, 0x09, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, - 0x61, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x31, 0x52, 0x01, - 0x68, 0x12, 0x27, 0x0a, 0x01, 0x6b, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x74, - 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, - 0x31, 0x42, 0x04, 0xd0, 0xde, 0x1f, 0x01, 0x52, 0x01, 0x6b, 0x12, 0x1b, 0x0a, 0x09, 0x6e, 0x65, - 0x77, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x19, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x6e, - 0x65, 0x77, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x42, 0x05, 0x0a, 0x03, 0x73, 0x75, 0x6d, 0x22, 0x95, - 0x03, 0x0a, 0x0c, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x33, 0x12, - 0x0c, 0x0a, 0x01, 0x78, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x01, 0x78, 0x12, 0x24, 0x0a, - 0x01, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, - 0x61, 0x74, 0x61, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x33, - 0x52, 0x01, 0x61, 0x12, 0x24, 0x0a, 0x01, 0x62, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, - 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, - 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x33, 0x52, 0x01, 0x62, 0x12, 0x24, 0x0a, 0x01, 0x63, 0x18, 0x04, - 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, - 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x33, 0x52, 0x01, 0x63, 0x12, - 0x24, 0x0a, 0x01, 0x64, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x74, 0x65, 0x73, - 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, - 0x6e, 0x33, 0x52, 0x01, 0x64, 0x12, 0x0e, 0x0a, 0x01, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, - 0x48, 0x00, 0x52, 0x01, 0x65, 0x12, 0x26, 0x0a, 0x01, 0x66, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, - 0x32, 0x16, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x65, 0x73, 0x74, - 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x33, 0x48, 0x00, 0x52, 0x01, 0x66, 0x12, 0x22, 0x0a, - 0x01, 0x67, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e, 0x79, 0x52, 0x01, - 0x67, 0x12, 0x24, 0x0a, 0x01, 0x68, 0x18, 0x09, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x74, - 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, - 0x69, 0x6f, 0x6e, 0x31, 0x52, 0x01, 0x68, 0x12, 0x27, 0x0a, 0x01, 0x6b, 0x18, 0x0c, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43, 0x75, - 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x31, 0x42, 0x04, 0xd0, 0xde, 0x1f, 0x01, 0x52, 0x01, 0x6b, - 0x12, 0x2d, 0x0a, 0x12, 0x6e, 0x6f, 0x6e, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x69, 0x63, 0x61, 0x6c, - 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x87, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x6e, - 0x6f, 0x6e, 0x43, 0x72, 0x69, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x42, - 0x05, 0x0a, 0x03, 0x73, 0x75, 0x6d, 0x22, 0xfb, 0x02, 0x0a, 0x1a, 0x54, 0x65, 0x73, 0x74, 0x56, - 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x33, 0x4c, 0x6f, 0x6e, 0x65, 0x4f, 0x6e, 0x65, 0x4f, 0x66, - 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x0c, 0x0a, 0x01, 0x78, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, - 0x52, 0x01, 0x78, 0x12, 0x24, 0x0a, 0x01, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, - 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, - 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x33, 0x52, 0x01, 0x61, 0x12, 0x24, 0x0a, 0x01, 0x62, 0x18, 0x03, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, - 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x33, 0x52, 0x01, 0x62, 0x12, - 0x24, 0x0a, 0x01, 0x63, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x74, 0x65, 0x73, - 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, - 0x6e, 0x33, 0x52, 0x01, 0x63, 0x12, 0x24, 0x0a, 0x01, 0x64, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, - 0x32, 0x16, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x65, 0x73, 0x74, - 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x33, 0x52, 0x01, 0x64, 0x12, 0x0e, 0x0a, 0x01, 0x65, - 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x48, 0x00, 0x52, 0x01, 0x65, 0x12, 0x22, 0x0a, 0x01, 0x67, - 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, - 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e, 0x79, 0x52, 0x01, 0x67, 0x12, - 0x24, 0x0a, 0x01, 0x68, 0x18, 0x09, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x74, 0x65, 0x73, - 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, - 0x6e, 0x31, 0x52, 0x01, 0x68, 0x12, 0x27, 0x0a, 0x01, 0x6b, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0b, - 0x32, 0x13, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43, 0x75, 0x73, 0x74, - 0x6f, 0x6d, 0x65, 0x72, 0x31, 0x42, 0x04, 0xd0, 0xde, 0x1f, 0x01, 0x52, 0x01, 0x6b, 0x12, 0x2d, - 0x0a, 0x12, 0x6e, 0x6f, 0x6e, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x5f, 0x66, - 0x69, 0x65, 0x6c, 0x64, 0x18, 0x87, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x6e, 0x6f, 0x6e, - 0x43, 0x72, 0x69, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x42, 0x05, 0x0a, - 0x03, 0x73, 0x75, 0x6d, 0x22, 0xfd, 0x06, 0x0a, 0x17, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, - 0x73, 0x69, 0x6f, 0x6e, 0x33, 0x4c, 0x6f, 0x6e, 0x65, 0x4e, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, - 0x12, 0x0c, 0x0a, 0x01, 0x78, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x01, 0x78, 0x12, 0x24, - 0x0a, 0x01, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x74, 0x65, 0x73, 0x74, - 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, - 0x33, 0x52, 0x01, 0x61, 0x12, 0x24, 0x0a, 0x01, 0x62, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x16, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, - 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x33, 0x52, 0x01, 0x62, 0x12, 0x24, 0x0a, 0x01, 0x63, 0x18, - 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, - 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x33, 0x52, 0x01, 0x63, - 0x12, 0x24, 0x0a, 0x01, 0x64, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x74, 0x65, - 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, - 0x6f, 0x6e, 0x33, 0x52, 0x01, 0x64, 0x12, 0x31, 0x0a, 0x01, 0x66, 0x18, 0x07, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x21, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x65, 0x73, - 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x33, 0x4c, 0x6f, 0x6e, 0x65, 0x4e, 0x65, 0x73, - 0x74, 0x69, 0x6e, 0x67, 0x48, 0x00, 0x52, 0x01, 0x66, 0x12, 0x22, 0x0a, 0x01, 0x67, 0x18, 0x08, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e, 0x79, 0x52, 0x01, 0x67, 0x12, 0x24, 0x0a, - 0x01, 0x68, 0x18, 0x09, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, - 0x61, 0x74, 0x61, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x31, - 0x52, 0x01, 0x68, 0x12, 0x27, 0x0a, 0x01, 0x6b, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, - 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, - 0x65, 0x72, 0x31, 0x42, 0x04, 0xd0, 0xde, 0x1f, 0x01, 0x52, 0x01, 0x6b, 0x12, 0x2d, 0x0a, 0x12, - 0x6e, 0x6f, 0x6e, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x5f, 0x66, 0x69, 0x65, - 0x6c, 0x64, 0x18, 0x87, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x6e, 0x6f, 0x6e, 0x43, 0x72, - 0x69, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x40, 0x0a, 0x06, 0x69, - 0x6e, 0x6e, 0x65, 0x72, 0x31, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x74, 0x65, - 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, - 0x6f, 0x6e, 0x33, 0x4c, 0x6f, 0x6e, 0x65, 0x4e, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x49, - 0x6e, 0x6e, 0x65, 0x72, 0x31, 0x52, 0x06, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x31, 0x12, 0x40, 0x0a, - 0x06, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x32, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x28, 0x2e, - 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, - 0x73, 0x69, 0x6f, 0x6e, 0x33, 0x4c, 0x6f, 0x6e, 0x65, 0x4e, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, - 0x2e, 0x49, 0x6e, 0x6e, 0x65, 0x72, 0x32, 0x52, 0x06, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x32, 0x1a, - 0xa9, 0x01, 0x0a, 0x06, 0x49, 0x6e, 0x6e, 0x65, 0x72, 0x31, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, - 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, - 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x49, - 0x0a, 0x05, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x33, 0x2e, - 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, - 0x73, 0x69, 0x6f, 0x6e, 0x33, 0x4c, 0x6f, 0x6e, 0x65, 0x4e, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, - 0x2e, 0x49, 0x6e, 0x6e, 0x65, 0x72, 0x31, 0x2e, 0x49, 0x6e, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x6e, - 0x65, 0x72, 0x52, 0x05, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x1a, 0x30, 0x0a, 0x0a, 0x49, 0x6e, 0x6e, - 0x65, 0x72, 0x49, 0x6e, 0x6e, 0x65, 0x72, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, 0x18, - 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x1a, 0xaf, 0x01, 0x0a, 0x06, - 0x49, 0x6e, 0x6e, 0x65, 0x72, 0x32, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, - 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, - 0x12, 0x49, 0x0a, 0x05, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x33, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, - 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x33, 0x4c, 0x6f, 0x6e, 0x65, 0x4e, 0x65, 0x73, 0x74, 0x69, - 0x6e, 0x67, 0x2e, 0x49, 0x6e, 0x6e, 0x65, 0x72, 0x32, 0x2e, 0x49, 0x6e, 0x6e, 0x65, 0x72, 0x49, - 0x6e, 0x6e, 0x65, 0x72, 0x52, 0x05, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x1a, 0x30, 0x0a, 0x0a, 0x49, - 0x6e, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x6e, 0x65, 0x72, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, - 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, - 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x42, 0x05, 0x0a, - 0x03, 0x73, 0x75, 0x6d, 0x22, 0xff, 0x06, 0x0a, 0x17, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, - 0x73, 0x69, 0x6f, 0x6e, 0x34, 0x4c, 0x6f, 0x6e, 0x65, 0x4e, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, - 0x12, 0x0c, 0x0a, 0x01, 0x78, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x01, 0x78, 0x12, 0x24, - 0x0a, 0x01, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x74, 0x65, 0x73, 0x74, - 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, - 0x33, 0x52, 0x01, 0x61, 0x12, 0x24, 0x0a, 0x01, 0x62, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x16, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, - 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x33, 0x52, 0x01, 0x62, 0x12, 0x24, 0x0a, 0x01, 0x63, 0x18, - 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, - 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x33, 0x52, 0x01, 0x63, - 0x12, 0x24, 0x0a, 0x01, 0x64, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x74, 0x65, - 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, - 0x6f, 0x6e, 0x33, 0x52, 0x01, 0x64, 0x12, 0x31, 0x0a, 0x01, 0x66, 0x18, 0x07, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x21, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x65, 0x73, - 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x33, 0x4c, 0x6f, 0x6e, 0x65, 0x4e, 0x65, 0x73, - 0x74, 0x69, 0x6e, 0x67, 0x48, 0x00, 0x52, 0x01, 0x66, 0x12, 0x22, 0x0a, 0x01, 0x67, 0x18, 0x08, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e, 0x79, 0x52, 0x01, 0x67, 0x12, 0x24, 0x0a, - 0x01, 0x68, 0x18, 0x09, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, - 0x61, 0x74, 0x61, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x31, - 0x52, 0x01, 0x68, 0x12, 0x27, 0x0a, 0x01, 0x6b, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, - 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, - 0x65, 0x72, 0x31, 0x42, 0x04, 0xd0, 0xde, 0x1f, 0x01, 0x52, 0x01, 0x6b, 0x12, 0x2d, 0x0a, 0x12, - 0x6e, 0x6f, 0x6e, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x5f, 0x66, 0x69, 0x65, - 0x6c, 0x64, 0x18, 0x87, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x6e, 0x6f, 0x6e, 0x43, 0x72, - 0x69, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x40, 0x0a, 0x06, 0x69, - 0x6e, 0x6e, 0x65, 0x72, 0x31, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x74, 0x65, - 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, - 0x6f, 0x6e, 0x34, 0x4c, 0x6f, 0x6e, 0x65, 0x4e, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x49, - 0x6e, 0x6e, 0x65, 0x72, 0x31, 0x52, 0x06, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x31, 0x12, 0x40, 0x0a, - 0x06, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x32, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x28, 0x2e, - 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, - 0x73, 0x69, 0x6f, 0x6e, 0x34, 0x4c, 0x6f, 0x6e, 0x65, 0x4e, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, - 0x2e, 0x49, 0x6e, 0x6e, 0x65, 0x72, 0x32, 0x52, 0x06, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x32, 0x1a, - 0xa9, 0x01, 0x0a, 0x06, 0x49, 0x6e, 0x6e, 0x65, 0x72, 0x31, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, - 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, - 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x49, - 0x0a, 0x05, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x33, 0x2e, - 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, - 0x73, 0x69, 0x6f, 0x6e, 0x34, 0x4c, 0x6f, 0x6e, 0x65, 0x4e, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, - 0x2e, 0x49, 0x6e, 0x6e, 0x65, 0x72, 0x31, 0x2e, 0x49, 0x6e, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x6e, - 0x65, 0x72, 0x52, 0x05, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x1a, 0x30, 0x0a, 0x0a, 0x49, 0x6e, 0x6e, - 0x65, 0x72, 0x49, 0x6e, 0x6e, 0x65, 0x72, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, 0x18, - 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x1a, 0xb1, 0x01, 0x0a, 0x06, - 0x49, 0x6e, 0x6e, 0x65, 0x72, 0x32, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, - 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, - 0x12, 0x49, 0x0a, 0x05, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x33, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, - 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x34, 0x4c, 0x6f, 0x6e, 0x65, 0x4e, 0x65, 0x73, 0x74, 0x69, - 0x6e, 0x67, 0x2e, 0x49, 0x6e, 0x6e, 0x65, 0x72, 0x32, 0x2e, 0x49, 0x6e, 0x6e, 0x65, 0x72, 0x49, - 0x6e, 0x6e, 0x65, 0x72, 0x52, 0x05, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x1a, 0x32, 0x0a, 0x0a, 0x49, - 0x6e, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x6e, 0x65, 0x72, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, - 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, - 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x42, - 0x05, 0x0a, 0x03, 0x73, 0x75, 0x6d, 0x22, 0xcd, 0x01, 0x0a, 0x0e, 0x54, 0x65, 0x73, 0x74, 0x56, - 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x46, 0x44, 0x31, 0x12, 0x0c, 0x0a, 0x01, 0x78, 0x18, 0x01, - 0x20, 0x01, 0x28, 0x03, 0x52, 0x01, 0x78, 0x12, 0x24, 0x0a, 0x01, 0x61, 0x18, 0x02, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x65, - 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x31, 0x52, 0x01, 0x61, 0x12, 0x0e, 0x0a, - 0x01, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x48, 0x00, 0x52, 0x01, 0x65, 0x12, 0x26, 0x0a, - 0x01, 0x66, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, - 0x61, 0x74, 0x61, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x31, + 0x24, 0x0a, 0x01, 0x66, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x74, 0x65, 0x73, + 0x74, 0x70, 0x62, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x31, 0x48, 0x00, 0x52, 0x01, 0x66, 0x12, 0x22, 0x0a, 0x01, 0x67, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, - 0x75, 0x66, 0x2e, 0x41, 0x6e, 0x79, 0x52, 0x01, 0x67, 0x12, 0x24, 0x0a, 0x01, 0x68, 0x18, 0x09, - 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, - 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x31, 0x52, 0x01, 0x68, 0x42, - 0x05, 0x0a, 0x03, 0x73, 0x75, 0x6d, 0x22, 0xdb, 0x01, 0x0a, 0x1a, 0x54, 0x65, 0x73, 0x74, 0x56, - 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x46, 0x44, 0x31, 0x57, 0x69, 0x74, 0x68, 0x45, 0x78, 0x74, - 0x72, 0x61, 0x41, 0x6e, 0x79, 0x12, 0x0c, 0x0a, 0x01, 0x78, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, - 0x52, 0x01, 0x78, 0x12, 0x24, 0x0a, 0x01, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, - 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, - 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x31, 0x52, 0x01, 0x61, 0x12, 0x0e, 0x0a, 0x01, 0x65, 0x18, 0x06, - 0x20, 0x01, 0x28, 0x05, 0x48, 0x00, 0x52, 0x01, 0x65, 0x12, 0x26, 0x0a, 0x01, 0x66, 0x18, 0x07, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, - 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x31, 0x48, 0x00, 0x52, 0x01, - 0x66, 0x12, 0x24, 0x0a, 0x01, 0x67, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x74, - 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x41, 0x6e, 0x79, 0x57, 0x69, 0x74, 0x68, 0x45, - 0x78, 0x74, 0x72, 0x61, 0x52, 0x01, 0x67, 0x12, 0x24, 0x0a, 0x01, 0x68, 0x18, 0x09, 0x20, 0x03, - 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x65, - 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x31, 0x52, 0x01, 0x68, 0x42, 0x05, 0x0a, - 0x03, 0x73, 0x75, 0x6d, 0x22, 0x54, 0x0a, 0x0c, 0x41, 0x6e, 0x79, 0x57, 0x69, 0x74, 0x68, 0x45, - 0x78, 0x74, 0x72, 0x61, 0x12, 0x28, 0x0a, 0x01, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, + 0x75, 0x66, 0x2e, 0x41, 0x6e, 0x79, 0x52, 0x01, 0x67, 0x12, 0x22, 0x0a, 0x01, 0x68, 0x18, 0x09, + 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, 0x54, 0x65, + 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x31, 0x52, 0x01, 0x68, 0x12, 0x25, 0x0a, + 0x01, 0x6b, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, + 0x62, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x31, 0x42, 0x04, 0xd0, 0xde, 0x1f, + 0x01, 0x52, 0x01, 0x6b, 0x42, 0x05, 0x0a, 0x03, 0x73, 0x75, 0x6d, 0x22, 0xf5, 0x02, 0x0a, 0x0c, + 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x32, 0x12, 0x0c, 0x0a, 0x01, + 0x78, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x01, 0x78, 0x12, 0x22, 0x0a, 0x01, 0x61, 0x18, + 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, 0x54, + 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x32, 0x52, 0x01, 0x61, 0x12, 0x22, + 0x0a, 0x01, 0x62, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x74, 0x65, 0x73, 0x74, + 0x70, 0x62, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x32, 0x52, + 0x01, 0x62, 0x12, 0x22, 0x0a, 0x01, 0x63, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, + 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, + 0x6f, 0x6e, 0x32, 0x52, 0x01, 0x63, 0x12, 0x22, 0x0a, 0x01, 0x64, 0x18, 0x05, 0x20, 0x03, 0x28, + 0x0b, 0x32, 0x14, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, + 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x32, 0x52, 0x01, 0x64, 0x12, 0x0e, 0x0a, 0x01, 0x65, 0x18, + 0x06, 0x20, 0x01, 0x28, 0x05, 0x48, 0x00, 0x52, 0x01, 0x65, 0x12, 0x24, 0x0a, 0x01, 0x66, 0x18, + 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, 0x54, + 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x32, 0x48, 0x00, 0x52, 0x01, 0x66, + 0x12, 0x22, 0x0a, 0x01, 0x67, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e, + 0x79, 0x52, 0x01, 0x67, 0x12, 0x22, 0x0a, 0x01, 0x68, 0x18, 0x09, 0x20, 0x03, 0x28, 0x0b, 0x32, + 0x14, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, + 0x73, 0x69, 0x6f, 0x6e, 0x31, 0x52, 0x01, 0x68, 0x12, 0x25, 0x0a, 0x01, 0x6b, 0x18, 0x0c, 0x20, + 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, 0x43, 0x75, 0x73, + 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x31, 0x42, 0x04, 0xd0, 0xde, 0x1f, 0x01, 0x52, 0x01, 0x6b, 0x12, + 0x1b, 0x0a, 0x09, 0x6e, 0x65, 0x77, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x19, 0x20, 0x01, + 0x28, 0x04, 0x52, 0x08, 0x6e, 0x65, 0x77, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x42, 0x05, 0x0a, 0x03, + 0x73, 0x75, 0x6d, 0x22, 0x87, 0x03, 0x0a, 0x0c, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, + 0x69, 0x6f, 0x6e, 0x33, 0x12, 0x0c, 0x0a, 0x01, 0x78, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, + 0x01, 0x78, 0x12, 0x22, 0x0a, 0x01, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, + 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, + 0x6f, 0x6e, 0x33, 0x52, 0x01, 0x61, 0x12, 0x22, 0x0a, 0x01, 0x62, 0x18, 0x03, 0x20, 0x01, 0x28, + 0x0b, 0x32, 0x14, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, + 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x33, 0x52, 0x01, 0x62, 0x12, 0x22, 0x0a, 0x01, 0x63, 0x18, + 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, 0x54, + 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x33, 0x52, 0x01, 0x63, 0x12, 0x22, + 0x0a, 0x01, 0x64, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x74, 0x65, 0x73, 0x74, + 0x70, 0x62, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x33, 0x52, + 0x01, 0x64, 0x12, 0x0e, 0x0a, 0x01, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x48, 0x00, 0x52, + 0x01, 0x65, 0x12, 0x24, 0x0a, 0x01, 0x66, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, + 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, + 0x6f, 0x6e, 0x33, 0x48, 0x00, 0x52, 0x01, 0x66, 0x12, 0x22, 0x0a, 0x01, 0x67, 0x18, 0x08, 0x20, + 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, + 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e, 0x79, 0x52, 0x01, 0x67, 0x12, 0x22, 0x0a, 0x01, + 0x68, 0x18, 0x09, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, + 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x31, 0x52, 0x01, 0x68, + 0x12, 0x25, 0x0a, 0x01, 0x6b, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x74, 0x65, + 0x73, 0x74, 0x70, 0x62, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x31, 0x42, 0x04, + 0xd0, 0xde, 0x1f, 0x01, 0x52, 0x01, 0x6b, 0x12, 0x2d, 0x0a, 0x12, 0x6e, 0x6f, 0x6e, 0x5f, 0x63, + 0x72, 0x69, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x87, 0x08, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x6e, 0x6f, 0x6e, 0x43, 0x72, 0x69, 0x74, 0x69, 0x63, 0x61, + 0x6c, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x42, 0x05, 0x0a, 0x03, 0x73, 0x75, 0x6d, 0x22, 0xef, 0x02, + 0x0a, 0x1a, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x33, 0x4c, 0x6f, + 0x6e, 0x65, 0x4f, 0x6e, 0x65, 0x4f, 0x66, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x0c, 0x0a, 0x01, + 0x78, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x01, 0x78, 0x12, 0x22, 0x0a, 0x01, 0x61, 0x18, + 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, 0x54, + 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x33, 0x52, 0x01, 0x61, 0x12, 0x22, + 0x0a, 0x01, 0x62, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x74, 0x65, 0x73, 0x74, + 0x70, 0x62, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x33, 0x52, + 0x01, 0x62, 0x12, 0x22, 0x0a, 0x01, 0x63, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, + 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, + 0x6f, 0x6e, 0x33, 0x52, 0x01, 0x63, 0x12, 0x22, 0x0a, 0x01, 0x64, 0x18, 0x05, 0x20, 0x03, 0x28, + 0x0b, 0x32, 0x14, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, + 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x33, 0x52, 0x01, 0x64, 0x12, 0x0e, 0x0a, 0x01, 0x65, 0x18, + 0x06, 0x20, 0x01, 0x28, 0x05, 0x48, 0x00, 0x52, 0x01, 0x65, 0x12, 0x22, 0x0a, 0x01, 0x67, 0x18, + 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, + 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e, 0x79, 0x52, 0x01, 0x67, 0x12, 0x22, + 0x0a, 0x01, 0x68, 0x18, 0x09, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x74, 0x65, 0x73, 0x74, + 0x70, 0x62, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x31, 0x52, + 0x01, 0x68, 0x12, 0x25, 0x0a, 0x01, 0x6b, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, + 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x31, + 0x42, 0x04, 0xd0, 0xde, 0x1f, 0x01, 0x52, 0x01, 0x6b, 0x12, 0x2d, 0x0a, 0x12, 0x6e, 0x6f, 0x6e, + 0x5f, 0x63, 0x72, 0x69, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, + 0x87, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x6e, 0x6f, 0x6e, 0x43, 0x72, 0x69, 0x74, 0x69, + 0x63, 0x61, 0x6c, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x42, 0x05, 0x0a, 0x03, 0x73, 0x75, 0x6d, 0x22, + 0xe7, 0x06, 0x0a, 0x17, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x33, + 0x4c, 0x6f, 0x6e, 0x65, 0x4e, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x0c, 0x0a, 0x01, 0x78, + 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x01, 0x78, 0x12, 0x22, 0x0a, 0x01, 0x61, 0x18, 0x02, + 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, 0x54, 0x65, + 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x33, 0x52, 0x01, 0x61, 0x12, 0x22, 0x0a, + 0x01, 0x62, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, + 0x62, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x33, 0x52, 0x01, + 0x62, 0x12, 0x22, 0x0a, 0x01, 0x63, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x74, + 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, + 0x6e, 0x33, 0x52, 0x01, 0x63, 0x12, 0x22, 0x0a, 0x01, 0x64, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, + 0x32, 0x14, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, + 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x33, 0x52, 0x01, 0x64, 0x12, 0x2f, 0x0a, 0x01, 0x66, 0x18, 0x07, + 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, 0x54, 0x65, + 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x33, 0x4c, 0x6f, 0x6e, 0x65, 0x4e, 0x65, + 0x73, 0x74, 0x69, 0x6e, 0x67, 0x48, 0x00, 0x52, 0x01, 0x66, 0x12, 0x22, 0x0a, 0x01, 0x67, 0x18, + 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, + 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e, 0x79, 0x52, 0x01, 0x67, 0x12, 0x22, + 0x0a, 0x01, 0x68, 0x18, 0x09, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x74, 0x65, 0x73, 0x74, + 0x70, 0x62, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x31, 0x52, + 0x01, 0x68, 0x12, 0x25, 0x0a, 0x01, 0x6b, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, + 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x31, + 0x42, 0x04, 0xd0, 0xde, 0x1f, 0x01, 0x52, 0x01, 0x6b, 0x12, 0x2d, 0x0a, 0x12, 0x6e, 0x6f, 0x6e, + 0x5f, 0x63, 0x72, 0x69, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, + 0x87, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x6e, 0x6f, 0x6e, 0x43, 0x72, 0x69, 0x74, 0x69, + 0x63, 0x61, 0x6c, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x3e, 0x0a, 0x06, 0x69, 0x6e, 0x6e, 0x65, + 0x72, 0x31, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, + 0x62, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x33, 0x4c, 0x6f, + 0x6e, 0x65, 0x4e, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x49, 0x6e, 0x6e, 0x65, 0x72, 0x31, + 0x52, 0x06, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x31, 0x12, 0x3e, 0x0a, 0x06, 0x69, 0x6e, 0x6e, 0x65, + 0x72, 0x32, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, + 0x62, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x33, 0x4c, 0x6f, + 0x6e, 0x65, 0x4e, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x49, 0x6e, 0x6e, 0x65, 0x72, 0x32, + 0x52, 0x06, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x32, 0x1a, 0xa7, 0x01, 0x0a, 0x06, 0x49, 0x6e, 0x6e, + 0x65, 0x72, 0x31, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, + 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, + 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x47, 0x0a, 0x05, 0x69, 0x6e, 0x6e, 0x65, 0x72, + 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, + 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x33, 0x4c, 0x6f, 0x6e, 0x65, + 0x4e, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x49, 0x6e, 0x6e, 0x65, 0x72, 0x31, 0x2e, 0x49, + 0x6e, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x6e, 0x65, 0x72, 0x52, 0x05, 0x69, 0x6e, 0x6e, 0x65, 0x72, + 0x1a, 0x30, 0x0a, 0x0a, 0x49, 0x6e, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x6e, 0x65, 0x72, 0x12, 0x0e, + 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, + 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, + 0x74, 0x79, 0x1a, 0xad, 0x01, 0x0a, 0x06, 0x49, 0x6e, 0x6e, 0x65, 0x72, 0x32, 0x12, 0x0e, 0x0a, + 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x18, 0x0a, + 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, + 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x47, 0x0a, 0x05, 0x69, 0x6e, 0x6e, 0x65, 0x72, + 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, + 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x33, 0x4c, 0x6f, 0x6e, 0x65, + 0x4e, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x49, 0x6e, 0x6e, 0x65, 0x72, 0x32, 0x2e, 0x49, + 0x6e, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x6e, 0x65, 0x72, 0x52, 0x05, 0x69, 0x6e, 0x6e, 0x65, 0x72, + 0x1a, 0x30, 0x0a, 0x0a, 0x49, 0x6e, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x6e, 0x65, 0x72, 0x12, 0x0e, + 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, + 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, + 0x74, 0x79, 0x42, 0x05, 0x0a, 0x03, 0x73, 0x75, 0x6d, 0x22, 0xe9, 0x06, 0x0a, 0x17, 0x54, 0x65, + 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x34, 0x4c, 0x6f, 0x6e, 0x65, 0x4e, 0x65, + 0x73, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x0c, 0x0a, 0x01, 0x78, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, + 0x52, 0x01, 0x78, 0x12, 0x22, 0x0a, 0x01, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, + 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, + 0x69, 0x6f, 0x6e, 0x33, 0x52, 0x01, 0x61, 0x12, 0x22, 0x0a, 0x01, 0x62, 0x18, 0x03, 0x20, 0x01, + 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, 0x54, 0x65, 0x73, 0x74, + 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x33, 0x52, 0x01, 0x62, 0x12, 0x22, 0x0a, 0x01, 0x63, + 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, + 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x33, 0x52, 0x01, 0x63, 0x12, + 0x22, 0x0a, 0x01, 0x64, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x74, 0x65, 0x73, + 0x74, 0x70, 0x62, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x33, + 0x52, 0x01, 0x64, 0x12, 0x2f, 0x0a, 0x01, 0x66, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, + 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, + 0x69, 0x6f, 0x6e, 0x33, 0x4c, 0x6f, 0x6e, 0x65, 0x4e, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x48, + 0x00, 0x52, 0x01, 0x66, 0x12, 0x22, 0x0a, 0x01, 0x67, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, - 0x66, 0x2e, 0x41, 0x6e, 0x79, 0x42, 0x04, 0xd0, 0xde, 0x1f, 0x01, 0x52, 0x01, 0x61, 0x12, 0x0c, - 0x0a, 0x01, 0x62, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x01, 0x62, 0x12, 0x0c, 0x0a, 0x01, - 0x63, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x01, 0x63, 0x22, 0xc0, 0x01, 0x0a, 0x10, 0x54, - 0x65, 0x73, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x54, 0x78, 0x52, 0x61, 0x77, 0x12, - 0x1d, 0x0a, 0x0a, 0x62, 0x6f, 0x64, 0x79, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x0c, 0x52, 0x09, 0x62, 0x6f, 0x64, 0x79, 0x42, 0x79, 0x74, 0x65, 0x73, 0x12, 0x26, - 0x0a, 0x0f, 0x61, 0x75, 0x74, 0x68, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x62, 0x79, 0x74, 0x65, - 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0d, 0x61, 0x75, 0x74, 0x68, 0x49, 0x6e, 0x66, - 0x6f, 0x42, 0x79, 0x74, 0x65, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, - 0x75, 0x72, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0c, 0x52, 0x0a, 0x73, 0x69, 0x67, 0x6e, - 0x61, 0x74, 0x75, 0x72, 0x65, 0x73, 0x12, 0x1e, 0x0a, 0x0b, 0x6e, 0x65, 0x77, 0x5f, 0x66, 0x69, - 0x65, 0x6c, 0x64, 0x5f, 0x35, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x09, 0x6e, 0x65, 0x77, - 0x46, 0x69, 0x65, 0x6c, 0x64, 0x35, 0x12, 0x25, 0x0a, 0x0e, 0x6e, 0x65, 0x77, 0x5f, 0x66, 0x69, - 0x65, 0x6c, 0x64, 0x5f, 0x31, 0x30, 0x32, 0x34, 0x18, 0x80, 0x08, 0x20, 0x01, 0x28, 0x0c, 0x52, - 0x0c, 0x6e, 0x65, 0x77, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x31, 0x30, 0x32, 0x34, 0x22, 0x90, 0x03, - 0x0a, 0x11, 0x54, 0x65, 0x73, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x54, 0x78, 0x42, - 0x6f, 0x64, 0x79, 0x12, 0x30, 0x0a, 0x08, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x18, - 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, - 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e, 0x79, 0x52, 0x08, 0x6d, 0x65, 0x73, - 0x73, 0x61, 0x67, 0x65, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x6d, 0x65, 0x6d, 0x6f, 0x18, 0x02, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x04, 0x6d, 0x65, 0x6d, 0x6f, 0x12, 0x25, 0x0a, 0x0e, 0x74, 0x69, 0x6d, - 0x65, 0x6f, 0x75, 0x74, 0x5f, 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, - 0x03, 0x52, 0x0d, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x48, 0x65, 0x69, 0x67, 0x68, 0x74, - 0x12, 0x24, 0x0a, 0x0e, 0x73, 0x6f, 0x6d, 0x65, 0x5f, 0x6e, 0x65, 0x77, 0x5f, 0x66, 0x69, 0x65, - 0x6c, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c, 0x73, 0x6f, 0x6d, 0x65, 0x4e, 0x65, - 0x77, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x48, 0x0a, 0x21, 0x73, 0x6f, 0x6d, 0x65, 0x5f, 0x6e, - 0x65, 0x77, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x6e, 0x6f, 0x6e, 0x5f, 0x63, 0x72, 0x69, - 0x74, 0x69, 0x63, 0x61, 0x6c, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x9a, 0x08, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x1c, 0x73, 0x6f, 0x6d, 0x65, 0x4e, 0x65, 0x77, 0x46, 0x69, 0x65, 0x6c, 0x64, - 0x4e, 0x6f, 0x6e, 0x43, 0x72, 0x69, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x46, 0x69, 0x65, 0x6c, 0x64, - 0x12, 0x42, 0x0a, 0x11, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6f, 0x70, - 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0xff, 0x07, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, - 0x6e, 0x79, 0x52, 0x10, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x74, - 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x5a, 0x0a, 0x1e, 0x6e, 0x6f, 0x6e, 0x5f, 0x63, 0x72, 0x69, 0x74, - 0x69, 0x63, 0x61, 0x6c, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6f, - 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0xff, 0x0f, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, + 0x66, 0x2e, 0x41, 0x6e, 0x79, 0x52, 0x01, 0x67, 0x12, 0x22, 0x0a, 0x01, 0x68, 0x18, 0x09, 0x20, + 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, 0x54, 0x65, 0x73, + 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x31, 0x52, 0x01, 0x68, 0x12, 0x25, 0x0a, 0x01, + 0x6b, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, + 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x31, 0x42, 0x04, 0xd0, 0xde, 0x1f, 0x01, + 0x52, 0x01, 0x6b, 0x12, 0x2d, 0x0a, 0x12, 0x6e, 0x6f, 0x6e, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x69, + 0x63, 0x61, 0x6c, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x87, 0x08, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x10, 0x6e, 0x6f, 0x6e, 0x43, 0x72, 0x69, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x46, 0x69, 0x65, + 0x6c, 0x64, 0x12, 0x3e, 0x0a, 0x06, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x31, 0x18, 0x0e, 0x20, 0x01, + 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, 0x54, 0x65, 0x73, 0x74, + 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x34, 0x4c, 0x6f, 0x6e, 0x65, 0x4e, 0x65, 0x73, 0x74, + 0x69, 0x6e, 0x67, 0x2e, 0x49, 0x6e, 0x6e, 0x65, 0x72, 0x31, 0x52, 0x06, 0x69, 0x6e, 0x6e, 0x65, + 0x72, 0x31, 0x12, 0x3e, 0x0a, 0x06, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x32, 0x18, 0x0f, 0x20, 0x01, + 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, 0x54, 0x65, 0x73, 0x74, + 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x34, 0x4c, 0x6f, 0x6e, 0x65, 0x4e, 0x65, 0x73, 0x74, + 0x69, 0x6e, 0x67, 0x2e, 0x49, 0x6e, 0x6e, 0x65, 0x72, 0x32, 0x52, 0x06, 0x69, 0x6e, 0x6e, 0x65, + 0x72, 0x32, 0x1a, 0xa7, 0x01, 0x0a, 0x06, 0x49, 0x6e, 0x6e, 0x65, 0x72, 0x31, 0x12, 0x0e, 0x0a, + 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, + 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, + 0x65, 0x12, 0x47, 0x0a, 0x05, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, + 0x32, 0x31, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, + 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x34, 0x4c, 0x6f, 0x6e, 0x65, 0x4e, 0x65, 0x73, 0x74, 0x69, 0x6e, + 0x67, 0x2e, 0x49, 0x6e, 0x6e, 0x65, 0x72, 0x31, 0x2e, 0x49, 0x6e, 0x6e, 0x65, 0x72, 0x49, 0x6e, + 0x6e, 0x65, 0x72, 0x52, 0x05, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x1a, 0x30, 0x0a, 0x0a, 0x49, 0x6e, + 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x6e, 0x65, 0x72, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, + 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, + 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x1a, 0xaf, 0x01, 0x0a, + 0x06, 0x49, 0x6e, 0x6e, 0x65, 0x72, 0x32, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, + 0x72, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, + 0x79, 0x12, 0x47, 0x0a, 0x05, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, + 0x32, 0x31, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, + 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x34, 0x4c, 0x6f, 0x6e, 0x65, 0x4e, 0x65, 0x73, 0x74, 0x69, 0x6e, + 0x67, 0x2e, 0x49, 0x6e, 0x6e, 0x65, 0x72, 0x32, 0x2e, 0x49, 0x6e, 0x6e, 0x65, 0x72, 0x49, 0x6e, + 0x6e, 0x65, 0x72, 0x52, 0x05, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x1a, 0x32, 0x0a, 0x0a, 0x49, 0x6e, + 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x6e, 0x65, 0x72, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, + 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x05, + 0x0a, 0x03, 0x73, 0x75, 0x6d, 0x22, 0xc7, 0x01, 0x0a, 0x0e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, + 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x46, 0x44, 0x31, 0x12, 0x0c, 0x0a, 0x01, 0x78, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x03, 0x52, 0x01, 0x78, 0x12, 0x22, 0x0a, 0x01, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, + 0x0b, 0x32, 0x14, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, + 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x31, 0x52, 0x01, 0x61, 0x12, 0x0e, 0x0a, 0x01, 0x65, 0x18, + 0x06, 0x20, 0x01, 0x28, 0x05, 0x48, 0x00, 0x52, 0x01, 0x65, 0x12, 0x24, 0x0a, 0x01, 0x66, 0x18, + 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, 0x54, + 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x31, 0x48, 0x00, 0x52, 0x01, 0x66, + 0x12, 0x22, 0x0a, 0x01, 0x67, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e, + 0x79, 0x52, 0x01, 0x67, 0x12, 0x22, 0x0a, 0x01, 0x68, 0x18, 0x09, 0x20, 0x03, 0x28, 0x0b, 0x32, + 0x14, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, + 0x73, 0x69, 0x6f, 0x6e, 0x31, 0x52, 0x01, 0x68, 0x42, 0x05, 0x0a, 0x03, 0x73, 0x75, 0x6d, 0x22, + 0xd3, 0x01, 0x0a, 0x1a, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x46, + 0x44, 0x31, 0x57, 0x69, 0x74, 0x68, 0x45, 0x78, 0x74, 0x72, 0x61, 0x41, 0x6e, 0x79, 0x12, 0x0c, + 0x0a, 0x01, 0x78, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x01, 0x78, 0x12, 0x22, 0x0a, 0x01, + 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, + 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x31, 0x52, 0x01, 0x61, + 0x12, 0x0e, 0x0a, 0x01, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x48, 0x00, 0x52, 0x01, 0x65, + 0x12, 0x24, 0x0a, 0x01, 0x66, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x74, 0x65, + 0x73, 0x74, 0x70, 0x62, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, + 0x31, 0x48, 0x00, 0x52, 0x01, 0x66, 0x12, 0x22, 0x0a, 0x01, 0x67, 0x18, 0x08, 0x20, 0x01, 0x28, + 0x0b, 0x32, 0x14, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, 0x41, 0x6e, 0x79, 0x57, 0x69, + 0x74, 0x68, 0x45, 0x78, 0x74, 0x72, 0x61, 0x52, 0x01, 0x67, 0x12, 0x22, 0x0a, 0x01, 0x68, 0x18, + 0x09, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0x2e, 0x54, + 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x31, 0x52, 0x01, 0x68, 0x42, 0x05, + 0x0a, 0x03, 0x73, 0x75, 0x6d, 0x22, 0x54, 0x0a, 0x0c, 0x41, 0x6e, 0x79, 0x57, 0x69, 0x74, 0x68, + 0x45, 0x78, 0x74, 0x72, 0x61, 0x12, 0x28, 0x0a, 0x01, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, + 0x32, 0x14, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, + 0x75, 0x66, 0x2e, 0x41, 0x6e, 0x79, 0x42, 0x04, 0xd0, 0xde, 0x1f, 0x01, 0x52, 0x01, 0x61, 0x12, + 0x0c, 0x0a, 0x01, 0x62, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x01, 0x62, 0x12, 0x0c, 0x0a, + 0x01, 0x63, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x01, 0x63, 0x22, 0xc0, 0x01, 0x0a, 0x10, + 0x54, 0x65, 0x73, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x54, 0x78, 0x52, 0x61, 0x77, + 0x12, 0x1d, 0x0a, 0x0a, 0x62, 0x6f, 0x64, 0x79, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x18, 0x01, + 0x20, 0x01, 0x28, 0x0c, 0x52, 0x09, 0x62, 0x6f, 0x64, 0x79, 0x42, 0x79, 0x74, 0x65, 0x73, 0x12, + 0x26, 0x0a, 0x0f, 0x61, 0x75, 0x74, 0x68, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x62, 0x79, 0x74, + 0x65, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0d, 0x61, 0x75, 0x74, 0x68, 0x49, 0x6e, + 0x66, 0x6f, 0x42, 0x79, 0x74, 0x65, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x69, 0x67, 0x6e, 0x61, + 0x74, 0x75, 0x72, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0c, 0x52, 0x0a, 0x73, 0x69, 0x67, + 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x73, 0x12, 0x1e, 0x0a, 0x0b, 0x6e, 0x65, 0x77, 0x5f, 0x66, + 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x35, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x09, 0x6e, 0x65, + 0x77, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x35, 0x12, 0x25, 0x0a, 0x0e, 0x6e, 0x65, 0x77, 0x5f, 0x66, + 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x31, 0x30, 0x32, 0x34, 0x18, 0x80, 0x08, 0x20, 0x01, 0x28, 0x0c, + 0x52, 0x0c, 0x6e, 0x65, 0x77, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x31, 0x30, 0x32, 0x34, 0x22, 0x90, + 0x03, 0x0a, 0x11, 0x54, 0x65, 0x73, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x54, 0x78, + 0x42, 0x6f, 0x64, 0x79, 0x12, 0x30, 0x0a, 0x08, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, + 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, + 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e, 0x79, 0x52, 0x08, 0x6d, 0x65, + 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x6d, 0x65, 0x6d, 0x6f, 0x18, 0x02, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6d, 0x65, 0x6d, 0x6f, 0x12, 0x25, 0x0a, 0x0e, 0x74, 0x69, + 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x5f, 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, 0x18, 0x03, 0x20, 0x01, + 0x28, 0x03, 0x52, 0x0d, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x48, 0x65, 0x69, 0x67, 0x68, + 0x74, 0x12, 0x24, 0x0a, 0x0e, 0x73, 0x6f, 0x6d, 0x65, 0x5f, 0x6e, 0x65, 0x77, 0x5f, 0x66, 0x69, + 0x65, 0x6c, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c, 0x73, 0x6f, 0x6d, 0x65, 0x4e, + 0x65, 0x77, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x48, 0x0a, 0x21, 0x73, 0x6f, 0x6d, 0x65, 0x5f, + 0x6e, 0x65, 0x77, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x6e, 0x6f, 0x6e, 0x5f, 0x63, 0x72, + 0x69, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x9a, 0x08, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x1c, 0x73, 0x6f, 0x6d, 0x65, 0x4e, 0x65, 0x77, 0x46, 0x69, 0x65, 0x6c, + 0x64, 0x4e, 0x6f, 0x6e, 0x43, 0x72, 0x69, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x46, 0x69, 0x65, 0x6c, + 0x64, 0x12, 0x42, 0x0a, 0x11, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6f, + 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0xff, 0x07, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, - 0x41, 0x6e, 0x79, 0x52, 0x1b, 0x6e, 0x6f, 0x6e, 0x43, 0x72, 0x69, 0x74, 0x69, 0x63, 0x61, 0x6c, - 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, - 0x22, 0xc8, 0x01, 0x0a, 0x13, 0x54, 0x65, 0x73, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, - 0x41, 0x75, 0x74, 0x68, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x40, 0x0a, 0x0c, 0x73, 0x69, 0x67, 0x6e, - 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1d, - 0x2e, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2e, 0x74, 0x78, 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74, - 0x61, 0x31, 0x2e, 0x53, 0x69, 0x67, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0b, 0x73, - 0x69, 0x67, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x73, 0x12, 0x28, 0x0a, 0x03, 0x66, 0x65, - 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, - 0x2e, 0x74, 0x78, 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x31, 0x2e, 0x46, 0x65, 0x65, 0x52, - 0x03, 0x66, 0x65, 0x65, 0x12, 0x1e, 0x0a, 0x0b, 0x6e, 0x65, 0x77, 0x5f, 0x66, 0x69, 0x65, 0x6c, - 0x64, 0x5f, 0x33, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x09, 0x6e, 0x65, 0x77, 0x46, 0x69, - 0x65, 0x6c, 0x64, 0x33, 0x12, 0x25, 0x0a, 0x0e, 0x6e, 0x65, 0x77, 0x5f, 0x66, 0x69, 0x65, 0x6c, - 0x64, 0x5f, 0x31, 0x30, 0x32, 0x34, 0x18, 0x80, 0x08, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0c, 0x6e, - 0x65, 0x77, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x31, 0x30, 0x32, 0x34, 0x22, 0x27, 0x0a, 0x11, 0x54, - 0x65, 0x73, 0x74, 0x52, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x55, 0x69, 0x6e, 0x74, 0x73, - 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x75, 0x6d, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x04, 0x52, 0x04, - 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x99, 0x01, 0x0a, 0x0c, 0x63, 0x6f, 0x6d, 0x2e, 0x74, 0x65, 0x73, - 0x74, 0x64, 0x61, 0x74, 0x61, 0x42, 0x12, 0x55, 0x6e, 0x6b, 0x6e, 0x6f, 0x6e, 0x77, 0x6e, 0x70, - 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x35, 0x67, 0x69, 0x74, - 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2f, 0x63, - 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2d, 0x73, 0x64, 0x6b, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x75, 0x74, - 0x69, 0x6c, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x70, 0x75, 0x6c, 0x73, - 0x61, 0x72, 0xa2, 0x02, 0x03, 0x54, 0x58, 0x58, 0xaa, 0x02, 0x08, 0x54, 0x65, 0x73, 0x74, 0x64, - 0x61, 0x74, 0x61, 0xca, 0x02, 0x08, 0x54, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0xe2, 0x02, - 0x14, 0x54, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, - 0x61, 0x64, 0x61, 0x74, 0x61, 0xea, 0x02, 0x08, 0x54, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, - 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x41, 0x6e, 0x79, 0x52, 0x10, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x4f, 0x70, + 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x5a, 0x0a, 0x1e, 0x6e, 0x6f, 0x6e, 0x5f, 0x63, 0x72, 0x69, + 0x74, 0x69, 0x63, 0x61, 0x6c, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, + 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0xff, 0x0f, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, + 0x2e, 0x41, 0x6e, 0x79, 0x52, 0x1b, 0x6e, 0x6f, 0x6e, 0x43, 0x72, 0x69, 0x74, 0x69, 0x63, 0x61, + 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, + 0x73, 0x22, 0xc8, 0x01, 0x0a, 0x13, 0x54, 0x65, 0x73, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, + 0x64, 0x41, 0x75, 0x74, 0x68, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x40, 0x0a, 0x0c, 0x73, 0x69, 0x67, + 0x6e, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, + 0x1d, 0x2e, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2e, 0x74, 0x78, 0x2e, 0x76, 0x31, 0x62, 0x65, + 0x74, 0x61, 0x31, 0x2e, 0x53, 0x69, 0x67, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0b, + 0x73, 0x69, 0x67, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x73, 0x12, 0x28, 0x0a, 0x03, 0x66, + 0x65, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x63, 0x6f, 0x73, 0x6d, 0x6f, + 0x73, 0x2e, 0x74, 0x78, 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x31, 0x2e, 0x46, 0x65, 0x65, + 0x52, 0x03, 0x66, 0x65, 0x65, 0x12, 0x1e, 0x0a, 0x0b, 0x6e, 0x65, 0x77, 0x5f, 0x66, 0x69, 0x65, + 0x6c, 0x64, 0x5f, 0x33, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x09, 0x6e, 0x65, 0x77, 0x46, + 0x69, 0x65, 0x6c, 0x64, 0x33, 0x12, 0x25, 0x0a, 0x0e, 0x6e, 0x65, 0x77, 0x5f, 0x66, 0x69, 0x65, + 0x6c, 0x64, 0x5f, 0x31, 0x30, 0x32, 0x34, 0x18, 0x80, 0x08, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0c, + 0x6e, 0x65, 0x77, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x31, 0x30, 0x32, 0x34, 0x22, 0x27, 0x0a, 0x11, + 0x54, 0x65, 0x73, 0x74, 0x52, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x55, 0x69, 0x6e, 0x74, + 0x73, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x75, 0x6d, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x04, 0x52, + 0x04, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x96, 0x01, 0x0a, 0x0a, 0x63, 0x6f, 0x6d, 0x2e, 0x74, 0x65, + 0x73, 0x74, 0x70, 0x62, 0x42, 0x12, 0x55, 0x6e, 0x6b, 0x6e, 0x6f, 0x6e, 0x77, 0x6e, 0x70, 0x72, + 0x6f, 0x74, 0x6f, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x3c, 0x67, 0x69, 0x74, 0x68, + 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2f, 0x63, 0x6f, + 0x73, 0x6d, 0x6f, 0x73, 0x2d, 0x73, 0x64, 0x6b, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x75, 0x74, 0x69, + 0x6c, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x70, 0x75, 0x6c, 0x73, 0x61, + 0x72, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x70, 0x62, 0xa2, 0x02, 0x03, 0x54, 0x58, 0x58, 0xaa, 0x02, + 0x06, 0x54, 0x65, 0x73, 0x74, 0x70, 0x62, 0xca, 0x02, 0x06, 0x54, 0x65, 0x73, 0x74, 0x70, 0x62, + 0xe2, 0x02, 0x12, 0x54, 0x65, 0x73, 0x74, 0x70, 0x62, 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, + 0x61, 0x64, 0x61, 0x74, 0x61, 0xea, 0x02, 0x06, 0x54, 0x65, 0x73, 0x74, 0x70, 0x62, 0x62, 0x06, + 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( - file_unknonwnproto_proto_rawDescOnce sync.Once - file_unknonwnproto_proto_rawDescData = file_unknonwnproto_proto_rawDesc + file_testpb_unknonwnproto_proto_rawDescOnce sync.Once + file_testpb_unknonwnproto_proto_rawDescData = file_testpb_unknonwnproto_proto_rawDesc ) -func file_unknonwnproto_proto_rawDescGZIP() []byte { - file_unknonwnproto_proto_rawDescOnce.Do(func() { - file_unknonwnproto_proto_rawDescData = protoimpl.X.CompressGZIP(file_unknonwnproto_proto_rawDescData) +func file_testpb_unknonwnproto_proto_rawDescGZIP() []byte { + file_testpb_unknonwnproto_proto_rawDescOnce.Do(func() { + file_testpb_unknonwnproto_proto_rawDescData = protoimpl.X.CompressGZIP(file_testpb_unknonwnproto_proto_rawDescData) }) - return file_unknonwnproto_proto_rawDescData -} - -var file_unknonwnproto_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_unknonwnproto_proto_msgTypes = make([]protoimpl.MessageInfo, 33) -var file_unknonwnproto_proto_goTypes = []interface{}{ - (Customer2_City)(0), // 0: testdata.Customer2.City - (*Customer1)(nil), // 1: testdata.Customer1 - (*Customer2)(nil), // 2: testdata.Customer2 - (*Nested4A)(nil), // 3: testdata.Nested4A - (*Nested3A)(nil), // 4: testdata.Nested3A - (*Nested2A)(nil), // 5: testdata.Nested2A - (*Nested1A)(nil), // 6: testdata.Nested1A - (*Nested4B)(nil), // 7: testdata.Nested4B - (*Nested3B)(nil), // 8: testdata.Nested3B - (*Nested2B)(nil), // 9: testdata.Nested2B - (*Nested1B)(nil), // 10: testdata.Nested1B - (*Customer3)(nil), // 11: testdata.Customer3 - (*TestVersion1)(nil), // 12: testdata.TestVersion1 - (*TestVersion2)(nil), // 13: testdata.TestVersion2 - (*TestVersion3)(nil), // 14: testdata.TestVersion3 - (*TestVersion3LoneOneOfValue)(nil), // 15: testdata.TestVersion3LoneOneOfValue - (*TestVersion3LoneNesting)(nil), // 16: testdata.TestVersion3LoneNesting - (*TestVersion4LoneNesting)(nil), // 17: testdata.TestVersion4LoneNesting - (*TestVersionFD1)(nil), // 18: testdata.TestVersionFD1 - (*TestVersionFD1WithExtraAny)(nil), // 19: testdata.TestVersionFD1WithExtraAny - (*AnyWithExtra)(nil), // 20: testdata.AnyWithExtra - (*TestUpdatedTxRaw)(nil), // 21: testdata.TestUpdatedTxRaw - (*TestUpdatedTxBody)(nil), // 22: testdata.TestUpdatedTxBody - (*TestUpdatedAuthInfo)(nil), // 23: testdata.TestUpdatedAuthInfo - (*TestRepeatedUints)(nil), // 24: testdata.TestRepeatedUints - nil, // 25: testdata.Nested3A.IndexEntry - (*TestVersion3LoneNesting_Inner1)(nil), // 26: testdata.TestVersion3LoneNesting.Inner1 - (*TestVersion3LoneNesting_Inner2)(nil), // 27: testdata.TestVersion3LoneNesting.Inner2 - (*TestVersion3LoneNesting_Inner1_InnerInner)(nil), // 28: testdata.TestVersion3LoneNesting.Inner1.InnerInner - (*TestVersion3LoneNesting_Inner2_InnerInner)(nil), // 29: testdata.TestVersion3LoneNesting.Inner2.InnerInner - (*TestVersion4LoneNesting_Inner1)(nil), // 30: testdata.TestVersion4LoneNesting.Inner1 - (*TestVersion4LoneNesting_Inner2)(nil), // 31: testdata.TestVersion4LoneNesting.Inner2 - (*TestVersion4LoneNesting_Inner1_InnerInner)(nil), // 32: testdata.TestVersion4LoneNesting.Inner1.InnerInner - (*TestVersion4LoneNesting_Inner2_InnerInner)(nil), // 33: testdata.TestVersion4LoneNesting.Inner2.InnerInner + return file_testpb_unknonwnproto_proto_rawDescData +} + +var file_testpb_unknonwnproto_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_testpb_unknonwnproto_proto_msgTypes = make([]protoimpl.MessageInfo, 33) +var file_testpb_unknonwnproto_proto_goTypes = []interface{}{ + (Customer2_City)(0), // 0: testpb.Customer2.City + (*Customer1)(nil), // 1: testpb.Customer1 + (*Customer2)(nil), // 2: testpb.Customer2 + (*Nested4A)(nil), // 3: testpb.Nested4A + (*Nested3A)(nil), // 4: testpb.Nested3A + (*Nested2A)(nil), // 5: testpb.Nested2A + (*Nested1A)(nil), // 6: testpb.Nested1A + (*Nested4B)(nil), // 7: testpb.Nested4B + (*Nested3B)(nil), // 8: testpb.Nested3B + (*Nested2B)(nil), // 9: testpb.Nested2B + (*Nested1B)(nil), // 10: testpb.Nested1B + (*Customer3)(nil), // 11: testpb.Customer3 + (*TestVersion1)(nil), // 12: testpb.TestVersion1 + (*TestVersion2)(nil), // 13: testpb.TestVersion2 + (*TestVersion3)(nil), // 14: testpb.TestVersion3 + (*TestVersion3LoneOneOfValue)(nil), // 15: testpb.TestVersion3LoneOneOfValue + (*TestVersion3LoneNesting)(nil), // 16: testpb.TestVersion3LoneNesting + (*TestVersion4LoneNesting)(nil), // 17: testpb.TestVersion4LoneNesting + (*TestVersionFD1)(nil), // 18: testpb.TestVersionFD1 + (*TestVersionFD1WithExtraAny)(nil), // 19: testpb.TestVersionFD1WithExtraAny + (*AnyWithExtra)(nil), // 20: testpb.AnyWithExtra + (*TestUpdatedTxRaw)(nil), // 21: testpb.TestUpdatedTxRaw + (*TestUpdatedTxBody)(nil), // 22: testpb.TestUpdatedTxBody + (*TestUpdatedAuthInfo)(nil), // 23: testpb.TestUpdatedAuthInfo + (*TestRepeatedUints)(nil), // 24: testpb.TestRepeatedUints + nil, // 25: testpb.Nested3A.IndexEntry + (*TestVersion3LoneNesting_Inner1)(nil), // 26: testpb.TestVersion3LoneNesting.Inner1 + (*TestVersion3LoneNesting_Inner2)(nil), // 27: testpb.TestVersion3LoneNesting.Inner2 + (*TestVersion3LoneNesting_Inner1_InnerInner)(nil), // 28: testpb.TestVersion3LoneNesting.Inner1.InnerInner + (*TestVersion3LoneNesting_Inner2_InnerInner)(nil), // 29: testpb.TestVersion3LoneNesting.Inner2.InnerInner + (*TestVersion4LoneNesting_Inner1)(nil), // 30: testpb.TestVersion4LoneNesting.Inner1 + (*TestVersion4LoneNesting_Inner2)(nil), // 31: testpb.TestVersion4LoneNesting.Inner2 + (*TestVersion4LoneNesting_Inner1_InnerInner)(nil), // 32: testpb.TestVersion4LoneNesting.Inner1.InnerInner + (*TestVersion4LoneNesting_Inner2_InnerInner)(nil), // 33: testpb.TestVersion4LoneNesting.Inner2.InnerInner (*anypb.Any)(nil), // 34: google.protobuf.Any (*v1beta1.SignerInfo)(nil), // 35: cosmos.tx.v1beta1.SignerInfo (*v1beta1.Fee)(nil), // 36: cosmos.tx.v1beta1.Fee } -var file_unknonwnproto_proto_depIdxs = []int32{ - 0, // 0: testdata.Customer2.city:type_name -> testdata.Customer2.City - 34, // 1: testdata.Customer2.miscellaneous:type_name -> google.protobuf.Any - 3, // 2: testdata.Nested3A.a4:type_name -> testdata.Nested4A - 25, // 3: testdata.Nested3A.index:type_name -> testdata.Nested3A.IndexEntry - 4, // 4: testdata.Nested2A.nested:type_name -> testdata.Nested3A - 5, // 5: testdata.Nested1A.nested:type_name -> testdata.Nested2A - 7, // 6: testdata.Nested3B.b4:type_name -> testdata.Nested4B - 8, // 7: testdata.Nested2B.nested:type_name -> testdata.Nested3B - 9, // 8: testdata.Nested1B.nested:type_name -> testdata.Nested2B - 1, // 9: testdata.Customer3.original:type_name -> testdata.Customer1 - 12, // 10: testdata.TestVersion1.a:type_name -> testdata.TestVersion1 - 12, // 11: testdata.TestVersion1.b:type_name -> testdata.TestVersion1 - 12, // 12: testdata.TestVersion1.c:type_name -> testdata.TestVersion1 - 12, // 13: testdata.TestVersion1.d:type_name -> testdata.TestVersion1 - 12, // 14: testdata.TestVersion1.f:type_name -> testdata.TestVersion1 - 34, // 15: testdata.TestVersion1.g:type_name -> google.protobuf.Any - 12, // 16: testdata.TestVersion1.h:type_name -> testdata.TestVersion1 - 1, // 17: testdata.TestVersion1.k:type_name -> testdata.Customer1 - 13, // 18: testdata.TestVersion2.a:type_name -> testdata.TestVersion2 - 13, // 19: testdata.TestVersion2.b:type_name -> testdata.TestVersion2 - 13, // 20: testdata.TestVersion2.c:type_name -> testdata.TestVersion2 - 13, // 21: testdata.TestVersion2.d:type_name -> testdata.TestVersion2 - 13, // 22: testdata.TestVersion2.f:type_name -> testdata.TestVersion2 - 34, // 23: testdata.TestVersion2.g:type_name -> google.protobuf.Any - 12, // 24: testdata.TestVersion2.h:type_name -> testdata.TestVersion1 - 1, // 25: testdata.TestVersion2.k:type_name -> testdata.Customer1 - 14, // 26: testdata.TestVersion3.a:type_name -> testdata.TestVersion3 - 14, // 27: testdata.TestVersion3.b:type_name -> testdata.TestVersion3 - 14, // 28: testdata.TestVersion3.c:type_name -> testdata.TestVersion3 - 14, // 29: testdata.TestVersion3.d:type_name -> testdata.TestVersion3 - 14, // 30: testdata.TestVersion3.f:type_name -> testdata.TestVersion3 - 34, // 31: testdata.TestVersion3.g:type_name -> google.protobuf.Any - 12, // 32: testdata.TestVersion3.h:type_name -> testdata.TestVersion1 - 1, // 33: testdata.TestVersion3.k:type_name -> testdata.Customer1 - 14, // 34: testdata.TestVersion3LoneOneOfValue.a:type_name -> testdata.TestVersion3 - 14, // 35: testdata.TestVersion3LoneOneOfValue.b:type_name -> testdata.TestVersion3 - 14, // 36: testdata.TestVersion3LoneOneOfValue.c:type_name -> testdata.TestVersion3 - 14, // 37: testdata.TestVersion3LoneOneOfValue.d:type_name -> testdata.TestVersion3 - 34, // 38: testdata.TestVersion3LoneOneOfValue.g:type_name -> google.protobuf.Any - 12, // 39: testdata.TestVersion3LoneOneOfValue.h:type_name -> testdata.TestVersion1 - 1, // 40: testdata.TestVersion3LoneOneOfValue.k:type_name -> testdata.Customer1 - 14, // 41: testdata.TestVersion3LoneNesting.a:type_name -> testdata.TestVersion3 - 14, // 42: testdata.TestVersion3LoneNesting.b:type_name -> testdata.TestVersion3 - 14, // 43: testdata.TestVersion3LoneNesting.c:type_name -> testdata.TestVersion3 - 14, // 44: testdata.TestVersion3LoneNesting.d:type_name -> testdata.TestVersion3 - 16, // 45: testdata.TestVersion3LoneNesting.f:type_name -> testdata.TestVersion3LoneNesting - 34, // 46: testdata.TestVersion3LoneNesting.g:type_name -> google.protobuf.Any - 12, // 47: testdata.TestVersion3LoneNesting.h:type_name -> testdata.TestVersion1 - 1, // 48: testdata.TestVersion3LoneNesting.k:type_name -> testdata.Customer1 - 26, // 49: testdata.TestVersion3LoneNesting.inner1:type_name -> testdata.TestVersion3LoneNesting.Inner1 - 27, // 50: testdata.TestVersion3LoneNesting.inner2:type_name -> testdata.TestVersion3LoneNesting.Inner2 - 14, // 51: testdata.TestVersion4LoneNesting.a:type_name -> testdata.TestVersion3 - 14, // 52: testdata.TestVersion4LoneNesting.b:type_name -> testdata.TestVersion3 - 14, // 53: testdata.TestVersion4LoneNesting.c:type_name -> testdata.TestVersion3 - 14, // 54: testdata.TestVersion4LoneNesting.d:type_name -> testdata.TestVersion3 - 16, // 55: testdata.TestVersion4LoneNesting.f:type_name -> testdata.TestVersion3LoneNesting - 34, // 56: testdata.TestVersion4LoneNesting.g:type_name -> google.protobuf.Any - 12, // 57: testdata.TestVersion4LoneNesting.h:type_name -> testdata.TestVersion1 - 1, // 58: testdata.TestVersion4LoneNesting.k:type_name -> testdata.Customer1 - 30, // 59: testdata.TestVersion4LoneNesting.inner1:type_name -> testdata.TestVersion4LoneNesting.Inner1 - 31, // 60: testdata.TestVersion4LoneNesting.inner2:type_name -> testdata.TestVersion4LoneNesting.Inner2 - 12, // 61: testdata.TestVersionFD1.a:type_name -> testdata.TestVersion1 - 12, // 62: testdata.TestVersionFD1.f:type_name -> testdata.TestVersion1 - 34, // 63: testdata.TestVersionFD1.g:type_name -> google.protobuf.Any - 12, // 64: testdata.TestVersionFD1.h:type_name -> testdata.TestVersion1 - 12, // 65: testdata.TestVersionFD1WithExtraAny.a:type_name -> testdata.TestVersion1 - 12, // 66: testdata.TestVersionFD1WithExtraAny.f:type_name -> testdata.TestVersion1 - 20, // 67: testdata.TestVersionFD1WithExtraAny.g:type_name -> testdata.AnyWithExtra - 12, // 68: testdata.TestVersionFD1WithExtraAny.h:type_name -> testdata.TestVersion1 - 34, // 69: testdata.AnyWithExtra.a:type_name -> google.protobuf.Any - 34, // 70: testdata.TestUpdatedTxBody.messages:type_name -> google.protobuf.Any - 34, // 71: testdata.TestUpdatedTxBody.extension_options:type_name -> google.protobuf.Any - 34, // 72: testdata.TestUpdatedTxBody.non_critical_extension_options:type_name -> google.protobuf.Any - 35, // 73: testdata.TestUpdatedAuthInfo.signer_infos:type_name -> cosmos.tx.v1beta1.SignerInfo - 36, // 74: testdata.TestUpdatedAuthInfo.fee:type_name -> cosmos.tx.v1beta1.Fee - 3, // 75: testdata.Nested3A.IndexEntry.value:type_name -> testdata.Nested4A - 28, // 76: testdata.TestVersion3LoneNesting.Inner1.inner:type_name -> testdata.TestVersion3LoneNesting.Inner1.InnerInner - 29, // 77: testdata.TestVersion3LoneNesting.Inner2.inner:type_name -> testdata.TestVersion3LoneNesting.Inner2.InnerInner - 32, // 78: testdata.TestVersion4LoneNesting.Inner1.inner:type_name -> testdata.TestVersion4LoneNesting.Inner1.InnerInner - 33, // 79: testdata.TestVersion4LoneNesting.Inner2.inner:type_name -> testdata.TestVersion4LoneNesting.Inner2.InnerInner +var file_testpb_unknonwnproto_proto_depIdxs = []int32{ + 0, // 0: testpb.Customer2.city:type_name -> testpb.Customer2.City + 34, // 1: testpb.Customer2.miscellaneous:type_name -> google.protobuf.Any + 3, // 2: testpb.Nested3A.a4:type_name -> testpb.Nested4A + 25, // 3: testpb.Nested3A.index:type_name -> testpb.Nested3A.IndexEntry + 4, // 4: testpb.Nested2A.nested:type_name -> testpb.Nested3A + 5, // 5: testpb.Nested1A.nested:type_name -> testpb.Nested2A + 7, // 6: testpb.Nested3B.b4:type_name -> testpb.Nested4B + 8, // 7: testpb.Nested2B.nested:type_name -> testpb.Nested3B + 9, // 8: testpb.Nested1B.nested:type_name -> testpb.Nested2B + 1, // 9: testpb.Customer3.original:type_name -> testpb.Customer1 + 12, // 10: testpb.TestVersion1.a:type_name -> testpb.TestVersion1 + 12, // 11: testpb.TestVersion1.b:type_name -> testpb.TestVersion1 + 12, // 12: testpb.TestVersion1.c:type_name -> testpb.TestVersion1 + 12, // 13: testpb.TestVersion1.d:type_name -> testpb.TestVersion1 + 12, // 14: testpb.TestVersion1.f:type_name -> testpb.TestVersion1 + 34, // 15: testpb.TestVersion1.g:type_name -> google.protobuf.Any + 12, // 16: testpb.TestVersion1.h:type_name -> testpb.TestVersion1 + 1, // 17: testpb.TestVersion1.k:type_name -> testpb.Customer1 + 13, // 18: testpb.TestVersion2.a:type_name -> testpb.TestVersion2 + 13, // 19: testpb.TestVersion2.b:type_name -> testpb.TestVersion2 + 13, // 20: testpb.TestVersion2.c:type_name -> testpb.TestVersion2 + 13, // 21: testpb.TestVersion2.d:type_name -> testpb.TestVersion2 + 13, // 22: testpb.TestVersion2.f:type_name -> testpb.TestVersion2 + 34, // 23: testpb.TestVersion2.g:type_name -> google.protobuf.Any + 12, // 24: testpb.TestVersion2.h:type_name -> testpb.TestVersion1 + 1, // 25: testpb.TestVersion2.k:type_name -> testpb.Customer1 + 14, // 26: testpb.TestVersion3.a:type_name -> testpb.TestVersion3 + 14, // 27: testpb.TestVersion3.b:type_name -> testpb.TestVersion3 + 14, // 28: testpb.TestVersion3.c:type_name -> testpb.TestVersion3 + 14, // 29: testpb.TestVersion3.d:type_name -> testpb.TestVersion3 + 14, // 30: testpb.TestVersion3.f:type_name -> testpb.TestVersion3 + 34, // 31: testpb.TestVersion3.g:type_name -> google.protobuf.Any + 12, // 32: testpb.TestVersion3.h:type_name -> testpb.TestVersion1 + 1, // 33: testpb.TestVersion3.k:type_name -> testpb.Customer1 + 14, // 34: testpb.TestVersion3LoneOneOfValue.a:type_name -> testpb.TestVersion3 + 14, // 35: testpb.TestVersion3LoneOneOfValue.b:type_name -> testpb.TestVersion3 + 14, // 36: testpb.TestVersion3LoneOneOfValue.c:type_name -> testpb.TestVersion3 + 14, // 37: testpb.TestVersion3LoneOneOfValue.d:type_name -> testpb.TestVersion3 + 34, // 38: testpb.TestVersion3LoneOneOfValue.g:type_name -> google.protobuf.Any + 12, // 39: testpb.TestVersion3LoneOneOfValue.h:type_name -> testpb.TestVersion1 + 1, // 40: testpb.TestVersion3LoneOneOfValue.k:type_name -> testpb.Customer1 + 14, // 41: testpb.TestVersion3LoneNesting.a:type_name -> testpb.TestVersion3 + 14, // 42: testpb.TestVersion3LoneNesting.b:type_name -> testpb.TestVersion3 + 14, // 43: testpb.TestVersion3LoneNesting.c:type_name -> testpb.TestVersion3 + 14, // 44: testpb.TestVersion3LoneNesting.d:type_name -> testpb.TestVersion3 + 16, // 45: testpb.TestVersion3LoneNesting.f:type_name -> testpb.TestVersion3LoneNesting + 34, // 46: testpb.TestVersion3LoneNesting.g:type_name -> google.protobuf.Any + 12, // 47: testpb.TestVersion3LoneNesting.h:type_name -> testpb.TestVersion1 + 1, // 48: testpb.TestVersion3LoneNesting.k:type_name -> testpb.Customer1 + 26, // 49: testpb.TestVersion3LoneNesting.inner1:type_name -> testpb.TestVersion3LoneNesting.Inner1 + 27, // 50: testpb.TestVersion3LoneNesting.inner2:type_name -> testpb.TestVersion3LoneNesting.Inner2 + 14, // 51: testpb.TestVersion4LoneNesting.a:type_name -> testpb.TestVersion3 + 14, // 52: testpb.TestVersion4LoneNesting.b:type_name -> testpb.TestVersion3 + 14, // 53: testpb.TestVersion4LoneNesting.c:type_name -> testpb.TestVersion3 + 14, // 54: testpb.TestVersion4LoneNesting.d:type_name -> testpb.TestVersion3 + 16, // 55: testpb.TestVersion4LoneNesting.f:type_name -> testpb.TestVersion3LoneNesting + 34, // 56: testpb.TestVersion4LoneNesting.g:type_name -> google.protobuf.Any + 12, // 57: testpb.TestVersion4LoneNesting.h:type_name -> testpb.TestVersion1 + 1, // 58: testpb.TestVersion4LoneNesting.k:type_name -> testpb.Customer1 + 30, // 59: testpb.TestVersion4LoneNesting.inner1:type_name -> testpb.TestVersion4LoneNesting.Inner1 + 31, // 60: testpb.TestVersion4LoneNesting.inner2:type_name -> testpb.TestVersion4LoneNesting.Inner2 + 12, // 61: testpb.TestVersionFD1.a:type_name -> testpb.TestVersion1 + 12, // 62: testpb.TestVersionFD1.f:type_name -> testpb.TestVersion1 + 34, // 63: testpb.TestVersionFD1.g:type_name -> google.protobuf.Any + 12, // 64: testpb.TestVersionFD1.h:type_name -> testpb.TestVersion1 + 12, // 65: testpb.TestVersionFD1WithExtraAny.a:type_name -> testpb.TestVersion1 + 12, // 66: testpb.TestVersionFD1WithExtraAny.f:type_name -> testpb.TestVersion1 + 20, // 67: testpb.TestVersionFD1WithExtraAny.g:type_name -> testpb.AnyWithExtra + 12, // 68: testpb.TestVersionFD1WithExtraAny.h:type_name -> testpb.TestVersion1 + 34, // 69: testpb.AnyWithExtra.a:type_name -> google.protobuf.Any + 34, // 70: testpb.TestUpdatedTxBody.messages:type_name -> google.protobuf.Any + 34, // 71: testpb.TestUpdatedTxBody.extension_options:type_name -> google.protobuf.Any + 34, // 72: testpb.TestUpdatedTxBody.non_critical_extension_options:type_name -> google.protobuf.Any + 35, // 73: testpb.TestUpdatedAuthInfo.signer_infos:type_name -> cosmos.tx.v1beta1.SignerInfo + 36, // 74: testpb.TestUpdatedAuthInfo.fee:type_name -> cosmos.tx.v1beta1.Fee + 3, // 75: testpb.Nested3A.IndexEntry.value:type_name -> testpb.Nested4A + 28, // 76: testpb.TestVersion3LoneNesting.Inner1.inner:type_name -> testpb.TestVersion3LoneNesting.Inner1.InnerInner + 29, // 77: testpb.TestVersion3LoneNesting.Inner2.inner:type_name -> testpb.TestVersion3LoneNesting.Inner2.InnerInner + 32, // 78: testpb.TestVersion4LoneNesting.Inner1.inner:type_name -> testpb.TestVersion4LoneNesting.Inner1.InnerInner + 33, // 79: testpb.TestVersion4LoneNesting.Inner2.inner:type_name -> testpb.TestVersion4LoneNesting.Inner2.InnerInner 80, // [80:80] is the sub-list for method output_type 80, // [80:80] is the sub-list for method input_type 80, // [80:80] is the sub-list for extension type_name @@ -27603,13 +27595,13 @@ var file_unknonwnproto_proto_depIdxs = []int32{ 0, // [0:80] is the sub-list for field type_name } -func init() { file_unknonwnproto_proto_init() } -func file_unknonwnproto_proto_init() { - if File_unknonwnproto_proto != nil { +func init() { file_testpb_unknonwnproto_proto_init() } +func file_testpb_unknonwnproto_proto_init() { + if File_testpb_unknonwnproto_proto != nil { return } if !protoimpl.UnsafeEnabled { - file_unknonwnproto_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_testpb_unknonwnproto_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Customer1); i { case 0: return &v.state @@ -27621,7 +27613,7 @@ func file_unknonwnproto_proto_init() { return nil } } - file_unknonwnproto_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_testpb_unknonwnproto_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Customer2); i { case 0: return &v.state @@ -27633,7 +27625,7 @@ func file_unknonwnproto_proto_init() { return nil } } - file_unknonwnproto_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_testpb_unknonwnproto_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Nested4A); i { case 0: return &v.state @@ -27645,7 +27637,7 @@ func file_unknonwnproto_proto_init() { return nil } } - file_unknonwnproto_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_testpb_unknonwnproto_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Nested3A); i { case 0: return &v.state @@ -27657,7 +27649,7 @@ func file_unknonwnproto_proto_init() { return nil } } - file_unknonwnproto_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_testpb_unknonwnproto_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Nested2A); i { case 0: return &v.state @@ -27669,7 +27661,7 @@ func file_unknonwnproto_proto_init() { return nil } } - file_unknonwnproto_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_testpb_unknonwnproto_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Nested1A); i { case 0: return &v.state @@ -27681,7 +27673,7 @@ func file_unknonwnproto_proto_init() { return nil } } - file_unknonwnproto_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_testpb_unknonwnproto_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Nested4B); i { case 0: return &v.state @@ -27693,7 +27685,7 @@ func file_unknonwnproto_proto_init() { return nil } } - file_unknonwnproto_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_testpb_unknonwnproto_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Nested3B); i { case 0: return &v.state @@ -27705,7 +27697,7 @@ func file_unknonwnproto_proto_init() { return nil } } - file_unknonwnproto_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { + file_testpb_unknonwnproto_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Nested2B); i { case 0: return &v.state @@ -27717,7 +27709,7 @@ func file_unknonwnproto_proto_init() { return nil } } - file_unknonwnproto_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { + file_testpb_unknonwnproto_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Nested1B); i { case 0: return &v.state @@ -27729,7 +27721,7 @@ func file_unknonwnproto_proto_init() { return nil } } - file_unknonwnproto_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { + file_testpb_unknonwnproto_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Customer3); i { case 0: return &v.state @@ -27741,7 +27733,7 @@ func file_unknonwnproto_proto_init() { return nil } } - file_unknonwnproto_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { + file_testpb_unknonwnproto_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*TestVersion1); i { case 0: return &v.state @@ -27753,7 +27745,7 @@ func file_unknonwnproto_proto_init() { return nil } } - file_unknonwnproto_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { + file_testpb_unknonwnproto_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*TestVersion2); i { case 0: return &v.state @@ -27765,7 +27757,7 @@ func file_unknonwnproto_proto_init() { return nil } } - file_unknonwnproto_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} { + file_testpb_unknonwnproto_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*TestVersion3); i { case 0: return &v.state @@ -27777,7 +27769,7 @@ func file_unknonwnproto_proto_init() { return nil } } - file_unknonwnproto_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} { + file_testpb_unknonwnproto_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*TestVersion3LoneOneOfValue); i { case 0: return &v.state @@ -27789,7 +27781,7 @@ func file_unknonwnproto_proto_init() { return nil } } - file_unknonwnproto_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} { + file_testpb_unknonwnproto_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*TestVersion3LoneNesting); i { case 0: return &v.state @@ -27801,7 +27793,7 @@ func file_unknonwnproto_proto_init() { return nil } } - file_unknonwnproto_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} { + file_testpb_unknonwnproto_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*TestVersion4LoneNesting); i { case 0: return &v.state @@ -27813,7 +27805,7 @@ func file_unknonwnproto_proto_init() { return nil } } - file_unknonwnproto_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} { + file_testpb_unknonwnproto_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*TestVersionFD1); i { case 0: return &v.state @@ -27825,7 +27817,7 @@ func file_unknonwnproto_proto_init() { return nil } } - file_unknonwnproto_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} { + file_testpb_unknonwnproto_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*TestVersionFD1WithExtraAny); i { case 0: return &v.state @@ -27837,7 +27829,7 @@ func file_unknonwnproto_proto_init() { return nil } } - file_unknonwnproto_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} { + file_testpb_unknonwnproto_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AnyWithExtra); i { case 0: return &v.state @@ -27849,7 +27841,7 @@ func file_unknonwnproto_proto_init() { return nil } } - file_unknonwnproto_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} { + file_testpb_unknonwnproto_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*TestUpdatedTxRaw); i { case 0: return &v.state @@ -27861,7 +27853,7 @@ func file_unknonwnproto_proto_init() { return nil } } - file_unknonwnproto_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} { + file_testpb_unknonwnproto_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*TestUpdatedTxBody); i { case 0: return &v.state @@ -27873,7 +27865,7 @@ func file_unknonwnproto_proto_init() { return nil } } - file_unknonwnproto_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} { + file_testpb_unknonwnproto_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*TestUpdatedAuthInfo); i { case 0: return &v.state @@ -27885,7 +27877,7 @@ func file_unknonwnproto_proto_init() { return nil } } - file_unknonwnproto_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} { + file_testpb_unknonwnproto_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*TestRepeatedUints); i { case 0: return &v.state @@ -27897,7 +27889,7 @@ func file_unknonwnproto_proto_init() { return nil } } - file_unknonwnproto_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} { + file_testpb_unknonwnproto_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*TestVersion3LoneNesting_Inner1); i { case 0: return &v.state @@ -27909,7 +27901,7 @@ func file_unknonwnproto_proto_init() { return nil } } - file_unknonwnproto_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} { + file_testpb_unknonwnproto_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*TestVersion3LoneNesting_Inner2); i { case 0: return &v.state @@ -27921,7 +27913,7 @@ func file_unknonwnproto_proto_init() { return nil } } - file_unknonwnproto_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} { + file_testpb_unknonwnproto_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*TestVersion3LoneNesting_Inner1_InnerInner); i { case 0: return &v.state @@ -27933,7 +27925,7 @@ func file_unknonwnproto_proto_init() { return nil } } - file_unknonwnproto_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} { + file_testpb_unknonwnproto_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*TestVersion3LoneNesting_Inner2_InnerInner); i { case 0: return &v.state @@ -27945,7 +27937,7 @@ func file_unknonwnproto_proto_init() { return nil } } - file_unknonwnproto_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} { + file_testpb_unknonwnproto_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*TestVersion4LoneNesting_Inner1); i { case 0: return &v.state @@ -27957,7 +27949,7 @@ func file_unknonwnproto_proto_init() { return nil } } - file_unknonwnproto_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} { + file_testpb_unknonwnproto_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*TestVersion4LoneNesting_Inner2); i { case 0: return &v.state @@ -27969,7 +27961,7 @@ func file_unknonwnproto_proto_init() { return nil } } - file_unknonwnproto_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} { + file_testpb_unknonwnproto_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*TestVersion4LoneNesting_Inner1_InnerInner); i { case 0: return &v.state @@ -27981,7 +27973,7 @@ func file_unknonwnproto_proto_init() { return nil } } - file_unknonwnproto_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} { + file_testpb_unknonwnproto_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*TestVersion4LoneNesting_Inner2_InnerInner); i { case 0: return &v.state @@ -27994,36 +27986,36 @@ func file_unknonwnproto_proto_init() { } } } - file_unknonwnproto_proto_msgTypes[10].OneofWrappers = []interface{}{ + file_testpb_unknonwnproto_proto_msgTypes[10].OneofWrappers = []interface{}{ (*Customer3_CreditCardNo)(nil), (*Customer3_ChequeNo)(nil), } - file_unknonwnproto_proto_msgTypes[11].OneofWrappers = []interface{}{ + file_testpb_unknonwnproto_proto_msgTypes[11].OneofWrappers = []interface{}{ (*TestVersion1_E)(nil), (*TestVersion1_F)(nil), } - file_unknonwnproto_proto_msgTypes[12].OneofWrappers = []interface{}{ + file_testpb_unknonwnproto_proto_msgTypes[12].OneofWrappers = []interface{}{ (*TestVersion2_E)(nil), (*TestVersion2_F)(nil), } - file_unknonwnproto_proto_msgTypes[13].OneofWrappers = []interface{}{ + file_testpb_unknonwnproto_proto_msgTypes[13].OneofWrappers = []interface{}{ (*TestVersion3_E)(nil), (*TestVersion3_F)(nil), } - file_unknonwnproto_proto_msgTypes[14].OneofWrappers = []interface{}{ + file_testpb_unknonwnproto_proto_msgTypes[14].OneofWrappers = []interface{}{ (*TestVersion3LoneOneOfValue_E)(nil), } - file_unknonwnproto_proto_msgTypes[15].OneofWrappers = []interface{}{ + file_testpb_unknonwnproto_proto_msgTypes[15].OneofWrappers = []interface{}{ (*TestVersion3LoneNesting_F)(nil), } - file_unknonwnproto_proto_msgTypes[16].OneofWrappers = []interface{}{ + file_testpb_unknonwnproto_proto_msgTypes[16].OneofWrappers = []interface{}{ (*TestVersion4LoneNesting_F)(nil), } - file_unknonwnproto_proto_msgTypes[17].OneofWrappers = []interface{}{ + file_testpb_unknonwnproto_proto_msgTypes[17].OneofWrappers = []interface{}{ (*TestVersionFD1_E)(nil), (*TestVersionFD1_F)(nil), } - file_unknonwnproto_proto_msgTypes[18].OneofWrappers = []interface{}{ + file_testpb_unknonwnproto_proto_msgTypes[18].OneofWrappers = []interface{}{ (*TestVersionFD1WithExtraAny_E)(nil), (*TestVersionFD1WithExtraAny_F)(nil), } @@ -28031,19 +28023,19 @@ func file_unknonwnproto_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_unknonwnproto_proto_rawDesc, + RawDescriptor: file_testpb_unknonwnproto_proto_rawDesc, NumEnums: 1, NumMessages: 33, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_unknonwnproto_proto_goTypes, - DependencyIndexes: file_unknonwnproto_proto_depIdxs, - EnumInfos: file_unknonwnproto_proto_enumTypes, - MessageInfos: file_unknonwnproto_proto_msgTypes, + GoTypes: file_testpb_unknonwnproto_proto_goTypes, + DependencyIndexes: file_testpb_unknonwnproto_proto_depIdxs, + EnumInfos: file_testpb_unknonwnproto_proto_enumTypes, + MessageInfos: file_testpb_unknonwnproto_proto_msgTypes, }.Build() - File_unknonwnproto_proto = out.File - file_unknonwnproto_proto_rawDesc = nil - file_unknonwnproto_proto_goTypes = nil - file_unknonwnproto_proto_depIdxs = nil + File_testpb_unknonwnproto_proto = out.File + file_testpb_unknonwnproto_proto_rawDesc = nil + file_testpb_unknonwnproto_proto_goTypes = nil + file_testpb_unknonwnproto_proto_depIdxs = nil } diff --git a/testutil/testdata/tx.pb.go b/testutil/testdata/tx.pb.go index d291b1ee1563..9f7abdf9b75c 100644 --- a/testutil/testdata/tx.pb.go +++ b/testutil/testdata/tx.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: tx.proto +// source: testpb/tx.proto package testdata @@ -36,7 +36,7 @@ func (m *MsgCreateDog) Reset() { *m = MsgCreateDog{} } func (m *MsgCreateDog) String() string { return proto.CompactTextString(m) } func (*MsgCreateDog) ProtoMessage() {} func (*MsgCreateDog) Descriptor() ([]byte, []int) { - return fileDescriptor_0fd2153dc07d3b5c, []int{0} + return fileDescriptor_1c54006dba274b2e, []int{0} } func (m *MsgCreateDog) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -80,7 +80,7 @@ func (m *MsgCreateDogResponse) Reset() { *m = MsgCreateDogResponse{} } func (m *MsgCreateDogResponse) String() string { return proto.CompactTextString(m) } func (*MsgCreateDogResponse) ProtoMessage() {} func (*MsgCreateDogResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0fd2153dc07d3b5c, []int{1} + return fileDescriptor_1c54006dba274b2e, []int{1} } func (m *MsgCreateDogResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -126,7 +126,7 @@ func (m *TestMsg) Reset() { *m = TestMsg{} } func (m *TestMsg) String() string { return proto.CompactTextString(m) } func (*TestMsg) ProtoMessage() {} func (*TestMsg) Descriptor() ([]byte, []int) { - return fileDescriptor_0fd2153dc07d3b5c, []int{2} + return fileDescriptor_1c54006dba274b2e, []int{2} } func (m *TestMsg) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -156,32 +156,32 @@ func (m *TestMsg) XXX_DiscardUnknown() { var xxx_messageInfo_TestMsg proto.InternalMessageInfo func init() { - proto.RegisterType((*MsgCreateDog)(nil), "testdata.MsgCreateDog") - proto.RegisterType((*MsgCreateDogResponse)(nil), "testdata.MsgCreateDogResponse") - proto.RegisterType((*TestMsg)(nil), "testdata.TestMsg") -} - -func init() { proto.RegisterFile("tx.proto", fileDescriptor_0fd2153dc07d3b5c) } - -var fileDescriptor_0fd2153dc07d3b5c = []byte{ - // 258 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0x28, 0xa9, 0xd0, 0x2b, - 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x28, 0x49, 0x2d, 0x2e, 0x49, 0x49, 0x2c, 0x49, 0x94, 0x12, - 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0x0b, 0xea, 0x83, 0x58, 0x10, 0x79, 0x29, 0x3e, 0x98, 0x3c, 0x84, - 0xaf, 0xa4, 0xcf, 0xc5, 0xe3, 0x5b, 0x9c, 0xee, 0x5c, 0x94, 0x9a, 0x58, 0x92, 0xea, 0x92, 0x9f, - 0x2e, 0x24, 0xcf, 0xc5, 0x9c, 0x92, 0x9f, 0x2e, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, 0x6d, 0xc4, 0xab, - 0x07, 0x57, 0xed, 0x92, 0x9f, 0x1e, 0x04, 0x92, 0x51, 0xd2, 0xe2, 0x12, 0x41, 0xd6, 0x10, 0x94, - 0x5a, 0x5c, 0x90, 0x9f, 0x57, 0x9c, 0x2a, 0x24, 0xc4, 0xc5, 0x92, 0x97, 0x98, 0x9b, 0x0a, 0xd6, - 0xc9, 0x19, 0x04, 0x66, 0x2b, 0x69, 0x72, 0xb1, 0x87, 0xa4, 0x16, 0x97, 0xf8, 0x16, 0xa7, 0x0b, - 0x49, 0x70, 0xb1, 0x17, 0x67, 0xa6, 0xe7, 0xa5, 0x16, 0x15, 0x4b, 0x30, 0x2a, 0x30, 0x6b, 0x70, - 0x06, 0xc1, 0xb8, 0x56, 0x2c, 0x1d, 0x0b, 0xe4, 0x19, 0x8c, 0xbc, 0xb8, 0x98, 0x41, 0xca, 0x9c, - 0xb9, 0x38, 0x11, 0x6e, 0x11, 0x43, 0x58, 0x8f, 0x6c, 0xa5, 0x94, 0x1c, 0x76, 0x71, 0x98, 0x53, - 0x9c, 0x3c, 0x4e, 0x3c, 0x92, 0x63, 0xbc, 0xf0, 0x48, 0x8e, 0xf1, 0xc1, 0x23, 0x39, 0xc6, 0x09, - 0x8f, 0xe5, 0x18, 0x2e, 0x3c, 0x96, 0x63, 0xb8, 0xf1, 0x58, 0x8e, 0x21, 0x4a, 0x2f, 0x3d, 0xb3, - 0x24, 0xa3, 0x34, 0x49, 0x2f, 0x39, 0x3f, 0x57, 0x3f, 0x39, 0xbf, 0x38, 0x37, 0xbf, 0x18, 0x4a, - 0xe9, 0x16, 0xa7, 0x64, 0xeb, 0x83, 0x4c, 0x2d, 0x2d, 0xc9, 0xcc, 0xd1, 0x87, 0x19, 0x9f, 0xc4, - 0x06, 0x0e, 0x24, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0x15, 0x63, 0x9a, 0x1b, 0x60, 0x01, - 0x00, 0x00, + proto.RegisterType((*MsgCreateDog)(nil), "testpb.MsgCreateDog") + proto.RegisterType((*MsgCreateDogResponse)(nil), "testpb.MsgCreateDogResponse") + proto.RegisterType((*TestMsg)(nil), "testpb.TestMsg") +} + +func init() { proto.RegisterFile("testpb/tx.proto", fileDescriptor_1c54006dba274b2e) } + +var fileDescriptor_1c54006dba274b2e = []byte{ + // 265 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0x2f, 0x49, 0x2d, 0x2e, + 0x29, 0x48, 0xd2, 0x2f, 0xa9, 0xd0, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x62, 0x83, 0x08, 0x48, + 0x89, 0xa4, 0xe7, 0xa7, 0xe7, 0x83, 0x85, 0xf4, 0x41, 0x2c, 0x88, 0xac, 0x94, 0x28, 0x4c, 0x79, + 0x6a, 0x71, 0x49, 0x4a, 0x62, 0x49, 0x22, 0x44, 0x58, 0x49, 0x97, 0x8b, 0xc7, 0xb7, 0x38, 0xdd, + 0xb9, 0x28, 0x35, 0xb1, 0x24, 0xd5, 0x25, 0x3f, 0x5d, 0x48, 0x96, 0x8b, 0x39, 0x25, 0x3f, 0x5d, + 0x82, 0x51, 0x81, 0x51, 0x83, 0xdb, 0x88, 0x5b, 0x0f, 0xa2, 0x49, 0xcf, 0x25, 0x3f, 0x3d, 0x08, + 0x24, 0xae, 0xa4, 0xc5, 0x25, 0x82, 0xac, 0x3c, 0x28, 0xb5, 0xb8, 0x20, 0x3f, 0xaf, 0x38, 0x55, + 0x48, 0x88, 0x8b, 0x25, 0x2f, 0x31, 0x37, 0x15, 0xac, 0x8f, 0x33, 0x08, 0xcc, 0x56, 0xd2, 0xe4, + 0x62, 0x0f, 0x49, 0x2d, 0x2e, 0xf1, 0x2d, 0x4e, 0x17, 0x92, 0xe0, 0x62, 0x2f, 0xce, 0x4c, 0xcf, + 0x4b, 0x2d, 0x2a, 0x96, 0x60, 0x54, 0x60, 0xd6, 0xe0, 0x0c, 0x82, 0x71, 0xad, 0x58, 0x3a, 0x16, + 0xc8, 0x33, 0x18, 0xb9, 0x71, 0x31, 0x83, 0x94, 0xd9, 0x73, 0x71, 0x22, 0x5c, 0x22, 0x02, 0xb3, + 0x1c, 0xd9, 0x42, 0x29, 0x19, 0x6c, 0xa2, 0x30, 0x67, 0x38, 0x79, 0x9c, 0x78, 0x24, 0xc7, 0x78, + 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x13, 0x1e, 0xcb, 0x31, 0x5c, 0x78, 0x2c, 0xc7, + 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x5e, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, + 0xae, 0x7e, 0x72, 0x7e, 0x71, 0x6e, 0x7e, 0x31, 0x94, 0xd2, 0x2d, 0x4e, 0xc9, 0x06, 0x07, 0x4a, + 0x69, 0x49, 0x66, 0x0e, 0x3c, 0x74, 0x92, 0xd8, 0xc0, 0xc1, 0x63, 0x0c, 0x08, 0x00, 0x00, 0xff, + 0xff, 0xd5, 0x7f, 0x29, 0x59, 0x66, 0x01, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -209,7 +209,7 @@ func NewMsgClient(cc grpc1.ClientConn) MsgClient { func (c *msgClient) CreateDog(ctx context.Context, in *MsgCreateDog, opts ...grpc.CallOption) (*MsgCreateDogResponse, error) { out := new(MsgCreateDogResponse) - err := c.cc.Invoke(ctx, "/testdata.Msg/CreateDog", in, out, opts...) + err := c.cc.Invoke(ctx, "/testpb.Msg/CreateDog", in, out, opts...) if err != nil { return nil, err } @@ -243,7 +243,7 @@ func _Msg_CreateDog_Handler(srv interface{}, ctx context.Context, dec func(inter } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/testdata.Msg/CreateDog", + FullMethod: "/testpb.Msg/CreateDog", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).CreateDog(ctx, req.(*MsgCreateDog)) @@ -252,7 +252,7 @@ func _Msg_CreateDog_Handler(srv interface{}, ctx context.Context, dec func(inter } var _Msg_serviceDesc = grpc.ServiceDesc{ - ServiceName: "testdata.Msg", + ServiceName: "testpb.Msg", HandlerType: (*MsgServer)(nil), Methods: []grpc.MethodDesc{ { @@ -261,7 +261,7 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "tx.proto", + Metadata: "testpb/tx.proto", } func (m *MsgCreateDog) Marshal() (dAtA []byte, err error) { diff --git a/testutil/testdata/unknonwnproto.pb.go b/testutil/testdata/unknonwnproto.pb.go index 7e9f2b13039a..3522a7253598 100644 --- a/testutil/testdata/unknonwnproto.pb.go +++ b/testutil/testdata/unknonwnproto.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: unknonwnproto.proto +// source: testpb/unknonwnproto.proto package testdata @@ -57,7 +57,7 @@ func (x Customer2_City) String() string { } func (Customer2_City) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_448ea787339d1228, []int{1, 0} + return fileDescriptor_fe4560133be9209a, []int{1, 0} } type Customer1 struct { @@ -71,7 +71,7 @@ func (m *Customer1) Reset() { *m = Customer1{} } func (m *Customer1) String() string { return proto.CompactTextString(m) } func (*Customer1) ProtoMessage() {} func (*Customer1) Descriptor() ([]byte, []int) { - return fileDescriptor_448ea787339d1228, []int{0} + return fileDescriptor_fe4560133be9209a, []int{0} } func (m *Customer1) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -134,7 +134,7 @@ type Customer2 struct { Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"` Fewer float32 `protobuf:"fixed32,4,opt,name=fewer,proto3" json:"fewer,omitempty"` Reserved int64 `protobuf:"varint,1047,opt,name=reserved,proto3" json:"reserved,omitempty"` - City Customer2_City `protobuf:"varint,6,opt,name=city,proto3,enum=testdata.Customer2_City" json:"city,omitempty"` + City Customer2_City `protobuf:"varint,6,opt,name=city,proto3,enum=testpb.Customer2_City" json:"city,omitempty"` Miscellaneous *types.Any `protobuf:"bytes,10,opt,name=miscellaneous,proto3" json:"miscellaneous,omitempty"` } @@ -142,7 +142,7 @@ func (m *Customer2) Reset() { *m = Customer2{} } func (m *Customer2) String() string { return proto.CompactTextString(m) } func (*Customer2) ProtoMessage() {} func (*Customer2) Descriptor() ([]byte, []int) { - return fileDescriptor_448ea787339d1228, []int{1} + return fileDescriptor_fe4560133be9209a, []int{1} } func (m *Customer2) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -229,7 +229,7 @@ func (m *Nested4A) Reset() { *m = Nested4A{} } func (m *Nested4A) String() string { return proto.CompactTextString(m) } func (*Nested4A) ProtoMessage() {} func (*Nested4A) Descriptor() ([]byte, []int) { - return fileDescriptor_448ea787339d1228, []int{2} + return fileDescriptor_fe4560133be9209a, []int{2} } func (m *Nested4A) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -283,7 +283,7 @@ func (m *Nested3A) Reset() { *m = Nested3A{} } func (m *Nested3A) String() string { return proto.CompactTextString(m) } func (*Nested3A) ProtoMessage() {} func (*Nested3A) Descriptor() ([]byte, []int) { - return fileDescriptor_448ea787339d1228, []int{3} + return fileDescriptor_fe4560133be9209a, []int{3} } func (m *Nested3A) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -350,7 +350,7 @@ func (m *Nested2A) Reset() { *m = Nested2A{} } func (m *Nested2A) String() string { return proto.CompactTextString(m) } func (*Nested2A) ProtoMessage() {} func (*Nested2A) Descriptor() ([]byte, []int) { - return fileDescriptor_448ea787339d1228, []int{4} + return fileDescriptor_fe4560133be9209a, []int{4} } func (m *Nested2A) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -409,7 +409,7 @@ func (m *Nested1A) Reset() { *m = Nested1A{} } func (m *Nested1A) String() string { return proto.CompactTextString(m) } func (*Nested1A) ProtoMessage() {} func (*Nested1A) Descriptor() ([]byte, []int) { - return fileDescriptor_448ea787339d1228, []int{5} + return fileDescriptor_fe4560133be9209a, []int{5} } func (m *Nested1A) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -462,7 +462,7 @@ func (m *Nested4B) Reset() { *m = Nested4B{} } func (m *Nested4B) String() string { return proto.CompactTextString(m) } func (*Nested4B) ProtoMessage() {} func (*Nested4B) Descriptor() ([]byte, []int) { - return fileDescriptor_448ea787339d1228, []int{6} + return fileDescriptor_fe4560133be9209a, []int{6} } func (m *Nested4B) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -523,7 +523,7 @@ func (m *Nested3B) Reset() { *m = Nested3B{} } func (m *Nested3B) String() string { return proto.CompactTextString(m) } func (*Nested3B) ProtoMessage() {} func (*Nested3B) Descriptor() ([]byte, []int) { - return fileDescriptor_448ea787339d1228, []int{7} + return fileDescriptor_fe4560133be9209a, []int{7} } func (m *Nested3B) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -591,7 +591,7 @@ func (m *Nested2B) Reset() { *m = Nested2B{} } func (m *Nested2B) String() string { return proto.CompactTextString(m) } func (*Nested2B) ProtoMessage() {} func (*Nested2B) Descriptor() ([]byte, []int) { - return fileDescriptor_448ea787339d1228, []int{8} + return fileDescriptor_fe4560133be9209a, []int{8} } func (m *Nested2B) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -658,7 +658,7 @@ func (m *Nested1B) Reset() { *m = Nested1B{} } func (m *Nested1B) String() string { return proto.CompactTextString(m) } func (*Nested1B) ProtoMessage() {} func (*Nested1B) Descriptor() ([]byte, []int) { - return fileDescriptor_448ea787339d1228, []int{9} + return fileDescriptor_fe4560133be9209a, []int{9} } func (m *Nested1B) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -726,7 +726,7 @@ func (m *Customer3) Reset() { *m = Customer3{} } func (m *Customer3) String() string { return proto.CompactTextString(m) } func (*Customer3) ProtoMessage() {} func (*Customer3) Descriptor() ([]byte, []int) { - return fileDescriptor_448ea787339d1228, []int{10} + return fileDescriptor_fe4560133be9209a, []int{10} } func (m *Customer3) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -864,7 +864,7 @@ func (m *TestVersion1) Reset() { *m = TestVersion1{} } func (m *TestVersion1) String() string { return proto.CompactTextString(m) } func (*TestVersion1) ProtoMessage() {} func (*TestVersion1) Descriptor() ([]byte, []int) { - return fileDescriptor_448ea787339d1228, []int{11} + return fileDescriptor_fe4560133be9209a, []int{11} } func (m *TestVersion1) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1010,7 +1010,7 @@ func (m *TestVersion2) Reset() { *m = TestVersion2{} } func (m *TestVersion2) String() string { return proto.CompactTextString(m) } func (*TestVersion2) ProtoMessage() {} func (*TestVersion2) Descriptor() ([]byte, []int) { - return fileDescriptor_448ea787339d1228, []int{12} + return fileDescriptor_fe4560133be9209a, []int{12} } func (m *TestVersion2) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1163,7 +1163,7 @@ func (m *TestVersion3) Reset() { *m = TestVersion3{} } func (m *TestVersion3) String() string { return proto.CompactTextString(m) } func (*TestVersion3) ProtoMessage() {} func (*TestVersion3) Descriptor() ([]byte, []int) { - return fileDescriptor_448ea787339d1228, []int{13} + return fileDescriptor_fe4560133be9209a, []int{13} } func (m *TestVersion3) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1315,7 +1315,7 @@ func (m *TestVersion3LoneOneOfValue) Reset() { *m = TestVersion3LoneOneO func (m *TestVersion3LoneOneOfValue) String() string { return proto.CompactTextString(m) } func (*TestVersion3LoneOneOfValue) ProtoMessage() {} func (*TestVersion3LoneOneOfValue) Descriptor() ([]byte, []int) { - return fileDescriptor_448ea787339d1228, []int{14} + return fileDescriptor_fe4560133be9209a, []int{14} } func (m *TestVersion3LoneOneOfValue) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1457,7 +1457,7 @@ func (m *TestVersion3LoneNesting) Reset() { *m = TestVersion3LoneNesting func (m *TestVersion3LoneNesting) String() string { return proto.CompactTextString(m) } func (*TestVersion3LoneNesting) ProtoMessage() {} func (*TestVersion3LoneNesting) Descriptor() ([]byte, []int) { - return fileDescriptor_448ea787339d1228, []int{15} + return fileDescriptor_fe4560133be9209a, []int{15} } func (m *TestVersion3LoneNesting) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1599,7 +1599,7 @@ func (m *TestVersion3LoneNesting_Inner1) Reset() { *m = TestVersion3Lone func (m *TestVersion3LoneNesting_Inner1) String() string { return proto.CompactTextString(m) } func (*TestVersion3LoneNesting_Inner1) ProtoMessage() {} func (*TestVersion3LoneNesting_Inner1) Descriptor() ([]byte, []int) { - return fileDescriptor_448ea787339d1228, []int{15, 0} + return fileDescriptor_fe4560133be9209a, []int{15, 0} } func (m *TestVersion3LoneNesting_Inner1) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1662,7 +1662,7 @@ func (m *TestVersion3LoneNesting_Inner1_InnerInner) String() string { } func (*TestVersion3LoneNesting_Inner1_InnerInner) ProtoMessage() {} func (*TestVersion3LoneNesting_Inner1_InnerInner) Descriptor() ([]byte, []int) { - return fileDescriptor_448ea787339d1228, []int{15, 0, 0} + return fileDescriptor_fe4560133be9209a, []int{15, 0, 0} } func (m *TestVersion3LoneNesting_Inner1_InnerInner) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1715,7 +1715,7 @@ func (m *TestVersion3LoneNesting_Inner2) Reset() { *m = TestVersion3Lone func (m *TestVersion3LoneNesting_Inner2) String() string { return proto.CompactTextString(m) } func (*TestVersion3LoneNesting_Inner2) ProtoMessage() {} func (*TestVersion3LoneNesting_Inner2) Descriptor() ([]byte, []int) { - return fileDescriptor_448ea787339d1228, []int{15, 1} + return fileDescriptor_fe4560133be9209a, []int{15, 1} } func (m *TestVersion3LoneNesting_Inner2) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1778,7 +1778,7 @@ func (m *TestVersion3LoneNesting_Inner2_InnerInner) String() string { } func (*TestVersion3LoneNesting_Inner2_InnerInner) ProtoMessage() {} func (*TestVersion3LoneNesting_Inner2_InnerInner) Descriptor() ([]byte, []int) { - return fileDescriptor_448ea787339d1228, []int{15, 1, 0} + return fileDescriptor_fe4560133be9209a, []int{15, 1, 0} } func (m *TestVersion3LoneNesting_Inner2_InnerInner) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1845,7 +1845,7 @@ func (m *TestVersion4LoneNesting) Reset() { *m = TestVersion4LoneNesting func (m *TestVersion4LoneNesting) String() string { return proto.CompactTextString(m) } func (*TestVersion4LoneNesting) ProtoMessage() {} func (*TestVersion4LoneNesting) Descriptor() ([]byte, []int) { - return fileDescriptor_448ea787339d1228, []int{16} + return fileDescriptor_fe4560133be9209a, []int{16} } func (m *TestVersion4LoneNesting) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1987,7 +1987,7 @@ func (m *TestVersion4LoneNesting_Inner1) Reset() { *m = TestVersion4Lone func (m *TestVersion4LoneNesting_Inner1) String() string { return proto.CompactTextString(m) } func (*TestVersion4LoneNesting_Inner1) ProtoMessage() {} func (*TestVersion4LoneNesting_Inner1) Descriptor() ([]byte, []int) { - return fileDescriptor_448ea787339d1228, []int{16, 0} + return fileDescriptor_fe4560133be9209a, []int{16, 0} } func (m *TestVersion4LoneNesting_Inner1) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2050,7 +2050,7 @@ func (m *TestVersion4LoneNesting_Inner1_InnerInner) String() string { } func (*TestVersion4LoneNesting_Inner1_InnerInner) ProtoMessage() {} func (*TestVersion4LoneNesting_Inner1_InnerInner) Descriptor() ([]byte, []int) { - return fileDescriptor_448ea787339d1228, []int{16, 0, 0} + return fileDescriptor_fe4560133be9209a, []int{16, 0, 0} } func (m *TestVersion4LoneNesting_Inner1_InnerInner) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2103,7 +2103,7 @@ func (m *TestVersion4LoneNesting_Inner2) Reset() { *m = TestVersion4Lone func (m *TestVersion4LoneNesting_Inner2) String() string { return proto.CompactTextString(m) } func (*TestVersion4LoneNesting_Inner2) ProtoMessage() {} func (*TestVersion4LoneNesting_Inner2) Descriptor() ([]byte, []int) { - return fileDescriptor_448ea787339d1228, []int{16, 1} + return fileDescriptor_fe4560133be9209a, []int{16, 1} } func (m *TestVersion4LoneNesting_Inner2) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2166,7 +2166,7 @@ func (m *TestVersion4LoneNesting_Inner2_InnerInner) String() string { } func (*TestVersion4LoneNesting_Inner2_InnerInner) ProtoMessage() {} func (*TestVersion4LoneNesting_Inner2_InnerInner) Descriptor() ([]byte, []int) { - return fileDescriptor_448ea787339d1228, []int{16, 1, 0} + return fileDescriptor_fe4560133be9209a, []int{16, 1, 0} } func (m *TestVersion4LoneNesting_Inner2_InnerInner) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2225,7 +2225,7 @@ func (m *TestVersionFD1) Reset() { *m = TestVersionFD1{} } func (m *TestVersionFD1) String() string { return proto.CompactTextString(m) } func (*TestVersionFD1) ProtoMessage() {} func (*TestVersionFD1) Descriptor() ([]byte, []int) { - return fileDescriptor_448ea787339d1228, []int{17} + return fileDescriptor_fe4560133be9209a, []int{17} } func (m *TestVersionFD1) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2343,7 +2343,7 @@ func (m *TestVersionFD1WithExtraAny) Reset() { *m = TestVersionFD1WithEx func (m *TestVersionFD1WithExtraAny) String() string { return proto.CompactTextString(m) } func (*TestVersionFD1WithExtraAny) ProtoMessage() {} func (*TestVersionFD1WithExtraAny) Descriptor() ([]byte, []int) { - return fileDescriptor_448ea787339d1228, []int{18} + return fileDescriptor_fe4560133be9209a, []int{18} } func (m *TestVersionFD1WithExtraAny) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2455,7 +2455,7 @@ func (m *AnyWithExtra) Reset() { *m = AnyWithExtra{} } func (m *AnyWithExtra) String() string { return proto.CompactTextString(m) } func (*AnyWithExtra) ProtoMessage() {} func (*AnyWithExtra) Descriptor() ([]byte, []int) { - return fileDescriptor_448ea787339d1228, []int{19} + return fileDescriptor_fe4560133be9209a, []int{19} } func (m *AnyWithExtra) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2510,7 +2510,7 @@ func (m *TestUpdatedTxRaw) Reset() { *m = TestUpdatedTxRaw{} } func (m *TestUpdatedTxRaw) String() string { return proto.CompactTextString(m) } func (*TestUpdatedTxRaw) ProtoMessage() {} func (*TestUpdatedTxRaw) Descriptor() ([]byte, []int) { - return fileDescriptor_448ea787339d1228, []int{20} + return fileDescriptor_fe4560133be9209a, []int{20} } func (m *TestUpdatedTxRaw) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2588,7 +2588,7 @@ func (m *TestUpdatedTxBody) Reset() { *m = TestUpdatedTxBody{} } func (m *TestUpdatedTxBody) String() string { return proto.CompactTextString(m) } func (*TestUpdatedTxBody) ProtoMessage() {} func (*TestUpdatedTxBody) Descriptor() ([]byte, []int) { - return fileDescriptor_448ea787339d1228, []int{21} + return fileDescriptor_fe4560133be9209a, []int{21} } func (m *TestUpdatedTxBody) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2677,7 +2677,7 @@ func (m *TestUpdatedAuthInfo) Reset() { *m = TestUpdatedAuthInfo{} } func (m *TestUpdatedAuthInfo) String() string { return proto.CompactTextString(m) } func (*TestUpdatedAuthInfo) ProtoMessage() {} func (*TestUpdatedAuthInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_448ea787339d1228, []int{22} + return fileDescriptor_fe4560133be9209a, []int{22} } func (m *TestUpdatedAuthInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2742,7 +2742,7 @@ func (m *TestRepeatedUints) Reset() { *m = TestRepeatedUints{} } func (m *TestRepeatedUints) String() string { return proto.CompactTextString(m) } func (*TestRepeatedUints) ProtoMessage() {} func (*TestRepeatedUints) Descriptor() ([]byte, []int) { - return fileDescriptor_448ea787339d1228, []int{23} + return fileDescriptor_fe4560133be9209a, []int{23} } func (m *TestRepeatedUints) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2779,149 +2779,149 @@ func (m *TestRepeatedUints) GetNums() []uint64 { } func init() { - proto.RegisterEnum("testdata.Customer2_City", Customer2_City_name, Customer2_City_value) - proto.RegisterType((*Customer1)(nil), "testdata.Customer1") - proto.RegisterType((*Customer2)(nil), "testdata.Customer2") - proto.RegisterType((*Nested4A)(nil), "testdata.Nested4A") - proto.RegisterType((*Nested3A)(nil), "testdata.Nested3A") - proto.RegisterMapType((map[int64]*Nested4A)(nil), "testdata.Nested3A.IndexEntry") - proto.RegisterType((*Nested2A)(nil), "testdata.Nested2A") - proto.RegisterType((*Nested1A)(nil), "testdata.Nested1A") - proto.RegisterType((*Nested4B)(nil), "testdata.Nested4B") - proto.RegisterType((*Nested3B)(nil), "testdata.Nested3B") - proto.RegisterType((*Nested2B)(nil), "testdata.Nested2B") - proto.RegisterType((*Nested1B)(nil), "testdata.Nested1B") - proto.RegisterType((*Customer3)(nil), "testdata.Customer3") - proto.RegisterType((*TestVersion1)(nil), "testdata.TestVersion1") - proto.RegisterType((*TestVersion2)(nil), "testdata.TestVersion2") - proto.RegisterType((*TestVersion3)(nil), "testdata.TestVersion3") - proto.RegisterType((*TestVersion3LoneOneOfValue)(nil), "testdata.TestVersion3LoneOneOfValue") - proto.RegisterType((*TestVersion3LoneNesting)(nil), "testdata.TestVersion3LoneNesting") - proto.RegisterType((*TestVersion3LoneNesting_Inner1)(nil), "testdata.TestVersion3LoneNesting.Inner1") - proto.RegisterType((*TestVersion3LoneNesting_Inner1_InnerInner)(nil), "testdata.TestVersion3LoneNesting.Inner1.InnerInner") - proto.RegisterType((*TestVersion3LoneNesting_Inner2)(nil), "testdata.TestVersion3LoneNesting.Inner2") - proto.RegisterType((*TestVersion3LoneNesting_Inner2_InnerInner)(nil), "testdata.TestVersion3LoneNesting.Inner2.InnerInner") - proto.RegisterType((*TestVersion4LoneNesting)(nil), "testdata.TestVersion4LoneNesting") - proto.RegisterType((*TestVersion4LoneNesting_Inner1)(nil), "testdata.TestVersion4LoneNesting.Inner1") - proto.RegisterType((*TestVersion4LoneNesting_Inner1_InnerInner)(nil), "testdata.TestVersion4LoneNesting.Inner1.InnerInner") - proto.RegisterType((*TestVersion4LoneNesting_Inner2)(nil), "testdata.TestVersion4LoneNesting.Inner2") - proto.RegisterType((*TestVersion4LoneNesting_Inner2_InnerInner)(nil), "testdata.TestVersion4LoneNesting.Inner2.InnerInner") - proto.RegisterType((*TestVersionFD1)(nil), "testdata.TestVersionFD1") - proto.RegisterType((*TestVersionFD1WithExtraAny)(nil), "testdata.TestVersionFD1WithExtraAny") - proto.RegisterType((*AnyWithExtra)(nil), "testdata.AnyWithExtra") - proto.RegisterType((*TestUpdatedTxRaw)(nil), "testdata.TestUpdatedTxRaw") - proto.RegisterType((*TestUpdatedTxBody)(nil), "testdata.TestUpdatedTxBody") - proto.RegisterType((*TestUpdatedAuthInfo)(nil), "testdata.TestUpdatedAuthInfo") - proto.RegisterType((*TestRepeatedUints)(nil), "testdata.TestRepeatedUints") -} - -func init() { proto.RegisterFile("unknonwnproto.proto", fileDescriptor_448ea787339d1228) } - -var fileDescriptor_448ea787339d1228 = []byte{ - // 1644 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x59, 0x4f, 0x6f, 0x1b, 0xc7, - 0x15, 0xd7, 0x70, 0x49, 0x89, 0x7c, 0xa2, 0x69, 0x66, 0x6c, 0xb4, 0x1b, 0x3a, 0x66, 0x98, 0x85, - 0xeb, 0xb0, 0x41, 0x43, 0x9a, 0x4b, 0x06, 0x28, 0x72, 0x32, 0xe9, 0x58, 0x95, 0x01, 0x57, 0x2e, - 0xa6, 0x4e, 0x5a, 0xf8, 0x42, 0x2c, 0xb9, 0x43, 0x72, 0x21, 0x72, 0x46, 0xdd, 0x99, 0xb5, 0xc8, - 0x5b, 0xd1, 0x1e, 0x7a, 0xcd, 0xa5, 0x28, 0xd0, 0x6f, 0xd0, 0x53, 0x91, 0x6f, 0xd0, 0xa3, 0x2f, - 0x05, 0x7c, 0x29, 0x50, 0xa0, 0x40, 0x50, 0xd8, 0xd7, 0x7e, 0x83, 0xa2, 0x48, 0x31, 0xb3, 0x7f, - 0xb8, 0x94, 0x44, 0x85, 0x52, 0xda, 0x18, 0x02, 0x72, 0x11, 0x67, 0xde, 0xfe, 0xe6, 0xcd, 0x7b, - 0xbf, 0xf7, 0x67, 0x77, 0x46, 0x70, 0x23, 0x60, 0x87, 0x8c, 0xb3, 0x63, 0x76, 0xe4, 0x73, 0xc9, - 0x1b, 0xfa, 0x2f, 0xce, 0x4b, 0x2a, 0xa4, 0xeb, 0x48, 0xa7, 0x72, 0x73, 0xcc, 0xc7, 0x5c, 0x0b, - 0x9b, 0x6a, 0x14, 0x3e, 0xaf, 0xbc, 0x3d, 0xe6, 0x7c, 0x3c, 0xa5, 0x4d, 0x3d, 0x1b, 0x04, 0xa3, - 0xa6, 0xc3, 0x16, 0xd1, 0xa3, 0xca, 0x90, 0x8b, 0x19, 0x17, 0x4d, 0x39, 0x6f, 0x3e, 0x6f, 0x0d, - 0xa8, 0x74, 0x5a, 0x4d, 0x39, 0x0f, 0x9f, 0x59, 0x12, 0x0a, 0x0f, 0x02, 0x21, 0xf9, 0x8c, 0xfa, - 0x2d, 0x5c, 0x82, 0x8c, 0xe7, 0x9a, 0xa8, 0x86, 0xea, 0x39, 0x92, 0xf1, 0x5c, 0x8c, 0x21, 0xcb, - 0x9c, 0x19, 0x35, 0x33, 0x35, 0x54, 0x2f, 0x10, 0x3d, 0xc6, 0x3f, 0x84, 0xb2, 0x08, 0x06, 0x62, - 0xe8, 0x7b, 0x47, 0xd2, 0xe3, 0xac, 0x3f, 0xa2, 0xd4, 0x34, 0x6a, 0xa8, 0x9e, 0x21, 0xd7, 0xd3, - 0xf2, 0x3d, 0x4a, 0xb1, 0x09, 0x3b, 0x47, 0xce, 0x62, 0x46, 0x99, 0x34, 0x77, 0xb4, 0x86, 0x78, - 0x6a, 0x7d, 0x91, 0x59, 0x6e, 0x6b, 0x9f, 0xda, 0xb6, 0x02, 0x79, 0x8f, 0xb9, 0x81, 0x90, 0xfe, - 0x42, 0x6f, 0x9d, 0x23, 0xc9, 0x3c, 0x31, 0xc9, 0x48, 0x99, 0x74, 0x13, 0x72, 0x23, 0x7a, 0x4c, - 0x7d, 0x33, 0xab, 0xed, 0x08, 0x27, 0xf8, 0x16, 0xe4, 0x7d, 0x2a, 0xa8, 0xff, 0x9c, 0xba, 0xe6, - 0x1f, 0xf2, 0x35, 0x54, 0x37, 0x48, 0x22, 0xc0, 0x3f, 0x82, 0xec, 0xd0, 0x93, 0x0b, 0x73, 0xbb, - 0x86, 0xea, 0x25, 0xdb, 0x6c, 0xc4, 0xe4, 0x36, 0x12, 0xab, 0x1a, 0x0f, 0x3c, 0xb9, 0x20, 0x1a, - 0x85, 0x3f, 0x86, 0x6b, 0x33, 0x4f, 0x0c, 0xe9, 0x74, 0xea, 0x30, 0xca, 0x03, 0x61, 0x42, 0x0d, - 0xd5, 0x77, 0xed, 0x9b, 0x8d, 0x90, 0xf3, 0x46, 0xcc, 0x79, 0xa3, 0xcb, 0x16, 0x64, 0x15, 0x6a, - 0xfd, 0x04, 0xb2, 0x4a, 0x13, 0xce, 0x43, 0xf6, 0xb1, 0xc3, 0x45, 0x79, 0x0b, 0x97, 0x00, 0x1e, - 0x73, 0xd1, 0x65, 0x63, 0x3a, 0xa5, 0xa2, 0x8c, 0x70, 0x11, 0xf2, 0x3f, 0x73, 0xa6, 0xbc, 0x3b, - 0x95, 0xbc, 0x9c, 0xc1, 0x00, 0xdb, 0x3f, 0xe5, 0x62, 0xc8, 0x8f, 0xcb, 0x06, 0xde, 0x85, 0x9d, - 0x03, 0xc7, 0xf3, 0xf9, 0xc0, 0x2b, 0x67, 0xad, 0x06, 0xe4, 0x0f, 0xa8, 0x90, 0xd4, 0xed, 0x74, - 0x37, 0x09, 0x94, 0xf5, 0x37, 0x14, 0x2f, 0x68, 0x6f, 0xb4, 0x00, 0x5b, 0x90, 0x71, 0x3a, 0x66, - 0xb6, 0x66, 0xd4, 0x77, 0x6d, 0xbc, 0x64, 0x24, 0xde, 0x94, 0x64, 0x9c, 0x0e, 0x6e, 0x43, 0xce, - 0x63, 0x2e, 0x9d, 0x9b, 0x39, 0x0d, 0xbb, 0x7d, 0x12, 0xd6, 0xee, 0x36, 0x1e, 0xa9, 0xe7, 0x0f, - 0x99, 0xf4, 0x17, 0x24, 0xc4, 0x56, 0x1e, 0x03, 0x2c, 0x85, 0xb8, 0x0c, 0xc6, 0x21, 0x5d, 0x68, - 0x5b, 0x0c, 0xa2, 0x86, 0xb8, 0x0e, 0xb9, 0xe7, 0xce, 0x34, 0x08, 0xad, 0x39, 0x7b, 0xef, 0x10, - 0xf0, 0x71, 0xe6, 0xc7, 0xc8, 0x7a, 0x16, 0xbb, 0x65, 0x6f, 0xe6, 0xd6, 0x07, 0xb0, 0xcd, 0x34, - 0x5e, 0xe7, 0xcc, 0x19, 0xea, 0xdb, 0x5d, 0x12, 0x21, 0xac, 0xbd, 0x58, 0x77, 0xeb, 0xb4, 0xee, - 0xa5, 0x9e, 0x35, 0x66, 0xda, 0x4b, 0x3d, 0xf7, 0x93, 0x58, 0xf5, 0x4e, 0xe9, 0x29, 0x83, 0xe1, - 0x8c, 0x69, 0x94, 0xd8, 0x6a, 0x78, 0x56, 0x4e, 0x5b, 0x6e, 0x12, 0xbc, 0x4b, 0x6a, 0x50, 0xe1, - 0x1c, 0xac, 0x0f, 0x67, 0x8f, 0x64, 0x06, 0x1d, 0x8b, 0x25, 0x5c, 0x9e, 0xb9, 0x8b, 0xaa, 0x6d, - 0xb5, 0x0b, 0x22, 0x6a, 0xb8, 0x01, 0x93, 0xbd, 0x98, 0x01, 0x55, 0x93, 0x3e, 0x0f, 0x24, 0xd5, - 0x35, 0x59, 0x20, 0xe1, 0xc4, 0xfa, 0x65, 0xc2, 0x6f, 0xef, 0x12, 0xfc, 0x2e, 0xb5, 0x47, 0x0c, - 0x18, 0x09, 0x03, 0xd6, 0x6f, 0x52, 0x1d, 0xa5, 0xbd, 0x51, 0x5e, 0x94, 0x20, 0x23, 0x46, 0x51, - 0xeb, 0xca, 0x88, 0x11, 0x7e, 0x07, 0x0a, 0x22, 0xf0, 0x87, 0x13, 0xc7, 0x1f, 0xd3, 0xa8, 0x93, - 0x2c, 0x05, 0xb8, 0x06, 0xbb, 0x2e, 0x15, 0xd2, 0x63, 0x8e, 0xea, 0x6e, 0x66, 0x4e, 0x2b, 0x4a, - 0x8b, 0xf0, 0x5d, 0x28, 0x0d, 0x7d, 0xea, 0x7a, 0xb2, 0x3f, 0x74, 0x7c, 0xb7, 0xcf, 0x78, 0xd8, - 0xf4, 0xf6, 0xb7, 0x48, 0x31, 0x94, 0x3f, 0x70, 0x7c, 0xf7, 0x80, 0xe3, 0xdb, 0x50, 0x18, 0x4e, - 0xe8, 0xaf, 0x02, 0xaa, 0x20, 0xf9, 0x08, 0x92, 0x0f, 0x45, 0x07, 0x1c, 0x37, 0x21, 0xcf, 0x7d, - 0x6f, 0xec, 0x31, 0x67, 0x6a, 0x16, 0x34, 0x11, 0x37, 0x4e, 0x77, 0xa7, 0x16, 0x49, 0x40, 0xbd, - 0x42, 0xd2, 0x65, 0xad, 0x7f, 0x65, 0xa0, 0xf8, 0x94, 0x0a, 0xf9, 0x19, 0xf5, 0x85, 0xc7, 0x59, - 0x0b, 0x17, 0x01, 0xcd, 0xa3, 0x4a, 0x43, 0x73, 0x7c, 0x07, 0x90, 0x13, 0x91, 0xfb, 0xbd, 0xa5, - 0xce, 0xf4, 0x02, 0x82, 0x1c, 0x85, 0x1a, 0x44, 0x01, 0x5e, 0x8b, 0x1a, 0x28, 0xd4, 0x30, 0x4a, - 0xae, 0xb5, 0xa8, 0x21, 0xfe, 0x00, 0x90, 0x1b, 0xb5, 0x8a, 0x35, 0xa8, 0x5e, 0xf6, 0xc5, 0x97, - 0xef, 0x6e, 0x11, 0xe4, 0xe2, 0x12, 0x20, 0xaa, 0xfb, 0x71, 0x6e, 0x7f, 0x8b, 0x20, 0x8a, 0xef, - 0x02, 0x1a, 0x69, 0x0a, 0xd7, 0xae, 0x55, 0xb8, 0x11, 0xb6, 0x00, 0x8d, 0x35, 0x8f, 0xeb, 0x1a, - 0x32, 0x1a, 0x2b, 0x6b, 0x27, 0x66, 0xe1, 0x7c, 0x6b, 0x27, 0xf8, 0x7d, 0x40, 0x87, 0x66, 0x71, - 0x2d, 0xe7, 0xbd, 0xec, 0xcb, 0x2f, 0xdf, 0x45, 0x04, 0x1d, 0xf6, 0x72, 0x60, 0x88, 0x60, 0x66, - 0xfd, 0xd6, 0x58, 0xa1, 0xdb, 0xbe, 0x28, 0xdd, 0xf6, 0x46, 0x74, 0xdb, 0x1b, 0xd1, 0x6d, 0x2b, - 0xba, 0xef, 0x7c, 0x1d, 0xdd, 0xf6, 0xa5, 0x88, 0xb6, 0xdf, 0x14, 0xd1, 0xf8, 0x16, 0x14, 0x18, - 0x3d, 0xee, 0x8f, 0x3c, 0x3a, 0x75, 0xcd, 0xb7, 0x6b, 0xa8, 0x9e, 0x25, 0x79, 0x46, 0x8f, 0xf7, - 0xd4, 0x3c, 0x8e, 0xc2, 0xef, 0x57, 0xa3, 0xd0, 0xbe, 0x68, 0x14, 0xda, 0x1b, 0x45, 0xa1, 0xbd, - 0x51, 0x14, 0xda, 0x1b, 0x45, 0xa1, 0x7d, 0xa9, 0x28, 0xb4, 0xdf, 0x58, 0x14, 0x3e, 0x04, 0xcc, - 0x38, 0xeb, 0x0f, 0x7d, 0x4f, 0x7a, 0x43, 0x67, 0x1a, 0x85, 0xe3, 0x77, 0xba, 0x77, 0x91, 0x32, - 0xe3, 0xec, 0x41, 0xf4, 0x64, 0x25, 0x2e, 0xff, 0xce, 0x40, 0x25, 0x6d, 0xfe, 0x63, 0xce, 0xe8, - 0x13, 0x46, 0x9f, 0x8c, 0x3e, 0x53, 0xaf, 0xf2, 0x2b, 0x1a, 0xa5, 0x2b, 0xc3, 0xfe, 0x7f, 0xb6, - 0xe1, 0xfb, 0x27, 0xd9, 0x3f, 0xd0, 0x6f, 0xab, 0xf1, 0x15, 0xa1, 0xbe, 0xb5, 0x2c, 0x88, 0xf7, - 0xce, 0x46, 0xa5, 0x7c, 0xba, 0x22, 0xb5, 0x81, 0xef, 0xc3, 0xb6, 0xc7, 0x18, 0xf5, 0x5b, 0x66, - 0x49, 0x2b, 0xaf, 0x7f, 0xad, 0x67, 0x8d, 0x47, 0x1a, 0x4f, 0xa2, 0x75, 0x89, 0x06, 0xdb, 0xbc, - 0x7e, 0x21, 0x0d, 0x76, 0xa4, 0xc1, 0xae, 0xfc, 0x09, 0xc1, 0x76, 0xa8, 0x34, 0xf5, 0x9d, 0x64, - 0xac, 0xfd, 0x4e, 0x7a, 0xa4, 0x3e, 0xf9, 0x19, 0xf5, 0xa3, 0xe8, 0xb7, 0x37, 0xb5, 0x38, 0xfc, - 0xd1, 0x7f, 0x48, 0xa8, 0xa1, 0x72, 0x4f, 0x1d, 0x04, 0x62, 0x61, 0x6a, 0xf3, 0x42, 0xbc, 0xb9, - 0x3e, 0x93, 0x45, 0x9b, 0xab, 0x71, 0xe5, 0xcf, 0xb1, 0xad, 0xf6, 0x29, 0xb8, 0x09, 0x3b, 0x43, - 0x1e, 0xb0, 0xf8, 0x90, 0x58, 0x20, 0xf1, 0xf4, 0xb2, 0x16, 0xdb, 0xff, 0x0b, 0x8b, 0xe3, 0xfa, - 0xfb, 0x6a, 0xb5, 0xfe, 0x3a, 0xdf, 0xd5, 0xdf, 0x15, 0xaa, 0xbf, 0xce, 0x37, 0xae, 0xbf, 0xce, - 0xb7, 0x5c, 0x7f, 0x9d, 0x6f, 0x54, 0x7f, 0xc6, 0xda, 0xfa, 0xfb, 0xe2, 0xff, 0x56, 0x7f, 0x9d, - 0x8d, 0xea, 0xcf, 0x3e, 0xb7, 0xfe, 0x6e, 0xa6, 0x2f, 0x0e, 0x8c, 0xe8, 0x92, 0x20, 0xae, 0xc0, - 0xbf, 0x22, 0x28, 0xa5, 0xf6, 0xdb, 0xfb, 0xe4, 0x72, 0xc7, 0xa1, 0x37, 0x7e, 0x2c, 0x89, 0xfd, - 0xf9, 0x07, 0x5a, 0xf9, 0x9e, 0xda, 0xfb, 0xa4, 0xf5, 0x0b, 0x4f, 0x4e, 0x1e, 0xce, 0xa5, 0xef, - 0x74, 0xd9, 0xe2, 0x5b, 0xf5, 0xed, 0xce, 0xd2, 0xb7, 0x14, 0xae, 0xcb, 0x16, 0x89, 0x45, 0x17, - 0xf6, 0xee, 0x29, 0x14, 0xd3, 0xeb, 0x71, 0x5d, 0x39, 0x80, 0xd6, 0xd3, 0x17, 0x77, 0x00, 0x47, - 0x39, 0x1e, 0x76, 0x46, 0x43, 0x75, 0xc0, 0x62, 0xd8, 0x01, 0xf5, 0x6c, 0x68, 0xfd, 0x05, 0x41, - 0x59, 0x6d, 0xf8, 0xe9, 0x91, 0xeb, 0x48, 0xea, 0x3e, 0x9d, 0x13, 0xe7, 0x18, 0xdf, 0x06, 0x18, - 0x70, 0x77, 0xd1, 0x1f, 0x2c, 0x24, 0x15, 0x7a, 0x8f, 0x22, 0x29, 0x28, 0x49, 0x4f, 0x09, 0xf0, - 0x5d, 0xb8, 0xee, 0x04, 0x72, 0xd2, 0xf7, 0xd8, 0x88, 0x47, 0x98, 0x8c, 0xc6, 0x5c, 0x53, 0xe2, - 0x47, 0x6c, 0xc4, 0x43, 0x5c, 0x15, 0x40, 0x78, 0x63, 0xe6, 0xc8, 0xc0, 0xa7, 0xc2, 0x34, 0x6a, - 0x46, 0xbd, 0x48, 0x52, 0x12, 0x5c, 0x85, 0xdd, 0xe4, 0xec, 0xd2, 0xff, 0x48, 0xdf, 0x18, 0x14, - 0x49, 0x21, 0x3e, 0xbd, 0x7c, 0x84, 0x7f, 0x00, 0xa5, 0xe5, 0xf3, 0xd6, 0x3d, 0xbb, 0x63, 0xfe, - 0x3a, 0xaf, 0x31, 0xc5, 0x18, 0xa3, 0x84, 0xd6, 0xe7, 0x06, 0xbc, 0xb5, 0xe2, 0x42, 0x8f, 0xbb, - 0x0b, 0x7c, 0x0f, 0xf2, 0x33, 0x2a, 0x84, 0x33, 0xd6, 0x1e, 0x18, 0x6b, 0x93, 0x2c, 0x41, 0xa9, - 0xea, 0x9e, 0xd1, 0x19, 0x8f, 0xab, 0x5b, 0x8d, 0x95, 0x09, 0xd2, 0x9b, 0x51, 0x1e, 0xc8, 0xfe, - 0x84, 0x7a, 0xe3, 0x89, 0x8c, 0x78, 0xbc, 0x16, 0x49, 0xf7, 0xb5, 0x10, 0xdf, 0x81, 0x92, 0xe0, - 0x33, 0xda, 0x5f, 0x1e, 0xc5, 0xb2, 0xfa, 0x28, 0x56, 0x54, 0xd2, 0x83, 0xc8, 0x58, 0xbc, 0x0f, - 0xef, 0xad, 0xa2, 0xfa, 0x67, 0x34, 0xe6, 0x3f, 0x86, 0x8d, 0xf9, 0x9d, 0xf4, 0xca, 0x83, 0x93, - 0x4d, 0xba, 0x07, 0x6f, 0xd1, 0xb9, 0xa4, 0x4c, 0xe5, 0x48, 0x9f, 0xeb, 0xeb, 0x64, 0x61, 0x7e, - 0xb5, 0x73, 0x8e, 0x9b, 0xe5, 0x04, 0xff, 0x24, 0x84, 0xe3, 0x67, 0x50, 0x5d, 0xd9, 0xfe, 0x0c, - 0x85, 0xd7, 0xcf, 0x51, 0x78, 0x2b, 0xf5, 0xe6, 0x78, 0x78, 0x42, 0xb7, 0xf5, 0x02, 0xc1, 0x8d, - 0x54, 0x48, 0xba, 0x51, 0x5a, 0xe0, 0xfb, 0x50, 0x54, 0xf1, 0xa7, 0xbe, 0xce, 0x9d, 0x38, 0x30, - 0xb7, 0x1b, 0xe1, 0xf5, 0x7b, 0x43, 0xce, 0x1b, 0xd1, 0xf5, 0x7b, 0xe3, 0xe7, 0x1a, 0xa6, 0x16, - 0x91, 0x5d, 0x91, 0x8c, 0x05, 0xae, 0x2f, 0xef, 0xdc, 0x54, 0xd1, 0x9c, 0x5e, 0xb8, 0x47, 0x69, - 0x78, 0x17, 0xb7, 0x92, 0x5d, 0x6d, 0x1d, 0xb7, 0x54, 0x76, 0xb5, 0x37, 0xcd, 0xae, 0xf7, 0xc3, - 0xe4, 0x22, 0xf4, 0x88, 0x2a, 0x57, 0x3e, 0xf5, 0x98, 0xd4, 0xa9, 0xc2, 0x82, 0x59, 0x68, 0x7f, - 0x96, 0xe8, 0x71, 0x6f, 0xff, 0xc5, 0xab, 0x2a, 0x7a, 0xf9, 0xaa, 0x8a, 0xfe, 0xf9, 0xaa, 0x8a, - 0x3e, 0x7f, 0x5d, 0xdd, 0x7a, 0xf9, 0xba, 0xba, 0xf5, 0xf7, 0xd7, 0xd5, 0xad, 0x67, 0x8d, 0xb1, - 0x27, 0x27, 0xc1, 0xa0, 0x31, 0xe4, 0xb3, 0x66, 0xf4, 0x8f, 0x86, 0xf0, 0xe7, 0x43, 0xe1, 0x1e, - 0x36, 0x55, 0xdd, 0x07, 0xd2, 0x9b, 0x36, 0xe3, 0x06, 0x30, 0xd8, 0xd6, 0x44, 0xb7, 0xff, 0x1b, - 0x00, 0x00, 0xff, 0xff, 0xa6, 0x69, 0x10, 0x33, 0xe6, 0x18, 0x00, 0x00, + proto.RegisterEnum("testpb.Customer2_City", Customer2_City_name, Customer2_City_value) + proto.RegisterType((*Customer1)(nil), "testpb.Customer1") + proto.RegisterType((*Customer2)(nil), "testpb.Customer2") + proto.RegisterType((*Nested4A)(nil), "testpb.Nested4A") + proto.RegisterType((*Nested3A)(nil), "testpb.Nested3A") + proto.RegisterMapType((map[int64]*Nested4A)(nil), "testpb.Nested3A.IndexEntry") + proto.RegisterType((*Nested2A)(nil), "testpb.Nested2A") + proto.RegisterType((*Nested1A)(nil), "testpb.Nested1A") + proto.RegisterType((*Nested4B)(nil), "testpb.Nested4B") + proto.RegisterType((*Nested3B)(nil), "testpb.Nested3B") + proto.RegisterType((*Nested2B)(nil), "testpb.Nested2B") + proto.RegisterType((*Nested1B)(nil), "testpb.Nested1B") + proto.RegisterType((*Customer3)(nil), "testpb.Customer3") + proto.RegisterType((*TestVersion1)(nil), "testpb.TestVersion1") + proto.RegisterType((*TestVersion2)(nil), "testpb.TestVersion2") + proto.RegisterType((*TestVersion3)(nil), "testpb.TestVersion3") + proto.RegisterType((*TestVersion3LoneOneOfValue)(nil), "testpb.TestVersion3LoneOneOfValue") + proto.RegisterType((*TestVersion3LoneNesting)(nil), "testpb.TestVersion3LoneNesting") + proto.RegisterType((*TestVersion3LoneNesting_Inner1)(nil), "testpb.TestVersion3LoneNesting.Inner1") + proto.RegisterType((*TestVersion3LoneNesting_Inner1_InnerInner)(nil), "testpb.TestVersion3LoneNesting.Inner1.InnerInner") + proto.RegisterType((*TestVersion3LoneNesting_Inner2)(nil), "testpb.TestVersion3LoneNesting.Inner2") + proto.RegisterType((*TestVersion3LoneNesting_Inner2_InnerInner)(nil), "testpb.TestVersion3LoneNesting.Inner2.InnerInner") + proto.RegisterType((*TestVersion4LoneNesting)(nil), "testpb.TestVersion4LoneNesting") + proto.RegisterType((*TestVersion4LoneNesting_Inner1)(nil), "testpb.TestVersion4LoneNesting.Inner1") + proto.RegisterType((*TestVersion4LoneNesting_Inner1_InnerInner)(nil), "testpb.TestVersion4LoneNesting.Inner1.InnerInner") + proto.RegisterType((*TestVersion4LoneNesting_Inner2)(nil), "testpb.TestVersion4LoneNesting.Inner2") + proto.RegisterType((*TestVersion4LoneNesting_Inner2_InnerInner)(nil), "testpb.TestVersion4LoneNesting.Inner2.InnerInner") + proto.RegisterType((*TestVersionFD1)(nil), "testpb.TestVersionFD1") + proto.RegisterType((*TestVersionFD1WithExtraAny)(nil), "testpb.TestVersionFD1WithExtraAny") + proto.RegisterType((*AnyWithExtra)(nil), "testpb.AnyWithExtra") + proto.RegisterType((*TestUpdatedTxRaw)(nil), "testpb.TestUpdatedTxRaw") + proto.RegisterType((*TestUpdatedTxBody)(nil), "testpb.TestUpdatedTxBody") + proto.RegisterType((*TestUpdatedAuthInfo)(nil), "testpb.TestUpdatedAuthInfo") + proto.RegisterType((*TestRepeatedUints)(nil), "testpb.TestRepeatedUints") +} + +func init() { proto.RegisterFile("testpb/unknonwnproto.proto", fileDescriptor_fe4560133be9209a) } + +var fileDescriptor_fe4560133be9209a = []byte{ + // 1641 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x58, 0x4f, 0x8f, 0x1a, 0xc9, + 0x15, 0x9f, 0xa2, 0x81, 0x81, 0x37, 0x18, 0xe3, 0xca, 0x68, 0xd3, 0x8b, 0xd7, 0x98, 0xb4, 0x76, + 0x1d, 0x12, 0xc9, 0x60, 0x1a, 0x56, 0x8a, 0xf6, 0x10, 0x2d, 0xd8, 0x9e, 0x1d, 0x47, 0xce, 0x38, + 0xea, 0x78, 0x9d, 0x68, 0x2f, 0xa8, 0xe9, 0x2e, 0xa0, 0x35, 0x50, 0x35, 0xe9, 0xaa, 0xf6, 0xc0, + 0x6d, 0x6f, 0x7b, 0xdd, 0x5b, 0xa4, 0x7c, 0x81, 0x9c, 0xa2, 0xfd, 0x0a, 0xb9, 0xc5, 0xb7, 0x58, + 0xca, 0x25, 0x27, 0x2b, 0xb2, 0x0f, 0x51, 0x4e, 0x39, 0xe5, 0x9c, 0xa8, 0xaa, 0xff, 0xd0, 0x78, + 0x60, 0x96, 0x99, 0x4d, 0xe2, 0xb5, 0xb4, 0x17, 0xa8, 0x7a, 0xf5, 0xab, 0x57, 0xef, 0xfd, 0xde, + 0x9f, 0xee, 0x6a, 0xa8, 0x0a, 0xc2, 0xc5, 0xc9, 0xb0, 0x15, 0xd0, 0x63, 0xca, 0xe8, 0x29, 0x3d, + 0xf1, 0x99, 0x60, 0x4d, 0xf5, 0x8b, 0xf3, 0xe1, 0x5a, 0x75, 0x7f, 0xcc, 0xc6, 0x4c, 0x89, 0x5a, + 0x72, 0x14, 0xae, 0x56, 0xdf, 0x1d, 0x33, 0x36, 0x9e, 0x92, 0x96, 0x9a, 0x0d, 0x83, 0x51, 0xcb, + 0xa6, 0x8b, 0x68, 0xa9, 0xea, 0x30, 0x3e, 0x63, 0xbc, 0x25, 0xe6, 0xad, 0xa7, 0xed, 0x21, 0x11, + 0x76, 0xbb, 0x25, 0xe6, 0xe1, 0x9a, 0x21, 0xa0, 0x78, 0x37, 0xe0, 0x82, 0xcd, 0x88, 0xdf, 0xc6, + 0x65, 0xc8, 0x78, 0xae, 0x8e, 0xea, 0xa8, 0x91, 0xb3, 0x32, 0x9e, 0x8b, 0x31, 0x64, 0xa9, 0x3d, + 0x23, 0x7a, 0xa6, 0x8e, 0x1a, 0x45, 0x4b, 0x8d, 0xf1, 0x8f, 0xa0, 0xc2, 0x83, 0x21, 0x77, 0x7c, + 0xef, 0x44, 0x78, 0x8c, 0x0e, 0x46, 0x84, 0xe8, 0x5a, 0x1d, 0x35, 0x32, 0xd6, 0xd5, 0xb4, 0xfc, + 0x80, 0x10, 0xac, 0xc3, 0xee, 0x89, 0xbd, 0x98, 0x11, 0x2a, 0xf4, 0x5d, 0xa5, 0x21, 0x9e, 0x1a, + 0x5f, 0x65, 0x96, 0xc7, 0x9a, 0x67, 0x8e, 0xad, 0x42, 0xc1, 0xa3, 0x6e, 0xc0, 0x85, 0xbf, 0x50, + 0x47, 0xe7, 0xac, 0x64, 0x9e, 0x98, 0xa4, 0xa5, 0x4c, 0xda, 0x87, 0xdc, 0x88, 0x9c, 0x12, 0x5f, + 0xcf, 0x2a, 0x3b, 0xc2, 0x09, 0xbe, 0x0e, 0x05, 0x9f, 0x70, 0xe2, 0x3f, 0x25, 0xae, 0xfe, 0xdb, + 0x42, 0x1d, 0x35, 0x34, 0x2b, 0x11, 0xe0, 0x1f, 0x43, 0xd6, 0xf1, 0xc4, 0x42, 0xcf, 0xd7, 0x51, + 0xa3, 0x6c, 0xbe, 0xd3, 0x0c, 0xa9, 0x6d, 0x26, 0x36, 0x35, 0xef, 0x7a, 0x62, 0x61, 0x29, 0x0c, + 0xfe, 0x08, 0xae, 0xcc, 0x3c, 0xee, 0x90, 0xe9, 0xd4, 0xa6, 0x84, 0x05, 0x5c, 0x87, 0x3a, 0x6a, + 0xec, 0x99, 0xfb, 0xcd, 0x90, 0xf1, 0x66, 0xcc, 0x78, 0xb3, 0x47, 0x17, 0xd6, 0x2a, 0xd4, 0xf8, + 0x04, 0xb2, 0x52, 0x13, 0x2e, 0x40, 0xf6, 0xa1, 0xcd, 0x78, 0x65, 0x07, 0x97, 0x01, 0x1e, 0x32, + 0xde, 0xa3, 0x63, 0x32, 0x25, 0xbc, 0x82, 0x70, 0x09, 0x0a, 0xbf, 0xb0, 0xa7, 0xac, 0x37, 0x15, + 0xac, 0x92, 0xc1, 0x00, 0xf9, 0x9f, 0x33, 0xee, 0xb0, 0xd3, 0x8a, 0x86, 0xf7, 0x60, 0xf7, 0xc8, + 0xf6, 0x7c, 0x36, 0xf4, 0x2a, 0x59, 0xa3, 0x09, 0x85, 0x23, 0xc2, 0x05, 0x71, 0xbb, 0xbd, 0x6d, + 0xc2, 0x64, 0xfc, 0x19, 0xc5, 0x1b, 0x3a, 0x5b, 0x6d, 0xc0, 0x75, 0xc8, 0xd8, 0x5d, 0x3d, 0x5b, + 0xd7, 0x1a, 0x7b, 0x66, 0x25, 0xe6, 0x23, 0x3e, 0xd2, 0xca, 0xd8, 0x5d, 0xdc, 0x86, 0x9c, 0x47, + 0x5d, 0x32, 0xd7, 0x73, 0x0a, 0x74, 0x7d, 0x15, 0xd4, 0xe9, 0x35, 0x1f, 0xc8, 0xd5, 0xfb, 0x54, + 0xf8, 0x0b, 0x2b, 0x44, 0x56, 0x7f, 0x06, 0xb0, 0x14, 0xe2, 0x0a, 0x68, 0xc7, 0x64, 0xa1, 0xec, + 0xd0, 0x2c, 0x39, 0xc4, 0xb7, 0x20, 0xf7, 0xd4, 0x9e, 0x06, 0xa1, 0x25, 0xeb, 0xce, 0x0d, 0x97, + 0x3f, 0xca, 0xfc, 0x04, 0x19, 0xbf, 0x8e, 0x1d, 0x32, 0xb7, 0x73, 0xa8, 0x01, 0x79, 0xaa, 0xf0, + 0x2a, 0x57, 0xce, 0x28, 0xef, 0xf4, 0xac, 0x68, 0xdd, 0xb8, 0x17, 0x6b, 0x6e, 0x9f, 0xd5, 0xbc, + 0xd4, 0xb2, 0xd6, 0x44, 0x73, 0xa9, 0xe5, 0xe3, 0x24, 0x42, 0xfd, 0x33, 0x5a, 0x2a, 0xa0, 0xd9, + 0x63, 0x12, 0x25, 0xb3, 0x1c, 0xae, 0xcb, 0x63, 0x63, 0x98, 0x84, 0xec, 0x92, 0x1a, 0x64, 0x10, + 0x87, 0x9b, 0x82, 0xd8, 0xb7, 0x32, 0xc3, 0xae, 0x31, 0x4d, 0x58, 0x5c, 0x7b, 0x86, 0xac, 0x66, + 0x79, 0x06, 0xb2, 0xe4, 0xf0, 0x6b, 0x39, 0xec, 0xc7, 0xde, 0xcb, 0x1a, 0xf4, 0x59, 0x20, 0x88, + 0xaa, 0xc1, 0xa2, 0x15, 0x4e, 0x8c, 0x27, 0x09, 0xb3, 0xfd, 0x0b, 0x33, 0xbb, 0xd4, 0x1d, 0xf9, + 0xae, 0x25, 0xbe, 0x1b, 0x9f, 0xa7, 0xfa, 0x47, 0x67, 0xab, 0x6c, 0x28, 0x43, 0x86, 0x8f, 0xa2, + 0x46, 0x95, 0xe1, 0x23, 0xfc, 0x1e, 0x14, 0x79, 0xe0, 0x3b, 0x13, 0xdb, 0x1f, 0x93, 0xa8, 0x6f, + 0x2c, 0x05, 0xb8, 0x0e, 0x7b, 0x2e, 0xe1, 0xc2, 0xa3, 0xb6, 0xec, 0x65, 0x7a, 0x4e, 0x29, 0x4a, + 0x8b, 0xf0, 0x2d, 0x28, 0x3b, 0x3e, 0x71, 0x3d, 0x31, 0x70, 0x6c, 0xdf, 0x1d, 0x50, 0x16, 0xb6, + 0xb8, 0xc3, 0x1d, 0xab, 0x14, 0xca, 0xef, 0xda, 0xbe, 0x7b, 0xc4, 0xf0, 0x0d, 0x28, 0x3a, 0x13, + 0xf2, 0x9b, 0x80, 0x48, 0x48, 0x21, 0x82, 0x14, 0x42, 0xd1, 0x11, 0xc3, 0xb7, 0xa1, 0xc0, 0x7c, + 0x6f, 0xec, 0x51, 0x7b, 0xaa, 0x17, 0x15, 0x0d, 0xd7, 0x5e, 0xef, 0x45, 0x6d, 0x2b, 0x81, 0xf4, + 0x8b, 0x49, 0x47, 0x35, 0x5e, 0x64, 0xa0, 0xf4, 0x98, 0x70, 0xf1, 0x84, 0xf8, 0xdc, 0x63, 0xb4, + 0x8d, 0x4b, 0x80, 0xe6, 0x51, 0x6d, 0xa1, 0x39, 0x36, 0x00, 0xd9, 0x11, 0xb1, 0xfb, 0xb1, 0xc6, + 0x34, 0xdc, 0x42, 0xb6, 0xc4, 0x0c, 0xa3, 0xc0, 0x6e, 0xc0, 0x0c, 0x25, 0xc6, 0x89, 0x12, 0x6a, + 0x03, 0xc6, 0xc1, 0x0d, 0x40, 0x6e, 0xd4, 0x14, 0xd6, 0x62, 0xfa, 0xd9, 0x67, 0x2f, 0x6e, 0xee, + 0x58, 0xc8, 0xc5, 0x65, 0x40, 0x44, 0xf5, 0xdc, 0xdc, 0xe1, 0x8e, 0x85, 0x08, 0x7e, 0x1f, 0xd0, + 0x48, 0x11, 0xb7, 0x61, 0xa7, 0x44, 0x8d, 0xa4, 0x0d, 0x63, 0xc5, 0xdd, 0xa6, 0xa6, 0x8b, 0xc6, + 0x12, 0x33, 0xd1, 0x8b, 0xe7, 0xd9, 0x39, 0xc1, 0x1f, 0x00, 0x3a, 0xd6, 0x4b, 0x1b, 0x58, 0xee, + 0x67, 0x9f, 0xbf, 0xb8, 0x89, 0x2c, 0x74, 0xdc, 0xcf, 0x81, 0xc6, 0x83, 0x99, 0xf1, 0xaf, 0x55, + 0x82, 0xcd, 0x8b, 0x11, 0x6c, 0x6e, 0x41, 0xb0, 0xb9, 0x05, 0xc1, 0xa6, 0x24, 0xd8, 0x38, 0x9f, + 0x60, 0xf3, 0x12, 0xd4, 0x9a, 0x6f, 0x82, 0x5a, 0x7c, 0x1d, 0x8a, 0x94, 0x9c, 0x0e, 0x46, 0x1e, + 0x99, 0xba, 0xfa, 0xbb, 0x75, 0xd4, 0xc8, 0x5a, 0x05, 0x4a, 0x4e, 0x0f, 0xe4, 0x3c, 0xe6, 0xfd, + 0x0b, 0x6d, 0x85, 0xf7, 0xce, 0xc5, 0x78, 0xef, 0x6c, 0xc1, 0x7b, 0x67, 0x0b, 0xde, 0x3b, 0x5b, + 0xf0, 0xde, 0xb9, 0x04, 0xef, 0x9d, 0x37, 0xc2, 0xfb, 0x6d, 0xc0, 0x94, 0xd1, 0x81, 0xe3, 0x7b, + 0xc2, 0x73, 0xec, 0x69, 0x14, 0x80, 0x2f, 0x54, 0x3f, 0xb2, 0x2a, 0x94, 0xd1, 0xbb, 0xd1, 0xca, + 0x4a, 0x24, 0xfe, 0x99, 0x81, 0x6a, 0xda, 0xf4, 0x87, 0x8c, 0x92, 0x47, 0x94, 0x3c, 0x1a, 0x3d, + 0x91, 0x0f, 0xe5, 0xb7, 0x2c, 0x2e, 0x6f, 0x05, 0xe3, 0x7f, 0xcf, 0xc3, 0xf7, 0x5f, 0x67, 0xfc, + 0x48, 0x3d, 0x75, 0xc6, 0xdf, 0x72, 0xba, 0x5b, 0xcb, 0xb4, 0xbf, 0xb9, 0x0e, 0x93, 0xf2, 0xe4, + 0x2d, 0xa8, 0x00, 0xfc, 0x53, 0xc8, 0x7b, 0x94, 0x12, 0xbf, 0xad, 0x97, 0x95, 0xea, 0x5b, 0x5f, + 0xe3, 0x53, 0xf3, 0x81, 0x42, 0x5b, 0xd1, 0xae, 0x64, 0xbf, 0xa9, 0x5f, 0xbd, 0xc0, 0x7e, 0x33, + 0xda, 0x6f, 0x56, 0x7f, 0x8f, 0x20, 0x1f, 0xaa, 0x4c, 0xbd, 0xdd, 0x68, 0x1b, 0xdf, 0x6e, 0x3e, + 0x91, 0xaf, 0xe6, 0x94, 0xf8, 0x51, 0xb4, 0xdb, 0xdb, 0x59, 0x1b, 0xfe, 0xa9, 0x1f, 0x2b, 0xdc, + 0x5f, 0xbd, 0x23, 0x5f, 0xd8, 0x63, 0x61, 0xea, 0xe8, 0x62, 0x7c, 0xb4, 0xba, 0x35, 0x45, 0x47, + 0xcb, 0x71, 0xf5, 0x0f, 0xb1, 0xa5, 0xe6, 0x19, 0xb8, 0x0e, 0xbb, 0x0e, 0x0b, 0x68, 0x7c, 0x8d, + 0x2b, 0x5a, 0xf1, 0xf4, 0x72, 0xf6, 0x9a, 0xff, 0x0d, 0x7b, 0xe3, 0x4a, 0xfb, 0xc7, 0x6a, 0xa5, + 0x75, 0xbf, 0xab, 0xb4, 0x6f, 0x71, 0xa5, 0x75, 0xbf, 0x61, 0xa5, 0x75, 0xff, 0xaf, 0x95, 0xd6, + 0xfd, 0x46, 0x95, 0xa6, 0x6d, 0xac, 0xb4, 0xaf, 0xfe, 0x47, 0x95, 0xd6, 0xdd, 0xaa, 0xd2, 0xcc, + 0x73, 0x2b, 0x6d, 0x3f, 0x7d, 0x91, 0xd7, 0xa2, 0x6b, 0x7b, 0x5c, 0x6b, 0x7f, 0x42, 0x50, 0x4e, + 0x9d, 0x77, 0x70, 0xef, 0x32, 0x97, 0x95, 0x37, 0x7a, 0x75, 0x88, 0x3d, 0xf9, 0x0b, 0x5a, 0x79, + 0x23, 0x3a, 0xb8, 0xd7, 0xfe, 0x95, 0x27, 0x26, 0xf7, 0xe7, 0xc2, 0xb7, 0x7b, 0x74, 0xf1, 0x66, + 0xbc, 0x8a, 0x50, 0x3d, 0xba, 0x48, 0x6c, 0xb9, 0xa0, 0x57, 0x8f, 0xa1, 0x94, 0xde, 0x2d, 0xef, + 0x73, 0xb6, 0x72, 0x63, 0x03, 0x69, 0x71, 0xad, 0xdb, 0xd2, 0xe1, 0xb0, 0xef, 0x69, 0xb2, 0xc3, + 0x95, 0xc2, 0x0e, 0xa7, 0x66, 0x8e, 0xf1, 0x47, 0x04, 0x15, 0x79, 0xe0, 0xa7, 0x27, 0xae, 0x2d, + 0x88, 0xfb, 0x78, 0x6e, 0xd9, 0xa7, 0xf8, 0x06, 0xc0, 0x90, 0xb9, 0x8b, 0xc1, 0x70, 0x21, 0x08, + 0x57, 0x67, 0x94, 0xac, 0xa2, 0x94, 0xf4, 0xa5, 0x00, 0xdf, 0x82, 0xab, 0x76, 0x20, 0x26, 0x03, + 0x8f, 0x8e, 0x58, 0x84, 0xc9, 0x28, 0xcc, 0x15, 0x29, 0x7e, 0x40, 0x47, 0x2c, 0xc4, 0xd5, 0x00, + 0xb8, 0x37, 0xa6, 0xb6, 0x08, 0x7c, 0xc2, 0x75, 0xad, 0xae, 0x35, 0x4a, 0x56, 0x4a, 0x82, 0x6b, + 0xb0, 0x97, 0xdc, 0x33, 0x06, 0x1f, 0xaa, 0xfb, 0x7b, 0xc9, 0x2a, 0xc6, 0x37, 0x8d, 0x0f, 0xf1, + 0x07, 0x50, 0x5e, 0xae, 0xb7, 0xef, 0x98, 0x5d, 0xfd, 0xf3, 0x82, 0xc2, 0x94, 0x62, 0x8c, 0x14, + 0x1a, 0x5f, 0x6a, 0x70, 0x6d, 0xc5, 0x85, 0x3e, 0x73, 0x17, 0xf8, 0x0e, 0x14, 0x66, 0x84, 0x73, + 0x7b, 0xac, 0x3c, 0xd0, 0x36, 0xa6, 0x56, 0x82, 0x92, 0xd5, 0x3c, 0x23, 0x33, 0x16, 0x57, 0xb3, + 0x1c, 0x4b, 0x13, 0x84, 0x37, 0x23, 0x2c, 0x10, 0x83, 0x09, 0xf1, 0xc6, 0x13, 0x11, 0xf1, 0x78, + 0x25, 0x92, 0x1e, 0x2a, 0x21, 0x7e, 0x1f, 0xca, 0x9c, 0xcd, 0xc8, 0x60, 0x79, 0x6d, 0xca, 0xaa, + 0x6b, 0x53, 0x49, 0x4a, 0x8f, 0x22, 0x63, 0xf1, 0x21, 0xfc, 0x60, 0x15, 0x35, 0x58, 0xd3, 0x82, + 0x7f, 0x17, 0xb6, 0xe0, 0xf7, 0xd2, 0x3b, 0x8f, 0x5e, 0x6f, 0xc7, 0x7d, 0xb8, 0x46, 0xe6, 0x82, + 0x50, 0x99, 0x23, 0x03, 0xa6, 0x3e, 0xe5, 0x72, 0xfd, 0xdf, 0xbb, 0xe7, 0xb8, 0x59, 0x49, 0xf0, + 0x8f, 0x42, 0x38, 0xfe, 0x0c, 0x6a, 0x2b, 0xc7, 0xaf, 0x51, 0x78, 0xf5, 0x1c, 0x85, 0xd7, 0x53, + 0xcf, 0x88, 0xfb, 0xaf, 0xe9, 0x36, 0x9e, 0x21, 0xf8, 0x5e, 0x2a, 0x24, 0xbd, 0x28, 0x2d, 0xf0, + 0xc7, 0x50, 0x92, 0xf1, 0x27, 0xbe, 0xca, 0x9d, 0x38, 0x30, 0x37, 0x9a, 0xe1, 0xa7, 0xef, 0xa6, + 0x98, 0x37, 0xa3, 0x4f, 0xdf, 0xcd, 0x5f, 0x2a, 0x98, 0xdc, 0x64, 0xed, 0xf1, 0x64, 0xcc, 0x71, + 0x63, 0xf9, 0xf5, 0x6b, 0xcf, 0x7c, 0x67, 0xcd, 0xc6, 0x03, 0x42, 0xc2, 0xaf, 0x62, 0x2b, 0xd9, + 0xd5, 0x51, 0x71, 0x4b, 0x65, 0x57, 0x67, 0xdb, 0xec, 0xfa, 0x61, 0x98, 0x5c, 0x16, 0x39, 0x21, + 0xd2, 0x95, 0x4f, 0x3d, 0x2a, 0x54, 0xaa, 0xd0, 0x60, 0x16, 0xda, 0x9f, 0xb5, 0xd4, 0xb8, 0x7f, + 0xf8, 0xec, 0x65, 0x0d, 0x3d, 0x7f, 0x59, 0x43, 0x7f, 0x7b, 0x59, 0x43, 0x5f, 0xbe, 0xaa, 0xed, + 0x3c, 0x7f, 0x55, 0xdb, 0xf9, 0xeb, 0xab, 0xda, 0xce, 0x67, 0xcd, 0xb1, 0x27, 0x26, 0xc1, 0xb0, + 0xe9, 0xb0, 0x59, 0x2b, 0xfa, 0xc8, 0x1f, 0xfe, 0xdd, 0xe6, 0xee, 0x71, 0x4b, 0x56, 0x7d, 0x20, + 0xbc, 0xa9, 0x1a, 0xb8, 0xb6, 0xb0, 0x87, 0x79, 0x45, 0x74, 0xe7, 0x3f, 0x01, 0x00, 0x00, 0xff, + 0xff, 0x3a, 0xea, 0x0d, 0xa7, 0x67, 0x18, 0x00, 0x00, } func (m *Customer1) Marshal() (dAtA []byte, err error) { diff --git a/types/tx_msg_test.go b/types/tx_msg_test.go index 7a9a5b945dae..ab12c4554639 100644 --- a/types/tx_msg_test.go +++ b/types/tx_msg_test.go @@ -30,14 +30,14 @@ func (s *testMsgSuite) TestMsg() { } func (s *testMsgSuite) TestMsgTypeURL() { - s.Require().Equal("/testdata.TestMsg", sdk.MsgTypeURL(new(testdata.TestMsg))) + s.Require().Equal("/testpb.TestMsg", sdk.MsgTypeURL(new(testdata.TestMsg))) } func (s *testMsgSuite) TestGetMsgFromTypeURL() { msg := new(testdata.TestMsg) cdc := codec.NewProtoCodec(testdata.NewTestInterfaceRegistry()) - result, err := sdk.GetMsgFromTypeURL(cdc, "/testdata.TestMsg") + result, err := sdk.GetMsgFromTypeURL(cdc, "/testpb.TestMsg") s.Require().NoError(err) s.Require().Equal(msg, result) } diff --git a/x/auth/ante/testutil_test.go b/x/auth/ante/testutil_test.go index 1730974bd5bb..ea539c77ed26 100644 --- a/x/auth/ante/testutil_test.go +++ b/x/auth/ante/testutil_test.go @@ -11,7 +11,7 @@ import ( // ref: https://github.com/cosmos/cosmos-sdk/issues/14647 _ "cosmossdk.io/api/cosmos/bank/v1beta1" _ "cosmossdk.io/api/cosmos/crypto/secp256k1" - _ "github.com/cosmos/cosmos-sdk/testutil/testdata_pulsar" + _ "github.com/cosmos/cosmos-sdk/testutil/testdata/testpb" storetypes "cosmossdk.io/store/types" diff --git a/x/auth/tx/encode_decode_test.go b/x/auth/tx/encode_decode_test.go index 9d7512ffd064..f4297770959c 100644 --- a/x/auth/tx/encode_decode_test.go +++ b/x/auth/tx/encode_decode_test.go @@ -32,7 +32,7 @@ func TestDefaultTxDecoderError(t *testing.T) { require.NoError(t, err) _, err = decoder(txBz) - require.EqualError(t, err, "unable to resolve type URL /testdata.TestMsg: tx parse error") + require.EqualError(t, err, "unable to resolve type URL /testpb.TestMsg: tx parse error") testdata.RegisterInterfaces(registry) _, err = decoder(txBz)