Consul is a distributed, highly available, and data center aware solution to connect and configure applications across dynamic, distributed infrastructure.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

56 lines
1.3 KiB

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
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)
})
}
}