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
|
package credentials
import (
"context"
"testing"
"github.com/aws/aws-sdk-go-v2/aws"
)
func TestStaticCredentialsProvider(t *testing.T) {
s := StaticCredentialsProvider{
Value: aws.Credentials{
AccessKeyID: "AKID",
SecretAccessKey: "SECRET",
SessionToken: "",
},
}
creds, err := s.Retrieve(context.Background())
if err != nil {
t.Errorf("expect no error, got %v", err)
}
if e, a := "AKID", creds.AccessKeyID; e != a {
t.Errorf("expect %v, got %v", e, a)
}
if e, a := "SECRET", creds.SecretAccessKey; e != a {
t.Errorf("expect %v, got %v", e, a)
}
if l := creds.SessionToken; len(l) != 0 {
t.Errorf("expect no token, got %v", l)
}
}
func TestStaticCredentialsProviderIsExpired(t *testing.T) {
s := StaticCredentialsProvider{
Value: aws.Credentials{
AccessKeyID: "AKID",
SecretAccessKey: "SECRET",
SessionToken: "",
},
}
creds, err := s.Retrieve(context.Background())
if err != nil {
t.Fatalf("expect no error, got %v", err)
}
if creds.Expired() {
t.Errorf("expect static credentials to never expire")
}
}
|