open-consul/agent/xds/z_xds_packages_test.go
Matt Keeler 554f1e6fee
Protobuf Modernization (#15949)
* Protobuf Modernization

Remove direct usage of golang/protobuf in favor of google.golang.org/protobuf

Marshallers (protobuf and json) needed some changes to account for different APIs.

Moved to using the google.golang.org/protobuf/types/known/* for the well known types including replacing some custom Struct manipulation with whats available in the structpb well known type package.

This also updates our devtools script to install protoc-gen-go from the right location so that files it generates conform to the correct interfaces.

* Fix go-mod-tidy make target to work on all modules
2023-01-11 09:39:10 -05:00

54 lines
1.3 KiB
Go

package xds
import (
"testing"
"github.com/stretchr/testify/require"
"google.golang.org/protobuf/encoding/protojson"
"google.golang.org/protobuf/types/known/anypb"
)
func TestUnusedExtensions(t *testing.T) {
// This test asserts that some key protobuf structs are usable by escape
// hatches despite not being directly used by Consul itself.
type testcase struct {
name string
input string
}
cases := []testcase{
{
"type.googleapis.com/envoy.extensions.filters.http.ext_authz.v3.ExtAuthz",
` {
"@type": "type.googleapis.com/envoy.extensions.filters.http.ext_authz.v3.ExtAuthz",
"http_service": {
"server_uri": {
"uri": "localhost:8090",
"cluster": "ext-authz",
"timeout": "0.250s"
}
}
} `,
},
{
"type.googleapis.com/envoy.config.trace.v3.ZipkinConfig",
` {
"@type": "type.googleapis.com/envoy.config.trace.v3.ZipkinConfig",
"collector_cluster": "zipkin",
"collector_endpoint_version": "HTTP_JSON",
"collector_endpoint": "/api/v1/spans",
"shared_span_context": false
} `,
},
}
for _, tc := range cases {
t.Run(tc.name, func(t *testing.T) {
var any anypb.Any
require.NoError(t, protojson.Unmarshal([]byte(tc.input), &any))
require.Equal(t, tc.name, any.TypeUrl)
})
}
}