2021-06-30 18:42:02 +00:00
package remote
import (
2021-08-20 13:15:51 +00:00
"errors"
2021-06-30 18:42:02 +00:00
"testing"
"github.com/cloudskiff/driftctl/mocks"
2021-07-26 09:55:59 +00:00
"github.com/cloudskiff/driftctl/pkg/filter"
2021-08-20 13:15:51 +00:00
"github.com/cloudskiff/driftctl/pkg/remote/alerts"
2021-06-30 18:42:02 +00:00
"github.com/cloudskiff/driftctl/pkg/remote/cache"
"github.com/cloudskiff/driftctl/pkg/remote/common"
2021-09-06 15:00:38 +00:00
remoteerr "github.com/cloudskiff/driftctl/pkg/remote/error"
2021-06-30 18:42:02 +00:00
"github.com/cloudskiff/driftctl/pkg/remote/github"
githubres "github.com/cloudskiff/driftctl/pkg/resource/github"
"github.com/cloudskiff/driftctl/pkg/terraform"
testresource "github.com/cloudskiff/driftctl/test/resource"
tftest "github.com/cloudskiff/driftctl/test/terraform"
2021-07-26 09:55:59 +00:00
"github.com/stretchr/testify/mock"
2021-06-30 18:42:02 +00:00
"github.com/cloudskiff/driftctl/pkg/resource"
"github.com/cloudskiff/driftctl/test"
"github.com/cloudskiff/driftctl/test/goldenfile"
"github.com/stretchr/testify/assert"
)
func TestScanGithubTeam ( t * testing . T ) {
tests := [ ] struct {
test string
dirName string
2021-08-20 13:15:51 +00:00
mocks func ( * github . MockGithubRepository , * mocks . AlerterInterface )
2021-06-30 18:42:02 +00:00
err error
} {
{
test : "no github teams" ,
dirName : "github_teams_empty" ,
2021-08-20 13:15:51 +00:00
mocks : func ( client * github . MockGithubRepository , alerter * mocks . AlerterInterface ) {
2021-06-30 18:42:02 +00:00
client . On ( "ListTeams" ) . Return ( [ ] github . Team { } , nil )
} ,
err : nil ,
} ,
{
test : "Multiple github teams with parent" ,
dirName : "github_teams_multiple" ,
2021-08-20 13:15:51 +00:00
mocks : func ( client * github . MockGithubRepository , alerter * mocks . AlerterInterface ) {
2021-06-30 18:42:02 +00:00
client . On ( "ListTeams" ) . Return ( [ ] github . Team {
{ DatabaseId : 4556811 } , // github_team.team1
{ DatabaseId : 4556812 } , // github_team.team2
{ DatabaseId : 4556814 } , // github_team.with_parent
} , nil )
} ,
err : nil ,
} ,
2021-08-20 13:15:51 +00:00
{
test : "cannot list teams" ,
dirName : "github_teams_empty" ,
mocks : func ( client * github . MockGithubRepository , alerter * mocks . AlerterInterface ) {
client . On ( "ListTeams" ) . Return ( nil , errors . New ( "Your token has not been granted the required scopes to execute this query." ) )
2021-09-06 15:00:38 +00:00
alerter . On ( "SendAlert" , githubres . GithubTeamResourceType , alerts . NewRemoteAccessDeniedAlert ( common . RemoteGithubTerraform , remoteerr . NewResourceListingErrorWithType ( errors . New ( "Your token has not been granted the required scopes to execute this query." ) , githubres . GithubTeamResourceType , githubres . GithubTeamResourceType ) , alerts . EnumerationPhase ) ) . Return ( )
2021-08-20 13:15:51 +00:00
} ,
err : nil ,
} ,
2021-06-30 18:42:02 +00:00
}
schemaRepository := testresource . InitFakeSchemaRepository ( "github" , "4.4.0" )
githubres . InitResourcesMetadata ( schemaRepository )
factory := terraform . NewTerraformResourceFactory ( schemaRepository )
deserializer := resource . NewDeserializer ( factory )
for _ , c := range tests {
t . Run ( c . test , func ( tt * testing . T ) {
shouldUpdate := c . dirName == * goldenfile . Update
scanOptions := ScannerOptions { Deep : true }
providerLibrary := terraform . NewProviderLibrary ( )
remoteLibrary := common . NewRemoteLibrary ( )
2021-08-20 13:15:51 +00:00
// Initialize mocks
alerter := & mocks . AlerterInterface { }
2021-06-30 18:42:02 +00:00
mockedRepo := github . MockGithubRepository { }
2021-08-20 13:15:51 +00:00
c . mocks ( & mockedRepo , alerter )
2021-06-30 18:42:02 +00:00
var repo github . GithubRepository = & mockedRepo
realProvider , err := tftest . InitTestGithubProvider ( providerLibrary , "4.4.0" )
if err != nil {
t . Fatal ( err )
}
provider := tftest . NewFakeTerraformProvider ( realProvider )
provider . WithResponse ( c . dirName )
if shouldUpdate {
err := realProvider . Init ( )
if err != nil {
t . Fatal ( err )
}
provider . ShouldUpdate ( )
repo = github . NewGithubRepository ( realProvider . GetConfig ( ) , cache . New ( 0 ) )
}
2021-07-05 13:33:42 +00:00
remoteLibrary . AddEnumerator ( github . NewGithubTeamEnumerator ( repo , factory ) )
2021-07-01 15:11:25 +00:00
remoteLibrary . AddDetailsFetcher ( githubres . GithubTeamResourceType , common . NewGenericDetailsFetcher ( githubres . GithubTeamResourceType , provider , deserializer ) )
2021-06-30 18:42:02 +00:00
2021-07-26 09:55:59 +00:00
testFilter := & filter . MockFilter { }
testFilter . On ( "IsTypeIgnored" , mock . Anything ) . Return ( false )
s := NewScanner ( remoteLibrary , alerter , scanOptions , testFilter )
2021-06-30 18:42:02 +00:00
got , err := s . Resources ( )
assert . Equal ( tt , err , c . err )
if err != nil {
return
}
test . TestAgainstGoldenFile ( got , githubres . GithubTeamResourceType , c . dirName , provider , deserializer , shouldUpdate , tt )
2021-08-20 13:15:51 +00:00
mockedRepo . AssertExpectations ( tt )
alerter . AssertExpectations ( tt )
2021-06-30 18:42:02 +00:00
} )
}
}