File: web_identity_provider_test.go

package info (click to toggle)
golang-github-aws-aws-sdk-go 1.44.133-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 245,296 kB
  • sloc: makefile: 120
file content (219 lines) | stat: -rw-r--r-- 6,067 bytes parent folder | download | duplicates (2)
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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
//go:build go1.7
// +build go1.7

package stscreds

import (
	"fmt"
	"net/http"
	"reflect"
	"strings"
	"testing"
	"time"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/client"
	"github.com/aws/aws-sdk-go/aws/credentials"
	"github.com/aws/aws-sdk-go/aws/request"
	"github.com/aws/aws-sdk-go/service/sts"
	"github.com/aws/aws-sdk-go/service/sts/stsiface"
)

func TestWebIdentityProviderRetrieve(t *testing.T) {
	cases := map[string]struct {
		roleARN           string
		tokenPath         string
		sessionName       string
		newClient         func(t *testing.T) stsiface.STSAPI
		duration          time.Duration
		expectedError     string
		expectedCredValue credentials.Value
	}{
		"session name case": {
			roleARN:     "arn01234567890123456789",
			tokenPath:   "testdata/token.jwt",
			sessionName: "foo",
			newClient: func(t *testing.T) stsiface.STSAPI {
				return mockAssumeRoleWithWebIdentityClient{
					t: t,
					doRequest: func(t *testing.T, input *sts.AssumeRoleWithWebIdentityInput) (
						*sts.AssumeRoleWithWebIdentityOutput, error,
					) {
						if e, a := "foo", *input.RoleSessionName; e != a {
							t.Errorf("expected %v, but received %v", e, a)
						}
						if input.DurationSeconds != nil {
							t.Errorf("expect no duration, got %v", *input.DurationSeconds)
						}

						return &sts.AssumeRoleWithWebIdentityOutput{
							Credentials: &sts.Credentials{
								Expiration:      aws.Time(time.Now()),
								AccessKeyId:     aws.String("access-key-id"),
								SecretAccessKey: aws.String("secret-access-key"),
								SessionToken:    aws.String("session-token"),
							},
						}, nil
					},
				}
			},
			expectedCredValue: credentials.Value{
				AccessKeyID:     "access-key-id",
				SecretAccessKey: "secret-access-key",
				SessionToken:    "session-token",
				ProviderName:    WebIdentityProviderName,
			},
		},
		"with duration": {
			roleARN:     "arn01234567890123456789",
			tokenPath:   "testdata/token.jwt",
			sessionName: "foo",
			duration:    15 * time.Minute,
			newClient: func(t *testing.T) stsiface.STSAPI {
				return mockAssumeRoleWithWebIdentityClient{
					t: t,
					doRequest: func(t *testing.T, input *sts.AssumeRoleWithWebIdentityInput) (
						*sts.AssumeRoleWithWebIdentityOutput, error,
					) {
						if e, a := int64((15*time.Minute)/time.Second), *input.DurationSeconds; e != a {
							t.Errorf("expect %v duration, got %v", e, a)
						}

						return &sts.AssumeRoleWithWebIdentityOutput{
							Credentials: &sts.Credentials{
								Expiration:      aws.Time(time.Now()),
								AccessKeyId:     aws.String("access-key-id"),
								SecretAccessKey: aws.String("secret-access-key"),
								SessionToken:    aws.String("session-token"),
							},
						}, nil
					},
				}
			},
			expectedCredValue: credentials.Value{
				AccessKeyID:     "access-key-id",
				SecretAccessKey: "secret-access-key",
				SessionToken:    "session-token",
				ProviderName:    WebIdentityProviderName,
			},
		},
	}

	for name, c := range cases {
		t.Run(name, func(t *testing.T) {
			p := NewWebIdentityRoleProvider(c.newClient(t), c.roleARN, c.sessionName, c.tokenPath)
			p.Duration = c.duration

			credValue, err := p.Retrieve()
			if len(c.expectedError) != 0 {
				if err == nil {
					t.Fatalf("expect error, got none")
				}
				if e, a := c.expectedError, err.Error(); !strings.Contains(a, e) {
					t.Fatalf("expect error to contain %v, got %v", e, a)
				}
				return
			}
			if err != nil {
				t.Fatalf("expect no error, got %v", err)
			}

			if e, a := c.expectedCredValue, credValue; !reflect.DeepEqual(e, a) {
				t.Errorf("expected %v, but received %v", e, a)
			}
		})
	}
}

type mockAssumeRoleWithWebIdentityClient struct {
	stsiface.STSAPI

	t         *testing.T
	doRequest func(*testing.T, *sts.AssumeRoleWithWebIdentityInput) (*sts.AssumeRoleWithWebIdentityOutput, error)
}

func (c mockAssumeRoleWithWebIdentityClient) AssumeRoleWithWebIdentityRequest(input *sts.AssumeRoleWithWebIdentityInput) (
	*request.Request, *sts.AssumeRoleWithWebIdentityOutput,
) {
	output, err := c.doRequest(c.t, input)

	req := &request.Request{
		HTTPRequest: &http.Request{},
		Retryer:     client.DefaultRetryer{},
	}
	req.Handlers.Send.PushBack(func(r *request.Request) {
		r.HTTPResponse = &http.Response{}
		r.Data = output
		r.Error = err

		var found bool
		for _, retryCode := range req.RetryErrorCodes {
			if retryCode == sts.ErrCodeInvalidIdentityTokenException {
				found = true
				break
			}
		}
		if !found {
			c.t.Errorf("expect ErrCodeInvalidIdentityTokenException error code to be retry-able")
		}
	})

	return req, output
}

func TestNewWebIdentityRoleProviderWithOptions(t *testing.T) {
	const roleARN = "a-role-arn"
	const roleSessionName = "a-session-name"

	cases := map[string]struct {
		options []func(*WebIdentityRoleProvider)
		expect  WebIdentityRoleProvider
	}{
		"no options": {
			expect: WebIdentityRoleProvider{
				client:          stubClient{},
				tokenFetcher:    stubTokenFetcher{},
				roleARN:         roleARN,
				roleSessionName: roleSessionName,
			},
		},
		"with options": {
			options: []func(*WebIdentityRoleProvider){
				func(o *WebIdentityRoleProvider) {
					o.Duration = 10 * time.Minute
					o.ExpiryWindow = time.Minute
				},
			},
			expect: WebIdentityRoleProvider{
				client:          stubClient{},
				tokenFetcher:    stubTokenFetcher{},
				roleARN:         roleARN,
				roleSessionName: roleSessionName,
				Duration:        10 * time.Minute,
				ExpiryWindow:    time.Minute,
			},
		},
	}

	for name, c := range cases {
		t.Run(name, func(t *testing.T) {

			p := NewWebIdentityRoleProviderWithOptions(
				stubClient{}, roleARN, roleSessionName,
				stubTokenFetcher{}, c.options...)

			if !reflect.DeepEqual(c.expect, *p) {
				t.Errorf("expect:\n%v\nactual:\n%v", c.expect, *p)
			}
		})
	}
}

type stubClient struct {
	stsiface.STSAPI
}
type stubTokenFetcher struct{}

func (stubTokenFetcher) FetchToken(credentials.Context) ([]byte, error) {
	return nil, fmt.Errorf("stubTokenFetcher should not be called")
}