106 lines
2.5 KiB
Go
106 lines
2.5 KiB
Go
package azure
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"os"
|
|
"strconv"
|
|
"testing"
|
|
"time"
|
|
|
|
storage "github.com/Azure/azure-sdk-for-go/storage"
|
|
cleanhttp "github.com/hashicorp/go-cleanhttp"
|
|
log "github.com/hashicorp/go-hclog"
|
|
"github.com/hashicorp/vault/helper/logging"
|
|
"github.com/hashicorp/vault/physical"
|
|
)
|
|
|
|
func TestAzureBackend(t *testing.T) {
|
|
if os.Getenv("AZURE_ACCOUNT_NAME") == "" ||
|
|
os.Getenv("AZURE_ACCOUNT_KEY") == "" {
|
|
t.SkipNow()
|
|
}
|
|
|
|
accountName := os.Getenv("AZURE_ACCOUNT_NAME")
|
|
accountKey := os.Getenv("AZURE_ACCOUNT_KEY")
|
|
|
|
ts := time.Now().UnixNano()
|
|
name := fmt.Sprintf("vault-test-%d", ts)
|
|
|
|
cleanupClient, _ := storage.NewBasicClient(accountName, accountKey)
|
|
cleanupClient.HTTPClient = cleanhttp.DefaultPooledClient()
|
|
|
|
logger := logging.NewVaultLogger(log.Debug)
|
|
|
|
backend, err := NewAzureBackend(map[string]string{
|
|
"container": name,
|
|
"accountName": accountName,
|
|
"accountKey": accountKey,
|
|
}, logger)
|
|
|
|
defer func() {
|
|
blobService := cleanupClient.GetBlobService()
|
|
container := blobService.GetContainerReference(name)
|
|
container.DeleteIfExists(nil)
|
|
}()
|
|
|
|
if err != nil {
|
|
t.Fatalf("err: %s", err)
|
|
}
|
|
|
|
physical.ExerciseBackend(t, backend)
|
|
physical.ExerciseBackend_ListPrefix(t, backend)
|
|
}
|
|
|
|
func TestAzureBackend_ListPaging(t *testing.T) {
|
|
if os.Getenv("AZURE_ACCOUNT_NAME") == "" ||
|
|
os.Getenv("AZURE_ACCOUNT_KEY") == "" {
|
|
t.SkipNow()
|
|
}
|
|
|
|
accountName := os.Getenv("AZURE_ACCOUNT_NAME")
|
|
accountKey := os.Getenv("AZURE_ACCOUNT_KEY")
|
|
|
|
ts := time.Now().UnixNano()
|
|
name := fmt.Sprintf("vault-test-%d", ts)
|
|
|
|
cleanupClient, _ := storage.NewBasicClient(accountName, accountKey)
|
|
cleanupClient.HTTPClient = cleanhttp.DefaultPooledClient()
|
|
|
|
logger := logging.NewVaultLogger(log.Debug)
|
|
|
|
backend, err := NewAzureBackend(map[string]string{
|
|
"container": name,
|
|
"accountName": accountName,
|
|
"accountKey": accountKey,
|
|
}, logger)
|
|
|
|
defer func() {
|
|
blobService := cleanupClient.GetBlobService()
|
|
container := blobService.GetContainerReference(name)
|
|
container.DeleteIfExists(nil)
|
|
}()
|
|
|
|
if err != nil {
|
|
t.Fatalf("err: %s", err)
|
|
}
|
|
|
|
// by default, azure returns 5000 results in a page, load up more than that
|
|
for i := 0; i < MaxListResults+100; i++ {
|
|
if err := backend.Put(context.Background(), &physical.Entry{
|
|
Key: strconv.Itoa(i),
|
|
Value: []byte(strconv.Itoa(i)),
|
|
}); err != nil {
|
|
t.Fatalf("err: %s", err)
|
|
}
|
|
}
|
|
|
|
results, err := backend.List(context.Background(), "")
|
|
if err != nil {
|
|
t.Fatalf("err: %s", err)
|
|
}
|
|
if len(results) != MaxListResults+100 {
|
|
t.Fatalf("expected %d, got %d", MaxListResults+100, len(results))
|
|
}
|
|
}
|