130 lines
4.0 KiB
Go
130 lines
4.0 KiB
Go
/*
|
|
Copyright 2021 The Dapr Authors
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package blobstorage
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/Azure/azure-storage-blob-go/azblob"
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/dapr/components-contrib/bindings"
|
|
"github.com/dapr/kit/logger"
|
|
)
|
|
|
|
func TestParseMetadata(t *testing.T) {
|
|
m := bindings.Metadata{}
|
|
blobStorage := NewAzureBlobStorage(logger.NewLogger("test")).(*AzureBlobStorage)
|
|
|
|
t.Run("parse all metadata", func(t *testing.T) {
|
|
m.Properties = map[string]string{
|
|
"storageAccount": "account",
|
|
"storageAccessKey": "key",
|
|
"container": "test",
|
|
"getBlobRetryCount": "5",
|
|
"decodeBase64": "true",
|
|
}
|
|
meta, err := blobStorage.parseMetadata(m)
|
|
assert.Nil(t, err)
|
|
assert.Equal(t, "test", meta.Container)
|
|
assert.Equal(t, "account", meta.AccountName)
|
|
// storageAccessKey is parsed in the azauth package
|
|
assert.Equal(t, true, meta.DecodeBase64)
|
|
assert.Equal(t, 5, meta.GetBlobRetryCount)
|
|
assert.Equal(t, azblob.PublicAccessNone, meta.PublicAccessLevel)
|
|
})
|
|
|
|
t.Run("parse metadata with publicAccessLevel = blob", func(t *testing.T) {
|
|
m.Properties = map[string]string{
|
|
"storageAccount": "account",
|
|
"storageAccessKey": "key",
|
|
"container": "test",
|
|
"publicAccessLevel": "blob",
|
|
}
|
|
meta, err := blobStorage.parseMetadata(m)
|
|
assert.Nil(t, err)
|
|
assert.Equal(t, azblob.PublicAccessBlob, meta.PublicAccessLevel)
|
|
})
|
|
|
|
t.Run("parse metadata with publicAccessLevel = container", func(t *testing.T) {
|
|
m.Properties = map[string]string{
|
|
"storageAccount": "account",
|
|
"storageAccessKey": "key",
|
|
"container": "test",
|
|
"publicAccessLevel": "container",
|
|
}
|
|
meta, err := blobStorage.parseMetadata(m)
|
|
assert.Nil(t, err)
|
|
assert.Equal(t, azblob.PublicAccessContainer, meta.PublicAccessLevel)
|
|
})
|
|
|
|
t.Run("parse metadata with invalid publicAccessLevel", func(t *testing.T) {
|
|
m.Properties = map[string]string{
|
|
"storageAccount": "account",
|
|
"storageAccessKey": "key",
|
|
"container": "test",
|
|
"publicAccessLevel": "invalid",
|
|
}
|
|
_, err := blobStorage.parseMetadata(m)
|
|
assert.Error(t, err)
|
|
})
|
|
|
|
t.Run("sanitize metadata if necessary", func(t *testing.T) {
|
|
m.Properties = map[string]string{
|
|
"somecustomfield": "some-custom-value",
|
|
"specialfield": "special:valueÜ",
|
|
"not-allowed:": "not-allowed",
|
|
}
|
|
meta := blobStorage.sanitizeMetadata(m.Properties)
|
|
assert.Equal(t, meta["somecustomfield"], "some-custom-value")
|
|
assert.Equal(t, meta["specialfield"], "special:value")
|
|
assert.Equal(t, meta["notallowed"], "not-allowed")
|
|
})
|
|
}
|
|
|
|
func TestGetOption(t *testing.T) {
|
|
blobStorage := NewAzureBlobStorage(logger.NewLogger("test")).(*AzureBlobStorage)
|
|
|
|
t.Run("return error if blobName is missing", func(t *testing.T) {
|
|
r := bindings.InvokeRequest{}
|
|
_, err := blobStorage.get(context.Background(), &r)
|
|
if assert.Error(t, err) {
|
|
assert.Equal(t, ErrMissingBlobName, err)
|
|
}
|
|
})
|
|
}
|
|
|
|
func TestDeleteOption(t *testing.T) {
|
|
blobStorage := NewAzureBlobStorage(logger.NewLogger("test")).(*AzureBlobStorage)
|
|
|
|
t.Run("return error if blobName is missing", func(t *testing.T) {
|
|
r := bindings.InvokeRequest{}
|
|
_, err := blobStorage.delete(context.Background(), &r)
|
|
if assert.Error(t, err) {
|
|
assert.Equal(t, ErrMissingBlobName, err)
|
|
}
|
|
})
|
|
|
|
t.Run("return error for invalid deleteSnapshots", func(t *testing.T) {
|
|
r := bindings.InvokeRequest{}
|
|
r.Metadata = map[string]string{
|
|
"blobName": "foo",
|
|
"deleteSnapshots": "invalid",
|
|
}
|
|
_, err := blobStorage.delete(context.Background(), &r)
|
|
assert.Error(t, err)
|
|
})
|
|
}
|