2017-08-03 17:24:27 +00:00
|
|
|
package azure
|
2016-02-24 12:14:23 +00:00
|
|
|
|
|
|
|
import (
|
2018-07-24 18:24:32 +00:00
|
|
|
"context"
|
2016-02-24 12:14:23 +00:00
|
|
|
"fmt"
|
|
|
|
"os"
|
2018-07-24 18:24:32 +00:00
|
|
|
"strconv"
|
2016-02-24 12:14:23 +00:00
|
|
|
"testing"
|
|
|
|
"time"
|
2016-04-26 03:10:32 +00:00
|
|
|
|
2018-07-24 18:24:32 +00:00
|
|
|
storage "github.com/Azure/azure-sdk-for-go/storage"
|
2018-08-15 23:40:36 +00:00
|
|
|
"github.com/Azure/go-autorest/autorest/azure"
|
2017-06-16 16:37:57 +00:00
|
|
|
cleanhttp "github.com/hashicorp/go-cleanhttp"
|
2018-04-03 00:46:59 +00:00
|
|
|
log "github.com/hashicorp/go-hclog"
|
2019-04-12 21:54:35 +00:00
|
|
|
"github.com/hashicorp/vault/sdk/helper/logging"
|
|
|
|
"github.com/hashicorp/vault/sdk/physical"
|
2016-02-24 12:14:23 +00:00
|
|
|
)
|
|
|
|
|
2019-10-08 15:51:36 +00:00
|
|
|
func environmentForCleanupClient(name string, armUrl string) (azure.Environment, error) {
|
|
|
|
if armUrl != "" {
|
|
|
|
return azure.EnvironmentFromURL(armUrl)
|
|
|
|
}
|
2018-08-15 23:40:36 +00:00
|
|
|
if name == "" {
|
2019-10-08 15:51:36 +00:00
|
|
|
name = "AzurePublicCloud"
|
2018-08-15 23:40:36 +00:00
|
|
|
}
|
|
|
|
return azure.EnvironmentFromName(name)
|
|
|
|
}
|
|
|
|
|
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")
|
2018-08-15 23:40:36 +00:00
|
|
|
environmentName := os.Getenv("AZURE_ENVIRONMENT")
|
2019-10-08 15:51:36 +00:00
|
|
|
environmentUrl := os.Getenv("AZURE_ARM_ENDPOINT")
|
2016-02-24 12:14:23 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
2019-10-08 15:51:36 +00:00
|
|
|
cleanupEnvironment, err := environmentForCleanupClient(environmentName, environmentUrl)
|
2018-08-15 23:40:36 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
cleanupClient, _ := storage.NewBasicClientOnSovereignCloud(accountName, accountKey, cleanupEnvironment)
|
2017-06-16 16:37:57 +00:00
|
|
|
cleanupClient.HTTPClient = cleanhttp.DefaultPooledClient()
|
2016-02-24 12:14:23 +00:00
|
|
|
|
2018-04-03 00:46:59 +00:00
|
|
|
logger := logging.NewVaultLogger(log.Debug)
|
2016-08-19 20:45:17 +00:00
|
|
|
|
2017-08-03 17:24:27 +00:00
|
|
|
backend, err := NewAzureBackend(map[string]string{
|
2019-10-08 15:51:36 +00:00
|
|
|
"container": name,
|
|
|
|
"accountName": accountName,
|
|
|
|
"accountKey": accountKey,
|
|
|
|
"environment": environmentName,
|
|
|
|
"arm_endpoint": environmentUrl,
|
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
|
|
|
}
|
2018-07-24 18:24:32 +00:00
|
|
|
|
|
|
|
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")
|
2018-08-15 23:40:36 +00:00
|
|
|
environmentName := os.Getenv("AZURE_ENVIRONMENT")
|
2019-10-08 15:51:36 +00:00
|
|
|
environmentUrl := os.Getenv("AZURE_ARM_ENDPOINT")
|
2018-07-24 18:24:32 +00:00
|
|
|
|
|
|
|
ts := time.Now().UnixNano()
|
|
|
|
name := fmt.Sprintf("vault-test-%d", ts)
|
|
|
|
|
2019-10-08 15:51:36 +00:00
|
|
|
cleanupEnvironment, err := environmentForCleanupClient(environmentName, environmentUrl)
|
2018-08-15 23:40:36 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
cleanupClient, _ := storage.NewBasicClientOnSovereignCloud(accountName, accountKey, cleanupEnvironment)
|
2018-07-24 18:24:32 +00:00
|
|
|
cleanupClient.HTTPClient = cleanhttp.DefaultPooledClient()
|
|
|
|
|
|
|
|
logger := logging.NewVaultLogger(log.Debug)
|
|
|
|
|
|
|
|
backend, err := NewAzureBackend(map[string]string{
|
2019-10-08 15:51:36 +00:00
|
|
|
"container": name,
|
|
|
|
"accountName": accountName,
|
|
|
|
"accountKey": accountKey,
|
|
|
|
"environment": environmentName,
|
|
|
|
"arm_endpoint": environmentUrl,
|
2018-07-24 18:24:32 +00:00
|
|
|
}, 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))
|
|
|
|
}
|
|
|
|
}
|