86 lines
2.5 KiB
Go
86 lines
2.5 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 (
|
|
"fmt"
|
|
"net/http"
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
// Covers MFA ticket expiry and reuse rejection for TOTP.
|
|
func TestAuthMfaTicketExpiryAndReuse(t *testing.T) {
|
|
client := newTestClient(t)
|
|
account := createTestAccount(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()
|
|
|
|
expiredTicket := fmt.Sprintf("expired-%d", time.Now().UnixNano())
|
|
seedMfaTicket(t, client, expiredTicket, account.UserID, 1)
|
|
time.Sleep(2 * time.Second)
|
|
|
|
resp, err = client.postJSON("/auth/login/mfa/totp", map[string]string{
|
|
"ticket": expiredTicket,
|
|
"code": totpCodeNow(t, secret),
|
|
})
|
|
if err != nil {
|
|
t.Fatalf("failed to call login mfa totp with expired ticket: %v", err)
|
|
}
|
|
if resp.StatusCode == http.StatusOK {
|
|
t.Fatalf("expected expired ticket to fail, got 200")
|
|
}
|
|
resp.Body.Close()
|
|
|
|
validTicket := fmt.Sprintf("valid-%d", time.Now().UnixNano())
|
|
seedMfaTicket(t, client, validTicket, account.UserID, 300)
|
|
|
|
resp, err = client.postJSON("/auth/login/mfa/totp", map[string]string{
|
|
"ticket": validTicket,
|
|
"code": totpCodeNow(t, secret),
|
|
})
|
|
if err != nil {
|
|
t.Fatalf("failed to call login mfa totp: %v", err)
|
|
}
|
|
assertStatus(t, resp, http.StatusOK)
|
|
resp.Body.Close()
|
|
|
|
resp, err = client.postJSON("/auth/login/mfa/totp", map[string]string{
|
|
"ticket": validTicket,
|
|
"code": totpCodeNow(t, secret),
|
|
})
|
|
if err != nil {
|
|
t.Fatalf("failed to call login mfa totp reuse: %v", err)
|
|
}
|
|
if resp.StatusCode == http.StatusOK {
|
|
t.Fatalf("expected reused ticket to fail")
|
|
}
|
|
resp.Body.Close()
|
|
}
|