- Notifications
You must be signed in to change notification settings - Fork928
chore: add faking 429 responses from fake idp#12365
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -244,6 +244,56 @@ func WithIssuer(issuer string) func(*FakeIDP) { | ||
} | ||
} | ||
type With429Arguments struct { | ||
AllPaths bool | ||
TokenPath bool | ||
AuthorizePath bool | ||
KeysPath bool | ||
UserInfoPath bool | ||
DeviceAuth bool | ||
DeviceVerify bool | ||
} | ||
Comment on lines +247 to +255 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. idea: just supply a number of RegExes to match the given paths? That way you can reuse it however you like. But this is probably fine though. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. Yea, that would work too. I think this is fine though. It's so niche. I just made it to reproduce this:#12367 Felt like I should just throw it in a PR. If someone wants to improve this later, they can. We could also replace the bool with a number and return 500s etc. 🤷 | ||
// With429 will emulate a 429 response for the selected paths. | ||
func With429(params With429Arguments) func(*FakeIDP) { | ||
return func(f *FakeIDP) { | ||
f.middlewares = append(f.middlewares, func(next http.Handler) http.Handler { | ||
return http.HandlerFunc(func(rw http.ResponseWriter, r *http.Request) { | ||
if params.AllPaths { | ||
http.Error(rw, "429, being manually blocked (all)", http.StatusTooManyRequests) | ||
return | ||
} | ||
if params.TokenPath && strings.Contains(r.URL.Path, tokenPath) { | ||
http.Error(rw, "429, being manually blocked (token)", http.StatusTooManyRequests) | ||
return | ||
} | ||
if params.AuthorizePath && strings.Contains(r.URL.Path, authorizePath) { | ||
http.Error(rw, "429, being manually blocked (authorize)", http.StatusTooManyRequests) | ||
return | ||
} | ||
if params.KeysPath && strings.Contains(r.URL.Path, keysPath) { | ||
http.Error(rw, "429, being manually blocked (keys)", http.StatusTooManyRequests) | ||
return | ||
} | ||
if params.UserInfoPath && strings.Contains(r.URL.Path, userInfoPath) { | ||
http.Error(rw, "429, being manually blocked (userinfo)", http.StatusTooManyRequests) | ||
return | ||
} | ||
if params.DeviceAuth && strings.Contains(r.URL.Path, deviceAuth) { | ||
http.Error(rw, "429, being manually blocked (device-auth)", http.StatusTooManyRequests) | ||
return | ||
} | ||
if params.DeviceVerify && strings.Contains(r.URL.Path, deviceVerify) { | ||
http.Error(rw, "429, being manually blocked (device-verify)", http.StatusTooManyRequests) | ||
return | ||
} | ||
next.ServeHTTP(rw, r) | ||
}) | ||
}) | ||
} | ||
} | ||
const ( | ||
// nolint:gosec // It thinks this is a secret lol | ||
tokenPath = "/oauth2/token" | ||