57 lines
1.2 KiB
Go
57 lines
1.2 KiB
Go
package gcs
|
|
|
|
import (
|
|
"fmt"
|
|
"math/rand"
|
|
"os"
|
|
"testing"
|
|
"time"
|
|
|
|
"cloud.google.com/go/storage"
|
|
log "github.com/hashicorp/go-hclog"
|
|
"github.com/hashicorp/vault/helper/logging"
|
|
"github.com/hashicorp/vault/physical"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
func TestHABackend(t *testing.T) {
|
|
projectID := os.Getenv("GOOGLE_PROJECT_ID")
|
|
if projectID == "" {
|
|
t.Skip("GOOGLE_PROJECT_ID not set")
|
|
}
|
|
|
|
r := rand.New(rand.NewSource(time.Now().UnixNano())).Int()
|
|
bucket := fmt.Sprintf("vault-gcs-testacc-%d", r)
|
|
|
|
ctx := context.Background()
|
|
client, err := storage.NewClient(ctx)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
testCleanup(t, client, bucket)
|
|
defer testCleanup(t, client, bucket)
|
|
|
|
b := client.Bucket(bucket)
|
|
if err := b.Create(context.Background(), projectID, nil); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
backend, err := NewBackend(map[string]string{
|
|
"bucket": bucket,
|
|
"ha_enabled": "true",
|
|
}, logging.NewVaultLogger(log.Trace))
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
ha, ok := backend.(physical.HABackend)
|
|
if !ok {
|
|
t.Fatalf("does not implement")
|
|
}
|
|
|
|
physical.ExerciseBackend(t, backend)
|
|
physical.ExerciseBackend_ListPrefix(t, backend)
|
|
physical.ExerciseHABackend(t, ha, ha)
|
|
}
|