-
Notifications
You must be signed in to change notification settings - Fork 1
/
path_token_test.go
134 lines (126 loc) · 3.17 KB
/
path_token_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
package artifactory
import (
"context"
"encoding/json"
"net/http"
"net/http/httptest"
"testing"
"github.com/hashicorp/vault/sdk/logical"
rtTokenService "github.com/jsok/vault-plugin-secrets-artifactory/pkg/token"
)
func TestToken_Read(t *testing.T) {
tests := []struct {
expectation Expectation
createConfig bool
role map[string]interface{}
handler http.HandlerFunc
}{
{
ExpectedToSucceed,
true,
map[string]interface{}{
"username": "user",
"member_of_groups": "group",
},
func(w http.ResponseWriter, r *http.Request) {
body, err := json.Marshal(
&rtTokenService.CreateTokenResponse{
AccessToken: "abc123",
ExpiresIn: 3600,
Scope: "api:* member-of-groups:readers",
TokenType: "Bearer",
})
if err != nil {
t.Fatal("Encoding mock HTTP response failed!")
}
w.Write(body)
},
},
{
ExpectedToSucceed,
true,
map[string]interface{}{"member_of_groups": "group"}, // transient user
func(w http.ResponseWriter, r *http.Request) {
body, err := json.Marshal(
&rtTokenService.CreateTokenResponse{
AccessToken: "abc123",
ExpiresIn: 3600,
Scope: "api:* member-of-groups:readers",
TokenType: "Bearer",
})
if err != nil {
t.Fatal("Encoding mock HTTP response failed!")
}
w.Write(body)
},
},
{
FailWithLogicalError, // Role does not exist
true,
nil,
func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusOK)
},
},
{
FailWithLogicalError, // Backend has not been configured
false,
map[string]interface{}{"username": "user"},
nil,
},
{
FailWithLogicalError, // HTTP 403 response from Artifactory
true,
map[string]interface{}{
"username": "user",
"member_of_groups": "group",
},
func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusForbidden)
},
},
}
for _, test := range tests {
b, storage := newBackend(t)
// Mock the api/security/token endpoint
serverURL := "http://example.com/"
if test.handler != nil {
ts := httptest.NewTLSServer(test.handler)
defer ts.Close()
serverURL = ts.URL + "/"
}
if test.createConfig {
createConfigReq := &logical.Request{
Operation: logical.UpdateOperation,
Path: "config",
Storage: storage,
Data: map[string]interface{}{
"address": serverURL,
"api_key": "abc123",
"tls_verify": false,
},
}
resp, err := b.HandleRequest(context.Background(), createConfigReq)
assertLogicalResponse(t, ExpectedToSucceed, err, resp)
}
if test.role != nil {
createRoleReq := &logical.Request{
Operation: logical.CreateOperation,
Path: "roles/test",
Storage: storage,
Data: test.role,
}
resp, err := b.HandleRequest(context.Background(), createRoleReq)
assertLogicalResponse(t, ExpectedToSucceed, err, resp)
}
if test.handler != nil {
req := &logical.Request{
Operation: logical.ReadOperation,
Path: "token/test",
Storage: storage,
}
resp, err := b.HandleRequest(context.Background(), req)
assertLogicalResponse(t, test.expectation, err, resp)
}
}
}