X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/7334ee9ee6350f2b5f0384d8166e7c4f58d86864..2930c49ba1a06f947d06424a37b0dc93505fad18:/sdk/go/arvadostest/oidc_provider.go diff --git a/sdk/go/arvadostest/oidc_provider.go b/sdk/go/arvadostest/oidc_provider.go index 087adc4b24..529c1dca12 100644 --- a/sdk/go/arvadostest/oidc_provider.go +++ b/sdk/go/arvadostest/oidc_provider.go @@ -9,6 +9,7 @@ import ( "crypto/rsa" "encoding/base64" "encoding/json" + "fmt" "net/http" "net/http/httptest" "net/url" @@ -38,8 +39,9 @@ type OIDCProvider struct { // send incoming /userinfo requests to HoldUserInfo (if not // nil), then receive from ReleaseUserInfo (if not nil), // before responding (these are used to set up races) - HoldUserInfo chan *http.Request - ReleaseUserInfo chan struct{} + HoldUserInfo chan *http.Request + ReleaseUserInfo chan struct{} + UserInfoErrorStatus int // if non-zero, return this http status (probably 5xx) key *rsa.PrivateKey Issuer *httptest.Server @@ -138,6 +140,11 @@ func (p *OIDCProvider) serveOIDC(w http.ResponseWriter, req *http.Request) { if p.ReleaseUserInfo != nil { <-p.ReleaseUserInfo } + if p.UserInfoErrorStatus > 0 { + w.WriteHeader(p.UserInfoErrorStatus) + fmt.Fprintf(w, "%T error body", p) + return + } authhdr := req.Header.Get("Authorization") if _, err := jwt.ParseSigned(strings.TrimPrefix(authhdr, "Bearer ")); err != nil { p.c.Logf("OIDCProvider: bad auth %q", authhdr)