mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-04 04:28:08 +00:00 
			
		
		
		
	* VAULT-15547 Additional tests, refactoring, for proxy split * VAULT-15547 Additional tests, refactoring, for proxy split * VAULT-15547 Import reorganization * VAULT-15547 Some missed updates for PersistConfig * VAULT-15547 address comments * VAULT-15547 address comments
		
			
				
	
	
		
			120 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			120 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright (c) HashiCorp, Inc.
 | 
						|
// SPDX-License-Identifier: MPL-2.0
 | 
						|
 | 
						|
package config
 | 
						|
 | 
						|
import (
 | 
						|
	"testing"
 | 
						|
 | 
						|
	"github.com/go-test/deep"
 | 
						|
	"github.com/hashicorp/vault/command/agentproxyshared"
 | 
						|
	"github.com/hashicorp/vault/internalshared/configutil"
 | 
						|
)
 | 
						|
 | 
						|
// TestLoadConfigFile_ProxyCache tests loading a config file containing a cache
 | 
						|
// as well as a valid proxy config.
 | 
						|
func TestLoadConfigFile_ProxyCache(t *testing.T) {
 | 
						|
	config, err := LoadConfigFile("./test-fixtures/config-cache.hcl")
 | 
						|
	if err != nil {
 | 
						|
		t.Fatal(err)
 | 
						|
	}
 | 
						|
 | 
						|
	expected := &Config{
 | 
						|
		SharedConfig: &configutil.SharedConfig{
 | 
						|
			PidFile: "./pidfile",
 | 
						|
			Listeners: []*configutil.Listener{
 | 
						|
				{
 | 
						|
					Type:        "unix",
 | 
						|
					Address:     "/path/to/socket",
 | 
						|
					TLSDisable:  true,
 | 
						|
					SocketMode:  "configmode",
 | 
						|
					SocketUser:  "configuser",
 | 
						|
					SocketGroup: "configgroup",
 | 
						|
				},
 | 
						|
				{
 | 
						|
					Type:       "tcp",
 | 
						|
					Address:    "127.0.0.1:8300",
 | 
						|
					TLSDisable: true,
 | 
						|
				},
 | 
						|
				{
 | 
						|
					Type:       "tcp",
 | 
						|
					Address:    "127.0.0.1:3000",
 | 
						|
					Role:       "metrics_only",
 | 
						|
					TLSDisable: true,
 | 
						|
				},
 | 
						|
				{
 | 
						|
					Type:        "tcp",
 | 
						|
					Role:        "default",
 | 
						|
					Address:     "127.0.0.1:8400",
 | 
						|
					TLSKeyFile:  "/path/to/cakey.pem",
 | 
						|
					TLSCertFile: "/path/to/cacert.pem",
 | 
						|
				},
 | 
						|
			},
 | 
						|
		},
 | 
						|
		AutoAuth: &AutoAuth{
 | 
						|
			Method: &Method{
 | 
						|
				Type:      "aws",
 | 
						|
				MountPath: "auth/aws",
 | 
						|
				Config: map[string]interface{}{
 | 
						|
					"role": "foobar",
 | 
						|
				},
 | 
						|
			},
 | 
						|
			Sinks: []*Sink{
 | 
						|
				{
 | 
						|
					Type:   "file",
 | 
						|
					DHType: "curve25519",
 | 
						|
					DHPath: "/tmp/file-foo-dhpath",
 | 
						|
					AAD:    "foobar",
 | 
						|
					Config: map[string]interface{}{
 | 
						|
						"path": "/tmp/file-foo",
 | 
						|
					},
 | 
						|
				},
 | 
						|
			},
 | 
						|
		},
 | 
						|
		APIProxy: &APIProxy{
 | 
						|
			EnforceConsistency:  "always",
 | 
						|
			WhenInconsistent:    "retry",
 | 
						|
			UseAutoAuthTokenRaw: true,
 | 
						|
			UseAutoAuthToken:    true,
 | 
						|
			ForceAutoAuthToken:  false,
 | 
						|
		},
 | 
						|
		Cache: &Cache{
 | 
						|
			Persist: &agentproxyshared.PersistConfig{
 | 
						|
				Type:                    "kubernetes",
 | 
						|
				Path:                    "/vault/agent-cache/",
 | 
						|
				KeepAfterImport:         true,
 | 
						|
				ExitOnErr:               true,
 | 
						|
				ServiceAccountTokenFile: "/tmp/serviceaccount/token",
 | 
						|
			},
 | 
						|
		},
 | 
						|
		Vault: &Vault{
 | 
						|
			Address:          "http://127.0.0.1:1111",
 | 
						|
			CACert:           "config_ca_cert",
 | 
						|
			CAPath:           "config_ca_path",
 | 
						|
			TLSSkipVerifyRaw: interface{}("true"),
 | 
						|
			TLSSkipVerify:    true,
 | 
						|
			ClientCert:       "config_client_cert",
 | 
						|
			ClientKey:        "config_client_key",
 | 
						|
			Retry: &Retry{
 | 
						|
				NumRetries: 12,
 | 
						|
			},
 | 
						|
		},
 | 
						|
	}
 | 
						|
 | 
						|
	config.Prune()
 | 
						|
	if diff := deep.Equal(config, expected); diff != nil {
 | 
						|
		t.Fatal(diff)
 | 
						|
	}
 | 
						|
 | 
						|
	config, err = LoadConfigFile("./test-fixtures/config-cache-embedded-type.hcl")
 | 
						|
	if err != nil {
 | 
						|
		t.Fatal(err)
 | 
						|
	}
 | 
						|
	expected.Vault.TLSSkipVerifyRaw = interface{}(true)
 | 
						|
 | 
						|
	config.Prune()
 | 
						|
	if diff := deep.Equal(config, expected); diff != nil {
 | 
						|
		t.Fatal(diff)
 | 
						|
	}
 | 
						|
}
 |