Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Combine go files generated from the grpc asset's protobuf definitions #955

Draft
wants to merge 2 commits into
base: develop
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions assets/grpc/test/test.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 10 additions & 2 deletions assets/grpc/test/test_grpc.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ require (
code.cloudfoundry.org/go-log-cache/v2 v2.0.5
code.cloudfoundry.org/go-loggregator/v9 v9.0.8
code.cloudfoundry.org/tlsconfig v0.0.0-20220621140725-0e6fbd869921
github.com/cloudfoundry/cf-acceptance-tests/assets/grpc v0.0.0-20230824190001-4c85c4bbb446
github.com/cloudfoundry/cf-test-helpers/v2 v2.8.0
github.com/cloudfoundry/noaa/v2 v2.3.0
github.com/cloudfoundry/sonde-go v0.0.0-20230710164515-a0a43d1dbbf8
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ github.com/apoydence/eachers v0.0.0-20181020210610-23942921fe77 h1:afT88tB6u9JCK
github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI=
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI=
github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU=
github.com/cloudfoundry/cf-acceptance-tests/assets/grpc v0.0.0-20230824190001-4c85c4bbb446 h1:4facUUCYYaYnim1KjZNAT9sMZQ4R/NZxluF1HZ1+ZOo=
github.com/cloudfoundry/cf-acceptance-tests/assets/grpc v0.0.0-20230824190001-4c85c4bbb446/go.mod h1:gL/bbKHqFbidhYuyA/zRSshyem4vWRzYjMePgf5V9wk=
github.com/cloudfoundry/cf-test-helpers/v2 v2.8.0 h1:aEuDiAhQdwwY2tu3ivfm4KHQBG0Kzp2m+qCNjaWDB+0=
github.com/cloudfoundry/cf-test-helpers/v2 v2.8.0/go.mod h1:wrmHE+cHE6J72feYGE98GmsyLkYEUbK9OOkD96XK7FA=
github.com/cloudfoundry/noaa/v2 v2.3.0 h1:+f//s7zTaiTtjz/Vf1LFKKfJb/6x2hRenTXlSb4dU5g=
Expand Down
2 changes: 1 addition & 1 deletion http2_routing/http2_routing.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"crypto/tls"
"time"

protobuff "github.com/cloudfoundry/cf-acceptance-tests/helpers/assets/test"
protobuff "github.com/cloudfoundry/cf-acceptance-tests/assets/grpc/test"
. "github.com/cloudfoundry/cf-acceptance-tests/helpers/v3_helpers"
"google.golang.org/grpc"
"google.golang.org/grpc/credentials"
Expand Down
176 changes: 176 additions & 0 deletions vendor/github.com/cloudfoundry/cf-acceptance-tests/assets/grpc/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions vendor/modules.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ code.cloudfoundry.org/tlsconfig/certtest
# github.com/andybalholm/brotli v1.0.1
## explicit; go 1.12
github.com/andybalholm/brotli
# github.com/cloudfoundry/cf-acceptance-tests/assets/grpc v0.0.0-20230824190001-4c85c4bbb446
## explicit; go 1.20
github.com/cloudfoundry/cf-acceptance-tests/assets/grpc/test
# github.com/cloudfoundry/cf-test-helpers/v2 v2.8.0
## explicit; go 1.18
github.com/cloudfoundry/cf-test-helpers/v2/cf
Expand Down