2015-08-18 05:57:27 +05:30
|
|
|
package server
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
htmltemplate "html/template"
|
|
|
|
"net/http"
|
|
|
|
"net/http/httptest"
|
|
|
|
"net/url"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
"text/template"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/coreos/go-oidc/jose"
|
|
|
|
"github.com/coreos/go-oidc/key"
|
|
|
|
"github.com/kylelemons/godebug/pretty"
|
|
|
|
|
|
|
|
"github.com/coreos/dex/email"
|
|
|
|
"github.com/coreos/dex/pkg/html"
|
|
|
|
"github.com/coreos/dex/user"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestSendResetPasswordEmailHandler(t *testing.T) {
|
|
|
|
str := func(s string) []string {
|
|
|
|
return []string{s}
|
|
|
|
}
|
|
|
|
|
|
|
|
textTemplateString := `{{define "password-reset.txt"}}{{.link}}{{end}}`
|
|
|
|
textTemplates := template.New("text")
|
|
|
|
_, err := textTemplates.Parse(textTemplateString)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("error parsing text templates: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
htmlTemplates := htmltemplate.New("html")
|
|
|
|
|
|
|
|
tests := []struct {
|
|
|
|
query url.Values
|
|
|
|
|
|
|
|
method string
|
|
|
|
|
|
|
|
wantFormValues *url.Values
|
|
|
|
wantCode int
|
|
|
|
wantRedirectURL *url.URL
|
|
|
|
wantEmailer *testEmailer
|
|
|
|
wantPRRedirect *url.URL
|
|
|
|
wantPRUserID string
|
|
|
|
wantPRPassword string
|
|
|
|
}{
|
|
|
|
// First we'll test all the requests for happy path #1:
|
2015-10-17 03:17:58 +05:30
|
|
|
{ // Case 0
|
2015-08-18 05:57:27 +05:30
|
|
|
|
|
|
|
// STEP 1.1 - User clicks on link from local-login page and has a
|
|
|
|
// session_key, which will prompt a redirect to page which has
|
|
|
|
// instead a client_id and redirect_uri.
|
|
|
|
query: url.Values{
|
|
|
|
"session_key": str("code-2"),
|
|
|
|
},
|
|
|
|
method: "GET",
|
|
|
|
|
|
|
|
wantCode: http.StatusSeeOther,
|
|
|
|
wantRedirectURL: &url.URL{
|
|
|
|
Scheme: testIssuerURL.Scheme,
|
|
|
|
Host: testIssuerURL.Host,
|
|
|
|
Path: httpPathSendResetPassword,
|
|
|
|
RawQuery: url.Values{
|
|
|
|
"client_id": str(testClientID),
|
|
|
|
"redirect_uri": str(testRedirectURL.String()),
|
|
|
|
}.Encode(),
|
|
|
|
},
|
|
|
|
},
|
2015-10-17 03:17:58 +05:30
|
|
|
{ // Case 1
|
2015-08-18 05:57:27 +05:30
|
|
|
|
|
|
|
// STEP 1.2 - This is the request that happens as a result of the
|
|
|
|
// redirect. The client_id and redirect_uri should be in the form on
|
|
|
|
// the page.
|
|
|
|
query: url.Values{
|
|
|
|
"client_id": str(testClientID),
|
|
|
|
"redirect_uri": str(testRedirectURL.String()),
|
|
|
|
},
|
|
|
|
method: "GET",
|
|
|
|
|
|
|
|
wantCode: http.StatusOK,
|
|
|
|
wantFormValues: &url.Values{
|
|
|
|
"client_id": str(testClientID),
|
|
|
|
"redirect_uri": str(testRedirectURL.String()),
|
|
|
|
"email": str(""),
|
|
|
|
},
|
|
|
|
},
|
2015-10-17 03:17:58 +05:30
|
|
|
{ // Case 2
|
2015-08-18 05:57:27 +05:30
|
|
|
// STEP 1.3 - User enters a valid email, gets success page. The
|
|
|
|
// values from the GET redirect are resent in the form POST along
|
|
|
|
// with the email.
|
|
|
|
query: url.Values{
|
|
|
|
"client_id": str(testClientID),
|
|
|
|
"redirect_uri": str(testRedirectURL.String()),
|
|
|
|
"email": str("Email-1@example.com"),
|
|
|
|
},
|
|
|
|
method: "POST",
|
|
|
|
|
|
|
|
wantCode: http.StatusOK,
|
|
|
|
wantEmailer: &testEmailer{
|
|
|
|
to: str("Email-1@example.com"),
|
|
|
|
from: "noreply@example.com",
|
2015-10-31 03:11:00 +05:30
|
|
|
subject: "Reset Your Password",
|
2015-08-18 05:57:27 +05:30
|
|
|
},
|
|
|
|
wantPRUserID: "ID-1",
|
|
|
|
wantPRRedirect: &testRedirectURL,
|
|
|
|
wantPRPassword: "password",
|
|
|
|
},
|
|
|
|
|
2015-10-17 03:17:58 +05:30
|
|
|
// Happy Path #2 - no email or redirect
|
|
|
|
{ // Case 3
|
2015-08-18 05:57:27 +05:30
|
|
|
|
2015-10-17 03:17:58 +05:30
|
|
|
// STEP 2.1 - user somehow ends up on reset page with nothing but a client id
|
|
|
|
query: url.Values{
|
|
|
|
"client_id": str(testClientID),
|
|
|
|
},
|
2015-08-18 05:57:27 +05:30
|
|
|
method: "GET",
|
|
|
|
|
|
|
|
wantCode: http.StatusOK,
|
|
|
|
wantFormValues: &url.Values{
|
2015-10-17 03:17:58 +05:30
|
|
|
"client_id": str(testClientID),
|
2015-08-18 05:57:27 +05:30
|
|
|
"redirect_uri": str(""),
|
|
|
|
"email": str(""),
|
|
|
|
},
|
|
|
|
},
|
2015-10-17 03:17:58 +05:30
|
|
|
{ // Case 4
|
2015-08-18 05:57:27 +05:30
|
|
|
|
|
|
|
// STEP 2.3 - There is no STEP 2 because we don't have the redirect.
|
|
|
|
query: url.Values{
|
2015-10-17 03:17:58 +05:30
|
|
|
"email": str("Email-1@example.com"),
|
|
|
|
"client_id": str(testClientID),
|
2015-08-18 05:57:27 +05:30
|
|
|
},
|
|
|
|
method: "POST",
|
|
|
|
|
|
|
|
wantCode: http.StatusOK,
|
|
|
|
wantEmailer: &testEmailer{
|
|
|
|
to: str("Email-1@example.com"),
|
|
|
|
from: "noreply@example.com",
|
2015-10-31 03:11:00 +05:30
|
|
|
subject: "Reset Your Password",
|
2015-08-18 05:57:27 +05:30
|
|
|
},
|
|
|
|
wantPRPassword: "password",
|
|
|
|
wantPRUserID: "ID-1",
|
|
|
|
},
|
|
|
|
|
|
|
|
// Some error conditions:
|
2015-10-17 03:17:58 +05:30
|
|
|
{ // Case 5
|
2015-08-18 05:57:27 +05:30
|
|
|
// STEP 1.3.1 - User enters an invalid email, gets form again.
|
|
|
|
query: url.Values{
|
|
|
|
"client_id": str(testClientID),
|
|
|
|
"redirect_uri": str(testRedirectURL.String()),
|
|
|
|
"email": str("NOT EMAIL"),
|
|
|
|
},
|
|
|
|
method: "POST",
|
|
|
|
|
|
|
|
wantCode: http.StatusBadRequest,
|
|
|
|
wantFormValues: &url.Values{
|
|
|
|
"client_id": str(testClientID),
|
|
|
|
"redirect_uri": str(testRedirectURL.String()),
|
|
|
|
"email": str(""),
|
|
|
|
},
|
|
|
|
},
|
2015-10-17 03:17:58 +05:30
|
|
|
{ // Case 6
|
2015-08-18 05:57:27 +05:30
|
|
|
// STEP 1.3.2 - User enters a valid email but for a user not in the
|
|
|
|
// system. They still get the success page, but no email is sent.
|
|
|
|
query: url.Values{
|
|
|
|
"client_id": str(testClientID),
|
|
|
|
"redirect_uri": str(testRedirectURL.String()),
|
|
|
|
"email": str("NOSUCHUSER@example.com"),
|
|
|
|
},
|
|
|
|
method: "POST",
|
|
|
|
|
|
|
|
wantCode: http.StatusOK,
|
|
|
|
},
|
2015-10-17 03:17:58 +05:30
|
|
|
{ // Case 7
|
2015-08-18 05:57:27 +05:30
|
|
|
|
|
|
|
// STEP 1.1.1 - User clicks on link from local-login page and has a
|
2015-10-17 03:17:58 +05:30
|
|
|
// session_key, but it is not-recognized.
|
2015-08-18 05:57:27 +05:30
|
|
|
query: url.Values{
|
|
|
|
"session_key": str("code-UNKNOWN"),
|
|
|
|
},
|
|
|
|
method: "GET",
|
|
|
|
|
2015-10-17 03:17:58 +05:30
|
|
|
wantCode: http.StatusBadRequest,
|
|
|
|
},
|
|
|
|
{ // Case 8
|
2015-08-18 05:57:27 +05:30
|
|
|
|
|
|
|
// STEP 1.2.1 - Someone trying to replace a valid redirect_url with
|
2015-10-17 03:17:58 +05:30
|
|
|
// an invalid one.
|
2015-08-18 05:57:27 +05:30
|
|
|
query: url.Values{
|
|
|
|
"client_id": str(testClientID),
|
|
|
|
"redirect_uri": str("http://evilhackers.example.com"),
|
|
|
|
},
|
|
|
|
method: "GET",
|
|
|
|
|
2015-10-17 03:17:58 +05:30
|
|
|
wantCode: http.StatusBadRequest,
|
|
|
|
},
|
|
|
|
{ // Case 9
|
2015-08-18 05:57:27 +05:30
|
|
|
// STEP 1.3.4 - User enters a valid email for a user in the system,
|
2015-10-17 03:17:58 +05:30
|
|
|
// but with an invalid redirect_uri.
|
2015-08-18 05:57:27 +05:30
|
|
|
query: url.Values{
|
|
|
|
"client_id": str(testClientID),
|
|
|
|
"redirect_uri": str("http://evilhackers.example.com"),
|
|
|
|
"email": str("Email-1@example.com"),
|
|
|
|
},
|
|
|
|
method: "POST",
|
|
|
|
|
2015-10-17 03:17:58 +05:30
|
|
|
wantCode: http.StatusBadRequest,
|
|
|
|
},
|
|
|
|
{ // Case 10
|
|
|
|
|
|
|
|
// User hits the page with a valid email but no client id
|
|
|
|
query: url.Values{
|
|
|
|
"email": str("Email-1@example.com"),
|
2015-08-18 05:57:27 +05:30
|
|
|
},
|
2015-10-17 03:17:58 +05:30
|
|
|
method: "GET",
|
|
|
|
|
|
|
|
wantCode: http.StatusBadRequest,
|
|
|
|
},
|
|
|
|
{ // Case 10
|
|
|
|
|
|
|
|
// Don't send an email without a client id
|
|
|
|
query: url.Values{
|
|
|
|
"email": str("Email-1@example.com"),
|
|
|
|
},
|
|
|
|
method: "POST",
|
|
|
|
|
|
|
|
wantCode: http.StatusBadRequest,
|
|
|
|
},
|
|
|
|
{ // Case 11
|
|
|
|
|
|
|
|
// Empty requests lack a client id
|
|
|
|
query: url.Values{},
|
|
|
|
method: "GET",
|
|
|
|
|
|
|
|
wantCode: http.StatusBadRequest,
|
|
|
|
},
|
|
|
|
{ // Case 12
|
|
|
|
|
|
|
|
// Empty requests lack a client id
|
|
|
|
query: url.Values{},
|
|
|
|
method: "POST",
|
|
|
|
|
|
|
|
wantCode: http.StatusBadRequest,
|
2015-08-18 05:57:27 +05:30
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for i, tt := range tests {
|
|
|
|
t.Logf("CASE: %d", i)
|
|
|
|
f, err := makeTestFixtures()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("case %d: could not make test fixtures: %v", i, err)
|
|
|
|
}
|
|
|
|
|
2015-09-01 02:08:06 +05:30
|
|
|
_, err = f.srv.NewSession("local", "XXX", "", f.redirectURL, "", true, []string{"openid"})
|
2015-08-18 05:57:27 +05:30
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("case %d: could not create new session: %v", i, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
emailer := &testEmailer{
|
|
|
|
sent: make(chan struct{}),
|
|
|
|
}
|
|
|
|
templatizer := email.NewTemplatizedEmailerFromTemplates(textTemplates, htmlTemplates, emailer)
|
|
|
|
f.srv.UserEmailer.SetEmailer(templatizer)
|
|
|
|
hdlr := SendResetPasswordEmailHandler{
|
|
|
|
tpl: f.srv.SendResetPasswordEmailTemplate,
|
|
|
|
emailer: f.srv.UserEmailer,
|
|
|
|
sm: f.sessionManager,
|
|
|
|
cr: f.clientIdentityRepo,
|
|
|
|
}
|
|
|
|
|
|
|
|
w := httptest.NewRecorder()
|
|
|
|
|
|
|
|
var req *http.Request
|
|
|
|
u := testIssuerURL
|
|
|
|
u.Path = httpPathSendResetPassword
|
|
|
|
if tt.method == "POST" {
|
|
|
|
req, err = http.NewRequest(tt.method, u.String(), strings.NewReader(tt.query.Encode()))
|
|
|
|
req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
|
|
|
|
} else {
|
|
|
|
u.RawQuery = tt.query.Encode()
|
|
|
|
req, err = http.NewRequest(tt.method, u.String(), nil)
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("case %d: unable to form HTTP request: %v", i, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
hdlr.ServeHTTP(w, req)
|
|
|
|
if tt.wantCode != w.Code {
|
|
|
|
t.Errorf("case %d: wantCode=%v, got=%v", i, tt.wantCode, w.Code)
|
|
|
|
t.Logf("case %d: Body: %v ", i, w.Body)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
values, err := html.FormValues("#sendResetPasswordForm", w.Body)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("case %d: could not parse form: %v", i, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if tt.wantFormValues != nil {
|
|
|
|
if diff := pretty.Compare(*tt.wantFormValues, values); diff != "" {
|
|
|
|
t.Errorf("case %d: Compare(wantFormValues, got) = %v", i, diff)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if tt.wantRedirectURL != nil {
|
|
|
|
location, err := url.Parse(w.Header().Get("location"))
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("case %d: could not parse Location header: %v", i, err)
|
|
|
|
}
|
|
|
|
if diff := pretty.Compare(*tt.wantRedirectURL, *location); diff != "" {
|
|
|
|
t.Errorf("case %d: Compare(wantRedirectURL, got) = %v", i, diff)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if tt.wantEmailer != nil {
|
|
|
|
<-emailer.sent
|
|
|
|
txt := emailer.text
|
|
|
|
emailer.text = ""
|
|
|
|
if diff := pretty.Compare(*tt.wantEmailer, *emailer); diff != "" {
|
|
|
|
t.Errorf("case %d: Compare(wantEmailer, got) = %v", i, diff)
|
|
|
|
}
|
|
|
|
|
|
|
|
u, err := url.Parse(txt)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("case %d: could not parse generated link: %v", i, err)
|
|
|
|
}
|
|
|
|
token := u.Query().Get("token")
|
|
|
|
pubKeys, err := f.srv.KeyManager.PublicKeys()
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("case %d: could not parse generated link: %v", i, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
pr, err := user.ParseAndVerifyPasswordResetToken(token, testIssuerURL, pubKeys)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("case %d: could not parse reset token: %v", i, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if tt.wantPRPassword != string(pr.Password()) {
|
|
|
|
t.Errorf("case %d: wantPRPassword=%v, got=%v", i, tt.wantPRPassword, string(pr.Password()))
|
|
|
|
}
|
|
|
|
|
|
|
|
if tt.wantPRRedirect == nil {
|
|
|
|
if pr.Callback() != nil {
|
|
|
|
t.Errorf("case %d: wantPRCallback=nil, got=%v", i, pr.Callback())
|
|
|
|
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if *tt.wantPRRedirect != *pr.Callback() {
|
|
|
|
t.Errorf("case %d: wantPRCallback=%v, got=%v", i, tt.wantPRRedirect, pr.Callback())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestResetPasswordHandler(t *testing.T) {
|
2015-10-17 03:17:58 +05:30
|
|
|
makeToken := func(userID, password, clientID string, callback url.URL, expires time.Duration, signer jose.Signer) string {
|
2015-08-18 05:57:27 +05:30
|
|
|
pr := user.NewPasswordReset(user.User{ID: "ID-1"},
|
|
|
|
user.Password(password),
|
|
|
|
testIssuerURL,
|
|
|
|
clientID,
|
|
|
|
callback,
|
|
|
|
expires)
|
2015-10-17 03:17:58 +05:30
|
|
|
|
|
|
|
jwt, err := jose.NewSignedJWT(pr.Claims, signer)
|
2015-08-18 05:57:27 +05:30
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("couldn't make token: %q", err)
|
|
|
|
}
|
2015-10-17 03:17:58 +05:30
|
|
|
token := jwt.Encode()
|
2015-08-18 05:57:27 +05:30
|
|
|
return token
|
|
|
|
}
|
|
|
|
goodSigner := key.NewPrivateKeySet([]*key.PrivateKey{testPrivKey},
|
|
|
|
time.Now().Add(time.Minute)).Active().Signer()
|
|
|
|
|
|
|
|
badKey, err := key.GeneratePrivateKey()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("couldn't make new key: %q", err)
|
|
|
|
}
|
|
|
|
badSigner := key.NewPrivateKeySet([]*key.PrivateKey{badKey},
|
|
|
|
time.Now().Add(time.Minute)).Active().Signer()
|
|
|
|
|
|
|
|
str := func(s string) []string {
|
|
|
|
return []string{s}
|
|
|
|
}
|
|
|
|
|
|
|
|
user.PasswordHasher = func(s string) ([]byte, error) {
|
|
|
|
return []byte(strings.ToUpper(s)), nil
|
|
|
|
}
|
|
|
|
defer func() {
|
|
|
|
user.PasswordHasher = user.DefaultPasswordHasher
|
|
|
|
}()
|
|
|
|
|
|
|
|
tests := []struct {
|
|
|
|
query url.Values
|
|
|
|
|
|
|
|
method string
|
|
|
|
|
|
|
|
wantFormValues *url.Values
|
|
|
|
wantCode int
|
|
|
|
wantPassword string
|
|
|
|
}{
|
|
|
|
// Scenario 1: Happy Path
|
2015-10-17 03:17:58 +05:30
|
|
|
{ // Case 0
|
2015-08-18 05:57:27 +05:30
|
|
|
// Step 1.1 - User clicks link in email, has valid token.
|
|
|
|
query: url.Values{
|
2015-10-17 03:17:58 +05:30
|
|
|
"token": str(makeToken("ID-1", "password", testClientID, testRedirectURL, time.Hour*1, goodSigner)),
|
2015-08-18 05:57:27 +05:30
|
|
|
},
|
|
|
|
method: "GET",
|
|
|
|
|
|
|
|
wantCode: http.StatusOK,
|
|
|
|
wantFormValues: &url.Values{
|
|
|
|
"password": str(""),
|
2015-10-17 03:17:58 +05:30
|
|
|
"token": str(makeToken("ID-1", "password", testClientID, testRedirectURL, time.Hour*1, goodSigner)),
|
2015-08-18 05:57:27 +05:30
|
|
|
},
|
|
|
|
wantPassword: "password",
|
|
|
|
},
|
2015-10-17 03:17:58 +05:30
|
|
|
{ // Case 1
|
2015-08-18 05:57:27 +05:30
|
|
|
// Step 1.2 - User enters in new valid password, password is changed, user is redirected.
|
|
|
|
query: url.Values{
|
2015-10-17 03:17:58 +05:30
|
|
|
"token": str(makeToken("ID-1", "password", testClientID, testRedirectURL, time.Hour*1, goodSigner)),
|
2015-08-18 05:57:27 +05:30
|
|
|
"password": str("new_password"),
|
|
|
|
},
|
|
|
|
method: "POST",
|
|
|
|
|
|
|
|
wantCode: http.StatusSeeOther,
|
|
|
|
wantFormValues: &url.Values{},
|
|
|
|
wantPassword: "NEW_PASSWORD",
|
|
|
|
},
|
|
|
|
// Scenario 2: Happy Path, but without redirect.
|
2015-10-17 03:17:58 +05:30
|
|
|
{ // Case 2
|
2015-08-18 05:57:27 +05:30
|
|
|
// Step 2.1 - User clicks link in email, has valid token.
|
|
|
|
query: url.Values{
|
2015-10-17 03:17:58 +05:30
|
|
|
"token": str(makeToken("ID-1", "password", testClientID, url.URL{}, time.Hour*1, goodSigner)),
|
2015-08-18 05:57:27 +05:30
|
|
|
},
|
|
|
|
method: "GET",
|
|
|
|
|
|
|
|
wantCode: http.StatusOK,
|
|
|
|
wantFormValues: &url.Values{
|
|
|
|
"password": str(""),
|
2015-10-17 03:17:58 +05:30
|
|
|
"token": str(makeToken("ID-1", "password", testClientID, url.URL{}, time.Hour*1, goodSigner)),
|
2015-08-18 05:57:27 +05:30
|
|
|
},
|
|
|
|
wantPassword: "password",
|
|
|
|
},
|
2015-10-17 03:17:58 +05:30
|
|
|
{ // Case 3
|
2015-08-18 05:57:27 +05:30
|
|
|
// Step 2.2 - User enters in new valid password, password is changed, user is redirected.
|
|
|
|
query: url.Values{
|
2015-10-17 03:17:58 +05:30
|
|
|
"token": str(makeToken("ID-1", "password", testClientID, url.URL{}, time.Hour*1, goodSigner)),
|
2015-08-18 05:57:27 +05:30
|
|
|
"password": str("new_password"),
|
|
|
|
},
|
|
|
|
method: "POST",
|
|
|
|
|
|
|
|
// no redirect
|
|
|
|
wantCode: http.StatusOK,
|
|
|
|
wantFormValues: &url.Values{},
|
|
|
|
wantPassword: "NEW_PASSWORD",
|
|
|
|
},
|
|
|
|
// Errors
|
2015-10-17 03:17:58 +05:30
|
|
|
{ // Case 4
|
2015-08-18 05:57:27 +05:30
|
|
|
// Step 1.1.1 - User clicks link in email, has invalid token.
|
|
|
|
query: url.Values{
|
2015-10-17 03:17:58 +05:30
|
|
|
"token": str(makeToken("ID-1", "password", testClientID, testRedirectURL, time.Hour*1, badSigner)),
|
2015-08-18 05:57:27 +05:30
|
|
|
},
|
|
|
|
method: "GET",
|
|
|
|
|
|
|
|
wantCode: http.StatusBadRequest,
|
|
|
|
wantFormValues: &url.Values{},
|
|
|
|
wantPassword: "password",
|
|
|
|
},
|
|
|
|
|
2015-10-17 03:17:58 +05:30
|
|
|
{ // Case 5
|
|
|
|
// Step 2.2.1 - User enters in new valid password, password is changed, no redirect
|
2015-08-18 05:57:27 +05:30
|
|
|
query: url.Values{
|
2015-10-17 03:17:58 +05:30
|
|
|
"token": str(makeToken("ID-1", "password", testClientID, url.URL{}, time.Hour*1, goodSigner)),
|
2015-08-18 05:57:27 +05:30
|
|
|
"password": str("shrt"),
|
|
|
|
},
|
|
|
|
method: "POST",
|
|
|
|
|
|
|
|
// no redirect
|
|
|
|
wantCode: http.StatusBadRequest,
|
|
|
|
wantFormValues: &url.Values{
|
|
|
|
"password": str(""),
|
2015-10-17 03:17:58 +05:30
|
|
|
"token": str(makeToken("ID-1", "password", testClientID, url.URL{}, time.Hour*1, goodSigner)),
|
2015-08-18 05:57:27 +05:30
|
|
|
},
|
|
|
|
wantPassword: "password",
|
|
|
|
},
|
2015-10-17 03:17:58 +05:30
|
|
|
{ // Case 6
|
2015-08-18 05:57:27 +05:30
|
|
|
// Step 2.2.2 - User enters in new valid password, with suspicious token.
|
|
|
|
query: url.Values{
|
2015-10-17 03:17:58 +05:30
|
|
|
"token": str(makeToken("ID-1", "password", testClientID, url.URL{}, time.Hour*1, badSigner)),
|
2015-08-18 05:57:27 +05:30
|
|
|
"password": str("shrt"),
|
|
|
|
},
|
|
|
|
method: "POST",
|
|
|
|
|
|
|
|
// no redirect
|
|
|
|
wantCode: http.StatusBadRequest,
|
|
|
|
wantFormValues: &url.Values{},
|
|
|
|
wantPassword: "password",
|
2015-10-17 03:17:58 +05:30
|
|
|
},
|
|
|
|
{ // Case 7
|
|
|
|
// Token lacking client id
|
|
|
|
query: url.Values{
|
|
|
|
"token": str(makeToken("ID-1", "password", "", url.URL{}, time.Hour*1, goodSigner)),
|
|
|
|
"password": str("shrt"),
|
|
|
|
},
|
|
|
|
method: "GET",
|
|
|
|
|
|
|
|
wantCode: http.StatusBadRequest,
|
|
|
|
wantPassword: "password",
|
|
|
|
},
|
|
|
|
{ // Case 8
|
|
|
|
// Token lacking client id
|
|
|
|
query: url.Values{
|
|
|
|
"token": str(makeToken("ID-1", "password", "", url.URL{}, time.Hour*1, goodSigner)),
|
|
|
|
"password": str("shrt"),
|
|
|
|
},
|
|
|
|
method: "POST",
|
|
|
|
|
|
|
|
wantCode: http.StatusBadRequest,
|
|
|
|
wantPassword: "password",
|
2015-08-18 05:57:27 +05:30
|
|
|
},
|
|
|
|
}
|
|
|
|
for i, tt := range tests {
|
|
|
|
f, err := makeTestFixtures()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("case %d: could not make test fixtures: %v", i, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
hdlr := ResetPasswordHandler{
|
|
|
|
tpl: f.srv.ResetPasswordTemplate,
|
|
|
|
issuerURL: testIssuerURL,
|
|
|
|
um: f.srv.UserManager,
|
|
|
|
keysFunc: f.srv.KeyManager.PublicKeys,
|
|
|
|
}
|
|
|
|
|
|
|
|
w := httptest.NewRecorder()
|
|
|
|
var req *http.Request
|
|
|
|
u := testIssuerURL
|
|
|
|
u.Path = httpPathResetPassword
|
|
|
|
if tt.method == "POST" {
|
|
|
|
req, err = http.NewRequest(tt.method, u.String(), strings.NewReader(tt.query.Encode()))
|
|
|
|
req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
|
|
|
|
} else {
|
|
|
|
u.RawQuery = tt.query.Encode()
|
|
|
|
req, err = http.NewRequest(tt.method, u.String(), nil)
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("case %d: unable to form HTTP request: %v", i, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
hdlr.ServeHTTP(w, req)
|
|
|
|
|
|
|
|
if tt.wantCode != w.Code {
|
|
|
|
t.Errorf("case %d: wantCode=%v, got=%v", i, tt.wantCode, w.Code)
|
|
|
|
t.Logf("case %d: Body: %v ", i, w.Body)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
values, err := html.FormValues("#resetPasswordForm", bytes.NewReader(w.Body.Bytes()))
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("case %d: could not parse form: %v", i, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if tt.wantFormValues != nil {
|
|
|
|
if diff := pretty.Compare(*tt.wantFormValues, values); diff != "" {
|
|
|
|
t.Errorf("case %d: Compare(wantFormValues, got) = %v", i, diff)
|
|
|
|
t.Logf("case %d: Body: %v ", i, w.Body)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pwi, err := f.srv.PasswordInfoRepo.Get(nil, "ID-1")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("case %d: Error getting Password info: %v", i, err)
|
|
|
|
}
|
|
|
|
if tt.wantPassword != string(pwi.Password) {
|
|
|
|
t.Errorf("case %d: wantPassword=%v, got=%v", i, tt.wantPassword, string(pwi.Password))
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type testEmailer struct {
|
|
|
|
from, subject, text, html string
|
|
|
|
to []string
|
|
|
|
sent chan struct{}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *testEmailer) SendMail(from, subject, text, html string, to ...string) error {
|
|
|
|
t.from = from
|
|
|
|
t.subject = subject
|
|
|
|
t.text = text
|
|
|
|
t.html = html
|
|
|
|
t.to = to
|
|
|
|
t.sent <- struct{}{}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|