mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-04 04:28:08 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
		
			734 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			734 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package api
 | 
						|
 | 
						|
import (
 | 
						|
	"fmt"
 | 
						|
	"testing"
 | 
						|
)
 | 
						|
 | 
						|
func TestSSH_CreateTLSClient(t *testing.T) {
 | 
						|
	// load the default configuration
 | 
						|
	config, err := LoadSSHHelperConfig("./test-fixtures/agent_config.hcl")
 | 
						|
	if err != nil {
 | 
						|
		panic(fmt.Sprintf("error loading agent's config file: %s", err))
 | 
						|
	}
 | 
						|
 | 
						|
	client, err := config.NewClient()
 | 
						|
	if err != nil {
 | 
						|
		panic(fmt.Sprintf("error creating the client: %s", err))
 | 
						|
	}
 | 
						|
 | 
						|
	// Provide a certificate and enforce setting of transport
 | 
						|
	config.CACert = "./test-fixtures/vault.crt"
 | 
						|
 | 
						|
	client, err = config.NewClient()
 | 
						|
	if err != nil {
 | 
						|
		panic(fmt.Sprintf("error creating the client: %s", err))
 | 
						|
	}
 | 
						|
	if client.config.HttpClient.Transport == nil {
 | 
						|
		panic(fmt.Sprintf("error creating client with TLS transport"))
 | 
						|
	}
 | 
						|
}
 |