aboutsummaryrefslogtreecommitdiffstats
path: root/client/go/internal/cli/cmd/config_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'client/go/internal/cli/cmd/config_test.go')
-rw-r--r--client/go/internal/cli/cmd/config_test.go17
1 files changed, 13 insertions, 4 deletions
diff --git a/client/go/internal/cli/cmd/config_test.go b/client/go/internal/cli/cmd/config_test.go
index a70766ff931..6c9321b3219 100644
--- a/client/go/internal/cli/cmd/config_test.go
+++ b/client/go/internal/cli/cmd/config_test.go
@@ -209,9 +209,14 @@ func TestConfigReadTLSOptions(t *testing.T) {
assertTLSOptions(t, homeDir, app,
vespa.TargetLocal,
vespa.TLSOptions{
- TrustAll: true,
- CACertificate: []byte("cacert"),
- KeyPair: []tls.Certificate{keyPair},
+ TrustAll: true,
+ KeyPair: []tls.Certificate{keyPair},
+ CACertificatePEM: []byte("cacert"),
+ CertificatePEM: pemCert,
+ PrivateKeyPEM: pemKey,
+ CACertificateFile: "VESPA_CLI_DATA_PLANE_CA_CERT",
+ CertificateFile: "VESPA_CLI_DATA_PLANE_CERT",
+ PrivateKeyFile: "VESPA_CLI_DATA_PLANE_KEY",
},
"VESPA_CLI_DATA_PLANE_TRUST_ALL=true",
"VESPA_CLI_DATA_PLANE_CA_CERT=cacert",
@@ -230,7 +235,9 @@ func TestConfigReadTLSOptions(t *testing.T) {
vespa.TargetLocal,
vespa.TLSOptions{
KeyPair: []tls.Certificate{keyPair},
- CACertificate: []byte("cacert"),
+ CACertificatePEM: []byte("cacert"),
+ CertificatePEM: pemCert,
+ PrivateKeyPEM: pemKey,
CACertificateFile: caCertFile,
CertificateFile: certFile,
PrivateKeyFile: keyFile,
@@ -249,6 +256,8 @@ func TestConfigReadTLSOptions(t *testing.T) {
vespa.TargetLocal,
vespa.TLSOptions{
KeyPair: []tls.Certificate{keyPair},
+ CertificatePEM: pemCert,
+ PrivateKeyPEM: pemKey,
CertificateFile: defaultCertFile,
PrivateKeyFile: defaultKeyFile,
},