2019-03-06 16:20:42 +00:00
|
|
|
package api
|
2017-06-26 21:21:14 +00:00
|
|
|
|
|
|
|
import (
|
2017-09-02 22:48:48 +00:00
|
|
|
"encoding/base64"
|
2017-06-26 21:21:14 +00:00
|
|
|
"testing"
|
|
|
|
|
2019-04-22 16:26:10 +00:00
|
|
|
log "github.com/hashicorp/go-hclog"
|
2017-06-26 21:21:14 +00:00
|
|
|
"github.com/hashicorp/vault/api"
|
2017-09-02 22:48:48 +00:00
|
|
|
"github.com/hashicorp/vault/audit"
|
2019-04-22 16:26:10 +00:00
|
|
|
auditFile "github.com/hashicorp/vault/builtin/audit/file"
|
|
|
|
credUserpass "github.com/hashicorp/vault/builtin/credential/userpass"
|
2017-09-02 22:48:48 +00:00
|
|
|
"github.com/hashicorp/vault/builtin/logical/database"
|
2017-06-26 21:21:14 +00:00
|
|
|
"github.com/hashicorp/vault/builtin/logical/pki"
|
|
|
|
"github.com/hashicorp/vault/builtin/logical/transit"
|
2018-11-07 01:21:24 +00:00
|
|
|
"github.com/hashicorp/vault/helper/builtinplugins"
|
2019-04-22 16:26:10 +00:00
|
|
|
"github.com/hashicorp/vault/http"
|
2019-04-12 21:54:35 +00:00
|
|
|
"github.com/hashicorp/vault/sdk/logical"
|
2017-06-26 21:21:14 +00:00
|
|
|
"github.com/hashicorp/vault/vault"
|
|
|
|
)
|
|
|
|
|
2017-09-02 22:48:48 +00:00
|
|
|
// testVaultServer creates a test vault cluster and returns a configured API
|
|
|
|
// client and closer function.
|
|
|
|
func testVaultServer(t testing.TB) (*api.Client, func()) {
|
|
|
|
t.Helper()
|
|
|
|
|
|
|
|
client, _, closer := testVaultServerUnseal(t)
|
|
|
|
return client, closer
|
2017-06-26 21:21:14 +00:00
|
|
|
}
|
|
|
|
|
2017-09-02 22:48:48 +00:00
|
|
|
// testVaultServerUnseal creates a test vault cluster and returns a configured
|
|
|
|
// API client, list of unseal keys (as strings), and a closer function.
|
|
|
|
func testVaultServerUnseal(t testing.TB) (*api.Client, []string, func()) {
|
|
|
|
t.Helper()
|
|
|
|
|
|
|
|
return testVaultServerCoreConfig(t, &vault.CoreConfig{
|
|
|
|
DisableMlock: true,
|
|
|
|
DisableCache: true,
|
2018-04-03 00:46:59 +00:00
|
|
|
Logger: log.NewNullLogger(),
|
2017-09-02 22:48:48 +00:00
|
|
|
CredentialBackends: map[string]logical.Factory{
|
|
|
|
"userpass": credUserpass.Factory,
|
|
|
|
},
|
|
|
|
AuditBackends: map[string]audit.Factory{
|
|
|
|
"file": auditFile.Factory,
|
|
|
|
},
|
|
|
|
LogicalBackends: map[string]logical.Factory{
|
|
|
|
"database": database.Factory,
|
|
|
|
"generic-leased": vault.LeasedPassthroughBackendFactory,
|
|
|
|
"pki": pki.Factory,
|
|
|
|
"transit": transit.Factory,
|
|
|
|
},
|
2018-11-07 01:21:24 +00:00
|
|
|
BuiltinRegistry: builtinplugins.Registry,
|
2017-09-02 22:48:48 +00:00
|
|
|
})
|
2017-06-26 21:21:14 +00:00
|
|
|
}
|
|
|
|
|
2017-09-02 22:48:48 +00:00
|
|
|
// testVaultServerCoreConfig creates a new vault cluster with the given core
|
|
|
|
// configuration. This is a lower-level test helper.
|
|
|
|
func testVaultServerCoreConfig(t testing.TB, coreConfig *vault.CoreConfig) (*api.Client, []string, func()) {
|
|
|
|
t.Helper()
|
2017-06-26 21:21:14 +00:00
|
|
|
|
2017-07-31 15:28:06 +00:00
|
|
|
cluster := vault.NewTestCluster(t, coreConfig, &vault.TestClusterOptions{
|
2019-04-22 16:26:10 +00:00
|
|
|
HandlerFunc: http.Handler,
|
2017-07-31 15:28:06 +00:00
|
|
|
})
|
|
|
|
cluster.Start()
|
2017-06-26 21:21:14 +00:00
|
|
|
|
2017-09-02 22:48:48 +00:00
|
|
|
// Make it easy to get access to the active
|
2017-07-11 03:47:03 +00:00
|
|
|
core := cluster.Cores[0].Core
|
2017-06-26 21:21:14 +00:00
|
|
|
vault.TestWaitActive(t, core)
|
|
|
|
|
2017-09-02 22:48:48 +00:00
|
|
|
// Get the client already setup for us!
|
2017-07-11 03:47:03 +00:00
|
|
|
client := cluster.Cores[0].Client
|
2017-07-31 15:28:06 +00:00
|
|
|
client.SetToken(cluster.RootToken)
|
2017-06-26 21:21:14 +00:00
|
|
|
|
2017-09-02 22:48:48 +00:00
|
|
|
// Convert the unseal keys to base64 encoded, since these are how the user
|
|
|
|
// will get them.
|
|
|
|
unsealKeys := make([]string, len(cluster.BarrierKeys))
|
|
|
|
for i := range unsealKeys {
|
|
|
|
unsealKeys[i] = base64.StdEncoding.EncodeToString(cluster.BarrierKeys[i])
|
|
|
|
}
|
|
|
|
|
|
|
|
return client, unsealKeys, func() { defer cluster.Cleanup() }
|
|
|
|
}
|