1
0
mirror of https://github.com/oauth2-proxy/oauth2-proxy.git synced 2025-06-15 00:15:00 +02:00

Streamline ErrMissingCode in provider Redeem methods

This commit is contained in:
Nick Meves
2020-10-23 19:35:15 -07:00
parent b92fd4b0bb
commit 1b3b00443a
6 changed files with 36 additions and 37 deletions

View File

@ -1133,6 +1133,11 @@ func TestUserInfoEndpointAccepted(t *testing.T) {
Email: "john.doe@example.com", AccessToken: "my_access_token"}
err = test.SaveSession(startSession)
assert.NoError(t, err)
test.proxy.ServeHTTP(test.rw, test.req)
assert.Equal(t, http.StatusOK, test.rw.Code)
bodyBytes, _ := ioutil.ReadAll(test.rw.Body)
assert.Equal(t, "{\"email\":\"john.doe@example.com\"}\n", string(bodyBytes))
}
func TestUserInfoEndpointUnauthorizedOnNoCookieSetError(t *testing.T) {