()
| 3197 | ) |
| 3198 | |
| 3199 | func mockOIDCProvider() auth.OIDCProvider { |
| 3200 | return auth.OIDCProvider{ |
| 3201 | JWTConfigCommon: auth.JWTConfigCommon{ |
| 3202 | Issuer: "https://accounts.google.com", |
| 3203 | ClientID: base.Ptr(clientID), |
| 3204 | }, |
| 3205 | Name: "Google", |
| 3206 | CallbackURL: &callbackURL, |
| 3207 | ValidationKey: &validationKey, |
| 3208 | } |
| 3209 | } |
| 3210 | |
| 3211 | func mockOIDCProviderWithCallbackURLQuery() auth.OIDCProvider { |
| 3212 | return auth.OIDCProvider{ |
no test coverage detected