2020-11-13 17:31:39 +00:00
|
|
|
// Copyright 2020 the Pinniped contributors. All Rights Reserved.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
package callback
|
|
|
|
|
|
|
|
import (
|
2020-11-19 01:15:01 +00:00
|
|
|
"context"
|
2020-11-19 14:00:41 +00:00
|
|
|
"errors"
|
2020-11-13 23:59:51 +00:00
|
|
|
"fmt"
|
2020-11-13 17:31:39 +00:00
|
|
|
"net/http"
|
|
|
|
"net/http/httptest"
|
2020-11-13 23:59:51 +00:00
|
|
|
"net/url"
|
2020-11-16 22:07:34 +00:00
|
|
|
"regexp"
|
2020-11-19 01:15:01 +00:00
|
|
|
"strings"
|
2020-11-13 17:31:39 +00:00
|
|
|
"testing"
|
|
|
|
|
2020-11-13 23:59:51 +00:00
|
|
|
"github.com/gorilla/securecookie"
|
2020-11-18 21:38:13 +00:00
|
|
|
"github.com/ory/fosite"
|
2020-11-19 01:15:01 +00:00
|
|
|
"github.com/ory/fosite/handler/openid"
|
2020-11-18 21:38:13 +00:00
|
|
|
"github.com/ory/fosite/storage"
|
2020-11-13 17:31:39 +00:00
|
|
|
"github.com/stretchr/testify/require"
|
2020-11-13 23:59:51 +00:00
|
|
|
|
2020-11-18 21:38:13 +00:00
|
|
|
"go.pinniped.dev/internal/oidc"
|
2020-11-19 01:15:01 +00:00
|
|
|
"go.pinniped.dev/internal/oidcclient"
|
|
|
|
"go.pinniped.dev/internal/oidcclient/nonce"
|
|
|
|
"go.pinniped.dev/internal/oidcclient/pkce"
|
2020-11-13 23:59:51 +00:00
|
|
|
"go.pinniped.dev/internal/testutil"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
happyUpstreamIDPName = "upstream-idp-name"
|
2020-11-13 17:31:39 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestCallbackEndpoint(t *testing.T) {
|
2020-11-16 22:07:34 +00:00
|
|
|
const (
|
|
|
|
downstreamRedirectURI = "http://127.0.0.1/callback"
|
2020-11-19 15:20:46 +00:00
|
|
|
|
|
|
|
happyUpstreamAuthcode = "upstream-auth-code"
|
2020-11-16 22:07:34 +00:00
|
|
|
)
|
|
|
|
|
2020-11-18 21:38:13 +00:00
|
|
|
upstreamOIDCIdentityProvider := testutil.TestUpstreamOIDCIdentityProvider{
|
|
|
|
Name: happyUpstreamIDPName,
|
|
|
|
ClientID: "some-client-id",
|
|
|
|
UsernameClaim: "the-user-claim",
|
2020-11-19 01:15:01 +00:00
|
|
|
GroupsClaim: "the-groups-claim",
|
2020-11-18 21:38:13 +00:00
|
|
|
Scopes: []string{"scope1", "scope2"},
|
2020-11-19 01:15:01 +00:00
|
|
|
ExchangeAuthcodeAndValidateTokensFunc: func(ctx context.Context, authcode string, pkceCodeVerifier pkce.Code, expectedIDTokenNonce nonce.Nonce) (oidcclient.Token, map[string]interface{}, error) {
|
|
|
|
return oidcclient.Token{},
|
|
|
|
map[string]interface{}{
|
|
|
|
"the-user-claim": "test-pinniped-username",
|
|
|
|
"other-claim": "should be ignored",
|
|
|
|
},
|
|
|
|
nil
|
|
|
|
},
|
2020-11-13 23:59:51 +00:00
|
|
|
}
|
|
|
|
|
2020-11-18 21:38:13 +00:00
|
|
|
otherUpstreamOIDCIdentityProvider := testutil.TestUpstreamOIDCIdentityProvider{
|
|
|
|
Name: "other-upstream-idp-name",
|
|
|
|
ClientID: "other-some-client-id",
|
|
|
|
Scopes: []string{"other-scope1", "other-scope2"},
|
2020-11-13 23:59:51 +00:00
|
|
|
}
|
|
|
|
|
2020-11-19 14:00:41 +00:00
|
|
|
failedExchangeUpstreamOIDCIdentityProvider := testutil.TestUpstreamOIDCIdentityProvider{
|
|
|
|
Name: happyUpstreamIDPName,
|
|
|
|
ClientID: upstreamOIDCIdentityProvider.ClientID,
|
|
|
|
UsernameClaim: upstreamOIDCIdentityProvider.UsernameClaim,
|
|
|
|
GroupsClaim: upstreamOIDCIdentityProvider.GroupsClaim,
|
|
|
|
Scopes: upstreamOIDCIdentityProvider.Scopes,
|
|
|
|
ExchangeAuthcodeAndValidateTokensFunc: func(ctx context.Context, authcode string, pkceCodeVerifier pkce.Code, expectedIDTokenNonce nonce.Nonce) (oidcclient.Token, map[string]interface{}, error) {
|
|
|
|
return oidcclient.Token{}, nil, errors.New("some exchange error")
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2020-11-13 23:59:51 +00:00
|
|
|
var stateEncoderHashKey = []byte("fake-hash-secret")
|
|
|
|
var stateEncoderBlockKey = []byte("0123456789ABCDEF") // block encryption requires 16/24/32 bytes for AES
|
|
|
|
var cookieEncoderHashKey = []byte("fake-hash-secret2")
|
|
|
|
var cookieEncoderBlockKey = []byte("0123456789ABCDE2") // block encryption requires 16/24/32 bytes for AES
|
|
|
|
require.NotEqual(t, stateEncoderHashKey, cookieEncoderHashKey)
|
|
|
|
require.NotEqual(t, stateEncoderBlockKey, cookieEncoderBlockKey)
|
|
|
|
|
2020-11-16 19:41:00 +00:00
|
|
|
var happyStateCodec = securecookie.New(stateEncoderHashKey, stateEncoderBlockKey)
|
|
|
|
happyStateCodec.SetSerializer(securecookie.JSONEncoder{})
|
|
|
|
var happyCookieCodec = securecookie.New(cookieEncoderHashKey, cookieEncoderBlockKey)
|
|
|
|
happyCookieCodec.SetSerializer(securecookie.JSONEncoder{})
|
|
|
|
|
2020-11-16 22:07:34 +00:00
|
|
|
happyDownstreamState := "some-downstream-state"
|
|
|
|
|
2020-11-19 13:51:23 +00:00
|
|
|
happyOriginalRequestParamsQuery := url.Values{
|
2020-11-16 22:07:34 +00:00
|
|
|
"response_type": []string{"code"},
|
|
|
|
"scope": []string{"openid profile email"},
|
|
|
|
"client_id": []string{"pinniped-cli"},
|
|
|
|
"state": []string{happyDownstreamState},
|
|
|
|
"nonce": []string{"some-nonce-value"},
|
|
|
|
"code_challenge": []string{"some-challenge"},
|
|
|
|
"code_challenge_method": []string{"S256"},
|
|
|
|
"redirect_uri": []string{downstreamRedirectURI},
|
2020-11-19 13:51:23 +00:00
|
|
|
}
|
|
|
|
happyOriginalRequestParams := happyOriginalRequestParamsQuery.Encode()
|
2020-11-16 19:41:00 +00:00
|
|
|
happyCSRF := "test-csrf"
|
|
|
|
happyPKCE := "test-pkce"
|
|
|
|
happyNonce := "test-nonce"
|
2020-11-19 13:41:44 +00:00
|
|
|
happyStateVersion := "1"
|
2020-11-16 19:41:00 +00:00
|
|
|
|
|
|
|
happyState, err := happyStateCodec.Encode("s",
|
|
|
|
testutil.ExpectedUpstreamStateParamFormat{
|
2020-11-18 21:38:13 +00:00
|
|
|
P: happyOriginalRequestParams,
|
2020-11-16 19:41:00 +00:00
|
|
|
N: happyNonce,
|
|
|
|
C: happyCSRF,
|
|
|
|
K: happyPKCE,
|
2020-11-19 13:41:44 +00:00
|
|
|
V: happyStateVersion,
|
2020-11-16 19:41:00 +00:00
|
|
|
},
|
|
|
|
)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
wrongCSRFValueState, err := happyStateCodec.Encode("s",
|
|
|
|
testutil.ExpectedUpstreamStateParamFormat{
|
2020-11-18 21:38:13 +00:00
|
|
|
P: happyOriginalRequestParams,
|
2020-11-16 19:41:00 +00:00
|
|
|
N: happyNonce,
|
|
|
|
C: "wrong-csrf-value",
|
|
|
|
K: happyPKCE,
|
2020-11-19 13:41:44 +00:00
|
|
|
V: happyStateVersion,
|
2020-11-16 19:41:00 +00:00
|
|
|
},
|
|
|
|
)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
wrongVersionState, err := happyStateCodec.Encode("s",
|
|
|
|
testutil.ExpectedUpstreamStateParamFormat{
|
2020-11-18 21:38:13 +00:00
|
|
|
P: happyOriginalRequestParams,
|
2020-11-16 19:41:00 +00:00
|
|
|
N: happyNonce,
|
|
|
|
C: happyCSRF,
|
|
|
|
K: happyPKCE,
|
2020-11-19 13:41:44 +00:00
|
|
|
V: "wrong-state-version",
|
|
|
|
},
|
|
|
|
)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
wrongDownstreamAuthParamsState, err := happyStateCodec.Encode("s",
|
|
|
|
testutil.ExpectedUpstreamStateParamFormat{
|
|
|
|
P: "these-is-not-a-valid-url-query-%z",
|
|
|
|
N: happyNonce,
|
|
|
|
C: happyCSRF,
|
|
|
|
K: happyPKCE,
|
|
|
|
V: happyStateVersion,
|
2020-11-16 19:41:00 +00:00
|
|
|
},
|
|
|
|
)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
2020-11-19 13:51:23 +00:00
|
|
|
missingClientIDState, err := happyStateCodec.Encode("s",
|
|
|
|
testutil.ExpectedUpstreamStateParamFormat{
|
2020-11-19 14:28:56 +00:00
|
|
|
P: shallowCopyAndModifyQuery(happyOriginalRequestParamsQuery, map[string]string{"client_id": ""}).Encode(),
|
|
|
|
N: happyNonce,
|
|
|
|
C: happyCSRF,
|
|
|
|
K: happyPKCE,
|
|
|
|
V: happyStateVersion,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
noOpenidScopeState, err := happyStateCodec.Encode("s",
|
|
|
|
testutil.ExpectedUpstreamStateParamFormat{
|
|
|
|
P: shallowCopyAndModifyQuery(happyOriginalRequestParamsQuery, map[string]string{"scope": "profile email"}).Encode(),
|
2020-11-19 13:51:23 +00:00
|
|
|
N: happyNonce,
|
|
|
|
C: happyCSRF,
|
|
|
|
K: happyPKCE,
|
|
|
|
V: happyStateVersion,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
2020-11-16 19:41:00 +00:00
|
|
|
encodedIncomingCookieCSRFValue, err := happyCookieCodec.Encode("csrf", happyCSRF)
|
2020-11-16 16:47:49 +00:00
|
|
|
require.NoError(t, err)
|
|
|
|
happyCSRFCookie := "__Host-pinniped-csrf=" + encodedIncomingCookieCSRFValue
|
2020-11-13 23:59:51 +00:00
|
|
|
|
2020-11-19 15:20:46 +00:00
|
|
|
happyExchangeAndValidateTokensArgs := &testutil.ExchangeAuthcodeAndValidateTokenArgs{
|
|
|
|
Authcode: happyUpstreamAuthcode,
|
|
|
|
PKCECodeVerifier: pkce.Code(happyPKCE),
|
|
|
|
ExpectedIDTokenNonce: nonce.Nonce(happyNonce),
|
|
|
|
}
|
|
|
|
|
2020-11-13 17:31:39 +00:00
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
|
2020-11-19 15:20:46 +00:00
|
|
|
idp testutil.TestUpstreamOIDCIdentityProvider
|
|
|
|
method string
|
|
|
|
path string
|
|
|
|
csrfCookie string
|
2020-11-13 17:31:39 +00:00
|
|
|
|
2020-11-16 22:07:34 +00:00
|
|
|
wantStatus int
|
|
|
|
wantBody string
|
|
|
|
wantRedirectLocationRegexp string
|
2020-11-19 14:28:56 +00:00
|
|
|
// TODO: I am unused...
|
|
|
|
wantAuthcodeStored bool
|
|
|
|
wantGrantedOpenidScope bool
|
2020-11-19 15:20:46 +00:00
|
|
|
|
|
|
|
wantExchangeAndValidateTokensCall *testutil.ExchangeAuthcodeAndValidateTokenArgs
|
2020-11-13 17:31:39 +00:00
|
|
|
}{
|
2020-11-16 22:07:34 +00:00
|
|
|
{
|
2020-11-19 15:20:46 +00:00
|
|
|
name: "GET with good state and cookie and successful upstream token exchange returns 302 to downstream client callback with its state and code",
|
|
|
|
idp: upstreamOIDCIdentityProvider,
|
|
|
|
method: http.MethodGet,
|
|
|
|
path: newRequestPath().WithState(happyState).WithCode(happyUpstreamAuthcode).String(),
|
|
|
|
csrfCookie: happyCSRFCookie,
|
|
|
|
wantStatus: http.StatusFound,
|
2020-11-19 01:15:01 +00:00
|
|
|
// Note that fosite puts the granted scopes as a param in the redirect URI even though the spec doesn't seem to require it
|
2020-11-19 15:20:46 +00:00
|
|
|
wantRedirectLocationRegexp: downstreamRedirectURI + `\?code=([^&]+)&scope=openid&state=` + happyDownstreamState,
|
|
|
|
wantAuthcodeStored: true,
|
|
|
|
wantGrantedOpenidScope: true,
|
|
|
|
wantBody: "",
|
|
|
|
wantExchangeAndValidateTokensCall: happyExchangeAndValidateTokensArgs,
|
2020-11-16 22:07:34 +00:00
|
|
|
},
|
|
|
|
// TODO: when we call the callback twice in a row, we get two different auth codes (to prove we are using an RNG for auth codes)
|
2020-11-13 17:31:39 +00:00
|
|
|
|
|
|
|
// Pre-upstream-exchange verification
|
|
|
|
{
|
|
|
|
name: "PUT method is invalid",
|
|
|
|
method: http.MethodPut,
|
2020-11-13 23:59:51 +00:00
|
|
|
path: newRequestPath().String(),
|
2020-11-13 17:31:39 +00:00
|
|
|
wantStatus: http.StatusMethodNotAllowed,
|
|
|
|
wantBody: "Method Not Allowed: PUT (try GET)\n",
|
|
|
|
},
|
2020-11-13 23:59:51 +00:00
|
|
|
{
|
|
|
|
name: "POST method is invalid",
|
|
|
|
method: http.MethodPost,
|
|
|
|
path: newRequestPath().String(),
|
|
|
|
wantStatus: http.StatusMethodNotAllowed,
|
|
|
|
wantBody: "Method Not Allowed: POST (try GET)\n",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "PATCH method is invalid",
|
|
|
|
method: http.MethodPatch,
|
|
|
|
path: newRequestPath().String(),
|
|
|
|
wantStatus: http.StatusMethodNotAllowed,
|
|
|
|
wantBody: "Method Not Allowed: PATCH (try GET)\n",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "DELETE method is invalid",
|
|
|
|
method: http.MethodDelete,
|
|
|
|
path: newRequestPath().String(),
|
|
|
|
wantStatus: http.StatusMethodNotAllowed,
|
|
|
|
wantBody: "Method Not Allowed: DELETE (try GET)\n",
|
|
|
|
},
|
|
|
|
{
|
2020-11-16 19:41:00 +00:00
|
|
|
name: "code param was not included on request",
|
|
|
|
method: http.MethodGet,
|
|
|
|
path: newRequestPath().WithState(happyState).WithoutCode().String(),
|
|
|
|
csrfCookie: happyCSRFCookie,
|
|
|
|
wantStatus: http.StatusBadRequest,
|
|
|
|
wantBody: "Bad Request: code param not found\n",
|
2020-11-13 23:59:51 +00:00
|
|
|
},
|
|
|
|
{
|
2020-11-16 19:41:00 +00:00
|
|
|
name: "state param was not included on request",
|
|
|
|
method: http.MethodGet,
|
|
|
|
path: newRequestPath().WithoutState().String(),
|
|
|
|
csrfCookie: happyCSRFCookie,
|
|
|
|
wantStatus: http.StatusBadRequest,
|
|
|
|
wantBody: "Bad Request: state param not found\n",
|
2020-11-13 23:59:51 +00:00
|
|
|
},
|
|
|
|
{
|
2020-11-19 15:20:46 +00:00
|
|
|
name: "state param was not signed correctly, has expired, or otherwise cannot be decoded for any reason",
|
|
|
|
idp: upstreamOIDCIdentityProvider,
|
|
|
|
method: http.MethodGet,
|
|
|
|
path: newRequestPath().WithState("this-will-not-decode").String(),
|
|
|
|
csrfCookie: happyCSRFCookie,
|
|
|
|
wantStatus: http.StatusBadRequest,
|
|
|
|
wantBody: "Bad Request: error reading state\n",
|
2020-11-16 19:41:00 +00:00
|
|
|
},
|
|
|
|
{
|
2020-11-19 15:20:46 +00:00
|
|
|
name: "state's internal version does not match what we want",
|
|
|
|
idp: upstreamOIDCIdentityProvider,
|
|
|
|
method: http.MethodGet,
|
|
|
|
path: newRequestPath().WithState(wrongVersionState).String(),
|
|
|
|
csrfCookie: happyCSRFCookie,
|
|
|
|
wantStatus: http.StatusUnprocessableEntity,
|
|
|
|
wantBody: "Unprocessable Entity: state format version is invalid\n",
|
2020-11-13 23:59:51 +00:00
|
|
|
},
|
2020-11-19 13:41:44 +00:00
|
|
|
{
|
2020-11-19 15:20:46 +00:00
|
|
|
name: "state's downstream auth params element is invalid",
|
|
|
|
idp: upstreamOIDCIdentityProvider,
|
|
|
|
method: http.MethodGet,
|
|
|
|
path: newRequestPath().WithState(wrongDownstreamAuthParamsState).String(),
|
|
|
|
csrfCookie: happyCSRFCookie,
|
|
|
|
wantStatus: http.StatusBadRequest,
|
|
|
|
wantBody: "Bad Request: error reading state downstream auth params\n",
|
2020-11-19 13:51:23 +00:00
|
|
|
},
|
|
|
|
{
|
2020-11-19 15:20:46 +00:00
|
|
|
name: "state's downstream auth params are missing required value (e.g., client_id)",
|
|
|
|
idp: upstreamOIDCIdentityProvider,
|
|
|
|
method: http.MethodGet,
|
|
|
|
path: newRequestPath().WithState(missingClientIDState).String(),
|
|
|
|
csrfCookie: happyCSRFCookie,
|
|
|
|
wantStatus: http.StatusBadRequest,
|
|
|
|
wantBody: "Bad Request: error using state downstream auth params\n",
|
2020-11-19 13:41:44 +00:00
|
|
|
},
|
2020-11-19 14:28:56 +00:00
|
|
|
{
|
2020-11-19 15:20:46 +00:00
|
|
|
name: "state's downstream auth params does not contain openid scope",
|
|
|
|
idp: upstreamOIDCIdentityProvider,
|
|
|
|
method: http.MethodGet,
|
|
|
|
path: newRequestPath().WithState(noOpenidScopeState).WithCode(happyUpstreamAuthcode).String(),
|
|
|
|
csrfCookie: happyCSRFCookie,
|
|
|
|
wantStatus: http.StatusFound,
|
|
|
|
wantRedirectLocationRegexp: downstreamRedirectURI + `\?code=([^&]+)&scope=&state=` + happyDownstreamState,
|
|
|
|
wantExchangeAndValidateTokensCall: happyExchangeAndValidateTokensArgs,
|
2020-11-19 14:28:56 +00:00
|
|
|
},
|
2020-11-13 23:59:51 +00:00
|
|
|
{
|
2020-11-19 15:20:46 +00:00
|
|
|
name: "the UpstreamOIDCProvider CRD has been deleted",
|
|
|
|
idp: otherUpstreamOIDCIdentityProvider,
|
|
|
|
method: http.MethodGet,
|
|
|
|
path: newRequestPath().WithState(happyState).String(),
|
|
|
|
csrfCookie: happyCSRFCookie,
|
|
|
|
wantStatus: http.StatusUnprocessableEntity,
|
|
|
|
wantBody: "Unprocessable Entity: upstream provider not found\n",
|
2020-11-13 23:59:51 +00:00
|
|
|
},
|
2020-11-16 16:47:49 +00:00
|
|
|
{
|
2020-11-19 15:20:46 +00:00
|
|
|
name: "the CSRF cookie does not exist on request",
|
|
|
|
idp: upstreamOIDCIdentityProvider,
|
|
|
|
method: http.MethodGet,
|
|
|
|
path: newRequestPath().WithState(happyState).String(),
|
|
|
|
wantStatus: http.StatusForbidden,
|
|
|
|
wantBody: "Forbidden: CSRF cookie is missing\n",
|
2020-11-16 16:47:49 +00:00
|
|
|
},
|
|
|
|
{
|
2020-11-19 15:20:46 +00:00
|
|
|
name: "cookie was not signed correctly, has expired, or otherwise cannot be decoded for any reason",
|
|
|
|
idp: upstreamOIDCIdentityProvider,
|
|
|
|
method: http.MethodGet,
|
|
|
|
path: newRequestPath().WithState(happyState).String(),
|
|
|
|
csrfCookie: "__Host-pinniped-csrf=this-value-was-not-signed-by-pinniped",
|
|
|
|
wantStatus: http.StatusForbidden,
|
|
|
|
wantBody: "Forbidden: error reading CSRF cookie\n",
|
2020-11-16 19:41:00 +00:00
|
|
|
},
|
|
|
|
{
|
2020-11-19 15:20:46 +00:00
|
|
|
name: "cookie csrf value does not match state csrf value",
|
|
|
|
idp: upstreamOIDCIdentityProvider,
|
|
|
|
method: http.MethodGet,
|
|
|
|
path: newRequestPath().WithState(wrongCSRFValueState).String(),
|
|
|
|
csrfCookie: happyCSRFCookie,
|
|
|
|
wantStatus: http.StatusForbidden,
|
|
|
|
wantBody: "Forbidden: CSRF value does not match\n",
|
2020-11-16 16:47:49 +00:00
|
|
|
},
|
2020-11-19 14:00:41 +00:00
|
|
|
|
|
|
|
// Upstream exchange
|
|
|
|
{
|
2020-11-19 15:20:46 +00:00
|
|
|
name: "upstream auth code exchange fails",
|
|
|
|
idp: failedExchangeUpstreamOIDCIdentityProvider,
|
|
|
|
method: http.MethodGet,
|
|
|
|
path: newRequestPath().WithState(happyState).WithCode(happyUpstreamAuthcode).String(),
|
|
|
|
csrfCookie: happyCSRFCookie,
|
|
|
|
wantStatus: http.StatusBadGateway,
|
|
|
|
wantBody: "Bad Gateway: error exchanging and validating upstream tokens\n",
|
|
|
|
wantExchangeAndValidateTokensCall: happyExchangeAndValidateTokensArgs,
|
2020-11-19 14:00:41 +00:00
|
|
|
},
|
2020-11-13 17:31:39 +00:00
|
|
|
}
|
|
|
|
for _, test := range tests {
|
|
|
|
test := test
|
|
|
|
t.Run(test.name, func(t *testing.T) {
|
2020-11-19 14:28:56 +00:00
|
|
|
// Configure fosite the same way that the production code would, except use in-memory storage.
|
|
|
|
// Inject this into our test subject at the last second so we get a fresh storage for every test.
|
|
|
|
oauthStore := &storage.MemoryStore{
|
|
|
|
Clients: map[string]fosite.Client{oidc.PinnipedCLIOIDCClient().ID: oidc.PinnipedCLIOIDCClient()},
|
|
|
|
AuthorizeCodes: map[string]storage.StoreAuthorizeCode{},
|
|
|
|
PKCES: map[string]fosite.Requester{},
|
|
|
|
IDSessions: map[string]fosite.Requester{},
|
|
|
|
}
|
|
|
|
hmacSecret := []byte("some secret - must have at least 32 bytes")
|
|
|
|
require.GreaterOrEqual(t, len(hmacSecret), 32, "fosite requires that hmac secrets have at least 32 bytes")
|
|
|
|
oauthHelper := oidc.FositeOauth2Helper(oauthStore, hmacSecret)
|
|
|
|
|
2020-11-19 15:20:46 +00:00
|
|
|
idpListGetter := testutil.NewIDPListGetter(&test.idp)
|
|
|
|
subject := NewHandler(idpListGetter, oauthHelper, happyStateCodec, happyCookieCodec)
|
2020-11-13 23:59:51 +00:00
|
|
|
req := httptest.NewRequest(test.method, test.path, nil)
|
2020-11-16 16:47:49 +00:00
|
|
|
if test.csrfCookie != "" {
|
|
|
|
req.Header.Set("Cookie", test.csrfCookie)
|
|
|
|
}
|
2020-11-13 17:31:39 +00:00
|
|
|
rsp := httptest.NewRecorder()
|
|
|
|
subject.ServeHTTP(rsp, req)
|
2020-11-19 14:28:56 +00:00
|
|
|
t.Logf("response: %#v", rsp)
|
|
|
|
t.Logf("response body: %q", rsp.Body.String())
|
2020-11-13 17:31:39 +00:00
|
|
|
|
|
|
|
require.Equal(t, test.wantStatus, rsp.Code)
|
2020-11-16 22:07:34 +00:00
|
|
|
|
|
|
|
require.False(t, test.wantBody != "" && test.wantRedirectLocationRegexp != "", "test cannot set both body and redirect assertions")
|
2020-11-19 01:15:01 +00:00
|
|
|
|
|
|
|
if test.wantBody != "" {
|
2020-11-16 22:07:34 +00:00
|
|
|
require.Equal(t, test.wantBody, rsp.Body.String())
|
2020-11-19 01:15:01 +00:00
|
|
|
} else {
|
|
|
|
require.Empty(t, rsp.Body.String())
|
|
|
|
}
|
|
|
|
|
|
|
|
if test.wantRedirectLocationRegexp != "" {
|
2020-11-16 22:07:34 +00:00
|
|
|
// Assert that Location header matches regular expression.
|
|
|
|
require.Len(t, rsp.Header().Values("Location"), 1)
|
|
|
|
actualLocation := rsp.Header().Get("Location")
|
|
|
|
regex := regexp.MustCompile(test.wantRedirectLocationRegexp)
|
|
|
|
submatches := regex.FindStringSubmatch(actualLocation)
|
|
|
|
require.Lenf(t, submatches, 2, "no regexp match in actualLocation: %q", actualLocation)
|
|
|
|
capturedAuthCode := submatches[1]
|
|
|
|
|
2020-11-19 01:15:01 +00:00
|
|
|
// One authcode should have been stored.
|
|
|
|
require.Len(t, oauthStore.AuthorizeCodes, 1)
|
2020-11-16 22:07:34 +00:00
|
|
|
|
2020-11-19 01:15:01 +00:00
|
|
|
// fosite authcodes are in the format `data.signature`, so grab the signature part, which is the lookup key in the storage interface
|
|
|
|
authcodeDataAndSignature := strings.Split(capturedAuthCode, ".")
|
|
|
|
require.Len(t, authcodeDataAndSignature, 2)
|
|
|
|
|
|
|
|
// Get the authcode session back from storage so we can require that it was stored correctly.
|
|
|
|
storedAuthorizeRequest, err := oauthStore.GetAuthorizeCodeSession(context.Background(), authcodeDataAndSignature[1], nil)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
// Check that storage returned the expected concrete data types.
|
2020-11-19 14:28:56 +00:00
|
|
|
storedRequest, ok := storedAuthorizeRequest.(*fosite.Request)
|
2020-11-19 01:15:01 +00:00
|
|
|
require.True(t, ok)
|
|
|
|
storedSession, ok := storedAuthorizeRequest.GetSession().(*openid.DefaultSession)
|
|
|
|
require.True(t, ok)
|
|
|
|
|
|
|
|
// Check various fields of the stored data.
|
2020-11-19 14:28:56 +00:00
|
|
|
if test.wantGrantedOpenidScope {
|
|
|
|
require.Contains(t, storedRequest.GetGrantedScopes(), "openid")
|
|
|
|
} else {
|
|
|
|
require.NotContains(t, storedRequest.GetGrantedScopes(), "openid")
|
|
|
|
}
|
2020-11-19 01:15:01 +00:00
|
|
|
require.Equal(t, "test-pinniped-username", storedSession.Claims.Subject)
|
|
|
|
} else {
|
2020-11-16 22:07:34 +00:00
|
|
|
require.Empty(t, rsp.Header().Values("Location"))
|
|
|
|
}
|
2020-11-19 15:20:46 +00:00
|
|
|
|
|
|
|
if test.wantExchangeAndValidateTokensCall != nil {
|
|
|
|
require.Equal(t, 1, test.idp.ExchangeAuthcodeAndValidateTokensCallCount())
|
|
|
|
test.wantExchangeAndValidateTokensCall.Ctx = req.Context()
|
|
|
|
require.Equal(t, test.wantExchangeAndValidateTokensCall, test.idp.ExchangeAuthcodeAndValidateTokensArgs(0))
|
|
|
|
} else {
|
|
|
|
require.Equal(t, 0, test.idp.ExchangeAuthcodeAndValidateTokensCallCount())
|
|
|
|
}
|
2020-11-13 17:31:39 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
2020-11-13 23:59:51 +00:00
|
|
|
|
|
|
|
type requestPath struct {
|
|
|
|
upstreamIDPName, code, state *string
|
|
|
|
}
|
|
|
|
|
|
|
|
func newRequestPath() *requestPath {
|
|
|
|
n := happyUpstreamIDPName
|
|
|
|
c := "1234"
|
|
|
|
s := "4321"
|
|
|
|
return &requestPath{
|
|
|
|
upstreamIDPName: &n,
|
|
|
|
code: &c,
|
|
|
|
state: &s,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *requestPath) WithUpstreamIDPName(name string) *requestPath {
|
|
|
|
r.upstreamIDPName = &name
|
|
|
|
return r
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *requestPath) WithCode(code string) *requestPath {
|
|
|
|
r.code = &code
|
|
|
|
return r
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *requestPath) WithoutCode() *requestPath {
|
|
|
|
r.code = nil
|
|
|
|
return r
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *requestPath) WithState(state string) *requestPath {
|
|
|
|
r.state = &state
|
|
|
|
return r
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *requestPath) WithoutState() *requestPath {
|
|
|
|
r.state = nil
|
|
|
|
return r
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *requestPath) String() string {
|
|
|
|
path := fmt.Sprintf("/downstream-provider-name/callback/%s?", *r.upstreamIDPName)
|
|
|
|
params := url.Values{}
|
|
|
|
if r.code != nil {
|
|
|
|
params.Add("code", *r.code)
|
|
|
|
}
|
|
|
|
if r.state != nil {
|
|
|
|
params.Add("state", *r.state)
|
|
|
|
}
|
|
|
|
return path + params.Encode()
|
|
|
|
}
|
2020-11-19 13:51:23 +00:00
|
|
|
|
2020-11-19 14:28:56 +00:00
|
|
|
func shallowCopyAndModifyQuery(query url.Values, modifications map[string]string) url.Values {
|
2020-11-19 13:51:23 +00:00
|
|
|
copied := url.Values{}
|
|
|
|
for key, value := range query {
|
2020-11-19 14:28:56 +00:00
|
|
|
if modification, ok := modifications[key]; ok {
|
|
|
|
if modification != "" {
|
|
|
|
copied[key] = []string{modification}
|
|
|
|
}
|
|
|
|
} else {
|
2020-11-19 13:51:23 +00:00
|
|
|
copied[key] = value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return copied
|
|
|
|
}
|