-
Notifications
You must be signed in to change notification settings - Fork 0
/
api_client_test.go
259 lines (258 loc) · 7.04 KB
/
api_client_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
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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
package keycloak_test
//const (
// EnvTestConfigFile = "TEST_CONFIG_FILE"
//)
//
//type testConfig struct {
// Name string `json:"name"`
// ClientConfig struct {
// Cred *struct {
// BearerToken string `json:"bearer_token"`
// InstallDocument *keycloak.InstallDocument `json:"install_document"`
// } `json:"cred"`
// NoCred *struct {
// AuthServerURL string `json:"auth_server_url"`
// RealmName string `json:"realm_name"`
// } `json:"no_cred"`
// } `json:"client_config"`
// ClientID string `json:"client_id"`
// Strategy string `json:"strategy"`
// Audience string `json:"audience"`
// ExpectedDecisionResult bool `json:"expected_decision_result"`
// Permissions []struct {
// Resource string `json:"resource"`
// Scope string `json:"scope"`
// }
//}
//
//func getTestConfigs(t *testing.T) []*testConfig {
// t.Helper()
//
// var (
// b []byte
// f *os.File
// err error
//
// fp = os.Getenv(EnvTestConfigFile)
//
// configs = make([]*testConfig, 0)
// )
//
// if fp == "" {
// t.Logf("env %q not defined, looking in default location...", EnvTestConfigFile)
// if cwd, err := os.Getwd(); err != nil {
// t.Logf("unable to get working directory: %v", err)
// t.FailNow()
// return nil
// } else {
// fp = fmt.Sprintf("%s/test_configs.json", cwd)
// }
// }
//
// t.Logf("Using config file %q", fp)
//
// if f, err = os.OpenFile(fp, os.O_RDONLY, 0); err != nil {
// t.Logf("Error reading config file %q: %v", fp, err)
// t.FailNow()
// return nil
// }
//
// defer func() { _ = f.Close() }()
//
// b, _ = ioutil.ReadAll(f)
// if err = json.Unmarshal(b, &configs); err != nil {
// t.Logf("Error unmarshalling %q into %T: %v", fp, configs, err)
// t.FailNow()
// return nil
// }
//
// return configs
//}
//
//func newClient(t *testing.T, testConfig *testConfig, mutators ...keycloak.ConfigMutator) (*keycloak.APIClient, keycloak.AuthenticationProvider) {
// t.Helper()
// var (
// cl *keycloak.APIClient
// ap keycloak.AuthenticationProvider
// err error
// )
//
// if testConfig.Name == "" {
// t.Log("Config entry missing \"name\" field")
// t.FailNow()
// return nil, nil
// }
//
// if mutators == nil {
// mutators = make([]keycloak.ConfigMutator, 0)
// }
//
// if testConfig.ClientConfig.Cred == nil && testConfig.ClientConfig.NoCred == nil {
// t.Logf("Test %q has nil cred and no_cred entries (one required)", testConfig.Name)
// t.FailNow()
// return nil, nil
// }
//
// if testConfig.ClientConfig.Cred != nil && testConfig.ClientConfig.NoCred != nil {
// t.Logf("Test %q has non-nil cred and no_cred entries (only 1 allowed)", testConfig.Name)
// t.FailNow()
// return nil, nil
// }
//
// if testConfig.ClientConfig.Cred != nil {
// if testConfig.ClientConfig.Cred.BearerToken != "" {
// ap = keycloak.NewBearerTokenProvider(testConfig.ClientConfig.Cred.BearerToken)
// } else if testConfig.ClientConfig.Cred.InstallDocument != nil {
// ap, err = keycloak.NewClientSecretAuthenticationProvider(&keycloak.ClientSecretProviderConfig{
// InstallDocument: testConfig.ClientConfig.Cred.InstallDocument,
// })
// } else {
// t.Logf("Test %q does not have usable cred defined", testConfig.Name)
// t.FailNow()
// return nil, nil
// }
// } else {
// if testConfig.ClientConfig.NoCred.AuthServerURL == "" {
// t.Logf("Test %q no_cred has empty auth_server_url field", testConfig.Name)
// t.FailNow()
// return nil, nil
// }
// if testConfig.ClientConfig.NoCred.RealmName == "" {
// t.Logf("Test %q no_cred has empty realm_name field", testConfig.Name)
// t.FailNow()
// return nil, nil
// }
// clientConfig := keycloak.DefaultAPIClientConfig()
// clientConfig.AuthServerURLProvider = keycloak.NewAuthServerURLProvider(testConfig.ClientConfig.NoCred.AuthServerURL)
// cl, err = keycloak.NewAPIClient(clientConfig, mutators...)
// }
//
// if err != nil {
// t.Logf("Error building client for test %q: %v", testConfig.Name, err)
// t.FailNow()
// return nil, nil
// }
//
// return cl, ap
//}
//
//func wrapTestFunc(testConfig *testConfig, testFunc func(*testing.T, *testConfig)) func(*testing.T) {
// return func(t *testing.T) {
// testFunc(t, testConfig)
// }
//}
//
//func TestAPIClient(t *testing.T) {
// conf := getTestConfigs(t)
// if t.Failed() {
// return
// }
//
//testLoop:
// for i, tc := range conf {
// var testFunc func(*testing.T, *testConfig)
// switch tc.Name {
// case "issuer-config":
// testFunc = testGetIssuerConfig
// case "well-known-configs":
// testFunc = testWellKnownConfigs
// case "client-entitlement-confidential", "client-entitlement-bearer":
// testFunc = testClientEntitlement
// default:
// t.Logf("No test case to handle entry %d %q", i, tc.Name)
// t.Fail()
// continue testLoop
// }
//
// t.Run(tc.Name, wrapTestFunc(tc, testFunc))
// }
//}
//
//func testGetIssuerConfig(t *testing.T, conf *testConfig) {
// t.Parallel()
// cl, _ := newClient(t, conf)
// if cl == nil || t.Failed() {
// return
// }
// ctx, cancel := context.WithTimeout(context.Background(), 2*time.Second)
// defer cancel()
// config, err := cl.RealmIssuerConfiguration(ctx, realmName)
// if err != nil {
// t.Logf("Error fetching Realm Issuer Configuration: %s", err)
// t.Fail()
// } else {
// t.Logf("config=%v", config)
// }
//}
//
//func testWellKnownConfigs(t *testing.T, conf *testConfig) {
// t.Run("oidc", func(t *testing.T) {
// t.Parallel()
// cl, _ := newClient(t, conf)
// if cl == nil || t.Failed() {
// return
// }
// ctx, cancel := context.WithTimeout(context.Background(), 2*time.Second)
// defer cancel()
// oidc, err := cl.OpenIDConfiguration(ctx, realmName)
// if err != nil {
// t.Logf("Error fetching OIDC: %s", err)
// t.Fail()
// } else {
// b, _ := json.Marshal(oidc)
// t.Logf("oidc=%s", b)
// }
// })
// t.Run("uma2", func(t *testing.T) {
// t.Parallel()
// cl, _ := newClient(t, conf)
// if cl == nil || t.Failed() {
// return
// }
// ctx, cancel := context.WithTimeout(context.Background(), 2*time.Second)
// defer cancel()
// uma2, err := cl.UMA2Configuration(ctx, realmName)
// if err != nil {
// if keycloak.IsAPIError(err) && err.(*keycloak.APIError).ResponseCode != http.StatusNotFound {
// t.Logf("Error fetching UMA2 config: %s", err)
// t.Fail()
// } else {
// t.Skip("It appears your Keycloak instance does not support uma2")
// }
// } else {
// b, _ := json.Marshal(uma2)
// t.Logf("uma2=%s", b)
// }
// })
//}
//
//func testClientEntitlement(t *testing.T, conf *testConfig) {
// t.Parallel()
// if conf.ClientID == "" {
// t.Log("client_id key is empty in test config")
// t.FailNow()
// return
// }
//
// cl, ap := newClient(t, conf)
// if cl == nil || t.Failed() {
// return
// }
//
// ctx, cancel := context.WithTimeout(context.Background(), 2*time.Second)
// defer cancel()
//
// claims := new(jwt.StandardClaims)
// tok, err := cl.TokenService().ClientEntitlement(ctx, ap, conf.ClientID, claims)
// if err != nil {
// t.Logf("Error fetching RPT: %v", err)
// t.FailNow()
// return
// }
//
// if !tok.Valid {
// t.Logf("RPT token failed validation: %v", err)
// t.FailNow()
// return
// }
//}