-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: resolve unit test failure caused by differences in protobuf runt…
…imes (#1749) Co-authored-by: Victor Chudnovsky <vchudnov@google.com>
- Loading branch information
1 parent
46f1790
commit 812abce
Showing
11 changed files
with
1,046 additions
and
261 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
The protos in this folder were copied directly from `googleapis/googleapis`_ and are needed for the purposes of running fragment tests. | ||
|
||
.. _googleapis/googleapis: https://github.com/googleapis/googleapis/tree/master/google |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
// Copyright (C) 2023 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
|
||
// The purpose of this fragment test is to test for an issue found in the generated | ||
// client for `google/api/servicemanagement/v1` where the version of a generated | ||
// dependency (google.protobuf.type) at runtime differs from the version used during | ||
// generation. See https://github.com/googleapis/gapic-generator-python/issues/1748. | ||
|
||
syntax = "proto3"; | ||
|
||
package google.fragment; | ||
|
||
import "google/api/annotations.proto"; | ||
import "google/api/client.proto"; | ||
import "google/api/field_behavior.proto"; | ||
import "google/protobuf/struct.proto"; | ||
import "google/protobuf/type.proto"; | ||
|
||
service MyServiceWithProtobufType { | ||
option (google.api.default_host) = "my.example.com"; | ||
|
||
rpc MyMethod(MethodRequestWithProtobufType) | ||
returns (MethodResponseWithProtobufType) { | ||
option (google.api.http) = { | ||
post: "/v1/services/{service_name}/configs" | ||
body: "test_message" | ||
}; | ||
option (google.api.method_signature) = "service_name,test_message"; | ||
} | ||
} | ||
|
||
message MethodRequestWithProtobufType { | ||
string service_name = 1 [(google.api.field_behavior) = REQUIRED]; | ||
TestMessage test_message = 2 [(google.api.field_behavior) = REQUIRED]; | ||
} | ||
|
||
message TestMessage { | ||
repeated google.protobuf.Type types = 2 [(google.api.field_behavior) = REQUIRED]; | ||
} | ||
|
||
message MethodResponseWithProtobufType { | ||
google.protobuf.Value result = 1; | ||
} |
Oops, something went wrong.