2017-08-03 17:24:27 +00:00
|
|
|
package azure
|
2016-02-24 12:14:23 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"testing"
|
|
|
|
"time"
|
2016-04-26 03:10:32 +00:00
|
|
|
|
2017-06-16 16:37:57 +00:00
|
|
|
cleanhttp "github.com/hashicorp/go-cleanhttp"
|
2016-08-19 20:45:17 +00:00
|
|
|
"github.com/hashicorp/vault/helper/logformat"
|
2017-08-03 17:24:27 +00:00
|
|
|
"github.com/hashicorp/vault/physical"
|
2016-08-19 20:45:17 +00:00
|
|
|
log "github.com/mgutz/logxi/v1"
|
|
|
|
|
2017-06-16 16:18:16 +00:00
|
|
|
storage "github.com/Azure/azure-sdk-for-go/storage"
|
2016-02-24 12:14:23 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
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()
|
2017-06-16 16:37:57 +00:00
|
|
|
name := fmt.Sprintf("vault-test-%d", ts)
|
2016-02-24 12:14:23 +00:00
|
|
|
|
|
|
|
cleanupClient, _ := storage.NewBasicClient(accountName, accountKey)
|
2017-06-16 16:37:57 +00:00
|
|
|
cleanupClient.HTTPClient = cleanhttp.DefaultPooledClient()
|
2016-02-24 12:14:23 +00:00
|
|
|
|
2016-08-19 20:45:17 +00:00
|
|
|
logger := logformat.NewVaultLogger(log.LevelTrace)
|
|
|
|
|
2017-08-03 17:24:27 +00:00
|
|
|
backend, err := NewAzureBackend(map[string]string{
|
2017-06-16 16:37:57 +00:00
|
|
|
"container": name,
|
2016-02-24 12:14:23 +00:00
|
|
|
"accountName": accountName,
|
|
|
|
"accountKey": accountKey,
|
2017-08-03 17:24:27 +00:00
|
|
|
}, logger)
|
2016-02-24 12:14:23 +00:00
|
|
|
|
|
|
|
defer func() {
|
2017-06-16 16:37:57 +00:00
|
|
|
blobService := cleanupClient.GetBlobService()
|
|
|
|
container := blobService.GetContainerReference(name)
|
|
|
|
container.DeleteIfExists(nil)
|
2016-02-24 12:14:23 +00:00
|
|
|
}()
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
|
2017-08-03 17:24:27 +00:00
|
|
|
physical.ExerciseBackend(t, backend)
|
|
|
|
physical.ExerciseBackend_ListPrefix(t, backend)
|
2016-02-24 12:14:23 +00:00
|
|
|
}
|