93 lines
2.9 KiB
Go
93 lines
2.9 KiB
Go
/*
|
|
* Copyright (C) 2026 Fluxer Contributors
|
|
*
|
|
* This file is part of Fluxer.
|
|
*
|
|
* Fluxer is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Fluxer is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with Fluxer. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
package integration
|
|
|
|
import (
|
|
"net/http"
|
|
"testing"
|
|
)
|
|
|
|
// Covers password reset flow when MFA is enabled: returns ticket then succeeds with TOTP.
|
|
func TestAuthResetPasswordRequiresMfa(t *testing.T) {
|
|
client := newTestClient(t)
|
|
account := createTestAccount(t, client)
|
|
clearTestEmails(t, client)
|
|
|
|
secret := newTotpSecret(t)
|
|
resp, err := client.postJSONWithAuth("/users/@me/mfa/totp/enable", map[string]string{
|
|
"secret": secret,
|
|
"code": totpCodeNow(t, secret),
|
|
}, account.Token)
|
|
if err != nil {
|
|
t.Fatalf("failed to enable totp: %v", err)
|
|
}
|
|
assertStatus(t, resp, http.StatusOK)
|
|
resp.Body.Close()
|
|
|
|
resp, err = client.postJSON("/auth/forgot", map[string]string{"email": account.Email})
|
|
if err != nil {
|
|
t.Fatalf("failed to call forgot password: %v", err)
|
|
}
|
|
assertStatus(t, resp, http.StatusNoContent)
|
|
resp.Body.Close()
|
|
|
|
email := waitForEmail(t, client, "password_reset", account.Email)
|
|
token, ok := email.Metadata["token"]
|
|
if !ok || token == "" {
|
|
t.Fatalf("expected password reset token in email metadata")
|
|
}
|
|
|
|
newPassword := uniquePassword()
|
|
resp, err = client.postJSON("/auth/reset", map[string]string{"token": token, "password": newPassword})
|
|
if err != nil {
|
|
t.Fatalf("failed to call reset password: %v", err)
|
|
}
|
|
if resp.StatusCode != http.StatusOK {
|
|
t.Fatalf("expected reset to require mfa but still 200 payload; got %d: %s", resp.StatusCode, readResponseBody(resp))
|
|
}
|
|
|
|
var resetResp loginResponse
|
|
decodeJSONResponse(t, resp, &resetResp)
|
|
if !resetResp.MFA || resetResp.Ticket == "" {
|
|
t.Fatalf("expected reset to return mfa ticket")
|
|
}
|
|
resp.Body.Close()
|
|
|
|
resp, err = client.postJSON("/auth/login/mfa/totp", map[string]string{
|
|
"ticket": resetResp.Ticket,
|
|
"code": totpCodeNow(t, secret),
|
|
})
|
|
if err != nil {
|
|
t.Fatalf("failed to complete mfa after reset: %v", err)
|
|
}
|
|
assertStatus(t, resp, http.StatusOK)
|
|
var mfaResp mfaLoginResponse
|
|
decodeJSONResponse(t, resp, &mfaResp)
|
|
if mfaResp.Token == "" {
|
|
t.Fatalf("expected mfa completion to return token")
|
|
}
|
|
resp.Body.Close()
|
|
|
|
login := loginTestUserWithTotp(t, client, account.Email, newPassword, secret)
|
|
if login.Token == "" {
|
|
t.Fatalf("expected login with new password to succeed")
|
|
}
|
|
}
|