-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtokens_test.go
140 lines (126 loc) · 3.63 KB
/
tokens_test.go
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
package awstokens_test
import (
"testing"
"time"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/cognitoidentityprovider"
"github.com/dgrijalva/jwt-go"
"github.com/mec07/awstokens"
"github.com/pkg/errors"
"github.com/stretchr/testify/assert"
)
type mockAuthInitiator struct {
shouldError bool
}
const (
refreshedAccessToken = "refreshed_access_token"
refreshedIDToken = "refreshed_id_token"
)
func (m *mockAuthInitiator) InitiateAuth(input *cognitoidentityprovider.InitiateAuthInput) (*cognitoidentityprovider.InitiateAuthOutput, error) {
if m.shouldError {
return nil, errors.New("InitiateAuth failed")
}
result := cognitoidentityprovider.AuthenticationResultType{
AccessToken: aws.String(refreshedAccessToken),
IdToken: aws.String(refreshedIDToken),
}
output := cognitoidentityprovider.InitiateAuthOutput{
AuthenticationResult: &result,
}
return &output, nil
}
func TestNewAuth(t *testing.T) {
_, err := awstokens.NewAuth(awstokens.Config{})
if err != nil {
t.Fatal(err)
}
}
func TestAuth(t *testing.T) {
signingKey := []byte("random key")
validToken, err := jwt.NewWithClaims(jwt.SigningMethodHS256, jwt.StandardClaims{
ExpiresAt: time.Now().Add(time.Hour).UTC().Unix(),
}).SignedString(signingKey)
if err != nil {
t.Fatalf("jwt.Token.SigningMethodHS256: %v", err)
}
expiredToken, err := jwt.NewWithClaims(jwt.SigningMethodHS256, jwt.StandardClaims{
ExpiresAt: time.Now().Add(-time.Hour).UTC().Unix(),
}).SignedString(signingKey)
if err != nil {
t.Fatalf("jwt.Token.SigningMethodHS256: %v", err)
}
table := []struct {
name string
idToken string
accessToken string
refreshToken string
expectedAuthToken string
shouldUseIDToken bool
shouldError bool
}{
{
name: "Auth token is inputted access token",
idToken: "id_token",
accessToken: validToken,
refreshToken: "refresh_token",
expectedAuthToken: validToken,
},
{
name: "Auth token is inputted ID token",
idToken: validToken,
accessToken: "access_token",
refreshToken: "refresh_token",
expectedAuthToken: validToken,
shouldUseIDToken: true,
},
{
name: "Auth token is refreshed access token",
idToken: "id_token",
accessToken: expiredToken,
refreshToken: "refresh_token",
expectedAuthToken: refreshedAccessToken,
},
{
name: "Auth token is refreshed ID token",
idToken: expiredToken,
accessToken: "access_token",
refreshToken: "refresh_token",
expectedAuthToken: refreshedIDToken,
shouldUseIDToken: true,
},
{
name: "refresh failure",
idToken: "id_token",
accessToken: expiredToken,
refreshToken: "refresh_token",
expectedAuthToken: refreshedIDToken,
shouldError: true,
},
}
for _, test := range table {
test := test
t.Run(test.name, func(t *testing.T) {
config := awstokens.Config{
IDToken: test.idToken,
AccessToken: test.accessToken,
RefreshToken: test.refreshToken,
ClientID: "1234",
Region: "us-west-1",
ShouldUseIDToken: test.shouldUseIDToken,
}
authInitiator := &mockAuthInitiator{shouldError: test.shouldError}
auth := awstokens.NewAuthWithAuthInitiator(authInitiator, config)
authToken, err := auth.GetAuthToken()
if test.shouldError {
if err == nil {
t.Fatal("expected an error")
}
return
}
if err != nil {
t.Fatalf("awstokens.Auth.GetAuthToken: %v", err)
}
assert.Equal(t, test.expectedAuthToken, authToken)
})
}
}