-
Notifications
You must be signed in to change notification settings - Fork 69
/
iam_test.go
60 lines (56 loc) · 1.32 KB
/
iam_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
package iam
import (
"crypto/tls"
"crypto/x509"
"net/http"
"net/http/httptest"
"net/url"
"testing"
"github.com/akamai/AkamaiOPEN-edgegrid-golang/v9/pkg/edgegrid"
"github.com/akamai/AkamaiOPEN-edgegrid-golang/v9/pkg/session"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func mockAPIClient(t *testing.T, mockServer *httptest.Server) IAM {
serverURL, err := url.Parse(mockServer.URL)
require.NoError(t, err)
certPool := x509.NewCertPool()
certPool.AddCert(mockServer.Certificate())
httpClient := &http.Client{
Transport: &http.Transport{
TLSClientConfig: &tls.Config{
RootCAs: certPool,
},
},
}
s, err := session.New(session.WithClient(httpClient), session.WithSigner(&edgegrid.Config{Host: serverURL.Host}))
assert.NoError(t, err)
return Client(s)
}
func TestClient(t *testing.T) {
sess, err := session.New()
require.NoError(t, err)
tests := map[string]struct {
options []Option
expected *iam
}{
"no options provided, return default": {
options: nil,
expected: &iam{
Session: sess,
},
},
"iam prefixes set to false": {
options: []Option{},
expected: &iam{
Session: sess,
},
},
}
for name, test := range tests {
t.Run(name, func(t *testing.T) {
res := Client(sess, test.options...)
assert.Equal(t, res, test.expected)
})
}
}