2016-08-25 20:00:53 +00:00
|
|
|
// Package mock implements connectors which help test various server components.
|
2016-07-25 20:00:28 +00:00
|
|
|
package mock
|
|
|
|
|
|
|
|
import (
|
2016-08-03 04:14:24 +00:00
|
|
|
"bytes"
|
|
|
|
"errors"
|
2016-07-25 20:00:28 +00:00
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"net/url"
|
|
|
|
|
2016-08-11 05:31:42 +00:00
|
|
|
"github.com/coreos/dex/connector"
|
2016-07-25 20:00:28 +00:00
|
|
|
)
|
|
|
|
|
2016-08-25 20:00:53 +00:00
|
|
|
// NewCallbackConnector returns a mock connector which requires no user interaction. It always returns
|
2016-07-25 20:00:28 +00:00
|
|
|
// the same (fake) identity.
|
2016-08-25 20:00:53 +00:00
|
|
|
func NewCallbackConnector() connector.Connector {
|
|
|
|
return callbackConnector{}
|
2016-07-25 20:00:28 +00:00
|
|
|
}
|
|
|
|
|
2016-08-03 04:14:24 +00:00
|
|
|
var (
|
2016-08-25 20:00:53 +00:00
|
|
|
_ connector.CallbackConnector = callbackConnector{}
|
|
|
|
_ connector.GroupsConnector = callbackConnector{}
|
|
|
|
|
|
|
|
_ connector.PasswordConnector = passwordConnector{}
|
2016-08-03 04:14:24 +00:00
|
|
|
)
|
|
|
|
|
2016-08-25 20:00:53 +00:00
|
|
|
type callbackConnector struct{}
|
2016-07-25 20:00:28 +00:00
|
|
|
|
2016-08-25 20:00:53 +00:00
|
|
|
func (m callbackConnector) Close() error { return nil }
|
2016-07-25 20:00:28 +00:00
|
|
|
|
2016-08-25 20:00:53 +00:00
|
|
|
func (m callbackConnector) LoginURL(callbackURL, state string) (string, error) {
|
2016-07-25 20:00:28 +00:00
|
|
|
u, err := url.Parse(callbackURL)
|
|
|
|
if err != nil {
|
|
|
|
return "", fmt.Errorf("failed to parse callbackURL %q: %v", callbackURL, err)
|
|
|
|
}
|
|
|
|
v := u.Query()
|
|
|
|
v.Set("state", state)
|
|
|
|
u.RawQuery = v.Encode()
|
|
|
|
return u.String(), nil
|
|
|
|
}
|
|
|
|
|
2016-08-03 04:14:24 +00:00
|
|
|
var connectorData = []byte("foobar")
|
|
|
|
|
2016-08-25 20:00:53 +00:00
|
|
|
func (m callbackConnector) HandleCallback(r *http.Request) (connector.Identity, string, error) {
|
2016-08-03 04:14:24 +00:00
|
|
|
return connector.Identity{
|
2016-07-25 20:00:28 +00:00
|
|
|
UserID: "0-385-28089-0",
|
|
|
|
Username: "Kilgore Trout",
|
|
|
|
Email: "kilgore@kilgore.trout",
|
|
|
|
EmailVerified: true,
|
2016-08-03 04:14:24 +00:00
|
|
|
ConnectorData: connectorData,
|
2016-07-25 20:00:28 +00:00
|
|
|
}, r.URL.Query().Get("state"), nil
|
|
|
|
}
|
|
|
|
|
2016-08-25 20:00:53 +00:00
|
|
|
func (m callbackConnector) Groups(identity connector.Identity) ([]string, error) {
|
2016-08-03 04:14:24 +00:00
|
|
|
if !bytes.Equal(identity.ConnectorData, connectorData) {
|
|
|
|
return nil, errors.New("connector data mismatch")
|
|
|
|
}
|
2016-07-25 20:00:28 +00:00
|
|
|
return []string{"authors"}, nil
|
|
|
|
}
|
|
|
|
|
2016-08-25 20:00:53 +00:00
|
|
|
// CallbackConfig holds the configuration parameters for a connector which requires no interaction.
|
|
|
|
type CallbackConfig struct{}
|
2016-07-25 20:00:28 +00:00
|
|
|
|
|
|
|
// Open returns an authentication strategy which requires no user interaction.
|
2016-08-25 20:00:53 +00:00
|
|
|
func (c *CallbackConfig) Open() (connector.Connector, error) {
|
|
|
|
return NewCallbackConnector(), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// PasswordConfig holds the configuration for a mock connector which prompts for the supplied
|
|
|
|
// username and password.
|
|
|
|
type PasswordConfig struct {
|
|
|
|
Username string `yaml:"username"`
|
|
|
|
Password string `yaml:"password"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// Open returns an authentication strategy which prompts for a predefined username and password.
|
|
|
|
func (c *PasswordConfig) Open() (connector.Connector, error) {
|
|
|
|
if c.Username == "" {
|
|
|
|
return nil, errors.New("no username supplied")
|
|
|
|
}
|
|
|
|
if c.Password == "" {
|
|
|
|
return nil, errors.New("no password supplied")
|
|
|
|
}
|
|
|
|
return &passwordConnector{c.Username, c.Password}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type passwordConnector struct {
|
|
|
|
username string
|
|
|
|
password string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p passwordConnector) Close() error { return nil }
|
|
|
|
|
|
|
|
func (p passwordConnector) Login(username, password string) (identity connector.Identity, validPassword bool, err error) {
|
|
|
|
if username == p.username && password == p.password {
|
|
|
|
return connector.Identity{
|
|
|
|
UserID: "0-385-28089-0",
|
|
|
|
Username: "Kilgore Trout",
|
|
|
|
Email: "kilgore@kilgore.trout",
|
|
|
|
EmailVerified: true,
|
|
|
|
}, true, nil
|
|
|
|
}
|
|
|
|
return identity, false, nil
|
2016-07-25 20:00:28 +00:00
|
|
|
}
|