1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
|
//go:build go1.9
// +build go1.9
package ssocreds
import (
"fmt"
"reflect"
"testing"
"time"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/credentials"
"github.com/aws/aws-sdk-go/aws/request"
"github.com/aws/aws-sdk-go/service/sso"
"github.com/aws/aws-sdk-go/service/sso/ssoiface"
)
type mockClient struct {
ssoiface.SSOAPI
t *testing.T
Output *sso.GetRoleCredentialsOutput
Err error
ExpectedAccountID string
ExpectedAccessToken string
ExpectedRoleName string
ExpectedClientRegion string
Response func(mockClient) (*sso.GetRoleCredentialsOutput, error)
}
func (m mockClient) GetRoleCredentialsWithContext(ctx aws.Context, params *sso.GetRoleCredentialsInput, _ ...request.Option) (*sso.GetRoleCredentialsOutput, error) {
m.t.Helper()
if len(m.ExpectedAccountID) > 0 {
if e, a := m.ExpectedAccountID, aws.StringValue(params.AccountId); e != a {
m.t.Errorf("expect %v, got %v", e, a)
}
}
if len(m.ExpectedAccessToken) > 0 {
if e, a := m.ExpectedAccessToken, aws.StringValue(params.AccessToken); e != a {
m.t.Errorf("expect %v, got %v", e, a)
}
}
if len(m.ExpectedRoleName) > 0 {
if e, a := m.ExpectedRoleName, aws.StringValue(params.RoleName); e != a {
m.t.Errorf("expect %v, got %v", e, a)
}
}
if m.Response == nil {
return &sso.GetRoleCredentialsOutput{}, nil
}
return m.Response(m)
}
func swapCacheLocation(dir string) func() {
original := defaultCacheLocation
defaultCacheLocation = func() string {
return dir
}
return func() {
defaultCacheLocation = original
}
}
func swapNowTime(referenceTime time.Time) func() {
original := nowTime
nowTime = func() time.Time {
return referenceTime
}
return func() {
nowTime = original
}
}
func TestProvider(t *testing.T) {
restoreCache := swapCacheLocation("testdata")
defer restoreCache()
restoreTime := swapNowTime(time.Date(2021, 01, 19, 19, 50, 0, 0, time.UTC))
defer restoreTime()
cases := map[string]struct {
Client mockClient
AccountID string
Region string
RoleName string
StartURL string
ExpectedErr bool
ExpectedCredentials credentials.Value
ExpectedExpire time.Time
}{
"missing required parameter values": {
StartURL: "https://invalid-required",
ExpectedErr: true,
},
"valid required parameter values": {
Client: mockClient{
ExpectedAccountID: "012345678901",
ExpectedRoleName: "TestRole",
ExpectedClientRegion: "us-west-2",
ExpectedAccessToken: "dGhpcyBpcyBub3QgYSByZWFsIHZhbHVl",
Response: func(mock mockClient) (*sso.GetRoleCredentialsOutput, error) {
return &sso.GetRoleCredentialsOutput{
RoleCredentials: &sso.RoleCredentials{
AccessKeyId: aws.String("AccessKey"),
SecretAccessKey: aws.String("SecretKey"),
SessionToken: aws.String("SessionToken"),
Expiration: aws.Int64(1611177743123),
},
}, nil
},
},
AccountID: "012345678901",
Region: "us-west-2",
RoleName: "TestRole",
StartURL: "https://valid-required-only",
ExpectedCredentials: credentials.Value{
AccessKeyID: "AccessKey",
SecretAccessKey: "SecretKey",
SessionToken: "SessionToken",
ProviderName: ProviderName,
},
ExpectedExpire: time.Date(2021, 01, 20, 21, 22, 23, 0.123e9, time.UTC),
},
"expired access token": {
StartURL: "https://expired",
ExpectedErr: true,
},
"api error": {
Client: mockClient{
ExpectedAccountID: "012345678901",
ExpectedRoleName: "TestRole",
ExpectedClientRegion: "us-west-2",
ExpectedAccessToken: "dGhpcyBpcyBub3QgYSByZWFsIHZhbHVl",
Response: func(mock mockClient) (*sso.GetRoleCredentialsOutput, error) {
return nil, fmt.Errorf("api error")
},
},
AccountID: "012345678901",
Region: "us-west-2",
RoleName: "TestRole",
StartURL: "https://valid-required-only",
ExpectedErr: true,
},
}
for name, tt := range cases {
t.Run(name, func(t *testing.T) {
tt.Client.t = t
provider := &Provider{
Client: tt.Client,
AccountID: tt.AccountID,
RoleName: tt.RoleName,
StartURL: tt.StartURL,
}
provider.Expiry.CurrentTime = nowTime
credentials, err := provider.Retrieve()
if (err != nil) != tt.ExpectedErr {
t.Errorf("expect error: %v", tt.ExpectedErr)
}
if e, a := tt.ExpectedCredentials, credentials; !reflect.DeepEqual(e, a) {
t.Errorf("expect %v, got %v", e, a)
}
if !tt.ExpectedExpire.IsZero() {
if e, a := tt.ExpectedExpire, provider.ExpiresAt(); !e.Equal(a) {
t.Errorf("expect %v, got %v", e, a)
}
}
})
}
}
|