open-vault/physical/etcd/etcd3_test.go

40 lines
818 B
Go
Raw Normal View History

package etcd
2017-01-03 19:43:46 +00:00
import (
"fmt"
"os"
"testing"
"time"
log "github.com/hashicorp/go-hclog"
"github.com/hashicorp/vault/sdk/helper/logging"
"github.com/hashicorp/vault/sdk/physical"
2017-01-03 19:43:46 +00:00
)
func TestEtcd3Backend(t *testing.T) {
addr := os.Getenv("ETCD_ADDR")
if addr == "" {
t.Skipf("Skipped. No etcd3 server found")
}
logger := logging.NewVaultLogger(log.Debug)
2018-11-01 17:31:09 +00:00
config := map[string]string{
2017-01-03 19:43:46 +00:00
"path": fmt.Sprintf("/vault-%d", time.Now().Unix()),
"etcd_api": "3",
2018-11-01 17:31:09 +00:00
}
b, err := NewEtcdBackend(config, logger)
if err != nil {
t.Fatalf("err: %s", err)
}
b2, err := NewEtcdBackend(config, logger)
2017-01-03 19:43:46 +00:00
if err != nil {
t.Fatalf("err: %s", err)
}
physical.ExerciseBackend(t, b)
physical.ExerciseBackend_ListPrefix(t, b)
2018-11-01 17:31:09 +00:00
physical.ExerciseHABackend(t, b.(physical.HABackend), b2.(physical.HABackend))
2017-01-03 19:43:46 +00:00
}