driftctl/pkg/remote/github/github_repository_supplier_...

84 lines
2.2 KiB
Go
Raw Normal View History

2021-02-15 13:24:20 +00:00
package github
import (
"context"
"testing"
"github.com/cloudskiff/driftctl/pkg/parallel"
"github.com/cloudskiff/driftctl/pkg/resource"
ghdeserializer "github.com/cloudskiff/driftctl/pkg/resource/github/deserializer"
"github.com/cloudskiff/driftctl/pkg/terraform"
"github.com/cloudskiff/driftctl/test"
"github.com/cloudskiff/driftctl/test/goldenfile"
dritftctlmocks "github.com/cloudskiff/driftctl/test/mocks"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/mock"
)
func TestGithubRepositorySupplier_Resources(t *testing.T) {
cases := []struct {
test string
dirName string
2021-02-16 09:51:40 +00:00
mocks func(client *MockGithubRepository)
2021-02-15 13:24:20 +00:00
err error
}{
{
test: "no github repos",
dirName: "github_repository_empty",
2021-02-16 09:51:40 +00:00
mocks: func(client *MockGithubRepository) {
2021-02-15 13:24:20 +00:00
client.On("ListRepositories").Return([]repository{}, nil)
},
err: nil,
},
{
test: "Multiple github repos Table",
dirName: "github_repository_multiple",
2021-02-16 09:51:40 +00:00
mocks: func(client *MockGithubRepository) {
2021-02-15 13:24:20 +00:00
client.On("ListRepositories").Return([]repository{
{
Name: "driftctl",
},
{
Name: "driftctl-demos",
},
}, nil)
},
err: nil,
},
}
for _, c := range cases {
shouldUpdate := c.dirName == *goldenfile.Update
providerLibrary := terraform.NewProviderLibrary()
supplierLibrary := resource.NewSupplierLibrary()
2021-02-16 09:51:40 +00:00
mockedRepo := MockGithubRepository{}
2021-02-15 13:24:20 +00:00
c.mocks(&mockedRepo)
if shouldUpdate {
provider, err := InitTestGithubProvider(providerLibrary)
if err != nil {
t.Fatal(err)
}
supplierLibrary.AddSupplier(NewGithubRepositorySupplier(provider, &mockedRepo))
}
t.Run(c.test, func(tt *testing.T) {
provider := dritftctlmocks.NewMockedGoldenTFProvider(c.dirName, providerLibrary.Provider(terraform.GITHUB), shouldUpdate)
githubRepositoryDeserializer := ghdeserializer.NewGithubRepositoryDeserializer()
s := &GithubRepositorySupplier{
provider,
githubRepositoryDeserializer,
&mockedRepo,
terraform.NewParallelResourceReader(parallel.NewParallelRunner(context.TODO(), 10)),
}
got, err := s.Resources()
assert.Equal(tt, c.err, err)
mock.AssertExpectationsForObjects(tt)
test.CtyTestDiff(got, c.dirName, provider, githubRepositoryDeserializer, shouldUpdate, tt)
})
}
}