2015-03-15 23:39:49 +00:00
|
|
|
package testing
|
2015-03-15 00:18:19 +00:00
|
|
|
|
|
|
|
import (
|
2015-04-23 21:29:25 +00:00
|
|
|
"crypto/tls"
|
2015-03-15 00:18:19 +00:00
|
|
|
"fmt"
|
2015-03-15 23:52:19 +00:00
|
|
|
"log"
|
2015-03-15 00:18:19 +00:00
|
|
|
"os"
|
2015-04-01 22:16:42 +00:00
|
|
|
"reflect"
|
2015-03-15 00:18:19 +00:00
|
|
|
"testing"
|
|
|
|
|
2015-03-15 23:52:19 +00:00
|
|
|
"github.com/hashicorp/vault/api"
|
|
|
|
"github.com/hashicorp/vault/http"
|
2015-03-15 21:57:19 +00:00
|
|
|
"github.com/hashicorp/vault/logical"
|
2015-03-15 23:39:49 +00:00
|
|
|
"github.com/hashicorp/vault/physical"
|
|
|
|
"github.com/hashicorp/vault/vault"
|
2015-03-15 00:18:19 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// TestEnvVar must be set to a non-empty value for acceptance tests to run.
|
|
|
|
const TestEnvVar = "TF_ACC"
|
|
|
|
|
|
|
|
// TestCase is a single set of tests to run for a backend. A TestCase
|
|
|
|
// should generally map 1:1 to each test method for your acceptance
|
|
|
|
// tests.
|
|
|
|
type TestCase struct {
|
|
|
|
// Precheck, if non-nil, will be called once before the test case
|
|
|
|
// runs at all. This can be used for some validation prior to the
|
|
|
|
// test running.
|
|
|
|
PreCheck func()
|
|
|
|
|
|
|
|
// Backend is the backend that will be mounted.
|
2015-03-15 21:57:19 +00:00
|
|
|
Backend logical.Backend
|
2015-03-15 00:18:19 +00:00
|
|
|
|
2015-07-01 01:08:43 +00:00
|
|
|
// Factory can be used instead of Backend if the
|
|
|
|
// backend requires more construction
|
|
|
|
Factory logical.Factory
|
|
|
|
|
2015-03-15 00:18:19 +00:00
|
|
|
// Steps are the set of operations that are run for this test case.
|
|
|
|
Steps []TestStep
|
|
|
|
|
|
|
|
// Teardown will be called before the test case is over regardless
|
|
|
|
// of if the test succeeded or failed. This should return an error
|
|
|
|
// in the case that the test can't guarantee all resources were
|
|
|
|
// properly cleaned up.
|
|
|
|
Teardown TestTeardownFunc
|
|
|
|
}
|
|
|
|
|
|
|
|
// TestStep is a single step within a TestCase.
|
|
|
|
type TestStep struct {
|
|
|
|
// Operation is the operation to execute
|
2015-03-15 21:57:19 +00:00
|
|
|
Operation logical.Operation
|
2015-03-15 00:18:19 +00:00
|
|
|
|
|
|
|
// Path is the request path. The mount prefix will be automatically added.
|
|
|
|
Path string
|
|
|
|
|
|
|
|
// Arguments to pass in
|
|
|
|
Data map[string]interface{}
|
|
|
|
|
|
|
|
// Check is called after this step is executed in order to test that
|
|
|
|
// the step executed successfully. If this is not set, then the next
|
|
|
|
// step will be called
|
|
|
|
Check TestCheckFunc
|
2015-04-01 21:51:23 +00:00
|
|
|
|
2015-04-05 01:40:21 +00:00
|
|
|
// ErrorOk, if true, will let erroneous responses through to the check
|
|
|
|
ErrorOk bool
|
|
|
|
|
2015-04-01 21:51:23 +00:00
|
|
|
// Unauthenticated, if true, will make the request unauthenticated.
|
|
|
|
Unauthenticated bool
|
2015-04-17 17:14:39 +00:00
|
|
|
|
|
|
|
// RemoteAddr, if set, will set the remote addr on the request.
|
|
|
|
RemoteAddr string
|
2015-04-23 21:29:25 +00:00
|
|
|
|
|
|
|
// ConnState, if set, will set the tls conneciton state
|
|
|
|
ConnState *tls.ConnectionState
|
2015-03-15 00:18:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// TestCheckFunc is the callback used for Check in TestStep.
|
2015-03-15 21:57:19 +00:00
|
|
|
type TestCheckFunc func(*logical.Response) error
|
2015-03-15 00:18:19 +00:00
|
|
|
|
|
|
|
// TestTeardownFunc is the callback used for Teardown in TestCase.
|
|
|
|
type TestTeardownFunc func() error
|
|
|
|
|
|
|
|
// Test performs an acceptance test on a backend with the given test case.
|
|
|
|
//
|
|
|
|
// Tests are not run unless an environmental variable "TF_ACC" is
|
|
|
|
// set to some non-empty value. This is to avoid test cases surprising
|
|
|
|
// a user by creating real resources.
|
|
|
|
//
|
|
|
|
// Tests will fail unless the verbose flag (`go test -v`, or explicitly
|
|
|
|
// the "-test.v" flag) is set. Because some acceptance tests take quite
|
|
|
|
// long, we require the verbose flag so users are able to see progress
|
|
|
|
// output.
|
|
|
|
func Test(t TestT, c TestCase) {
|
|
|
|
// We only run acceptance tests if an env var is set because they're
|
|
|
|
// slow and generally require some outside configuration.
|
|
|
|
if os.Getenv(TestEnvVar) == "" {
|
|
|
|
t.Skip(fmt.Sprintf(
|
|
|
|
"Acceptance tests skipped unless env '%s' set",
|
|
|
|
TestEnvVar))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// We require verbose mode so that the user knows what is going on.
|
|
|
|
if !testTesting && !testing.Verbose() {
|
|
|
|
t.Fatal("Acceptance tests must be run with the -v flag on tests")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Run the PreCheck if we have it
|
|
|
|
if c.PreCheck != nil {
|
|
|
|
c.PreCheck()
|
|
|
|
}
|
2015-03-15 23:39:49 +00:00
|
|
|
|
2015-07-01 01:08:43 +00:00
|
|
|
// Check that something is provided
|
|
|
|
if c.Backend == nil && c.Factory == nil {
|
|
|
|
t.Fatal("Must provide either Backend or Factory")
|
|
|
|
}
|
|
|
|
|
2015-03-15 23:39:49 +00:00
|
|
|
// Create an in-memory Vault core
|
|
|
|
core, err := vault.NewCore(&vault.CoreConfig{
|
|
|
|
Physical: physical.NewInmem(),
|
2015-03-18 22:21:41 +00:00
|
|
|
LogicalBackends: map[string]logical.Factory{
|
2015-07-01 01:08:43 +00:00
|
|
|
"test": func(conf *logical.BackendConfig) (logical.Backend, error) {
|
|
|
|
if c.Backend != nil {
|
|
|
|
return c.Backend, nil
|
|
|
|
}
|
|
|
|
return c.Factory(conf)
|
2015-03-15 23:39:49 +00:00
|
|
|
},
|
|
|
|
},
|
2015-07-31 16:23:50 +00:00
|
|
|
DisableMlock: true,
|
2015-03-15 23:39:49 +00:00
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal("error initializing core: ", err)
|
2015-04-29 01:46:56 +00:00
|
|
|
return
|
2015-03-15 23:39:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Initialize the core
|
|
|
|
init, err := core.Initialize(&vault.SealConfig{
|
|
|
|
SecretShares: 1,
|
|
|
|
SecretThreshold: 1,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal("error initializing core: ", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Unseal the core
|
2015-03-20 16:59:48 +00:00
|
|
|
if unsealed, err := core.Unseal(init.SecretShares[0]); err != nil {
|
2015-03-15 23:39:49 +00:00
|
|
|
t.Fatal("error unsealing core: ", err)
|
2015-04-29 01:46:56 +00:00
|
|
|
return
|
2015-03-20 16:59:48 +00:00
|
|
|
} else if !unsealed {
|
2015-03-15 23:39:49 +00:00
|
|
|
t.Fatal("vault shouldn't be sealed")
|
2015-04-29 01:46:56 +00:00
|
|
|
return
|
2015-03-15 23:39:49 +00:00
|
|
|
}
|
2015-03-15 23:52:19 +00:00
|
|
|
|
|
|
|
// Create an HTTP API server and client
|
|
|
|
ln, addr := http.TestServer(nil, core)
|
|
|
|
defer ln.Close()
|
|
|
|
clientConfig := api.DefaultConfig()
|
|
|
|
clientConfig.Address = addr
|
|
|
|
client, err := api.NewClient(clientConfig)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal("error initializing HTTP client: ", err)
|
2015-04-29 01:46:56 +00:00
|
|
|
return
|
2015-03-15 23:52:19 +00:00
|
|
|
}
|
|
|
|
|
2015-04-01 00:26:31 +00:00
|
|
|
// Set the token so we're authenticated
|
|
|
|
client.SetToken(init.RootToken)
|
|
|
|
|
2015-03-15 23:52:19 +00:00
|
|
|
// Mount the backend
|
|
|
|
prefix := "mnt"
|
2015-08-31 18:27:49 +00:00
|
|
|
mountInfo := &api.Mount{
|
|
|
|
Type: "test",
|
|
|
|
Description: "acceptance test",
|
|
|
|
}
|
|
|
|
if err := client.Sys().Mount(prefix, mountInfo); err != nil {
|
2015-03-15 23:52:19 +00:00
|
|
|
t.Fatal("error mounting backend: ", err)
|
2015-04-29 01:46:56 +00:00
|
|
|
return
|
2015-03-15 23:52:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Make requests
|
2015-03-20 16:20:55 +00:00
|
|
|
var revoke []*logical.Request
|
2015-03-15 23:52:19 +00:00
|
|
|
for i, s := range c.Steps {
|
|
|
|
log.Printf("[WARN] Executing test step %d", i+1)
|
|
|
|
|
|
|
|
// Make sure to prefix the path with where we mounted the thing
|
|
|
|
path := fmt.Sprintf("%s/%s", prefix, s.Path)
|
|
|
|
|
|
|
|
// Create the request
|
|
|
|
req := &logical.Request{
|
2015-04-01 21:51:23 +00:00
|
|
|
Operation: s.Operation,
|
|
|
|
Path: path,
|
|
|
|
Data: s.Data,
|
|
|
|
}
|
|
|
|
if !s.Unauthenticated {
|
|
|
|
req.ClientToken = client.Token()
|
2015-03-15 23:52:19 +00:00
|
|
|
}
|
2015-04-17 17:14:39 +00:00
|
|
|
if s.RemoteAddr != "" {
|
|
|
|
req.Connection = &logical.Connection{RemoteAddr: s.RemoteAddr}
|
|
|
|
}
|
2015-04-23 21:29:25 +00:00
|
|
|
if s.ConnState != nil {
|
|
|
|
req.Connection = &logical.Connection{ConnState: s.ConnState}
|
|
|
|
}
|
2015-03-15 23:52:19 +00:00
|
|
|
|
|
|
|
// Make the request
|
|
|
|
resp, err := core.HandleRequest(req)
|
2015-03-20 16:20:55 +00:00
|
|
|
if resp != nil && resp.Secret != nil {
|
|
|
|
// Revoke this secret later
|
2015-05-27 18:19:15 +00:00
|
|
|
revoke = append(revoke, &logical.Request{
|
|
|
|
Operation: logical.WriteOperation,
|
|
|
|
Path: "sys/revoke/" + resp.Secret.LeaseID,
|
|
|
|
})
|
2015-03-20 16:20:55 +00:00
|
|
|
}
|
2015-09-14 20:28:46 +00:00
|
|
|
// If it's an error, but an error is expected, and one is also
|
|
|
|
// returned as a logical.ErrorResponse, let it go to the check
|
|
|
|
if err != nil {
|
|
|
|
if !resp.IsError() || (resp.IsError() && !s.ErrorOk) {
|
|
|
|
t.Error(fmt.Sprintf("Failed step %d: %s", i+1, err))
|
|
|
|
break
|
|
|
|
}
|
|
|
|
// Set it to nil here as we're catching on the
|
|
|
|
// logical.ErrorResponse instead
|
|
|
|
err = nil
|
|
|
|
}
|
|
|
|
if resp.IsError() && !s.ErrorOk {
|
2015-03-20 16:59:48 +00:00
|
|
|
err = fmt.Errorf("Erroneous response:\n\n%#v", resp)
|
|
|
|
}
|
2015-03-15 23:52:19 +00:00
|
|
|
if err == nil && s.Check != nil {
|
|
|
|
// Call the test method
|
|
|
|
err = s.Check(resp)
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
t.Error(fmt.Sprintf("Failed step %d: %s", i+1, err))
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-20 16:20:55 +00:00
|
|
|
// Revoke any secrets we might have.
|
|
|
|
var failedRevokes []*logical.Secret
|
|
|
|
for _, req := range revoke {
|
2015-05-27 18:19:15 +00:00
|
|
|
log.Printf("[WARN] Revoking secret: %#v", req)
|
2015-04-01 00:26:31 +00:00
|
|
|
req.ClientToken = client.Token()
|
2015-03-20 16:59:48 +00:00
|
|
|
resp, err := core.HandleRequest(req)
|
|
|
|
if err == nil && resp.IsError() {
|
|
|
|
err = fmt.Errorf("Erroneous response:\n\n%#v", resp)
|
|
|
|
}
|
2015-03-20 16:20:55 +00:00
|
|
|
if err != nil {
|
|
|
|
failedRevokes = append(failedRevokes, req.Secret)
|
|
|
|
t.Error(fmt.Sprintf("[ERR] Revoke error: %s", err))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Perform any rollbacks. This should no-op if there aren't any.
|
2015-03-21 10:18:33 +00:00
|
|
|
// We set the "immediate" flag here that any backend can pick up on
|
|
|
|
// to do all rollbacks immediately even if the WAL entries are new.
|
2015-03-20 16:20:55 +00:00
|
|
|
log.Printf("[WARN] Requesting RollbackOperation")
|
2015-03-21 10:18:33 +00:00
|
|
|
req := logical.RollbackRequest(prefix + "/")
|
|
|
|
req.Data["immediate"] = true
|
2015-04-01 00:26:31 +00:00
|
|
|
req.ClientToken = client.Token()
|
2015-03-21 10:18:33 +00:00
|
|
|
resp, err := core.HandleRequest(req)
|
2015-03-20 16:59:48 +00:00
|
|
|
if err == nil && resp.IsError() {
|
|
|
|
err = fmt.Errorf("Erroneous response:\n\n%#v", resp)
|
|
|
|
}
|
|
|
|
if err != nil && err != logical.ErrUnsupportedOperation {
|
2015-03-20 16:20:55 +00:00
|
|
|
t.Error(fmt.Sprintf("[ERR] Rollback error: %s", err))
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we have any failed revokes, log it.
|
|
|
|
if len(failedRevokes) > 0 {
|
|
|
|
for _, s := range failedRevokes {
|
|
|
|
t.Error(fmt.Sprintf(
|
|
|
|
"WARNING: Revoking the following secret failed. It may\n"+
|
|
|
|
"still exist. Please verify:\n\n%#v",
|
|
|
|
s))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-15 23:52:19 +00:00
|
|
|
// Cleanup
|
|
|
|
if c.Teardown != nil {
|
|
|
|
c.Teardown()
|
|
|
|
}
|
2015-03-15 00:18:19 +00:00
|
|
|
}
|
|
|
|
|
2015-04-17 17:00:48 +00:00
|
|
|
// TestCheckMulti is a helper to have multiple checks.
|
|
|
|
func TestCheckMulti(fs ...TestCheckFunc) TestCheckFunc {
|
|
|
|
return func(resp *logical.Response) error {
|
|
|
|
for _, f := range fs {
|
|
|
|
if err := f(resp); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-01 22:16:42 +00:00
|
|
|
// TestCheckAuth is a helper to check that a request generated an
|
|
|
|
// auth token with the proper policies.
|
|
|
|
func TestCheckAuth(policies []string) TestCheckFunc {
|
|
|
|
return func(resp *logical.Response) error {
|
2015-04-23 21:29:25 +00:00
|
|
|
if resp == nil || resp.Auth == nil {
|
2015-04-01 22:16:42 +00:00
|
|
|
return fmt.Errorf("no auth in response")
|
|
|
|
}
|
|
|
|
if !reflect.DeepEqual(resp.Auth.Policies, policies) {
|
|
|
|
return fmt.Errorf("invalid policies: %#v", resp.Auth.Policies)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-17 17:00:48 +00:00
|
|
|
// TestCheckAuthDisplayName is a helper to check that a request generated a
|
|
|
|
// valid display name.
|
|
|
|
func TestCheckAuthDisplayName(n string) TestCheckFunc {
|
|
|
|
return func(resp *logical.Response) error {
|
|
|
|
if resp.Auth == nil {
|
|
|
|
return fmt.Errorf("no auth in response")
|
|
|
|
}
|
|
|
|
if n != "" && resp.Auth.DisplayName != "mnt-"+n {
|
|
|
|
return fmt.Errorf("invalid display name: %#v", resp.Auth.DisplayName)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-05 01:40:21 +00:00
|
|
|
// TestCheckError is a helper to check that a response is an error.
|
|
|
|
func TestCheckError() TestCheckFunc {
|
|
|
|
return func(resp *logical.Response) error {
|
|
|
|
if !resp.IsError() {
|
|
|
|
return fmt.Errorf("response should be error")
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-15 00:18:19 +00:00
|
|
|
// TestT is the interface used to handle the test lifecycle of a test.
|
|
|
|
//
|
|
|
|
// Users should just use a *testing.T object, which implements this.
|
|
|
|
type TestT interface {
|
|
|
|
Error(args ...interface{})
|
|
|
|
Fatal(args ...interface{})
|
|
|
|
Skip(args ...interface{})
|
|
|
|
}
|
|
|
|
|
|
|
|
var testTesting = false
|