57 lines
1.3 KiB
Go
57 lines
1.3 KiB
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
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)
|
|
})
|
|
}
|
|
}
|