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.
boundary/api/proxy/testing.go

24 lines
625 B

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package proxy
import (
"context"
"crypto/tls"
"testing"
"github.com/stretchr/testify/require"
)
// TestClientTlsConfig is designed to allow tests to obtain the TLS
// configuration that would be used by the proxy in order to make specific calls
// to workers during tests.
func TestClientTlsConfig(t *testing.T, authzToken string, opt ...Option) *tls.Config {
proxyClient, err := New(context.Background(), authzToken, opt...)
require.NoError(t, err)
tlsConf, err := proxyClient.clientTlsConfig(opt...)
require.NoError(t, err)
return tlsConf
}