2017-03-20 15:38:52 +00:00
|
|
|
package oidc
|
|
|
|
|
2017-06-22 05:56:02 +00:00
|
|
|
import (
|
2019-05-24 03:51:42 +00:00
|
|
|
"bytes"
|
|
|
|
"crypto/rand"
|
|
|
|
"crypto/rsa"
|
|
|
|
"encoding/base64"
|
|
|
|
"encoding/binary"
|
|
|
|
"encoding/json"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"net/http/httptest"
|
|
|
|
"reflect"
|
|
|
|
"strings"
|
2017-06-22 05:56:02 +00:00
|
|
|
"testing"
|
2019-05-24 03:51:42 +00:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/dexidp/dex/connector"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
"gopkg.in/square/go-jose.v2"
|
2017-06-22 05:56:02 +00:00
|
|
|
)
|
2017-03-20 15:38:52 +00:00
|
|
|
|
|
|
|
func TestKnownBrokenAuthHeaderProvider(t *testing.T) {
|
|
|
|
tests := []struct {
|
|
|
|
issuerURL string
|
|
|
|
expect bool
|
|
|
|
}{
|
|
|
|
{"https://dev.oktapreview.com", true},
|
|
|
|
{"https://dev.okta.com", true},
|
|
|
|
{"https://okta.com", true},
|
|
|
|
{"https://dev.oktaaccounts.com", false},
|
|
|
|
{"https://accounts.google.com", false},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range tests {
|
|
|
|
got := knownBrokenAuthHeaderProvider(tc.issuerURL)
|
|
|
|
if got != tc.expect {
|
|
|
|
t.Errorf("knownBrokenAuthHeaderProvider(%q), want=%t, got=%t", tc.issuerURL, tc.expect, got)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-05-24 03:51:42 +00:00
|
|
|
|
|
|
|
func TestHandleCallback(t *testing.T) {
|
|
|
|
t.Helper()
|
|
|
|
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
userIDKey string
|
|
|
|
expectUserID string
|
|
|
|
}{
|
|
|
|
{"simpleCase", "", "sub"},
|
|
|
|
{"withUserIDKey", "name", "name"},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range tests {
|
|
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
|
|
testServer, err := setupServer()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal("failed to setup test server", err)
|
|
|
|
}
|
|
|
|
defer testServer.Close()
|
|
|
|
serverURL := testServer.URL
|
|
|
|
config := Config{
|
|
|
|
Issuer: serverURL,
|
|
|
|
ClientID: "clientID",
|
|
|
|
ClientSecret: "clientSecret",
|
|
|
|
Scopes: []string{"groups"},
|
|
|
|
RedirectURI: fmt.Sprintf("%s/callback", serverURL),
|
|
|
|
UserIDKey: tc.userIDKey,
|
|
|
|
}
|
|
|
|
|
|
|
|
conn, err := newConnector(config)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal("failed to create new connector", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
req, err := newRequestWithAuthCode(testServer.URL, "someCode")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal("failed to create request", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
identity, err := conn.HandleCallback(connector.Scopes{Groups: true}, req)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal("handle callback failed", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expectEquals(t, identity.UserID, tc.expectUserID)
|
|
|
|
expectEquals(t, identity.Username, "name")
|
|
|
|
expectEquals(t, identity.Email, "email")
|
|
|
|
expectEquals(t, identity.EmailVerified, true)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func setupServer() (*httptest.Server, error) {
|
|
|
|
key, err := rsa.GenerateKey(rand.Reader, 1024)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("failed to generate rsa key: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
jwk := jose.JSONWebKey{
|
|
|
|
Key: key,
|
|
|
|
KeyID: "keyId",
|
|
|
|
Algorithm: "RSA",
|
|
|
|
}
|
|
|
|
|
|
|
|
mux := http.NewServeMux()
|
|
|
|
|
|
|
|
mux.HandleFunc("/keys", func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
json.NewEncoder(w).Encode(&map[string]interface{}{
|
|
|
|
"keys": []map[string]interface{}{{
|
|
|
|
"alg": jwk.Algorithm,
|
|
|
|
"kty": jwk.Algorithm,
|
|
|
|
"kid": jwk.KeyID,
|
|
|
|
"n": n(&key.PublicKey),
|
|
|
|
"e": e(&key.PublicKey),
|
|
|
|
}},
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
mux.HandleFunc("/token", func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
url := fmt.Sprintf("http://%s", r.Host)
|
|
|
|
|
|
|
|
token, err := newToken(&jwk, map[string]interface{}{
|
|
|
|
"iss": url,
|
|
|
|
"aud": "clientID",
|
|
|
|
"exp": time.Now().Add(time.Hour).Unix(),
|
|
|
|
"sub": "sub",
|
|
|
|
"name": "name",
|
|
|
|
"email": "email",
|
|
|
|
"email_verified": true,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
w.WriteHeader(http.StatusInternalServerError)
|
|
|
|
}
|
|
|
|
|
|
|
|
w.Header().Add("Content-Type", "application/json")
|
|
|
|
json.NewEncoder(w).Encode(&map[string]string{
|
|
|
|
"access_token": token,
|
|
|
|
"id_token": token,
|
|
|
|
"token_type": "Bearer",
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
mux.HandleFunc("/.well-known/openid-configuration", func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
url := fmt.Sprintf("http://%s", r.Host)
|
|
|
|
|
|
|
|
json.NewEncoder(w).Encode(&map[string]string{
|
|
|
|
"issuer": url,
|
|
|
|
"token_endpoint": fmt.Sprintf("%s/token", url),
|
|
|
|
"authorization_endpoint": fmt.Sprintf("%s/authorize", url),
|
|
|
|
"userinfo_endpoint": fmt.Sprintf("%s/userinfo", url),
|
|
|
|
"jwks_uri": fmt.Sprintf("%s/keys", url),
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
return httptest.NewServer(mux), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func newToken(key *jose.JSONWebKey, claims map[string]interface{}) (string, error) {
|
|
|
|
signingKey := jose.SigningKey{
|
|
|
|
Key: key,
|
|
|
|
Algorithm: jose.RS256,
|
|
|
|
}
|
|
|
|
|
|
|
|
signer, err := jose.NewSigner(signingKey, &jose.SignerOptions{})
|
|
|
|
if err != nil {
|
|
|
|
return "", fmt.Errorf("failed to create new signer: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
payload, err := json.Marshal(claims)
|
|
|
|
if err != nil {
|
|
|
|
return "", fmt.Errorf("failed to marshal claims: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
signature, err := signer.Sign(payload)
|
|
|
|
if err != nil {
|
|
|
|
return "", fmt.Errorf("failed to sign: %v", err)
|
|
|
|
}
|
|
|
|
return signature.CompactSerialize()
|
|
|
|
}
|
|
|
|
|
|
|
|
func newConnector(config Config) (*oidcConnector, error) {
|
|
|
|
logger := logrus.New()
|
|
|
|
conn, err := config.Open("id", logger)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("unable to open: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
oidcConn, ok := conn.(*oidcConnector)
|
|
|
|
if !ok {
|
|
|
|
return nil, errors.New("failed to convert to oidcConnector")
|
|
|
|
}
|
|
|
|
|
|
|
|
return oidcConn, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func newRequestWithAuthCode(serverURL string, code string) (*http.Request, error) {
|
|
|
|
req, err := http.NewRequest("GET", serverURL, nil)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("failed to create request: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
values := req.URL.Query()
|
|
|
|
values.Add("code", code)
|
|
|
|
req.URL.RawQuery = values.Encode()
|
|
|
|
|
|
|
|
return req, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func n(pub *rsa.PublicKey) string {
|
|
|
|
return encode(pub.N.Bytes())
|
|
|
|
}
|
|
|
|
|
|
|
|
func e(pub *rsa.PublicKey) string {
|
|
|
|
data := make([]byte, 8)
|
|
|
|
binary.BigEndian.PutUint64(data, uint64(pub.E))
|
|
|
|
return encode(bytes.TrimLeft(data, "\x00"))
|
|
|
|
}
|
|
|
|
|
|
|
|
func encode(payload []byte) string {
|
|
|
|
result := base64.URLEncoding.EncodeToString(payload)
|
|
|
|
return strings.TrimRight(result, "=")
|
|
|
|
}
|
|
|
|
|
|
|
|
func expectEquals(t *testing.T, a interface{}, b interface{}) {
|
|
|
|
if !reflect.DeepEqual(a, b) {
|
|
|
|
t.Errorf("Expected %+v to equal %+v", a, b)
|
|
|
|
}
|
|
|
|
}
|