2015-08-18 05:57:27 +05:30
|
|
|
package server
|
|
|
|
|
|
|
|
import (
|
2016-02-10 04:36:07 +05:30
|
|
|
"encoding/base64"
|
2015-08-18 05:57:27 +05:30
|
|
|
"encoding/json"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"math/big"
|
|
|
|
"net/http"
|
|
|
|
"net/http/httptest"
|
|
|
|
"net/url"
|
|
|
|
"reflect"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/jonboulle/clockwork"
|
|
|
|
|
|
|
|
"github.com/coreos/dex/client"
|
|
|
|
"github.com/coreos/dex/connector"
|
2016-02-10 00:40:28 +05:30
|
|
|
"github.com/coreos/dex/db"
|
|
|
|
"github.com/coreos/dex/session/manager"
|
2015-08-18 05:57:27 +05:30
|
|
|
"github.com/coreos/go-oidc/jose"
|
|
|
|
"github.com/coreos/go-oidc/oauth2"
|
|
|
|
"github.com/coreos/go-oidc/oidc"
|
|
|
|
)
|
|
|
|
|
|
|
|
type fakeConnector struct {
|
|
|
|
loginURL string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *fakeConnector) ID() string {
|
|
|
|
return "fake"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *fakeConnector) Healthy() error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *fakeConnector) LoginURL(sessionKey, prompt string) (string, error) {
|
|
|
|
return f.loginURL, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *fakeConnector) Register(mux *http.ServeMux, errorURL url.URL) {}
|
|
|
|
|
|
|
|
func (f *fakeConnector) Sync() chan struct{} {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *fakeConnector) TrustedEmailProvider() bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestHandleAuthFuncMethodNotAllowed(t *testing.T) {
|
|
|
|
for _, m := range []string{"POST", "PUT", "DELETE"} {
|
2015-10-01 05:05:58 +05:30
|
|
|
hdlr := handleAuthFunc(nil, nil, nil, true)
|
2015-08-18 05:57:27 +05:30
|
|
|
req, err := http.NewRequest(m, "http://example.com", nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("case %s: unable to create HTTP request: %v", m, err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
w := httptest.NewRecorder()
|
|
|
|
hdlr.ServeHTTP(w, req)
|
|
|
|
|
|
|
|
want := http.StatusMethodNotAllowed
|
|
|
|
got := w.Code
|
|
|
|
if want != got {
|
|
|
|
t.Errorf("case %s: expected HTTP %d, got %d", m, want, got)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestHandleAuthFuncResponsesSingleRedirectURL(t *testing.T) {
|
|
|
|
idpcs := []connector.Connector{
|
|
|
|
&fakeConnector{loginURL: "http://fake.example.com"},
|
|
|
|
}
|
|
|
|
srv := &Server{
|
|
|
|
IssuerURL: url.URL{Scheme: "http", Host: "server.example.com"},
|
2016-02-10 00:40:28 +05:30
|
|
|
SessionManager: manager.NewSessionManager(db.NewSessionRepo(db.NewMemDB()), db.NewSessionKeyRepo(db.NewMemDB())),
|
2016-02-10 04:36:07 +05:30
|
|
|
ClientIdentityRepo: func() client.ClientIdentityRepo {
|
2016-04-15 04:27:53 +05:30
|
|
|
repo, err := db.NewClientIdentityRepoFromClients(db.NewMemDB(), []client.Client{
|
|
|
|
client.Client{
|
2016-02-10 04:36:07 +05:30
|
|
|
Credentials: oidc.ClientCredentials{
|
|
|
|
ID: "XXX",
|
|
|
|
Secret: base64.URLEncoding.EncodeToString([]byte("secrete")),
|
|
|
|
},
|
|
|
|
Metadata: oidc.ClientMetadata{
|
|
|
|
RedirectURIs: []url.URL{
|
|
|
|
url.URL{Scheme: "http", Host: "client.example.com", Path: "/callback"},
|
|
|
|
},
|
2015-08-18 05:57:27 +05:30
|
|
|
},
|
|
|
|
},
|
2016-02-10 04:36:07 +05:30
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Failed to create client identity repo: %v", err)
|
|
|
|
}
|
|
|
|
return repo
|
|
|
|
}(),
|
2015-08-18 05:57:27 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
tests := []struct {
|
|
|
|
query url.Values
|
|
|
|
wantCode int
|
|
|
|
wantLocation string
|
|
|
|
}{
|
|
|
|
// no redirect_uri provided, but client only has one, so it's usable
|
|
|
|
{
|
|
|
|
query: url.Values{
|
|
|
|
"response_type": []string{"code"},
|
|
|
|
"client_id": []string{"XXX"},
|
|
|
|
"connector_id": []string{"fake"},
|
2015-09-01 02:08:06 +05:30
|
|
|
"scope": []string{"openid"},
|
2015-08-18 05:57:27 +05:30
|
|
|
},
|
2016-01-24 03:03:53 +05:30
|
|
|
wantCode: http.StatusFound,
|
2015-08-18 05:57:27 +05:30
|
|
|
wantLocation: "http://fake.example.com",
|
|
|
|
},
|
|
|
|
|
|
|
|
// provided redirect_uri matches client
|
|
|
|
{
|
|
|
|
query: url.Values{
|
|
|
|
"response_type": []string{"code"},
|
|
|
|
"redirect_uri": []string{"http://client.example.com/callback"},
|
|
|
|
"client_id": []string{"XXX"},
|
|
|
|
"connector_id": []string{"fake"},
|
2015-09-01 02:08:06 +05:30
|
|
|
"scope": []string{"openid"},
|
2015-08-18 05:57:27 +05:30
|
|
|
},
|
2016-01-24 03:03:53 +05:30
|
|
|
wantCode: http.StatusFound,
|
2015-08-18 05:57:27 +05:30
|
|
|
wantLocation: "http://fake.example.com",
|
|
|
|
},
|
|
|
|
|
|
|
|
// provided redirect_uri does not match client
|
|
|
|
{
|
|
|
|
query: url.Values{
|
|
|
|
"response_type": []string{"code"},
|
|
|
|
"redirect_uri": []string{"http://unrecognized.example.com/callback"},
|
|
|
|
"client_id": []string{"XXX"},
|
|
|
|
"connector_id": []string{"fake"},
|
2015-09-01 02:08:06 +05:30
|
|
|
"scope": []string{"openid"},
|
2015-08-18 05:57:27 +05:30
|
|
|
},
|
|
|
|
wantCode: http.StatusBadRequest,
|
|
|
|
},
|
|
|
|
|
|
|
|
// nonexistant client_id
|
|
|
|
{
|
|
|
|
query: url.Values{
|
|
|
|
"response_type": []string{"code"},
|
|
|
|
"redirect_uri": []string{"http://client.example.com/callback"},
|
|
|
|
"client_id": []string{"YYY"},
|
|
|
|
"connector_id": []string{"fake"},
|
2015-09-01 02:08:06 +05:30
|
|
|
"scope": []string{"openid"},
|
2015-08-18 05:57:27 +05:30
|
|
|
},
|
|
|
|
wantCode: http.StatusBadRequest,
|
|
|
|
},
|
|
|
|
|
|
|
|
// unsupported response type, redirects back to client
|
|
|
|
{
|
|
|
|
query: url.Values{
|
|
|
|
"response_type": []string{"token"},
|
|
|
|
"client_id": []string{"XXX"},
|
|
|
|
"connector_id": []string{"fake"},
|
2015-09-01 02:08:06 +05:30
|
|
|
"scope": []string{"openid"},
|
2015-08-18 05:57:27 +05:30
|
|
|
},
|
2016-01-24 03:03:53 +05:30
|
|
|
wantCode: http.StatusFound,
|
2015-08-18 05:57:27 +05:30
|
|
|
wantLocation: "http://client.example.com/callback?error=unsupported_response_type&state=",
|
|
|
|
},
|
2015-09-01 02:08:06 +05:30
|
|
|
|
|
|
|
// no 'openid' in scope
|
|
|
|
{
|
|
|
|
query: url.Values{
|
|
|
|
"response_type": []string{"code"},
|
|
|
|
"redirect_uri": []string{"http://client.example.com/callback"},
|
|
|
|
"client_id": []string{"XXX"},
|
|
|
|
"connector_id": []string{"fake"},
|
|
|
|
},
|
|
|
|
wantCode: http.StatusBadRequest,
|
|
|
|
},
|
2016-03-14 20:16:10 +05:30
|
|
|
|
|
|
|
// empty response_type
|
|
|
|
{
|
|
|
|
query: url.Values{
|
|
|
|
"redirect_uri": []string{"http://client.example.com/callback"},
|
|
|
|
"client_id": []string{"XXX"},
|
|
|
|
"connector_id": []string{"fake"},
|
|
|
|
"scope": []string{"openid"},
|
|
|
|
},
|
|
|
|
wantCode: http.StatusFound,
|
|
|
|
wantLocation: "http://client.example.com/callback?error=unsupported_response_type&state=",
|
|
|
|
},
|
|
|
|
|
|
|
|
// empty client_id
|
|
|
|
{
|
|
|
|
query: url.Values{
|
|
|
|
"response_type": []string{"code"},
|
|
|
|
"redirect_uri": []string{"http://unrecognized.example.com/callback"},
|
|
|
|
"connector_id": []string{"fake"},
|
|
|
|
"scope": []string{"openid"},
|
|
|
|
},
|
|
|
|
wantCode: http.StatusBadRequest,
|
|
|
|
},
|
2015-08-18 05:57:27 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
for i, tt := range tests {
|
2015-10-01 05:05:58 +05:30
|
|
|
hdlr := handleAuthFunc(srv, idpcs, nil, true)
|
2015-08-18 05:57:27 +05:30
|
|
|
w := httptest.NewRecorder()
|
|
|
|
u := fmt.Sprintf("http://server.example.com?%s", tt.query.Encode())
|
|
|
|
req, err := http.NewRequest("GET", u, nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("case %d: unable to form HTTP request: %v", i, err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
hdlr.ServeHTTP(w, req)
|
|
|
|
if tt.wantCode != w.Code {
|
|
|
|
t.Errorf("case %d: HTTP code mismatch: want=%d got=%d", i, tt.wantCode, w.Code)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
gotLocation := w.Header().Get("Location")
|
|
|
|
if tt.wantLocation != gotLocation {
|
|
|
|
t.Errorf("case %d: HTTP Location header mismatch: want=%s got=%s", i, tt.wantLocation, gotLocation)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestHandleAuthFuncResponsesMultipleRedirectURLs(t *testing.T) {
|
|
|
|
idpcs := []connector.Connector{
|
|
|
|
&fakeConnector{loginURL: "http://fake.example.com"},
|
|
|
|
}
|
|
|
|
srv := &Server{
|
|
|
|
IssuerURL: url.URL{Scheme: "http", Host: "server.example.com"},
|
2016-02-10 00:40:28 +05:30
|
|
|
SessionManager: manager.NewSessionManager(db.NewSessionRepo(db.NewMemDB()), db.NewSessionKeyRepo(db.NewMemDB())),
|
2016-02-10 04:36:07 +05:30
|
|
|
ClientIdentityRepo: func() client.ClientIdentityRepo {
|
2016-04-15 04:27:53 +05:30
|
|
|
repo, err := db.NewClientIdentityRepoFromClients(db.NewMemDB(), []client.Client{
|
|
|
|
client.Client{
|
2016-02-10 04:36:07 +05:30
|
|
|
Credentials: oidc.ClientCredentials{
|
|
|
|
ID: "XXX",
|
|
|
|
Secret: base64.URLEncoding.EncodeToString([]byte("secrete")),
|
|
|
|
},
|
|
|
|
Metadata: oidc.ClientMetadata{
|
|
|
|
RedirectURIs: []url.URL{
|
|
|
|
url.URL{Scheme: "http", Host: "foo.example.com", Path: "/callback"},
|
|
|
|
url.URL{Scheme: "http", Host: "bar.example.com", Path: "/callback"},
|
|
|
|
},
|
2015-08-18 05:57:27 +05:30
|
|
|
},
|
|
|
|
},
|
2016-02-10 04:36:07 +05:30
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Failed to create client identity repo: %v", err)
|
|
|
|
}
|
|
|
|
return repo
|
|
|
|
}(),
|
2015-08-18 05:57:27 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
tests := []struct {
|
|
|
|
query url.Values
|
|
|
|
wantCode int
|
|
|
|
wantLocation string
|
|
|
|
}{
|
|
|
|
// provided redirect_uri matches client's first
|
|
|
|
{
|
|
|
|
query: url.Values{
|
|
|
|
"response_type": []string{"code"},
|
|
|
|
"redirect_uri": []string{"http://foo.example.com/callback"},
|
|
|
|
"client_id": []string{"XXX"},
|
|
|
|
"connector_id": []string{"fake"},
|
2015-09-01 02:08:06 +05:30
|
|
|
"scope": []string{"openid"},
|
2015-08-18 05:57:27 +05:30
|
|
|
},
|
2016-01-24 03:03:53 +05:30
|
|
|
wantCode: http.StatusFound,
|
2015-08-18 05:57:27 +05:30
|
|
|
wantLocation: "http://fake.example.com",
|
|
|
|
},
|
|
|
|
|
|
|
|
// provided redirect_uri matches client's second
|
|
|
|
{
|
|
|
|
query: url.Values{
|
|
|
|
"response_type": []string{"code"},
|
|
|
|
"redirect_uri": []string{"http://bar.example.com/callback"},
|
|
|
|
"client_id": []string{"XXX"},
|
|
|
|
"connector_id": []string{"fake"},
|
2015-09-01 02:08:06 +05:30
|
|
|
"scope": []string{"openid"},
|
2015-08-18 05:57:27 +05:30
|
|
|
},
|
2016-01-24 03:03:53 +05:30
|
|
|
wantCode: http.StatusFound,
|
2015-08-18 05:57:27 +05:30
|
|
|
wantLocation: "http://fake.example.com",
|
|
|
|
},
|
|
|
|
|
|
|
|
// provided redirect_uri does not match either of client's
|
|
|
|
{
|
|
|
|
query: url.Values{
|
|
|
|
"response_type": []string{"code"},
|
|
|
|
"redirect_uri": []string{"http://unrecognized.example.com/callback"},
|
|
|
|
"client_id": []string{"XXX"},
|
|
|
|
"connector_id": []string{"fake"},
|
2015-09-01 02:08:06 +05:30
|
|
|
"scope": []string{"openid"},
|
2015-08-18 05:57:27 +05:30
|
|
|
},
|
|
|
|
wantCode: http.StatusBadRequest,
|
|
|
|
},
|
|
|
|
|
|
|
|
// no redirect_uri provided
|
|
|
|
{
|
|
|
|
query: url.Values{
|
|
|
|
"response_type": []string{"code"},
|
|
|
|
"client_id": []string{"XXX"},
|
|
|
|
"connector_id": []string{"fake"},
|
2015-09-01 02:08:06 +05:30
|
|
|
"scope": []string{"openid"},
|
2015-08-18 05:57:27 +05:30
|
|
|
},
|
|
|
|
wantCode: http.StatusBadRequest,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for i, tt := range tests {
|
2015-10-01 05:05:58 +05:30
|
|
|
hdlr := handleAuthFunc(srv, idpcs, nil, true)
|
2015-08-18 05:57:27 +05:30
|
|
|
w := httptest.NewRecorder()
|
|
|
|
u := fmt.Sprintf("http://server.example.com?%s", tt.query.Encode())
|
|
|
|
req, err := http.NewRequest("GET", u, nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("case %d: unable to form HTTP request: %v", i, err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
hdlr.ServeHTTP(w, req)
|
|
|
|
if tt.wantCode != w.Code {
|
|
|
|
t.Errorf("case %d: HTTP code mismatch: want=%d got=%d", i, tt.wantCode, w.Code)
|
|
|
|
t.Errorf("case %d: BODY: %v", i, w.Body.String())
|
|
|
|
t.Errorf("case %d: LOCO: %v", i, w.HeaderMap.Get("Location"))
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
gotLocation := w.Header().Get("Location")
|
|
|
|
if tt.wantLocation != gotLocation {
|
|
|
|
t.Errorf("case %d: HTTP Location header mismatch: want=%s got=%s", i, tt.wantLocation, gotLocation)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-14 15:24:21 +05:30
|
|
|
func TestHandleTokenFunc(t *testing.T) {
|
|
|
|
|
|
|
|
fx, err := makeTestFixtures()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("could not run test fixtures: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
tests := []struct {
|
|
|
|
query url.Values
|
|
|
|
user string
|
|
|
|
passwd string
|
|
|
|
wantCode int
|
|
|
|
}{
|
|
|
|
// bad grant_type
|
|
|
|
{
|
|
|
|
query: url.Values{
|
|
|
|
"grant_type": []string{"invalid!"},
|
|
|
|
"code": []string{"someCode"},
|
|
|
|
},
|
|
|
|
user: "XXX",
|
|
|
|
passwd: base64.URLEncoding.EncodeToString([]byte("secrete")),
|
|
|
|
wantCode: http.StatusBadRequest,
|
|
|
|
},
|
|
|
|
|
|
|
|
// authorization_code needs code param
|
|
|
|
{
|
|
|
|
query: url.Values{
|
|
|
|
"grant_type": []string{"authorization_code"},
|
|
|
|
},
|
|
|
|
user: "XXX",
|
|
|
|
passwd: base64.URLEncoding.EncodeToString([]byte("secrete")),
|
|
|
|
wantCode: http.StatusBadRequest,
|
|
|
|
},
|
|
|
|
|
|
|
|
// empty code
|
|
|
|
{
|
|
|
|
query: url.Values{
|
|
|
|
"grant_type": []string{"authorization_code"},
|
|
|
|
"code": []string{""},
|
|
|
|
},
|
|
|
|
user: "XXX",
|
|
|
|
passwd: base64.URLEncoding.EncodeToString([]byte("secrete")),
|
|
|
|
wantCode: http.StatusBadRequest,
|
|
|
|
},
|
|
|
|
|
|
|
|
// valid code but bad creds
|
|
|
|
{
|
|
|
|
query: url.Values{
|
|
|
|
"grant_type": []string{"authorization_code"},
|
|
|
|
"code": []string{"code-2"},
|
|
|
|
},
|
|
|
|
user: "XASD",
|
|
|
|
passwd: base64.URLEncoding.EncodeToString([]byte("failSecrete")),
|
|
|
|
wantCode: http.StatusUnauthorized,
|
|
|
|
},
|
|
|
|
|
|
|
|
// bad code
|
|
|
|
{
|
|
|
|
query: url.Values{
|
|
|
|
"grant_type": []string{"authorization_code"},
|
|
|
|
"code": []string{"asdasd"},
|
|
|
|
},
|
|
|
|
user: "XXX",
|
|
|
|
passwd: base64.URLEncoding.EncodeToString([]byte("secrete")),
|
|
|
|
wantCode: http.StatusBadRequest,
|
|
|
|
},
|
|
|
|
|
|
|
|
// OK testcase
|
|
|
|
{
|
|
|
|
query: url.Values{
|
|
|
|
"grant_type": []string{"authorization_code"},
|
|
|
|
"code": []string{"code-2"},
|
|
|
|
},
|
|
|
|
user: "XXX",
|
|
|
|
passwd: base64.URLEncoding.EncodeToString([]byte("secrete")),
|
|
|
|
wantCode: http.StatusOK,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for i, tt := range tests {
|
|
|
|
hdlr := handleTokenFunc(fx.srv)
|
|
|
|
w := httptest.NewRecorder()
|
|
|
|
|
|
|
|
req, err := http.NewRequest("POST", "http://example.com/token", strings.NewReader(tt.query.Encode()))
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("unable to create HTTP request, error=%v", err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
|
|
|
|
req.SetBasicAuth(tt.user, tt.passwd)
|
|
|
|
|
|
|
|
// need to create session in order to exchange the code (generated by the NewSessionKey func) for token
|
|
|
|
setSession := func() error {
|
|
|
|
sid, err := fx.sessionManager.NewSession("local", "XXX", "", testRedirectURL, "", true, []string{"openid"})
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("case %d: cannot create session, error=%v", i, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = fx.sessionManager.AttachRemoteIdentity(sid, oidc.Identity{})
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("case %d: cannot attach remoteID, error=%v", i, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = fx.sessionManager.AttachUser(sid, "ID-Verified")
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("case %d: cannot attach user, error=%v", i, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = fx.sessionManager.NewSessionKey(sid)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("case %d: cannot create session code, error=%v", i, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := setSession(); err != nil {
|
|
|
|
t.Errorf("case %d: %v", i, err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
hdlr.ServeHTTP(w, req)
|
|
|
|
if tt.wantCode != w.Code {
|
|
|
|
t.Errorf("case %d: expected HTTP %d, got %v", i, tt.wantCode, w.Code)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-08-18 05:57:27 +05:30
|
|
|
func TestHandleTokenFuncMethodNotAllowed(t *testing.T) {
|
|
|
|
for _, m := range []string{"GET", "PUT", "DELETE"} {
|
|
|
|
hdlr := handleTokenFunc(nil)
|
|
|
|
req, err := http.NewRequest(m, "http://example.com", nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("case %s: unable to create HTTP request: %v", m, err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
w := httptest.NewRecorder()
|
|
|
|
hdlr.ServeHTTP(w, req)
|
|
|
|
|
|
|
|
want := http.StatusMethodNotAllowed
|
|
|
|
got := w.Code
|
|
|
|
if want != got {
|
|
|
|
t.Errorf("case %s: expected HTTP %d, got %d", m, want, got)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestHandleTokenFuncState(t *testing.T) {
|
|
|
|
want := "test-state"
|
|
|
|
v := url.Values{
|
|
|
|
"state": {want},
|
|
|
|
}
|
|
|
|
hdlr := handleTokenFunc(nil)
|
|
|
|
req, err := http.NewRequest("POST", "http://example.com", strings.NewReader(v.Encode()))
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("unable to create HTTP request, error=%v", err)
|
|
|
|
}
|
|
|
|
req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
|
|
|
|
|
|
|
|
w := httptest.NewRecorder()
|
|
|
|
hdlr.ServeHTTP(w, req)
|
|
|
|
|
|
|
|
// should have errored and returned state in the response body
|
|
|
|
var resp map[string]string
|
|
|
|
if err = json.Unmarshal(w.Body.Bytes(), &resp); err != nil {
|
|
|
|
t.Errorf("error unmarshaling response, error=%v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
got := resp["state"]
|
|
|
|
if want != got {
|
|
|
|
t.Errorf("unexpected state, want=%v, got=%v", want, got)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestHandleDiscoveryFuncMethodNotAllowed(t *testing.T) {
|
|
|
|
for _, m := range []string{"POST", "PUT", "DELETE"} {
|
|
|
|
hdlr := handleDiscoveryFunc(oidc.ProviderConfig{})
|
|
|
|
req, err := http.NewRequest(m, "http://example.com", nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("case %s: unable to create HTTP request: %v", m, err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
w := httptest.NewRecorder()
|
|
|
|
hdlr.ServeHTTP(w, req)
|
|
|
|
|
|
|
|
want := http.StatusMethodNotAllowed
|
|
|
|
got := w.Code
|
|
|
|
if want != got {
|
|
|
|
t.Errorf("case %s: expected HTTP %d, got %d", m, want, got)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestHandleDiscoveryFunc(t *testing.T) {
|
2016-01-13 06:46:28 +05:30
|
|
|
u := url.URL{Scheme: "http", Host: "server.example.com"}
|
|
|
|
pathURL := func(path string) *url.URL {
|
|
|
|
ucopy := u
|
|
|
|
ucopy.Path = path
|
|
|
|
return &ucopy
|
|
|
|
}
|
2015-08-18 05:57:27 +05:30
|
|
|
cfg := oidc.ProviderConfig{
|
2016-01-13 06:46:28 +05:30
|
|
|
Issuer: &u,
|
|
|
|
AuthEndpoint: pathURL(httpPathAuth),
|
|
|
|
TokenEndpoint: pathURL(httpPathToken),
|
|
|
|
KeysEndpoint: pathURL(httpPathKeys),
|
2015-08-18 05:57:27 +05:30
|
|
|
|
|
|
|
GrantTypesSupported: []string{oauth2.GrantTypeAuthCode},
|
|
|
|
ResponseTypesSupported: []string{"code"},
|
|
|
|
SubjectTypesSupported: []string{"public"},
|
2016-01-13 06:46:28 +05:30
|
|
|
IDTokenSigningAlgValues: []string{"RS256"},
|
2015-08-18 05:57:27 +05:30
|
|
|
TokenEndpointAuthMethodsSupported: []string{"client_secret_basic"},
|
|
|
|
}
|
|
|
|
|
|
|
|
req, err := http.NewRequest("GET", "http://server.example.com", nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Failed creating HTTP request: err=%v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
w := httptest.NewRecorder()
|
|
|
|
hdlr := handleDiscoveryFunc(cfg)
|
|
|
|
hdlr.ServeHTTP(w, req)
|
|
|
|
|
|
|
|
if w.Code != http.StatusOK {
|
|
|
|
t.Fatalf("Incorrect status code: want=200 got=%d", w.Code)
|
|
|
|
}
|
|
|
|
|
|
|
|
h := w.Header()
|
|
|
|
|
|
|
|
if ct := h.Get("Content-Type"); ct != "application/json" {
|
|
|
|
t.Fatalf("Incorrect Content-Type: want=application/json, got %s", ct)
|
|
|
|
}
|
|
|
|
|
|
|
|
gotCC := h.Get("Cache-Control")
|
|
|
|
wantCC := "public, max-age=86400"
|
|
|
|
if wantCC != gotCC {
|
|
|
|
t.Fatalf("Incorrect Cache-Control header: want=%q, got=%q", wantCC, gotCC)
|
|
|
|
}
|
|
|
|
|
2015-12-17 07:50:14 +05:30
|
|
|
wantBody := `{"issuer":"http://server.example.com","authorization_endpoint":"http://server.example.com/auth","token_endpoint":"http://server.example.com/token","jwks_uri":"http://server.example.com/keys","response_types_supported":["code"],"grant_types_supported":["authorization_code"],"subject_types_supported":["public"],"id_token_signing_alg_values_supported":["RS256"],"token_endpoint_auth_methods_supported":["client_secret_basic"]}`
|
2015-08-18 05:57:27 +05:30
|
|
|
gotBody := w.Body.String()
|
|
|
|
if wantBody != gotBody {
|
|
|
|
t.Fatalf("Incorrect body: want=%s got=%s", wantBody, gotBody)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestHandleKeysFuncMethodNotAllowed(t *testing.T) {
|
|
|
|
for _, m := range []string{"POST", "PUT", "DELETE"} {
|
|
|
|
hdlr := handleKeysFunc(nil, clockwork.NewRealClock())
|
|
|
|
req, err := http.NewRequest(m, "http://example.com", nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("case %s: unable to create HTTP request: %v", m, err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
w := httptest.NewRecorder()
|
|
|
|
hdlr.ServeHTTP(w, req)
|
|
|
|
|
|
|
|
want := http.StatusMethodNotAllowed
|
|
|
|
got := w.Code
|
|
|
|
if want != got {
|
|
|
|
t.Errorf("case %s: expected HTTP %d, got %d", m, want, got)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestHandleKeysFunc(t *testing.T) {
|
|
|
|
fc := clockwork.NewFakeClock()
|
|
|
|
exp := fc.Now().Add(13 * time.Second)
|
|
|
|
km := &StaticKeyManager{
|
|
|
|
expiresAt: exp,
|
|
|
|
keys: []jose.JWK{
|
|
|
|
jose.JWK{
|
|
|
|
ID: "1234",
|
|
|
|
Type: "RSA",
|
|
|
|
Alg: "RS256",
|
|
|
|
Use: "sig",
|
|
|
|
Exponent: 65537,
|
|
|
|
Modulus: big.NewInt(int64(5716758339926702)),
|
|
|
|
},
|
|
|
|
jose.JWK{
|
|
|
|
ID: "5678",
|
|
|
|
Type: "RSA",
|
|
|
|
Alg: "RS256",
|
|
|
|
Use: "sig",
|
|
|
|
Exponent: 65537,
|
|
|
|
Modulus: big.NewInt(int64(1234294715519622)),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
req, err := http.NewRequest("GET", "http://server.example.com", nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Failed creating HTTP request: err=%v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
w := httptest.NewRecorder()
|
|
|
|
hdlr := handleKeysFunc(km, fc)
|
|
|
|
hdlr.ServeHTTP(w, req)
|
|
|
|
|
|
|
|
if w.Code != http.StatusOK {
|
|
|
|
t.Fatalf("Incorrect status code: want=200 got=%d", w.Code)
|
|
|
|
}
|
|
|
|
|
|
|
|
wantHeader := http.Header{
|
|
|
|
"Content-Type": []string{"application/json"},
|
|
|
|
"Cache-Control": []string{"public, max-age=13"},
|
|
|
|
"Expires": []string{exp.Format(time.RFC1123)},
|
|
|
|
}
|
|
|
|
gotHeader := w.Header()
|
|
|
|
if !reflect.DeepEqual(wantHeader, gotHeader) {
|
|
|
|
t.Fatalf("Incorrect headers: want=%#v got=%#v", wantHeader, gotHeader)
|
|
|
|
}
|
|
|
|
|
|
|
|
wantBody := `{"keys":[{"kid":"1234","kty":"RSA","alg":"RS256","use":"sig","e":"AQAB","n":"FE9chh46rg=="},{"kid":"5678","kty":"RSA","alg":"RS256","use":"sig","e":"AQAB","n":"BGKVohEShg=="}]}`
|
|
|
|
gotBody := w.Body.String()
|
|
|
|
if wantBody != gotBody {
|
|
|
|
t.Fatalf("Incorrect body: want=%s got=%s", wantBody, gotBody)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestShouldReprompt(t *testing.T) {
|
|
|
|
tests := []struct {
|
|
|
|
c *http.Cookie
|
|
|
|
v bool
|
|
|
|
}{
|
|
|
|
// No cookie
|
|
|
|
{
|
|
|
|
c: nil,
|
|
|
|
v: false,
|
|
|
|
},
|
|
|
|
// different cookie
|
|
|
|
{
|
|
|
|
c: &http.Cookie{
|
|
|
|
Name: "rando-cookie",
|
|
|
|
},
|
|
|
|
v: false,
|
|
|
|
},
|
|
|
|
// actual cookie we care about
|
|
|
|
{
|
|
|
|
c: &http.Cookie{
|
|
|
|
Name: "LastSeen",
|
|
|
|
},
|
|
|
|
v: true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for i, tt := range tests {
|
|
|
|
r := &http.Request{Header: make(http.Header)}
|
|
|
|
if tt.c != nil {
|
|
|
|
r.AddCookie(tt.c)
|
|
|
|
}
|
|
|
|
want := tt.v
|
|
|
|
got := shouldReprompt(r)
|
|
|
|
if want != got {
|
|
|
|
t.Errorf("case %d: want=%t, got=%t", i, want, got)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type checkable struct {
|
|
|
|
healthy bool
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c checkable) Healthy() (err error) {
|
|
|
|
if !c.healthy {
|
|
|
|
err = errors.New("im unhealthy")
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|