mirror of
https://github.com/J3vb/OwnCord.git
synced 2026-09-03 03:50:00 +03:00
- #16: Fix golangci-lint issues (unchecked Close(), unused funcs, naming) - #17: Add KeybindsTab and LogsTab unit tests (19 tests, 81%+ coverage) - #18: Add rate limiting to chat_edit and chat_delete handlers - #19: Fix cert mismatch handling via event listener instead of string match - #20: Validate SHA-256 colon-hex fingerprint format in Rust ws_proxy - #21: Optimize session+ban check with single JOIN query - #22: Sort channels by position when redirecting after deletion - #23: Rename admin test files for clarity Also fixes ban expiry regression (H-1 from code review) by using auth.IsEffectivelyBanned() to properly respect temporary ban expiry.
496 lines
18 KiB
Go
496 lines
18 KiB
Go
package admin_test
|
|
|
|
// Targeted tests to boost coverage to 80%+ by exercising uncovered branches.
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"testing"
|
|
|
|
"github.com/owncord/server/admin"
|
|
)
|
|
|
|
// ─── handlePatchUser — self-modification guard ─────────────────────────────
|
|
|
|
// TestAdminAPI_PatchUser_CannotModifySelf verifies that an admin cannot patch
|
|
// their own account via the admin panel.
|
|
func TestAdminAPI_PatchUser_CannotModifySelf(t *testing.T) {
|
|
database := openAdminTestDB(t)
|
|
handler := admin.NewAdminAPI(database, "1.0.0", &mockHub{}, nil)
|
|
token := createAdminUser(t, database)
|
|
|
|
// The admin user created by createAdminUser has id=1. We try to patch id=1.
|
|
body := map[string]any{"banned": true}
|
|
w := doRequest(t, handler, http.MethodPatch, "/users/1", token, body)
|
|
|
|
if w.Code != http.StatusBadRequest {
|
|
t.Errorf("self-modification status = %d, want 400; body: %s", w.Code, w.Body.String())
|
|
}
|
|
}
|
|
|
|
// TestAdminAPI_PatchUser_UnbanUser verifies that setting banned=false on a
|
|
// banned user unbans them and returns 200.
|
|
func TestAdminAPI_PatchUser_UnbanUser(t *testing.T) {
|
|
database := openAdminTestDB(t)
|
|
handler := admin.NewAdminAPI(database, "1.0.0", &mockHub{}, nil)
|
|
token := createAdminUser(t, database)
|
|
|
|
// Create and ban a target user first.
|
|
targetUID, _ := database.CreateUser("unbanme", "hash", 3)
|
|
_ = database.BanUser(targetUID, "test ban", nil)
|
|
|
|
body := map[string]any{"banned": false}
|
|
w := doRequest(t, handler, http.MethodPatch, "/users/"+itoa(targetUID), token, body)
|
|
|
|
if w.Code != http.StatusOK {
|
|
t.Errorf("unban status = %d, want 200; body: %s", w.Code, w.Body.String())
|
|
}
|
|
|
|
// Verify the user is now unbanned.
|
|
user, _ := database.GetUserByID(targetUID)
|
|
if user.Banned {
|
|
t.Error("user is still banned after unban request")
|
|
}
|
|
}
|
|
|
|
// TestAdminAPI_PatchUser_InvalidBody verifies that a non-JSON body returns 400.
|
|
func TestAdminAPI_PatchUser_InvalidBody(t *testing.T) {
|
|
database := openAdminTestDB(t)
|
|
handler := admin.NewAdminAPI(database, "1.0.0", nil, nil)
|
|
token := createAdminUser(t, database)
|
|
|
|
targetUID, _ := database.CreateUser("invalidbody", "hash", 3)
|
|
|
|
req := httptest.NewRequest(http.MethodPatch, "/users/"+itoa(targetUID), bytes.NewReader([]byte("not-json")))
|
|
req.Header.Set("Authorization", "Bearer "+token)
|
|
req.Header.Set("Content-Type", "application/json")
|
|
w := httptest.NewRecorder()
|
|
handler.ServeHTTP(w, req)
|
|
|
|
if w.Code != http.StatusBadRequest {
|
|
t.Errorf("invalid body status = %d, want 400", w.Code)
|
|
}
|
|
}
|
|
|
|
// ─── handleCreateChannel — default type ───────────────────────────────────
|
|
|
|
// TestAdminAPI_CreateChannel_DefaultsTypeToText verifies that omitting the
|
|
// "type" field causes the channel to be created with type "text".
|
|
func TestAdminAPI_CreateChannel_DefaultsTypeToText(t *testing.T) {
|
|
database := openAdminTestDB(t)
|
|
handler := admin.NewAdminAPI(database, "1.0.0", nil, nil)
|
|
token := createAdminUser(t, database)
|
|
|
|
body := map[string]any{
|
|
"name": "no-type-channel",
|
|
// "type" intentionally omitted — should default to "text"
|
|
}
|
|
w := doRequest(t, handler, http.MethodPost, "/channels", token, body)
|
|
|
|
if w.Code != http.StatusCreated {
|
|
t.Fatalf("status = %d, want 201; body: %s", w.Code, w.Body.String())
|
|
}
|
|
|
|
var resp map[string]any
|
|
if err := json.Unmarshal(w.Body.Bytes(), &resp); err != nil {
|
|
t.Fatalf("unmarshal: %v", err)
|
|
}
|
|
if resp["type"] != "text" {
|
|
t.Errorf("type = %q, want text", resp["type"])
|
|
}
|
|
}
|
|
|
|
// TestAdminAPI_CreateChannel_InvalidBody verifies that a malformed body returns 400.
|
|
func TestAdminAPI_CreateChannel_InvalidBody(t *testing.T) {
|
|
database := openAdminTestDB(t)
|
|
handler := admin.NewAdminAPI(database, "1.0.0", nil, nil)
|
|
token := createAdminUser(t, database)
|
|
|
|
req := httptest.NewRequest(http.MethodPost, "/channels", bytes.NewReader([]byte("not-json")))
|
|
req.Header.Set("Authorization", "Bearer "+token)
|
|
req.Header.Set("Content-Type", "application/json")
|
|
w := httptest.NewRecorder()
|
|
handler.ServeHTTP(w, req)
|
|
|
|
if w.Code != http.StatusBadRequest {
|
|
t.Errorf("invalid body status = %d, want 400", w.Code)
|
|
}
|
|
}
|
|
|
|
// ─── handleForceLogout — invalid ID ──────────────────────────────────────
|
|
|
|
// TestAdminAPI_ForceLogout_InvalidID verifies that a non-numeric user ID in
|
|
// the URL returns 400.
|
|
func TestAdminAPI_ForceLogout_InvalidID(t *testing.T) {
|
|
database := openAdminTestDB(t)
|
|
handler := admin.NewAdminAPI(database, "1.0.0", nil, nil)
|
|
token := createAdminUser(t, database)
|
|
|
|
w := doRequest(t, handler, http.MethodDelete, "/users/notanumber/sessions", token, nil)
|
|
|
|
if w.Code != http.StatusBadRequest {
|
|
t.Errorf("invalid ID status = %d, want 400", w.Code)
|
|
}
|
|
}
|
|
|
|
// ─── handlePatchChannel — invalid body ────────────────────────────────────
|
|
|
|
// TestAdminAPI_PatchChannel_InvalidBody verifies that a malformed PATCH body
|
|
// returns 400.
|
|
func TestAdminAPI_PatchChannel_InvalidBody(t *testing.T) {
|
|
database := openAdminTestDB(t)
|
|
handler := admin.NewAdminAPI(database, "1.0.0", nil, nil)
|
|
token := createAdminUser(t, database)
|
|
|
|
chID, _ := database.AdminCreateChannel("malformed", "text", "", "", 0)
|
|
|
|
req := httptest.NewRequest(http.MethodPatch, "/channels/"+itoa(chID), bytes.NewReader([]byte("not-json")))
|
|
req.Header.Set("Authorization", "Bearer "+token)
|
|
req.Header.Set("Content-Type", "application/json")
|
|
w := httptest.NewRecorder()
|
|
handler.ServeHTTP(w, req)
|
|
|
|
if w.Code != http.StatusBadRequest {
|
|
t.Errorf("invalid body status = %d, want 400", w.Code)
|
|
}
|
|
}
|
|
|
|
// ─── queryInt — cap at 500 ────────────────────────────────────────────────
|
|
|
|
// TestAdminAPI_ListUsers_CapLargeLimit verifies that a limit > 500 is capped
|
|
// to 500 (testing the queryInt cap branch).
|
|
func TestAdminAPI_ListUsers_CapLargeLimit(t *testing.T) {
|
|
database := openAdminTestDB(t)
|
|
handler := admin.NewAdminAPI(database, "1.0.0", nil, nil)
|
|
token := createAdminUser(t, database)
|
|
|
|
// Passing limit=9999 should be silently capped to 500.
|
|
w := doRequest(t, handler, http.MethodGet, "/users?limit=9999", token, nil)
|
|
|
|
if w.Code != http.StatusOK {
|
|
t.Errorf("status = %d, want 200; body: %s", w.Code, w.Body.String())
|
|
}
|
|
}
|
|
|
|
// ─── handleCheckUpdate — nil updater ──────────────────────────────────────
|
|
|
|
// TestAdminAPI_CheckUpdate_NilUpdater verifies that GET /updates returns 503
|
|
// when no updater is configured.
|
|
func TestAdminAPI_CheckUpdate_NilUpdater(t *testing.T) {
|
|
database := openAdminTestDB(t)
|
|
handler := admin.NewAdminAPI(database, "1.0.0", nil, nil)
|
|
token := createAdminUser(t, database)
|
|
|
|
w := doRequest(t, handler, http.MethodGet, "/updates", token, nil)
|
|
|
|
if w.Code != http.StatusServiceUnavailable {
|
|
t.Errorf("nil updater GET /updates status = %d, want 503", w.Code)
|
|
}
|
|
}
|
|
|
|
// ─── handleDeleteChannel — invalid ID ────────────────────────────────────
|
|
|
|
// TestAdminAPI_DeleteChannel_InvalidID verifies that a non-numeric channel ID
|
|
// returns 400.
|
|
func TestAdminAPI_DeleteChannel_InvalidID(t *testing.T) {
|
|
database := openAdminTestDB(t)
|
|
handler := admin.NewAdminAPI(database, "1.0.0", nil, nil)
|
|
token := createAdminUser(t, database)
|
|
|
|
w := doRequest(t, handler, http.MethodDelete, "/channels/notanumber", token, nil)
|
|
|
|
if w.Code != http.StatusBadRequest {
|
|
t.Errorf("invalid ID status = %d, want 400", w.Code)
|
|
}
|
|
}
|
|
|
|
// ─── handlePatchChannel — invalid ID ─────────────────────────────────────
|
|
|
|
// TestAdminAPI_PatchChannel_InvalidID verifies that a non-numeric channel ID
|
|
// returns 400.
|
|
func TestAdminAPI_PatchChannel_InvalidID(t *testing.T) {
|
|
database := openAdminTestDB(t)
|
|
handler := admin.NewAdminAPI(database, "1.0.0", nil, nil)
|
|
token := createAdminUser(t, database)
|
|
|
|
body := map[string]any{"name": "x"}
|
|
w := doRequest(t, handler, http.MethodPatch, "/channels/abc", token, body)
|
|
|
|
if w.Code != http.StatusBadRequest {
|
|
t.Errorf("invalid ID status = %d, want 400", w.Code)
|
|
}
|
|
}
|
|
|
|
// ─── handleGetAuditLog — pagination ───────────────────────────────────────
|
|
|
|
// TestAdminAPI_AuditLog_Pagination verifies that limit and offset params work.
|
|
func TestAdminAPI_AuditLog_Pagination(t *testing.T) {
|
|
database := openAdminTestDB(t)
|
|
handler := admin.NewAdminAPI(database, "1.0.0", nil, nil)
|
|
token := createAdminUser(t, database)
|
|
|
|
// Create several audit entries.
|
|
uid, _ := database.CreateUser("auditpager", "hash", 1)
|
|
for i := 0; i < 5; i++ {
|
|
_ = database.LogAudit(uid, "TEST", "test", int64(i), "")
|
|
}
|
|
|
|
// Fetch page 2 with limit=2, offset=2 — should return 2 entries.
|
|
w := doRequest(t, handler, http.MethodGet, "/audit-log?limit=2&offset=2", token, nil)
|
|
|
|
if w.Code != http.StatusOK {
|
|
t.Errorf("status = %d, want 200; body: %s", w.Code, w.Body.String())
|
|
}
|
|
|
|
var entries []any
|
|
if err := json.Unmarshal(w.Body.Bytes(), &entries); err != nil {
|
|
t.Fatalf("unmarshal: %v", err)
|
|
}
|
|
if len(entries) != 2 {
|
|
t.Errorf("expected 2 entries with limit=2 offset=2, got %d", len(entries))
|
|
}
|
|
}
|
|
|
|
// ─── handleGetStats — nil hub ─────────────────────────────────────────────
|
|
|
|
// TestAdminAPI_Stats_NilHub verifies that GET /stats works correctly when
|
|
// hub is nil (the OnlineCount field defaults to 0).
|
|
func TestAdminAPI_Stats_NilHub(t *testing.T) {
|
|
database := openAdminTestDB(t)
|
|
handler := admin.NewAdminAPI(database, "1.0.0", nil, nil)
|
|
token := createAdminUser(t, database)
|
|
|
|
w := doRequest(t, handler, http.MethodGet, "/stats", token, nil)
|
|
|
|
if w.Code != http.StatusOK {
|
|
t.Errorf("status = %d, want 200; body: %s", w.Code, w.Body.String())
|
|
}
|
|
|
|
var stats map[string]any
|
|
if err := json.Unmarshal(w.Body.Bytes(), &stats); err != nil {
|
|
t.Fatalf("unmarshal: %v", err)
|
|
}
|
|
// online_count should be 0 when hub is nil
|
|
if v, ok := stats["online_count"]; ok {
|
|
if v.(float64) != 0 {
|
|
t.Errorf("online_count = %v, want 0 (nil hub)", v)
|
|
}
|
|
}
|
|
}
|
|
|
|
// ─── queryInt — invalid string value ──────────────────────────────────────
|
|
|
|
// TestAdminAPI_AuditLog_InvalidLimitParam verifies that a non-numeric limit
|
|
// falls back to the default (testing the queryInt error-fallback branch).
|
|
func TestAdminAPI_AuditLog_InvalidLimitParam(t *testing.T) {
|
|
database := openAdminTestDB(t)
|
|
handler := admin.NewAdminAPI(database, "1.0.0", nil, nil)
|
|
token := createAdminUser(t, database)
|
|
|
|
w := doRequest(t, handler, http.MethodGet, "/audit-log?limit=notanumber", token, nil)
|
|
|
|
if w.Code != http.StatusOK {
|
|
t.Errorf("invalid limit status = %d, want 200", w.Code)
|
|
}
|
|
}
|
|
|
|
// TestAdminAPI_ListUsers_InvalidLimitParam verifies that limit=0 falls back to
|
|
// the default (testing the n < 1 branch of queryInt).
|
|
func TestAdminAPI_ListUsers_InvalidLimitParam(t *testing.T) {
|
|
database := openAdminTestDB(t)
|
|
handler := admin.NewAdminAPI(database, "1.0.0", nil, nil)
|
|
token := createAdminUser(t, database)
|
|
|
|
// limit=0 triggers the n < 1 fallback in queryInt
|
|
w := doRequest(t, handler, http.MethodGet, "/users?limit=0", token, nil)
|
|
|
|
if w.Code != http.StatusOK {
|
|
t.Errorf("limit=0 status = %d, want 200", w.Code)
|
|
}
|
|
}
|
|
|
|
// ─── PatchUser — BanReason nil path ────────────────────────────────────────
|
|
|
|
// TestAdminAPI_PatchUser_BanWithoutReason verifies that banning a user without
|
|
// providing ban_reason is accepted (reason defaults to empty string).
|
|
func TestAdminAPI_PatchUser_BanWithoutReason(t *testing.T) {
|
|
database := openAdminTestDB(t)
|
|
handler := admin.NewAdminAPI(database, "1.0.0", &mockHub{}, nil)
|
|
token := createAdminUser(t, database)
|
|
|
|
targetUID, _ := database.CreateUser("banwithout", "hash", 3)
|
|
|
|
// No ban_reason in body — the nil check in handlePatchUser uses empty string.
|
|
body := map[string]any{"banned": true}
|
|
w := doRequest(t, handler, http.MethodPatch, "/users/"+itoa(targetUID), token, body)
|
|
|
|
if w.Code != http.StatusOK {
|
|
t.Errorf("ban without reason status = %d, want 200; body: %s", w.Code, w.Body.String())
|
|
}
|
|
}
|
|
|
|
// ─── PatchUser — role change broadcasts ────────────────────────────────────
|
|
|
|
// TestAdminAPI_PatchUser_RoleChangeBroadcast verifies that changing a user's
|
|
// role results in a BroadcastMemberUpdate call via the hub.
|
|
func TestAdminAPI_PatchUser_RoleChangeBroadcast(t *testing.T) {
|
|
database := openAdminTestDB(t)
|
|
hub := &mockHub{}
|
|
handler := admin.NewAdminAPI(database, "1.0.0", hub, nil)
|
|
token := createAdminUser(t, database)
|
|
|
|
targetUID, _ := database.CreateUser("rolebroadcast", "hash", 3)
|
|
|
|
body := map[string]any{"role_id": float64(2)}
|
|
w := doRequest(t, handler, http.MethodPatch, "/users/"+itoa(targetUID), token, body)
|
|
|
|
if w.Code != http.StatusOK {
|
|
t.Fatalf("status = %d, want 200; body: %s", w.Code, w.Body.String())
|
|
}
|
|
if len(hub.memberUpdates) == 0 {
|
|
t.Error("BroadcastMemberUpdate not called after role change")
|
|
}
|
|
}
|
|
|
|
// ─── Setup endpoints ──────────────────────────────────────────────────────
|
|
|
|
// TestAdminAPI_SetupStatus_NeedsSetup verifies that GET /setup/status returns
|
|
// needs_setup=true when the database has no users.
|
|
func TestAdminAPI_SetupStatus_NeedsSetup(t *testing.T) {
|
|
database := openAdminTestDB(t)
|
|
handler := admin.NewAdminAPI(database, "1.0.0", nil, nil)
|
|
|
|
w := doRequest(t, handler, http.MethodGet, "/setup/status", "", nil)
|
|
|
|
if w.Code != http.StatusOK {
|
|
t.Fatalf("status = %d, want 200; body: %s", w.Code, w.Body.String())
|
|
}
|
|
|
|
var resp map[string]bool
|
|
if err := json.Unmarshal(w.Body.Bytes(), &resp); err != nil {
|
|
t.Fatalf("unmarshal: %v", err)
|
|
}
|
|
if !resp["needs_setup"] {
|
|
t.Error("expected needs_setup=true when no users exist")
|
|
}
|
|
}
|
|
|
|
// TestAdminAPI_SetupStatus_AlreadySetup verifies needs_setup=false when users exist.
|
|
func TestAdminAPI_SetupStatus_AlreadySetup(t *testing.T) {
|
|
database := openAdminTestDB(t)
|
|
handler := admin.NewAdminAPI(database, "1.0.0", nil, nil)
|
|
|
|
_, _ = database.CreateUser("existing", "hash", 1)
|
|
|
|
w := doRequest(t, handler, http.MethodGet, "/setup/status", "", nil)
|
|
|
|
if w.Code != http.StatusOK {
|
|
t.Fatalf("status = %d, want 200; body: %s", w.Code, w.Body.String())
|
|
}
|
|
|
|
var resp map[string]bool
|
|
_ = json.Unmarshal(w.Body.Bytes(), &resp)
|
|
if resp["needs_setup"] {
|
|
t.Error("expected needs_setup=false when users exist")
|
|
}
|
|
}
|
|
|
|
// TestAdminAPI_Setup_Success verifies the full setup flow creates an owner,
|
|
// session, channel, and invite.
|
|
func TestAdminAPI_Setup_Success(t *testing.T) {
|
|
database := openAdminTestDB(t)
|
|
handler := admin.NewAdminAPI(database, "1.0.0", nil, nil)
|
|
|
|
body := map[string]string{
|
|
"username": "owner",
|
|
"password": "Str0ngP@ssw0rd!",
|
|
}
|
|
w := doRequest(t, handler, http.MethodPost, "/setup", "", body)
|
|
|
|
if w.Code != http.StatusCreated {
|
|
t.Fatalf("setup status = %d, want 201; body: %s", w.Code, w.Body.String())
|
|
}
|
|
|
|
var resp map[string]any
|
|
if err := json.Unmarshal(w.Body.Bytes(), &resp); err != nil {
|
|
t.Fatalf("unmarshal: %v", err)
|
|
}
|
|
if resp["token"] == nil || resp["token"] == "" {
|
|
t.Error("expected non-empty token in setup response")
|
|
}
|
|
if resp["invite_code"] == nil || resp["invite_code"] == "" {
|
|
t.Error("expected non-empty invite_code in setup response")
|
|
}
|
|
if resp["username"] != "owner" {
|
|
t.Errorf("username = %v, want owner", resp["username"])
|
|
}
|
|
}
|
|
|
|
// TestAdminAPI_Setup_AlreadyCompleted verifies that POST /setup returns 403
|
|
// when users already exist.
|
|
func TestAdminAPI_Setup_AlreadyCompleted(t *testing.T) {
|
|
database := openAdminTestDB(t)
|
|
handler := admin.NewAdminAPI(database, "1.0.0", nil, nil)
|
|
|
|
_, _ = database.CreateUser("existing", "hash", 1)
|
|
|
|
body := map[string]string{
|
|
"username": "hacker",
|
|
"password": "Str0ngP@ssw0rd!",
|
|
}
|
|
w := doRequest(t, handler, http.MethodPost, "/setup", "", body)
|
|
|
|
if w.Code != http.StatusForbidden {
|
|
t.Errorf("setup after completion status = %d, want 403", w.Code)
|
|
}
|
|
}
|
|
|
|
// TestAdminAPI_Setup_MissingFields verifies that POST /setup with empty
|
|
// username or password returns 400.
|
|
func TestAdminAPI_Setup_MissingFields(t *testing.T) {
|
|
database := openAdminTestDB(t)
|
|
handler := admin.NewAdminAPI(database, "1.0.0", nil, nil)
|
|
|
|
body := map[string]string{
|
|
"username": "",
|
|
"password": "",
|
|
}
|
|
w := doRequest(t, handler, http.MethodPost, "/setup", "", body)
|
|
|
|
if w.Code != http.StatusBadRequest {
|
|
t.Errorf("empty fields status = %d, want 400; body: %s", w.Code, w.Body.String())
|
|
}
|
|
}
|
|
|
|
// TestAdminAPI_Setup_WeakPassword verifies that a weak password is rejected.
|
|
func TestAdminAPI_Setup_WeakPassword(t *testing.T) {
|
|
database := openAdminTestDB(t)
|
|
handler := admin.NewAdminAPI(database, "1.0.0", nil, nil)
|
|
|
|
body := map[string]string{
|
|
"username": "owner",
|
|
"password": "weak",
|
|
}
|
|
w := doRequest(t, handler, http.MethodPost, "/setup", "", body)
|
|
|
|
if w.Code != http.StatusBadRequest {
|
|
t.Errorf("weak password status = %d, want 400; body: %s", w.Code, w.Body.String())
|
|
}
|
|
}
|
|
|
|
// TestAdminAPI_Setup_InvalidBody verifies that a non-JSON body returns 400.
|
|
func TestAdminAPI_Setup_InvalidBody(t *testing.T) {
|
|
database := openAdminTestDB(t)
|
|
handler := admin.NewAdminAPI(database, "1.0.0", nil, nil)
|
|
|
|
req := httptest.NewRequest(http.MethodPost, "/setup", bytes.NewReader([]byte("not-json")))
|
|
w := httptest.NewRecorder()
|
|
handler.ServeHTTP(w, req)
|
|
|
|
if w.Code != http.StatusBadRequest {
|
|
t.Errorf("invalid body status = %d, want 400", w.Code)
|
|
}
|
|
}
|