-
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: non-string required fields provide correct values (#1108)
In generated unit tests checking behavior of required fields in REST transports, fields are given default values in accordance with the type of the field.
- Loading branch information
1 parent
6a593f9
commit bc5f729
Showing
7 changed files
with
167 additions
and
105 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 was deleted.
Oops, something went wrong.
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,41 @@ | ||
// Copyright (C) 2021 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. | ||
|
||
syntax = "proto3"; | ||
|
||
package google.fragment; | ||
|
||
import "google/api/client.proto"; | ||
import "google/api/field_behavior.proto"; | ||
import "google/api/annotations.proto"; | ||
|
||
service RestService { | ||
option (google.api.default_host) = "my.example.com"; | ||
|
||
rpc MyMethod(MethodRequest) returns (MethodResponse) { | ||
option (google.api.http) = { | ||
get: "/restservice/v1/mass_kg/{mass_kg}/length_cm/{length_cm}" | ||
}; | ||
} | ||
} | ||
|
||
|
||
message MethodRequest { | ||
int32 mass_kg = 1 [(google.api.field_behavior) = REQUIRED]; | ||
float length_cm = 2 [(google.api.field_behavior) = REQUIRED]; | ||
} | ||
|
||
message MethodResponse { | ||
string name = 1; | ||
} |
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