Merge branch 'main' into feat/cacheCloudfrontRepo
commit
6473d8b807
|
@ -7,6 +7,7 @@ import (
|
||||||
|
|
||||||
"github.com/aws/aws-sdk-go/aws"
|
"github.com/aws/aws-sdk-go/aws"
|
||||||
"github.com/cloudskiff/driftctl/pkg/remote/aws/repository"
|
"github.com/cloudskiff/driftctl/pkg/remote/aws/repository"
|
||||||
|
"github.com/cloudskiff/driftctl/pkg/remote/cache"
|
||||||
testresource "github.com/cloudskiff/driftctl/test/resource"
|
testresource "github.com/cloudskiff/driftctl/test/resource"
|
||||||
|
|
||||||
remoteerror "github.com/cloudskiff/driftctl/pkg/remote/error"
|
remoteerror "github.com/cloudskiff/driftctl/pkg/remote/error"
|
||||||
|
@ -82,7 +83,7 @@ func TestDynamoDBTableSupplier_Resources(t *testing.T) {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
supplierLibrary.AddSupplier(NewDynamoDBTableSupplier(provider, deserializer, repository.NewDynamoDBRepository(provider.session)))
|
supplierLibrary.AddSupplier(NewDynamoDBTableSupplier(provider, deserializer, repository.NewDynamoDBRepository(provider.session, cache.New(0))))
|
||||||
}
|
}
|
||||||
|
|
||||||
t.Run(c.test, func(tt *testing.T) {
|
t.Run(c.test, func(tt *testing.T) {
|
||||||
|
|
|
@ -5,6 +5,7 @@ import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/aws/aws-sdk-go/service/ecr"
|
"github.com/aws/aws-sdk-go/service/ecr"
|
||||||
|
"github.com/cloudskiff/driftctl/pkg/remote/cache"
|
||||||
testresource "github.com/cloudskiff/driftctl/test/resource"
|
testresource "github.com/cloudskiff/driftctl/test/resource"
|
||||||
|
|
||||||
"github.com/aws/aws-sdk-go/aws"
|
"github.com/aws/aws-sdk-go/aws"
|
||||||
|
@ -75,7 +76,7 @@ func TestEcrRepositorySupplier_Resources(t *testing.T) {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
supplierLibrary.AddSupplier(NewECRRepositorySupplier(provider, deserializer, repository.NewECRRepository(provider.session)))
|
supplierLibrary.AddSupplier(NewECRRepositorySupplier(provider, deserializer, repository.NewECRRepository(provider.session, cache.New(0))))
|
||||||
}
|
}
|
||||||
|
|
||||||
t.Run(c.test, func(tt *testing.T) {
|
t.Run(c.test, func(tt *testing.T) {
|
||||||
|
|
|
@ -43,10 +43,10 @@ func Init(version string, alerter *alerter.Alerter,
|
||||||
rdsRepository := repository.NewRDSRepository(provider.session)
|
rdsRepository := repository.NewRDSRepository(provider.session)
|
||||||
sqsRepository := repository.NewSQSClient(provider.session)
|
sqsRepository := repository.NewSQSClient(provider.session)
|
||||||
snsRepository := repository.NewSNSClient(provider.session)
|
snsRepository := repository.NewSNSClient(provider.session)
|
||||||
dynamoDBRepository := repository.NewDynamoDBRepository(provider.session)
|
|
||||||
cloudfrontRepository := repository.NewCloudfrontClient(provider.session, repositoryCache)
|
cloudfrontRepository := repository.NewCloudfrontClient(provider.session, repositoryCache)
|
||||||
kmsRepository := repository.NewKMSRepository(provider.session)
|
dynamoDBRepository := repository.NewDynamoDBRepository(provider.session, repositoryCache)
|
||||||
ecrRepository := repository.NewECRRepository(provider.session)
|
ecrRepository := repository.NewECRRepository(provider.session, repositoryCache)
|
||||||
|
kmsRepository := repository.NewKMSRepository(provider.session, repositoryCache)
|
||||||
iamRepository := repository.NewIAMRepository(provider.session, repositoryCache)
|
iamRepository := repository.NewIAMRepository(provider.session, repositoryCache)
|
||||||
|
|
||||||
deserializer := resource.NewDeserializer(factory)
|
deserializer := resource.NewDeserializer(factory)
|
||||||
|
|
|
@ -5,6 +5,7 @@ import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/aws/aws-sdk-go/service/kms"
|
"github.com/aws/aws-sdk-go/service/kms"
|
||||||
|
"github.com/cloudskiff/driftctl/pkg/remote/cache"
|
||||||
testresource "github.com/cloudskiff/driftctl/test/resource"
|
testresource "github.com/cloudskiff/driftctl/test/resource"
|
||||||
|
|
||||||
"github.com/aws/aws-sdk-go/aws"
|
"github.com/aws/aws-sdk-go/aws"
|
||||||
|
@ -77,7 +78,7 @@ func TestKMSAliasSupplier_Resources(t *testing.T) {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
supplierLibrary.AddSupplier(NewKMSAliasSupplier(provider, deserializer, repository.NewKMSRepository(provider.session)))
|
supplierLibrary.AddSupplier(NewKMSAliasSupplier(provider, deserializer, repository.NewKMSRepository(provider.session, cache.New(0))))
|
||||||
}
|
}
|
||||||
|
|
||||||
t.Run(c.test, func(tt *testing.T) {
|
t.Run(c.test, func(tt *testing.T) {
|
||||||
|
|
|
@ -5,6 +5,7 @@ import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/aws/aws-sdk-go/service/kms"
|
"github.com/aws/aws-sdk-go/service/kms"
|
||||||
|
"github.com/cloudskiff/driftctl/pkg/remote/cache"
|
||||||
testresource "github.com/cloudskiff/driftctl/test/resource"
|
testresource "github.com/cloudskiff/driftctl/test/resource"
|
||||||
|
|
||||||
"github.com/aws/aws-sdk-go/aws"
|
"github.com/aws/aws-sdk-go/aws"
|
||||||
|
@ -77,7 +78,7 @@ func TestKMSKeySupplier_Resources(t *testing.T) {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
supplierLibrary.AddSupplier(NewKMSKeySupplier(provider, deserializer, repository.NewKMSRepository(provider.session)))
|
supplierLibrary.AddSupplier(NewKMSKeySupplier(provider, deserializer, repository.NewKMSRepository(provider.session, cache.New(0))))
|
||||||
}
|
}
|
||||||
|
|
||||||
t.Run(c.test, func(tt *testing.T) {
|
t.Run(c.test, func(tt *testing.T) {
|
||||||
|
|
|
@ -4,6 +4,7 @@ import (
|
||||||
"github.com/aws/aws-sdk-go/aws/session"
|
"github.com/aws/aws-sdk-go/aws/session"
|
||||||
"github.com/aws/aws-sdk-go/service/dynamodb"
|
"github.com/aws/aws-sdk-go/service/dynamodb"
|
||||||
"github.com/aws/aws-sdk-go/service/dynamodb/dynamodbiface"
|
"github.com/aws/aws-sdk-go/service/dynamodb/dynamodbiface"
|
||||||
|
"github.com/cloudskiff/driftctl/pkg/remote/cache"
|
||||||
)
|
)
|
||||||
|
|
||||||
type DynamoDBRepository interface {
|
type DynamoDBRepository interface {
|
||||||
|
@ -12,15 +13,21 @@ type DynamoDBRepository interface {
|
||||||
|
|
||||||
type dynamoDBRepository struct {
|
type dynamoDBRepository struct {
|
||||||
client dynamodbiface.DynamoDBAPI
|
client dynamodbiface.DynamoDBAPI
|
||||||
|
cache cache.Cache
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewDynamoDBRepository(session *session.Session) *dynamoDBRepository {
|
func NewDynamoDBRepository(session *session.Session, c cache.Cache) *dynamoDBRepository {
|
||||||
return &dynamoDBRepository{
|
return &dynamoDBRepository{
|
||||||
dynamodb.New(session),
|
dynamodb.New(session),
|
||||||
|
c,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r *dynamoDBRepository) ListAllTables() ([]*string, error) {
|
func (r *dynamoDBRepository) ListAllTables() ([]*string, error) {
|
||||||
|
if v := r.cache.Get("dynamodbListAllTables"); v != nil {
|
||||||
|
return v.([]*string), nil
|
||||||
|
}
|
||||||
|
|
||||||
var tables []*string
|
var tables []*string
|
||||||
input := &dynamodb.ListTablesInput{}
|
input := &dynamodb.ListTablesInput{}
|
||||||
err := r.client.ListTablesPages(input, func(res *dynamodb.ListTablesOutput, lastPage bool) bool {
|
err := r.client.ListTablesPages(input, func(res *dynamodb.ListTablesOutput, lastPage bool) bool {
|
||||||
|
@ -30,5 +37,7 @@ func (r *dynamoDBRepository) ListAllTables() ([]*string, error) {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
r.cache.Put("dynamodbListAllTables", tables)
|
||||||
return tables, nil
|
return tables, nil
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,10 +4,10 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/aws/aws-sdk-go/service/dynamodb"
|
|
||||||
awstest "github.com/cloudskiff/driftctl/test/aws"
|
|
||||||
|
|
||||||
"github.com/aws/aws-sdk-go/aws"
|
"github.com/aws/aws-sdk-go/aws"
|
||||||
|
"github.com/aws/aws-sdk-go/service/dynamodb"
|
||||||
|
"github.com/cloudskiff/driftctl/pkg/remote/cache"
|
||||||
|
awstest "github.com/cloudskiff/driftctl/test/aws"
|
||||||
|
|
||||||
"github.com/stretchr/testify/mock"
|
"github.com/stretchr/testify/mock"
|
||||||
|
|
||||||
|
@ -44,7 +44,7 @@ func Test_dynamoDBRepository_ListAllTopics(t *testing.T) {
|
||||||
},
|
},
|
||||||
}, true)
|
}, true)
|
||||||
return true
|
return true
|
||||||
})).Return(nil)
|
})).Return(nil).Once()
|
||||||
},
|
},
|
||||||
want: []*string{
|
want: []*string{
|
||||||
aws.String("1"),
|
aws.String("1"),
|
||||||
|
@ -58,13 +58,24 @@ func Test_dynamoDBRepository_ListAllTopics(t *testing.T) {
|
||||||
}
|
}
|
||||||
for _, tt := range tests {
|
for _, tt := range tests {
|
||||||
t.Run(tt.name, func(t *testing.T) {
|
t.Run(tt.name, func(t *testing.T) {
|
||||||
|
store := cache.New(1)
|
||||||
client := awstest.MockFakeDynamoDB{}
|
client := awstest.MockFakeDynamoDB{}
|
||||||
tt.mocks(&client)
|
tt.mocks(&client)
|
||||||
r := &dynamoDBRepository{
|
r := &dynamoDBRepository{
|
||||||
client: &client,
|
client: &client,
|
||||||
|
cache: store,
|
||||||
}
|
}
|
||||||
got, err := r.ListAllTables()
|
got, err := r.ListAllTables()
|
||||||
assert.Equal(t, tt.wantErr, err)
|
assert.Equal(t, tt.wantErr, err)
|
||||||
|
|
||||||
|
if err == nil {
|
||||||
|
// Check that results were cached
|
||||||
|
cachedData, err := r.ListAllTables()
|
||||||
|
assert.NoError(t, err)
|
||||||
|
assert.Equal(t, got, cachedData)
|
||||||
|
assert.IsType(t, []*string{}, store.Get("dynamodbListAllTables"))
|
||||||
|
}
|
||||||
|
|
||||||
changelog, err := diff.Diff(got, tt.want)
|
changelog, err := diff.Diff(got, tt.want)
|
||||||
assert.Nil(t, err)
|
assert.Nil(t, err)
|
||||||
if len(changelog) > 0 {
|
if len(changelog) > 0 {
|
||||||
|
|
|
@ -4,6 +4,7 @@ import (
|
||||||
"github.com/aws/aws-sdk-go/aws/session"
|
"github.com/aws/aws-sdk-go/aws/session"
|
||||||
"github.com/aws/aws-sdk-go/service/ecr"
|
"github.com/aws/aws-sdk-go/service/ecr"
|
||||||
"github.com/aws/aws-sdk-go/service/ecr/ecriface"
|
"github.com/aws/aws-sdk-go/service/ecr/ecriface"
|
||||||
|
"github.com/cloudskiff/driftctl/pkg/remote/cache"
|
||||||
)
|
)
|
||||||
|
|
||||||
type ECRRepository interface {
|
type ECRRepository interface {
|
||||||
|
@ -12,15 +13,21 @@ type ECRRepository interface {
|
||||||
|
|
||||||
type ecrRepository struct {
|
type ecrRepository struct {
|
||||||
client ecriface.ECRAPI
|
client ecriface.ECRAPI
|
||||||
|
cache cache.Cache
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewECRRepository(session *session.Session) *ecrRepository {
|
func NewECRRepository(session *session.Session, c cache.Cache) *ecrRepository {
|
||||||
return &ecrRepository{
|
return &ecrRepository{
|
||||||
ecr.New(session),
|
ecr.New(session),
|
||||||
|
c,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r *ecrRepository) ListAllRepositories() ([]*ecr.Repository, error) {
|
func (r *ecrRepository) ListAllRepositories() ([]*ecr.Repository, error) {
|
||||||
|
if v := r.cache.Get("ecrListAllRepositories"); v != nil {
|
||||||
|
return v.([]*ecr.Repository), nil
|
||||||
|
}
|
||||||
|
|
||||||
var repositories []*ecr.Repository
|
var repositories []*ecr.Repository
|
||||||
input := &ecr.DescribeRepositoriesInput{}
|
input := &ecr.DescribeRepositoriesInput{}
|
||||||
err := r.client.DescribeRepositoriesPages(input, func(res *ecr.DescribeRepositoriesOutput, lastPage bool) bool {
|
err := r.client.DescribeRepositoriesPages(input, func(res *ecr.DescribeRepositoriesOutput, lastPage bool) bool {
|
||||||
|
@ -30,5 +37,7 @@ func (r *ecrRepository) ListAllRepositories() ([]*ecr.Repository, error) {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
r.cache.Put("ecrListAllRepositories", repositories)
|
||||||
return repositories, nil
|
return repositories, nil
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,6 +5,7 @@ import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/aws/aws-sdk-go/service/ecr"
|
"github.com/aws/aws-sdk-go/service/ecr"
|
||||||
|
"github.com/cloudskiff/driftctl/pkg/remote/cache"
|
||||||
awstest "github.com/cloudskiff/driftctl/test/aws"
|
awstest "github.com/cloudskiff/driftctl/test/aws"
|
||||||
|
|
||||||
"github.com/aws/aws-sdk-go/aws"
|
"github.com/aws/aws-sdk-go/aws"
|
||||||
|
@ -44,7 +45,7 @@ func Test_ecrRepository_ListAllRepositories(t *testing.T) {
|
||||||
},
|
},
|
||||||
}, true)
|
}, true)
|
||||||
return true
|
return true
|
||||||
})).Return(nil)
|
})).Return(nil).Once()
|
||||||
},
|
},
|
||||||
want: []*ecr.Repository{
|
want: []*ecr.Repository{
|
||||||
{RepositoryName: aws.String("1")},
|
{RepositoryName: aws.String("1")},
|
||||||
|
@ -58,13 +59,24 @@ func Test_ecrRepository_ListAllRepositories(t *testing.T) {
|
||||||
}
|
}
|
||||||
for _, tt := range tests {
|
for _, tt := range tests {
|
||||||
t.Run(tt.name, func(t *testing.T) {
|
t.Run(tt.name, func(t *testing.T) {
|
||||||
|
store := cache.New(1)
|
||||||
client := awstest.MockFakeECR{}
|
client := awstest.MockFakeECR{}
|
||||||
tt.mocks(&client)
|
tt.mocks(&client)
|
||||||
r := &ecrRepository{
|
r := &ecrRepository{
|
||||||
client: &client,
|
client: &client,
|
||||||
|
cache: store,
|
||||||
}
|
}
|
||||||
got, err := r.ListAllRepositories()
|
got, err := r.ListAllRepositories()
|
||||||
assert.Equal(t, tt.wantErr, err)
|
assert.Equal(t, tt.wantErr, err)
|
||||||
|
|
||||||
|
if err == nil {
|
||||||
|
// Check that results were cached
|
||||||
|
cachedData, err := r.ListAllRepositories()
|
||||||
|
assert.NoError(t, err)
|
||||||
|
assert.Equal(t, got, cachedData)
|
||||||
|
assert.IsType(t, []*ecr.Repository{}, store.Get("ecrListAllRepositories"))
|
||||||
|
}
|
||||||
|
|
||||||
changelog, err := diff.Diff(got, tt.want)
|
changelog, err := diff.Diff(got, tt.want)
|
||||||
assert.Nil(t, err)
|
assert.Nil(t, err)
|
||||||
if len(changelog) > 0 {
|
if len(changelog) > 0 {
|
||||||
|
|
|
@ -6,6 +6,7 @@ import (
|
||||||
"github.com/aws/aws-sdk-go/aws/session"
|
"github.com/aws/aws-sdk-go/aws/session"
|
||||||
"github.com/aws/aws-sdk-go/service/kms"
|
"github.com/aws/aws-sdk-go/service/kms"
|
||||||
"github.com/aws/aws-sdk-go/service/kms/kmsiface"
|
"github.com/aws/aws-sdk-go/service/kms/kmsiface"
|
||||||
|
"github.com/cloudskiff/driftctl/pkg/remote/cache"
|
||||||
)
|
)
|
||||||
|
|
||||||
type KMSRepository interface {
|
type KMSRepository interface {
|
||||||
|
@ -15,15 +16,21 @@ type KMSRepository interface {
|
||||||
|
|
||||||
type kmsRepository struct {
|
type kmsRepository struct {
|
||||||
client kmsiface.KMSAPI
|
client kmsiface.KMSAPI
|
||||||
|
cache cache.Cache
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewKMSRepository(session *session.Session) *kmsRepository {
|
func NewKMSRepository(session *session.Session, c cache.Cache) *kmsRepository {
|
||||||
return &kmsRepository{
|
return &kmsRepository{
|
||||||
kms.New(session),
|
kms.New(session),
|
||||||
|
c,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r *kmsRepository) ListAllKeys() ([]*kms.KeyListEntry, error) {
|
func (r *kmsRepository) ListAllKeys() ([]*kms.KeyListEntry, error) {
|
||||||
|
if v := r.cache.Get("kmsListAllKeys"); v != nil {
|
||||||
|
return v.([]*kms.KeyListEntry), nil
|
||||||
|
}
|
||||||
|
|
||||||
var keys []*kms.KeyListEntry
|
var keys []*kms.KeyListEntry
|
||||||
input := kms.ListKeysInput{}
|
input := kms.ListKeysInput{}
|
||||||
err := r.client.ListKeysPages(&input,
|
err := r.client.ListKeysPages(&input,
|
||||||
|
@ -39,10 +46,16 @@ func (r *kmsRepository) ListAllKeys() ([]*kms.KeyListEntry, error) {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
r.cache.Put("kmsListAllKeys", customerKeys)
|
||||||
return customerKeys, nil
|
return customerKeys, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r *kmsRepository) ListAllAliases() ([]*kms.AliasListEntry, error) {
|
func (r *kmsRepository) ListAllAliases() ([]*kms.AliasListEntry, error) {
|
||||||
|
if v := r.cache.Get("kmsListAllAliases"); v != nil {
|
||||||
|
return v.([]*kms.AliasListEntry), nil
|
||||||
|
}
|
||||||
|
|
||||||
var aliases []*kms.AliasListEntry
|
var aliases []*kms.AliasListEntry
|
||||||
input := kms.ListAliasesInput{}
|
input := kms.ListAliasesInput{}
|
||||||
err := r.client.ListAliasesPages(&input,
|
err := r.client.ListAliasesPages(&input,
|
||||||
|
@ -54,7 +67,10 @@ func (r *kmsRepository) ListAllAliases() ([]*kms.AliasListEntry, error) {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
return r.filterAliases(aliases), nil
|
|
||||||
|
result := r.filterAliases(aliases)
|
||||||
|
r.cache.Put("kmsListAllAliases", result)
|
||||||
|
return result, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r *kmsRepository) filterKeys(keys []*kms.KeyListEntry) ([]*kms.KeyListEntry, error) {
|
func (r *kmsRepository) filterKeys(keys []*kms.KeyListEntry) ([]*kms.KeyListEntry, error) {
|
||||||
|
|
|
@ -4,11 +4,10 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/aws/aws-sdk-go/service/kms"
|
|
||||||
awstest "github.com/cloudskiff/driftctl/test/aws"
|
|
||||||
|
|
||||||
"github.com/aws/aws-sdk-go/aws"
|
"github.com/aws/aws-sdk-go/aws"
|
||||||
|
"github.com/aws/aws-sdk-go/service/kms"
|
||||||
|
"github.com/cloudskiff/driftctl/pkg/remote/cache"
|
||||||
|
awstest "github.com/cloudskiff/driftctl/test/aws"
|
||||||
"github.com/stretchr/testify/mock"
|
"github.com/stretchr/testify/mock"
|
||||||
|
|
||||||
"github.com/r3labs/diff/v2"
|
"github.com/r3labs/diff/v2"
|
||||||
|
@ -36,7 +35,7 @@ func Test_KMSRepository_ListAllKeys(t *testing.T) {
|
||||||
},
|
},
|
||||||
}, true)
|
}, true)
|
||||||
return true
|
return true
|
||||||
})).Return(nil)
|
})).Return(nil).Once()
|
||||||
client.On("DescribeKey",
|
client.On("DescribeKey",
|
||||||
&kms.DescribeKeyInput{
|
&kms.DescribeKeyInput{
|
||||||
KeyId: aws.String("1"),
|
KeyId: aws.String("1"),
|
||||||
|
@ -45,7 +44,7 @@ func Test_KMSRepository_ListAllKeys(t *testing.T) {
|
||||||
KeyId: aws.String("1"),
|
KeyId: aws.String("1"),
|
||||||
KeyManager: aws.String("CUSTOMER"),
|
KeyManager: aws.String("CUSTOMER"),
|
||||||
},
|
},
|
||||||
}, nil)
|
}, nil).Once()
|
||||||
client.On("DescribeKey",
|
client.On("DescribeKey",
|
||||||
&kms.DescribeKeyInput{
|
&kms.DescribeKeyInput{
|
||||||
KeyId: aws.String("2"),
|
KeyId: aws.String("2"),
|
||||||
|
@ -54,7 +53,7 @@ func Test_KMSRepository_ListAllKeys(t *testing.T) {
|
||||||
KeyId: aws.String("2"),
|
KeyId: aws.String("2"),
|
||||||
KeyManager: aws.String("AWS"),
|
KeyManager: aws.String("AWS"),
|
||||||
},
|
},
|
||||||
}, nil)
|
}, nil).Once()
|
||||||
client.On("DescribeKey",
|
client.On("DescribeKey",
|
||||||
&kms.DescribeKeyInput{
|
&kms.DescribeKeyInput{
|
||||||
KeyId: aws.String("3"),
|
KeyId: aws.String("3"),
|
||||||
|
@ -63,7 +62,7 @@ func Test_KMSRepository_ListAllKeys(t *testing.T) {
|
||||||
KeyId: aws.String("3"),
|
KeyId: aws.String("3"),
|
||||||
KeyManager: aws.String("AWS"),
|
KeyManager: aws.String("AWS"),
|
||||||
},
|
},
|
||||||
}, nil)
|
}, nil).Once()
|
||||||
},
|
},
|
||||||
want: []*kms.KeyListEntry{
|
want: []*kms.KeyListEntry{
|
||||||
{KeyId: aws.String("1")},
|
{KeyId: aws.String("1")},
|
||||||
|
@ -72,13 +71,24 @@ func Test_KMSRepository_ListAllKeys(t *testing.T) {
|
||||||
}
|
}
|
||||||
for _, tt := range tests {
|
for _, tt := range tests {
|
||||||
t.Run(tt.name, func(t *testing.T) {
|
t.Run(tt.name, func(t *testing.T) {
|
||||||
|
store := cache.New(1)
|
||||||
client := awstest.MockFakeKMS{}
|
client := awstest.MockFakeKMS{}
|
||||||
tt.mocks(&client)
|
tt.mocks(&client)
|
||||||
r := &kmsRepository{
|
r := &kmsRepository{
|
||||||
client: &client,
|
client: &client,
|
||||||
|
cache: store,
|
||||||
}
|
}
|
||||||
got, err := r.ListAllKeys()
|
got, err := r.ListAllKeys()
|
||||||
assert.Equal(t, tt.wantErr, err)
|
assert.Equal(t, tt.wantErr, err)
|
||||||
|
|
||||||
|
if err == nil {
|
||||||
|
// Check that results were cached
|
||||||
|
cachedData, err := r.ListAllKeys()
|
||||||
|
assert.NoError(t, err)
|
||||||
|
assert.Equal(t, got, cachedData)
|
||||||
|
assert.IsType(t, []*kms.KeyListEntry{}, store.Get("kmsListAllKeys"))
|
||||||
|
}
|
||||||
|
|
||||||
changelog, err := diff.Diff(got, tt.want)
|
changelog, err := diff.Diff(got, tt.want)
|
||||||
assert.Nil(t, err)
|
assert.Nil(t, err)
|
||||||
if len(changelog) > 0 {
|
if len(changelog) > 0 {
|
||||||
|
@ -116,7 +126,7 @@ func Test_KMSRepository_ListAllAliases(t *testing.T) {
|
||||||
},
|
},
|
||||||
}, true)
|
}, true)
|
||||||
return true
|
return true
|
||||||
})).Return(nil)
|
})).Return(nil).Once()
|
||||||
},
|
},
|
||||||
want: []*kms.AliasListEntry{
|
want: []*kms.AliasListEntry{
|
||||||
{AliasName: aws.String("alias/1")},
|
{AliasName: aws.String("alias/1")},
|
||||||
|
@ -129,13 +139,24 @@ func Test_KMSRepository_ListAllAliases(t *testing.T) {
|
||||||
}
|
}
|
||||||
for _, tt := range tests {
|
for _, tt := range tests {
|
||||||
t.Run(tt.name, func(t *testing.T) {
|
t.Run(tt.name, func(t *testing.T) {
|
||||||
|
store := cache.New(1)
|
||||||
client := awstest.MockFakeKMS{}
|
client := awstest.MockFakeKMS{}
|
||||||
tt.mocks(&client)
|
tt.mocks(&client)
|
||||||
r := &kmsRepository{
|
r := &kmsRepository{
|
||||||
client: &client,
|
client: &client,
|
||||||
|
cache: store,
|
||||||
}
|
}
|
||||||
got, err := r.ListAllAliases()
|
got, err := r.ListAllAliases()
|
||||||
assert.Equal(t, tt.wantErr, err)
|
assert.Equal(t, tt.wantErr, err)
|
||||||
|
|
||||||
|
if err == nil {
|
||||||
|
// Check that results were cached
|
||||||
|
cachedData, err := r.ListAllAliases()
|
||||||
|
assert.NoError(t, err)
|
||||||
|
assert.Equal(t, got, cachedData)
|
||||||
|
assert.IsType(t, []*kms.AliasListEntry{}, store.Get("kmsListAllAliases"))
|
||||||
|
}
|
||||||
|
|
||||||
changelog, err := diff.Diff(got, tt.want)
|
changelog, err := diff.Diff(got, tt.want)
|
||||||
assert.Nil(t, err)
|
assert.Nil(t, err)
|
||||||
if len(changelog) > 0 {
|
if len(changelog) > 0 {
|
||||||
|
|
Loading…
Reference in New Issue