79 lines
2.0 KiB
Go
79 lines
2.0 KiB
Go
|
package repository
|
||
|
|
||
|
import (
|
||
|
"strings"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/aws/aws-sdk-go/service/ecr"
|
||
|
|
||
|
"github.com/aws/aws-sdk-go/aws"
|
||
|
|
||
|
"github.com/stretchr/testify/mock"
|
||
|
|
||
|
"github.com/cloudskiff/driftctl/mocks"
|
||
|
"github.com/r3labs/diff/v2"
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func Test_ecrRepository_ListAllRepository(t *testing.T) {
|
||
|
|
||
|
tests := []struct {
|
||
|
name string
|
||
|
mocks func(client *mocks.ECRClient)
|
||
|
want []*ecr.Repository
|
||
|
wantErr error
|
||
|
}{
|
||
|
{
|
||
|
name: "List with 2 pages",
|
||
|
mocks: func(client *mocks.ECRClient) {
|
||
|
client.On("DescribeRepositoriesPages",
|
||
|
&ecr.DescribeRepositoriesInput{},
|
||
|
mock.MatchedBy(func(callback func(res *ecr.DescribeRepositoriesOutput, lastPage bool) bool) bool {
|
||
|
callback(&ecr.DescribeRepositoriesOutput{
|
||
|
Repositories: []*ecr.Repository{
|
||
|
{RepositoryName: aws.String("1")},
|
||
|
{RepositoryName: aws.String("2")},
|
||
|
{RepositoryName: aws.String("3")},
|
||
|
},
|
||
|
}, false)
|
||
|
callback(&ecr.DescribeRepositoriesOutput{
|
||
|
Repositories: []*ecr.Repository{
|
||
|
{RepositoryName: aws.String("4")},
|
||
|
{RepositoryName: aws.String("5")},
|
||
|
{RepositoryName: aws.String("6")},
|
||
|
},
|
||
|
}, true)
|
||
|
return true
|
||
|
})).Return(nil)
|
||
|
},
|
||
|
want: []*ecr.Repository{
|
||
|
{RepositoryName: aws.String("1")},
|
||
|
{RepositoryName: aws.String("2")},
|
||
|
{RepositoryName: aws.String("3")},
|
||
|
{RepositoryName: aws.String("4")},
|
||
|
{RepositoryName: aws.String("5")},
|
||
|
{RepositoryName: aws.String("6")},
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
for _, tt := range tests {
|
||
|
t.Run(tt.name, func(t *testing.T) {
|
||
|
client := &mocks.ECRClient{}
|
||
|
tt.mocks(client)
|
||
|
r := &ecrRepository{
|
||
|
client: client,
|
||
|
}
|
||
|
got, err := r.ListAllRepository()
|
||
|
assert.Equal(t, tt.wantErr, err)
|
||
|
changelog, err := diff.Diff(got, tt.want)
|
||
|
assert.Nil(t, err)
|
||
|
if len(changelog) > 0 {
|
||
|
for _, change := range changelog {
|
||
|
t.Errorf("%s: %s -> %s", strings.Join(change.Path, "."), change.From, change.To)
|
||
|
}
|
||
|
t.Fail()
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
}
|