Skip to content

Commit 722b834

Browse files
committed
fix: proto names + google.api query param paths
1 parent e30e771 commit 722b834

File tree

8 files changed

+844
-6
lines changed

8 files changed

+844
-6
lines changed

Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ PROTO_FILES=$(shell find internal/converter/testdata -type f -name '*.proto')
66
generate: $(PROTO_FILES)
77
@echo "Generating fixture descriptor set"
88
go generate ./...
9+
go generate ./internal/converter/testdata
910

1011
test: generate
1112
go test -coverprofile=coverage.out -coverpkg=./internal/...,./converter/... ./...

README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,11 @@ protoc-gen-connect-openapi also has support for the [OpenAPI v3 annotations](htt
124124
| with-streaming | - | Generate OpenAPI for client/server/bidirectional streaming RPCs (can be messy). |
125125

126126
### Contributing
127-
Contributions are accepted and welcome! Please make sure that all tests pass locally for you. You normally can use normal Go tooling to run tests but if you change any protobuf files in `internal/converter/testdata/`, you need to run `go generate ./...` to ensure the related DescriptorSet gets updated. This exists because it's the easiest way to pull in buf dependencies in a reliable way.
127+
Contributions are accepted and welcome! Please make sure that all tests pass locally for you. You normally can use normal Go tooling to run tests but if you change any protobuf files in `internal/converter/testdata/`, you need to run this command to ensure the related DescriptorSet gets updated:
128+
```
129+
go generate ./internal/converter/testdata
130+
```
131+
This exists because it's the easiest way to pull in buf dependencies in a reliable way.
128132

129133
Otherwise, tests are run with:
130134
```shell

internal/converter/converter_test.go

+1
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ func generateAndCheckResult(t *testing.T, options, format, protofile string) str
7373
// Call the conversion code!
7474
resp, err := converter.ConvertFrom(bytes.NewBuffer(b))
7575
require.NoError(t, err)
76+
require.Nil(t, resp.Error)
7677
require.Len(t, resp.File, 1)
7778
file := resp.File[0]
7879
assert.NotNil(t, file.Name)

internal/converter/googleapi/paths.go

+2-5
Original file line numberDiff line numberDiff line change
@@ -246,15 +246,12 @@ func partsToOpenAPIPath(tokens []Token) string {
246246
return b.String()
247247
}
248248

249-
func flattenToParams(opts options.Options, md protoreflect.MessageDescriptor, jsonPrefix string, seen map[string]struct{}) []*v3.Parameter {
249+
func flattenToParams(opts options.Options, md protoreflect.MessageDescriptor, prefix string, seen map[string]struct{}) []*v3.Parameter {
250250
params := []*v3.Parameter{}
251251
fields := md.Fields()
252252
for i := 0; i < fields.Len(); i++ {
253253
field := fields.Get(i)
254-
paramName := jsonPrefix + string(field.JSONName())
255-
if opts.WithProtoNames {
256-
paramName = string(field.Name())
257-
}
254+
paramName := prefix + util.MakeFieldName(opts, field)
258255
// exclude fields already found in the path
259256
if _, ok := seen[string(field.FullName())]; ok {
260257
continue
1.88 KB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
syntax = "proto3";
2+
3+
package proto_names.io.swagger.petstore.v2;
4+
5+
import "google/api/annotations.proto";
6+
import "google/protobuf/empty.proto";
7+
import "google/protobuf/field_mask.proto";
8+
9+
service Foo {
10+
rpc Foo(google.protobuf.Empty) returns (google.protobuf.Empty) {
11+
option idempotency_level = NO_SIDE_EFFECTS;
12+
option (google.api.http) = {get: "/.well-known/jwks.json"};
13+
}
14+
rpc Foo2(Foo2Request) returns (Foo2Response) {
15+
option (google.api.http).get = "/v1/{property_in_path_ok}/{parentMsg.property_in_path}/foo";
16+
}
17+
18+
rpc Masky(MaskyRequest) returns (google.protobuf.Empty) {}
19+
20+
rpc NamedPathPatterns(Something) returns (google.protobuf.Empty) {
21+
option (google.api.http).get = "/v1/{property_in_path=messages/*}";
22+
}
23+
}
24+
25+
message MaskyRequest {
26+
google.protobuf.FieldMask fields = 1;
27+
}
28+
29+
message Foo2Request {
30+
string property_in_path_ok = 1;
31+
Something parentMsg = 2;
32+
string property_in_query_ok = 3;
33+
}
34+
message Something {
35+
string property_in_path = 1;
36+
string property_in_query = 2;
37+
}
38+
39+
message Foo2Response {}

0 commit comments

Comments
 (0)