This repository has been archived by the owner on Oct 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
fetch_token_test.go
373 lines (320 loc) · 11.3 KB
/
fetch_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
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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
package uaa_go_client_test
import (
"bytes"
"io/ioutil"
"net/http"
"net/url"
"strings"
"sync"
"time"
"code.cloudfoundry.org/clock/fakeclock"
"code.cloudfoundry.org/lager/lagertest"
trace "code.cloudfoundry.org/trace-logger"
uaa_go_client "code.cloudfoundry.org/uaa-go-client"
"code.cloudfoundry.org/uaa-go-client/config"
"code.cloudfoundry.org/uaa-go-client/schema"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"github.com/onsi/gomega/gbytes"
"github.com/onsi/gomega/ghttp"
)
var _ = Describe("FetchToken", func() {
var (
client uaa_go_client.Client
)
Context("when configuration is invalid", func() {
BeforeEach(func() {
forceUpdate = false
cfg = &config.Config{
UaaEndpoint: "http://not.needed.endpoint",
MaxNumberOfRetries: DefaultMaxNumberOfRetries,
RetryInterval: DefaultRetryInterval,
ExpirationBufferInSec: DefaultExpirationBufferTime,
RequestTimeout: DefaultRequestTimeout,
}
})
JustBeforeEach(func() {
var err error
clock = fakeclock.NewFakeClock(time.Now())
logger = lagertest.NewTestLogger("test")
client, err = uaa_go_client.NewClient(logger, cfg, clock)
Expect(err).NotTo(HaveOccurred())
Expect(client).NotTo(BeNil())
})
Context("when clientId is missing from config", func() {
BeforeEach(func() {
cfg.ClientName = ""
cfg.ClientSecret = "client-secret"
})
It("returns an error", func() {
_, err := client.FetchToken(forceUpdate)
Expect(err).To(HaveOccurred())
Expect(err.Error()).To(ContainSubstring("OAuth Client ID cannot be empty"))
})
})
Context("when client secret is missing from config", func() {
BeforeEach(func() {
cfg.ClientName = "client-name"
cfg.ClientSecret = ""
})
It("returns an error", func() {
_, err := client.FetchToken(forceUpdate)
Expect(err).To(HaveOccurred())
Expect(err.Error()).To(ContainSubstring("OAuth Client Secret cannot be empty"))
})
})
})
Context("when configuration is valid", func() {
BeforeEach(func() {
forceUpdate = false
cfg = &config.Config{
MaxNumberOfRetries: DefaultMaxNumberOfRetries,
RetryInterval: DefaultRetryInterval,
ExpirationBufferInSec: DefaultExpirationBufferTime,
RequestTimeout: DefaultRequestTimeout,
}
server = ghttp.NewServer()
url, err := url.Parse(server.URL())
Expect(err).ToNot(HaveOccurred())
addr := strings.Split(url.Host, ":")
cfg.UaaEndpoint = "http://" + addr[0] + ":" + addr[1]
Expect(err).ToNot(HaveOccurred())
cfg.ClientName = "client-name"
cfg.ClientSecret = "client-secret"
})
JustBeforeEach(func() {
var err error
clock = fakeclock.NewFakeClock(time.Now())
logger = lagertest.NewTestLogger("test")
client, err = uaa_go_client.NewClient(logger, cfg, clock)
Expect(err).NotTo(HaveOccurred())
Expect(client).NotTo(BeNil())
})
AfterEach(func() {
server.Close()
})
Context("when a new token needs to be fetched from OAuth server", func() {
Context("when the respose body is malformed", func() {
It("returns an error and doesn't retry", func() {
server.AppendHandlers(
ghttp.RespondWithJSONEncoded(http.StatusOK, "broken garbage response"),
)
_, err := client.FetchToken(forceUpdate)
Expect(err).To(HaveOccurred())
Expect(server.ReceivedRequests()).Should(HaveLen(1))
// verifyLogs("test.http-request.*/oauth/token", "test.http-response.*200")
verifyLogs("test", "test")
})
})
Context("when OAuth server cannot be reached", func() {
It("retries number of times and finally returns an error", func(done Done) {
var err error
defer close(done)
cfg.UaaEndpoint = "http://bogus.url:80"
client, err = uaa_go_client.NewClient(logger, cfg, clock)
Expect(err).NotTo(HaveOccurred())
wg := sync.WaitGroup{}
wg.Add(1)
go func(wg *sync.WaitGroup) {
defer GinkgoRecover()
defer wg.Done()
_, err := client.FetchToken(forceUpdate)
Expect(err).To(HaveOccurred())
}(&wg)
for i := 0; i < DefaultMaxNumberOfRetries; i++ {
Eventually(logger, 2*time.Second).Should(gbytes.Say("fetch-token-from-uaa-start.*bogus.url"))
Eventually(logger, 2*time.Second).Should(gbytes.Say("error-fetching-token"))
clock.WaitForWatcherAndIncrement(DefaultRetryInterval + 10*time.Second)
}
wg.Wait()
}, 5)
})
Context("when a non 200 OK is returned", func() {
var header http.Header
BeforeEach(func() {
header = make(http.Header)
header.Add("Location", server.URL())
})
Context("when OAuth server returns a 4xx http status code", func() {
It("returns an error and doesn't retry", func() {
server.AppendHandlers(
ghttp.RespondWith(http.StatusBadRequest, "you messed up"),
)
_, err := client.FetchToken(forceUpdate)
Expect(err).To(HaveOccurred())
Expect(err.Error()).To(Equal("status code: 400, body: you messed up"))
Expect(server.ReceivedRequests()).Should(HaveLen(1))
})
})
Context("when OAuth server returns a 5xx http status code", func() {
BeforeEach(func() {
server.AppendHandlers(
getOauthHandlerFunc(http.StatusServiceUnavailable, nil),
getOauthHandlerFunc(http.StatusInternalServerError, nil),
getOauthHandlerFunc(http.StatusBadGateway, nil),
getOauthHandlerFunc(http.StatusNotFound, nil),
)
})
XIt("retries a number of times and finally returns an error", func() {
verifyFetchWithRetries(client, server, DefaultMaxNumberOfRetries, "status code: 404")
})
})
Context("when OAuth server returns a 3xx http status code", func() {
It("returns an error and doesn't retry", func() {
server.AppendHandlers(
ghttp.RespondWith(http.StatusMovedPermanently, "moved", header),
)
_, err := client.FetchToken(forceUpdate)
Expect(err).To(HaveOccurred())
Expect(err.Error()).To(Equal("status code: 301, body: moved"))
Expect(server.ReceivedRequests()).Should(HaveLen(1))
})
})
Context("when OAuth server returns a mix of 5xx and 3xx http status codes", func() {
BeforeEach(func() {
server.AppendHandlers(
getOauthHandlerFunc(http.StatusServiceUnavailable, nil),
getOauthHandlerFunc(http.StatusMovedPermanently, nil, header),
)
})
XIt("retries until it hits 3XX status code and returns an error", func() {
verifyFetchWithRetries(client, server, 2, "status code: 301")
})
})
})
Context("when OAuth server returns 200 OK", func() {
It("returns a new token and trace the request response", func() {
stdout := bytes.NewBuffer([]byte{})
trace.SetStdout(stdout)
trace.NewLogger("true")
responseBody := &schema.Token{
AccessToken: "the token",
ExpiresIn: 20,
}
server.AppendHandlers(
getOauthHandlerFunc(http.StatusOK, responseBody),
)
token, err := client.FetchToken(forceUpdate)
Expect(err).NotTo(HaveOccurred())
Expect(server.ReceivedRequests()).Should(HaveLen(1))
Expect(token.AccessToken).To(Equal("the token"))
Expect(token.ExpiresIn).To(Equal(int64(20)))
r, err := ioutil.ReadAll(stdout)
Expect(err).NotTo(HaveOccurred())
log := string(r)
Expect(log).To(ContainSubstring("REQUEST:"))
Expect(log).To(ContainSubstring("POST /oauth/token HTTP/1.1"))
Expect(log).To(ContainSubstring("RESPONSE:"))
Expect(log).To(ContainSubstring("HTTP/1.1 200 OK"))
})
Context("when multiple goroutines fetch a token", func() {
It("contacts oauth server only once and returns cached token", func() {
responseBody := &schema.Token{
AccessToken: "the token",
ExpiresIn: 3600,
}
server.AppendHandlers(
getOauthHandlerFunc(http.StatusOK, responseBody),
)
wg := sync.WaitGroup{}
for i := 0; i < 2; i++ {
wg.Add(1)
go func(wg *sync.WaitGroup) {
defer GinkgoRecover()
defer wg.Done()
token, err := client.FetchToken(forceUpdate)
Expect(err).NotTo(HaveOccurred())
Expect(server.ReceivedRequests()).Should(HaveLen(1))
Expect(token.AccessToken).To(Equal("the token"))
Expect(token.ExpiresIn).To(Equal(int64(3600)))
}(&wg)
}
wg.Wait()
})
})
})
})
Context("when fetching token from Cache", func() {
Context("when cached token is expired", func() {
It("returns a new token and logs request response", func() {
firstResponseBody := &schema.Token{
AccessToken: "the token",
ExpiresIn: 3600,
}
secondResponseBody := &schema.Token{
AccessToken: "another token",
ExpiresIn: 3600,
}
server.AppendHandlers(
getOauthHandlerFunc(http.StatusOK, firstResponseBody),
getOauthHandlerFunc(http.StatusOK, secondResponseBody),
)
token, err := client.FetchToken(forceUpdate)
Expect(err).NotTo(HaveOccurred())
Expect(server.ReceivedRequests()).Should(HaveLen(1))
Expect(token.AccessToken).To(Equal("the token"))
Expect(token.ExpiresIn).To(Equal(int64(3600)))
clock.Increment((3600 - DefaultExpirationBufferTime) * time.Second)
token, err = client.FetchToken(forceUpdate)
Expect(err).NotTo(HaveOccurred())
Expect(server.ReceivedRequests()).Should(HaveLen(2))
Expect(token.AccessToken).To(Equal("another token"))
Expect(token.ExpiresIn).To(Equal(int64(3600)))
})
})
Context("when a cached token can be used", func() {
It("returns the cached token", func() {
firstResponseBody := &schema.Token{
AccessToken: "the token",
ExpiresIn: 3600,
}
secondResponseBody := &schema.Token{
AccessToken: "another token",
ExpiresIn: 3600,
}
server.AppendHandlers(
getOauthHandlerFunc(http.StatusOK, firstResponseBody),
getOauthHandlerFunc(http.StatusOK, secondResponseBody),
)
token, err := client.FetchToken(forceUpdate)
Expect(err).NotTo(HaveOccurred())
Expect(server.ReceivedRequests()).Should(HaveLen(1))
Expect(token.AccessToken).To(Equal("the token"))
Expect(token.ExpiresIn).To(Equal(int64(3600)))
clock.Increment(3000 * time.Second)
token, err = client.FetchToken(forceUpdate)
Expect(err).NotTo(HaveOccurred())
Expect(server.ReceivedRequests()).Should(HaveLen(1))
Expect(token.AccessToken).To(Equal("the token"))
Expect(token.ExpiresIn).To(Equal(int64(3600)))
})
})
Context("when forcing token refresh", func() {
It("returns a new token", func() {
firstResponseBody := &schema.Token{
AccessToken: "the token",
ExpiresIn: 3600,
}
secondResponseBody := &schema.Token{
AccessToken: "another token",
ExpiresIn: 3600,
}
server.AppendHandlers(
getOauthHandlerFunc(http.StatusOK, firstResponseBody),
getOauthHandlerFunc(http.StatusOK, secondResponseBody),
)
token, err := client.FetchToken(forceUpdate)
Expect(err).NotTo(HaveOccurred())
Expect(server.ReceivedRequests()).Should(HaveLen(1))
Expect(token.AccessToken).To(Equal("the token"))
Expect(token.ExpiresIn).To(Equal(int64(3600)))
token, err = client.FetchToken(true)
Expect(err).NotTo(HaveOccurred())
Expect(server.ReceivedRequests()).Should(HaveLen(2))
Expect(token.AccessToken).To(Equal("another token"))
Expect(token.ExpiresIn).To(Equal(int64(3600)))
})
})
})
})
})