Files
pansy/internal/api/auth_test.go
T
steveandClaude Opus 4.8 0e41ccd95a
Build image / build-and-push (push) Successful in 8s
Gadfly review (reusable) / review (pull_request) Successful in 7m7s
Adversarial Review (Gadfly) / review (pull_request) Successful in 7m7s
Add local auth: users, sessions, register/login/logout/me (#4)
Implements pansy's local (email + password) authentication and the
session layer that OIDC (#5) will also reuse.

- store: users.go (create/get-by-id/get-by-email/count) and sessions.go
  (create/get/touch/delete/delete-expired), scanning the existing 0001
  schema.
- service: the business-logic seam. auth.go (Register/Login/session
  lifecycle/Providers) + password.go (argon2id, 64 MiB/1/4, PHC-encoded,
  constant-time verify) + service.go (Service, clock injection, token
  hashing). First user is admin; closed registration still allows the
  bootstrap user; unknown-email and wrong-password are indistinguishable
  (same error, same argon2 work via a dummy hash).
- api: POST /auth/register|login|logout, GET /auth/me|providers, plus a
  requireAuth middleware that resolves the HttpOnly session cookie
  (SameSite=Lax, Secure under https) to the actor. Handlers stay thin.
- main: wires the service and a periodic expired-session sweep; sessions
  are also dropped lazily on access. Sliding 30-day expiry.
- tests: service (register/login/expiry/renewal/cleanup, password) and
  api (cookie flow, middleware, validation, providers).

Verified end-to-end via curl: register -> me -> restart -> session
persists -> logout -> 401.

Co-Authored-By: Claude Opus 4.8 (1M context) <[email protected]>
Claude-Session: https://claude.ai/code/session_01JdQpdYYsTgtkJBxbcpAszi
2026-07-18 16:38:03 -04:00

169 lines
5.2 KiB
Go

package api
import (
"bytes"
"context"
"encoding/json"
"net/http"
"net/http/httptest"
"strings"
"testing"
"github.com/gin-gonic/gin"
"gitea.stevedudenhoeffer.com/steve/pansy/internal/config"
"gitea.stevedudenhoeffer.com/steve/pansy/internal/service"
"gitea.stevedudenhoeffer.com/steve/pansy/internal/store"
)
// authEngine builds an API engine backed by a fresh in-memory database.
func authEngine(t *testing.T, cfg *config.Config) *gin.Engine {
t.Helper()
gin.SetMode(gin.TestMode)
db, err := store.Open(":memory:")
if err != nil {
t.Fatalf("store.Open: %v", err)
}
t.Cleanup(func() { db.Close() })
if err := db.Migrate(context.Background()); err != nil {
t.Fatalf("Migrate: %v", err)
}
return New(cfg, service.New(db, cfg))
}
func localCfg() *config.Config {
return &config.Config{Registration: config.RegistrationOpen, LocalAuth: true}
}
// doJSON issues a JSON request, optionally carrying a session cookie.
func doJSON(t *testing.T, r *gin.Engine, method, path string, body any, cookie *http.Cookie) *httptest.ResponseRecorder {
t.Helper()
var buf bytes.Buffer
if body != nil {
if err := json.NewEncoder(&buf).Encode(body); err != nil {
t.Fatalf("encode body: %v", err)
}
}
req := httptest.NewRequest(method, path, &buf)
req.Header.Set("Content-Type", "application/json")
if cookie != nil {
req.AddCookie(cookie)
}
w := httptest.NewRecorder()
r.ServeHTTP(w, req)
return w
}
// sessionCookieFrom extracts the pansy_session cookie from a response.
func sessionCookieFrom(t *testing.T, w *httptest.ResponseRecorder) *http.Cookie {
t.Helper()
for _, ck := range w.Result().Cookies() {
if ck.Name == sessionCookie {
return ck
}
}
t.Fatalf("no %s cookie set (status %d, body %s)", sessionCookie, w.Code, w.Body.String())
return nil
}
func TestRegisterLoginMeLogoutFlow(t *testing.T) {
r := authEngine(t, localCfg())
// Register auto-logs-in and sets a cookie.
w := doJSON(t, r, http.MethodPost, "/api/v1/auth/register",
map[string]string{"email": "[email protected]", "displayName": "Alice", "password": "password123"}, nil)
if w.Code != http.StatusOK {
t.Fatalf("register status = %d, body %s", w.Code, w.Body.String())
}
cookie := sessionCookieFrom(t, w)
if !cookie.HttpOnly {
t.Error("session cookie must be HttpOnly")
}
if cookie.SameSite != http.SameSiteLaxMode {
t.Errorf("session cookie SameSite = %v, want Lax", cookie.SameSite)
}
if cookie.Secure {
t.Error("session cookie must not be Secure without an https base URL")
}
// /me with the cookie returns the user; password hash is never serialized.
w = doJSON(t, r, http.MethodGet, "/api/v1/auth/me", nil, cookie)
if w.Code != http.StatusOK {
t.Fatalf("me status = %d, body %s", w.Code, w.Body.String())
}
if strings.Contains(w.Body.String(), "password") {
t.Errorf("/me leaked a password field: %s", w.Body.String())
}
// Logout clears the cookie and invalidates the session.
w = doJSON(t, r, http.MethodPost, "/api/v1/auth/logout", nil, cookie)
if w.Code != http.StatusOK {
t.Fatalf("logout status = %d", w.Code)
}
w = doJSON(t, r, http.MethodGet, "/api/v1/auth/me", nil, cookie)
if w.Code != http.StatusUnauthorized {
t.Errorf("me after logout status = %d, want 401", w.Code)
}
}
func TestMeRequiresAuth(t *testing.T) {
r := authEngine(t, localCfg())
w := doJSON(t, r, http.MethodGet, "/api/v1/auth/me", nil, nil)
if w.Code != http.StatusUnauthorized {
t.Errorf("me without cookie status = %d, want 401", w.Code)
}
}
func TestLoginWrongPasswordIs401(t *testing.T) {
r := authEngine(t, localCfg())
doJSON(t, r, http.MethodPost, "/api/v1/auth/register",
map[string]string{"email": "[email protected]", "displayName": "Alice", "password": "password123"}, nil)
w := doJSON(t, r, http.MethodPost, "/api/v1/auth/login",
map[string]string{"email": "[email protected]", "password": "wrong"}, nil)
if w.Code != http.StatusUnauthorized {
t.Errorf("bad login status = %d, want 401", w.Code)
}
}
func TestRegisterValidationRejectsShortPassword(t *testing.T) {
r := authEngine(t, localCfg())
w := doJSON(t, r, http.MethodPost, "/api/v1/auth/register",
map[string]string{"email": "[email protected]", "displayName": "Alice", "password": "short"}, nil)
if w.Code != http.StatusBadRequest {
t.Errorf("short-password register status = %d, want 400", w.Code)
}
}
func TestProvidersEndpoint(t *testing.T) {
r := authEngine(t, localCfg())
w := doJSON(t, r, http.MethodGet, "/api/v1/auth/providers", nil, nil)
if w.Code != http.StatusOK {
t.Fatalf("providers status = %d", w.Code)
}
var got struct {
Local bool `json:"local"`
OIDC bool `json:"oidc"`
}
if err := json.Unmarshal(w.Body.Bytes(), &got); err != nil {
t.Fatalf("decode providers: %v", err)
}
if !got.Local || got.OIDC {
t.Errorf("providers = %+v, want local=true oidc=false", got)
}
}
func TestSecureCookieWithHTTPSBaseURL(t *testing.T) {
cfg := localCfg()
cfg.BaseURL = "https://pansy.example.com"
r := authEngine(t, cfg)
w := doJSON(t, r, http.MethodPost, "/api/v1/auth/register",
map[string]string{"email": "[email protected]", "displayName": "Alice", "password": "password123"}, nil)
if w.Code != http.StatusOK {
t.Fatalf("register status = %d", w.Code)
}
if !sessionCookieFrom(t, w).Secure {
t.Error("session cookie should be Secure when base URL is https")
}
}