mirror of
https://github.com/J3vb/OwnCord.git
synced 2026-09-03 03:50:00 +03:00
* fix(identity): 1 defect(s) (OC-0151)
* fix(ws): 1 defect(s) (OC-0152)
* fix(admin): 1 defect(s) (OC-0153)
* fix(admin): 1 defect(s) (OC-0154)
* fix(voice): 2 defect(s) (OC-0155, OC-0167)
Replace distributeRoomKey's per-call offer counter with an instance-level
sliding-window budget shared by every voice_e2ee_offer send path.
- OC-0155: back-to-back rotations (the second run immediately by
drainPendingRotationOrArmTimer) each got a fresh pacing budget, so their
combined sends could exceed the server's single per-second cap.
- OC-0167: handleAnnounceInner's drain-time offer send bypassed pacing
entirely, letting a key holder joining a large ongoing call burst every
queued announce's offer unpaced.
The shared budget is reset in clearState() since the server's limit is
scoped per (sender, channel).
* fix(client): 1 defect(s) (OC-0156)
createPresenceSender dropped a queued custom_status when a later plain
status change superseded the pending retry. The retry now carries the
last committed custom_status forward.
* fix(client): 2 defect(s) (OC-0160, OC-0163)
OC-0160: exempt the handshake frames (ready, auth_ok) from the ws message
size limit and run the guard after parsing. A 'ready' frame grows unbounded
with member/channel/DM counts and carries no seq, so dropping it left the
client on empty stores with no error and no recovery path.
OC-0163: bracket a bare IPv6 host when building the wss:// URL so the
authority parses, and collapse bracketed/bare IPv6 literals to the same
cert_store_key so one server is not pinned (and user-confirmed) twice.
* fix(voice): 1 defect(s) (OC-0162)
updatePttKey armed the Rust poller when a PTT key was bound mid-call but
never applied the gate. The poller only emits 'ptt-state' on a press/release
transition, so an idle key produced no event and the already-published mic
stayed hot until the user's first physical press+release. Mirror the join-time
gate computation in updatePttKey, guarded on being in a call, polling actually
being live, and the mic not already being gated.
* fix(client): 1 defect(s) (OC-0164)
* fix(plugin): 1 defect(s) (OC-0165)
scanPluginDirectory now skips a malformed plugin subdirectory and joins its
error instead of aborting the whole scan, and LoadAll logs-and-continues so
one bad plugin directory cannot disable every other plugin.
* fix(ws): 1 defect(s) (OC-0166)
Route PresenceSelfEvent onto the owner's normal-priority queue instead of
letting it fall through to the UserTargetedEvent high-priority case, so a
user's own presence frames all share one FIFO and cannot be delivered out
of order relative to the visible presence_update path.
* fix(db): 1 defect(s) (OC-0168)
* fix(client): 1 defect(s) (OC-0169)
* fix(client): 1 defect(s) (OC-0171)
addMessage appended a broadcast at the tail even when trailing optimistic
rows were still unreconciled, so a message that committed while our own
send was in flight ended up ordered behind the row confirmSend later
stamped with a higher server id/timestamp. Insert before the trailing
unreconciled run instead.
* fix(voice): 1 defect(s) (OC-0172)
* fix(client): 1 defect(s) (OC-0174)
* fix(ws): 1 defect(s) (OC-0175)
* fix(client): 1 defect(s) (OC-0177)
* fix(client): 1 defect(s) (OC-0178)
* fix(voice): 1 defect(s) (OC-0179)
Undeafening no longer sends a voice_mute{muted:false} the server will
refuse while a moderator-imposed mute stands, matching the localServerMuted
guard already present in onMuteToggle.
* fix(client): 1 defect(s) (OC-0182)
* fix(plugin): 1 defect(s) (OC-0183)
* fix(client): 1 defect(s) (OC-0184)
Treat a trailing underscore as an emphasis delimiter, not part of the URL,
when scanning for the end of an autolinked URL.
* fix(client): 1 defect(s) (OC-0185)
Reveal .msg-actions-bar on .message:focus-within, not only on hover, so
keyboard users can see the per-message action buttons they Tab into
instead of activating them at opacity: 0.
Claude-Session: https://claude.ai/code/session_01M6gVN2JM5wrduhkNaFCxdK
* fix(client): 1 defect(s) (OC-0186)
* fix(client): 1 defect(s) (OC-0187)
The Add Server modal validated addresses with its own narrower regex that
never gained IPv6 support when api.ts's validator did, so an IPv6 server
could be logged into but never saved as a profile. Extract the validator
into src/lib/hostValidation.ts and use it from both call sites.
* fix(client): 1 defect(s) (OC-0189)
DM sidebar rows dropped mention counts entirely and the header total
excluded muted conversations outright, so a direct mention in a muted DM
was invisible. Render a mention badge that outranks the plain unread
badge, and count a muted channel's mentionCount toward the header total.
* fix(client): 1 defect(s) (OC-0190)
* fix(client): 1 defect(s) (OC-0191)
* fix(client): 2 defect(s) (OC-0157, OC-0176)
* fix(client): 1 defect(s) (OC-0161)
confirmTotp answers 401 for a wrong enrollment code while the session is still valid; firing the global onUnauthorized sink signed the user out and deleted their stored credential. Opt that one call out via a skipUnauthorized flag on doFetch.
* fix(admin): 1 defect(s) (OC-0173)
* fix(identity): 1 defect(s) (OC-0180)
* fix(admin): archived channel PATCH skips voice eviction and fan-out (OC-0158)
handlePatchChannel commits the AdminUpdateChannel write, then re-reads the
channel to drive voice eviction and the visibility fan-out. When that
post-commit re-read failed, the handler returned early: the archive was
durable but connected clients were never told and voice members were never
evicted, leaving users talking in a channel that no longer exists for them.
Drive the post-commit work off the values already in hand rather than
abandoning it when the re-read fails.
Adds SetPatchChannelPostCommitHook so the test can land a cancellation in
that exact window deterministically instead of racing wall-clock timing.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01M6gVN2JM5wrduhkNaFCxdK
* fix(admin): role changes commit with no client ever notified (OC-0170)
broadcastRoles derived its context from the inbound *http.Request, so the
roles_update fan-out was tied to the request lifetime. A role create,
update, or delete could commit to the database and then broadcast nothing
once that request context was done, leaving every connected client on a
stale role list until the next full resync.
Decouple the fan-out from the request context so the broadcast follows the
commit rather than the caller.
Adds BroadcastRolesForTest to reach broadcastRoles from the external test
package.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01M6gVN2JM5wrduhkNaFCxdK
* fix(client): username rename stomps the profile card header (OC-0188)
The account profile card's header is a resolveDisplayName() slot, but the
username-rename save path wrote the raw username straight into it. A user
with a display name set would see the header switch from their display
name to their new username after a rename, disagreeing with every other
surface that renders the same identity.
Resolve the header through the same display-name path the initial render
uses, so a rename updates the username field without touching the header.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01M6gVN2JM5wrduhkNaFCxdK
* fix(client): settings overlay never focuses when mounted already-open (OC-0181)
mount() synced initial state — including the show() that calls
focusDialog() — before appending root to the container. .focus() on a
still-detached subtree is a silent no-op, so a caller that mounts while
uiStore.settingsOpen is already true (ConnectPage's lazy first-open path)
got a visible overlay whose focus trap never captured focus: keyboard
users landed outside the dialog with Tab escaping to the page behind it.
Attach root before syncing initial state so focusDialog() runs against a
connected subtree.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01M6gVN2JM5wrduhkNaFCxdK
* chore: satisfy the CI gates for this fix batch
The fix batch's own commits left three CI gates red. Nothing here changes
behaviour; every edit is a lint, type, or formatting correction to code
this batch introduced.
golangci-lint:
- OC-0153 and OC-0173 replaced the last two uses of admin's setupSanitizer,
and OC-0151 the last use of api's sanitizer, leaving both package-level
bluemonday vars unused. Remove them along with the now-unused imports,
and reword the comments that named them so they still explain why the
fixpoint sanitizer is the right one without pointing at deleted symbols.
- Modernize the new handshake-deadline test's loop to range-over-int.
tsc --noEmit:
- jsdom ships no types and @types/jsdom is not a dependency, so declare the
surface the new admin-panel test uses, following src/types/jitsi-rnnoise.d.ts.
- Narrow the last-call lookup instead of indexing under
noUncheckedIndexedAccess, with an explicit failure message.
- membersStore.setState replaces whole state, so the presence-sender mocks
must supply typingUsers.
prettier: reformat the five files this batch touched.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01M6gVN2JM5wrduhkNaFCxdK
* chore(ledger): record the 2026-08-19 hunt and its fixes
Adds the 41 findings confirmed by the 2026-08-19 hunt and marks the 40
fixed on this branch, each with its commit, the test that pins it, and
revertProof "pass".
"pass" means an independent check, not the fixing agent's self-report:
every commit had its source diff reverted against the working tree, its
own test re-run and required to FAIL, then the source restored and the
test required to PASS. Commits whose tests live inline in Rust
#[cfg(test)] blocks were proven the same way at hunk level, splicing the
pre-fix source onto the post-fix test module.
OC-0159 is recorded as a duplicate of OC-0152: the flow-reconnect and
flow-message lenses independently found the same unbounded handshake
write and proposed the same helper over the same call sites.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01M6gVN2JM5wrduhkNaFCxdK
* test(e2e): make the voice-roster join fixture self-consistent
The voice-widget join test emitted a voice_state for user_id 4 claiming
username "newvoiceuser", but id 4 is "member2" in MOCK_MEMBERS_MULTI_ROLE.
A real server never sends a voice_state whose username disagrees with the
member record for that id, and the same file's VOICE_STATE_EVENT already
pairs id 1 with "testuser" correctly — this one event was the outlier.
The contradiction was invisible while the roster rendered the payload's
raw username. OC-0177 makes it resolve identity through membersStore so a
nickname shows the same in voice as everywhere else, at which point the
fixture's own inconsistency surfaced as a failure.
Send id 4's real username and assert on it. The test still covers what it
did before — a genuine join by a user not previously in voice, asserted by
name and by roster count.
Verified against the app unchanged: with the old fixture the spec fails
1/5 (matching CI), with this one it passes 5/5.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01M6gVN2JM5wrduhkNaFCxdK
---------
Co-authored-by: Claude <noreply@anthropic.com>
469 lines
16 KiB
Go
469 lines
16 KiB
Go
package admin_test
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"encoding/json"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/owncord/server/admin"
|
|
"github.com/owncord/server/config"
|
|
"github.com/owncord/server/db"
|
|
)
|
|
|
|
// wizardRunningCfg mimics the config a fresh server boots with: file defaults
|
|
// plus the runtime-generated LiveKit credentials.
|
|
func wizardRunningCfg() *config.Config {
|
|
return &config.Config{
|
|
Server: config.ServerConfig{Port: 8443, Name: "OwnCord Server"},
|
|
TLS: config.TLSConfig{Mode: "self_signed"},
|
|
Upload: config.UploadConfig{MaxSizeMB: 100},
|
|
Voice: config.VoiceConfig{
|
|
LiveKitAPIKey: "key-generated123",
|
|
LiveKitAPISecret: "generated-secret-0123456789abcdef",
|
|
Quality: "medium",
|
|
},
|
|
}
|
|
}
|
|
|
|
// wizardHandler builds the admin API with wizard options and a restart stub
|
|
// that signals restarted (buffered) instead of restarting the process. A
|
|
// wizard run that triggers a restart leaves the process-global
|
|
// restart-serialization guard in restart-pending, so it is reset after every
|
|
// wizard test.
|
|
func wizardHandler(t *testing.T, database *db.DB, cfgPath string, restarted chan string) http.Handler {
|
|
t.Helper()
|
|
t.Cleanup(admin.ResetRestartState)
|
|
return admin.NewAdminAPI(database, "1.0.0", nil, nil, nil, nil, nil, newTestModService(database), newTestRoleService(database),
|
|
admin.SetupOptions{
|
|
ConfigPath: cfgPath,
|
|
RunningCfg: wizardRunningCfg(),
|
|
Restart: func(reason string) { restarted <- reason },
|
|
})
|
|
}
|
|
|
|
func getSetting(t *testing.T, database *db.DB, key string) string {
|
|
t.Helper()
|
|
v, err := database.GetSetting(context.Background(), key)
|
|
if err != nil {
|
|
t.Fatalf("GetSetting(%q): %v", key, err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
func TestSetupWizard_FullFlow(t *testing.T) {
|
|
database := openAdminTestDB(t)
|
|
cfgPath := filepath.Join(t.TempDir(), "config.yaml")
|
|
restarted := make(chan string, 1)
|
|
handler := wizardHandler(t, database, cfgPath, restarted)
|
|
|
|
rr := doRequest(t, handler, "POST", "/setup", "", map[string]any{
|
|
"username": "owner",
|
|
"password": "SecurePass123!",
|
|
"wizard": map[string]any{
|
|
"server_name": "My Cool Server",
|
|
"motd": "Welcome friends!",
|
|
"registration_open": true,
|
|
"port": 9000,
|
|
"tls_mode": "off",
|
|
"upload_max_size_mb": 250,
|
|
"voice_quality": "high",
|
|
"voice_auto_download": true,
|
|
},
|
|
})
|
|
if rr.Code != http.StatusCreated {
|
|
t.Fatalf("POST /setup = %d, want 201; body=%s", rr.Code, rr.Body.String())
|
|
}
|
|
|
|
var resp struct {
|
|
Token string `json:"token"`
|
|
InviteCode string `json:"invite_code"`
|
|
RestartRequired bool `json:"restart_required"`
|
|
RestartURL string `json:"restart_url"`
|
|
Warnings []string `json:"warnings"`
|
|
}
|
|
if err := json.Unmarshal(rr.Body.Bytes(), &resp); err != nil {
|
|
t.Fatalf("unmarshal: %v", err)
|
|
}
|
|
if resp.Token == "" || resp.InviteCode == "" {
|
|
t.Error("token/invite_code missing — account creation should be unchanged")
|
|
}
|
|
if len(resp.Warnings) != 0 {
|
|
t.Errorf("warnings = %v, want none", resp.Warnings)
|
|
}
|
|
if !resp.RestartRequired {
|
|
t.Fatal("restart_required = false, want true (port and tls changed)")
|
|
}
|
|
// httptest requests carry Host "example.com"; tls off → http scheme.
|
|
if resp.RestartURL != "http://example.com:9000/admin" {
|
|
t.Errorf("restart_url = %q, want %q", resp.RestartURL, "http://example.com:9000/admin")
|
|
}
|
|
|
|
select {
|
|
case reason := <-restarted:
|
|
if reason != "setup_wizard" {
|
|
t.Errorf("restart reason = %q, want setup_wizard", reason)
|
|
}
|
|
case <-time.After(5 * time.Second):
|
|
t.Fatal("restart hook was never invoked")
|
|
}
|
|
|
|
// DB settings the app reads live.
|
|
if got := getSetting(t, database, "server_name"); got != "My Cool Server" {
|
|
t.Errorf("server_name = %q", got)
|
|
}
|
|
if got := getSetting(t, database, "motd"); got != "Welcome friends!" {
|
|
t.Errorf("motd = %q", got)
|
|
}
|
|
if got := getSetting(t, database, "registration_open"); got != "1" {
|
|
t.Errorf("registration_open = %q, want 1", got)
|
|
}
|
|
if got := getSetting(t, database, "max_upload_bytes"); got != "262144000" {
|
|
t.Errorf("max_upload_bytes = %q, want 262144000 (250 MB)", got)
|
|
}
|
|
if got := getSetting(t, database, "voice_quality"); got != "high" {
|
|
t.Errorf("voice_quality = %q, want high", got)
|
|
}
|
|
|
|
// config.yaml written with the wizard values + persisted voice creds.
|
|
cfg, err := config.Load(cfgPath)
|
|
if err != nil {
|
|
t.Fatalf("loading wizard-written config: %v", err)
|
|
}
|
|
if cfg.Server.Port != 9000 {
|
|
t.Errorf("config port = %d, want 9000", cfg.Server.Port)
|
|
}
|
|
if cfg.Server.Name != "My Cool Server" {
|
|
t.Errorf("config server name = %q", cfg.Server.Name)
|
|
}
|
|
if cfg.TLS.Mode != "off" {
|
|
t.Errorf("config tls mode = %q, want off", cfg.TLS.Mode)
|
|
}
|
|
if cfg.Upload.MaxSizeMB != 250 {
|
|
t.Errorf("config upload max = %d, want 250", cfg.Upload.MaxSizeMB)
|
|
}
|
|
if cfg.Voice.Quality != "high" {
|
|
t.Errorf("config voice quality = %q, want high", cfg.Voice.Quality)
|
|
}
|
|
if cfg.Voice.LiveKitAPIKey != "key-generated123" {
|
|
t.Errorf("LiveKit key = %q — the running credentials were not persisted", cfg.Voice.LiveKitAPIKey)
|
|
}
|
|
if cfg.Voice.LiveKitAPISecret != "generated-secret-0123456789abcdef" {
|
|
t.Errorf("LiveKit secret = %q — the running credentials were not persisted", cfg.Voice.LiveKitAPISecret)
|
|
}
|
|
if !cfg.Voice.AutoDownloadLiveKit {
|
|
t.Error("config voice.auto_download_livekit = false, want true from wizard toggle")
|
|
}
|
|
}
|
|
|
|
func TestSetupWizard_NoRestartWhenValuesMatchRunning(t *testing.T) {
|
|
database := openAdminTestDB(t)
|
|
cfgPath := filepath.Join(t.TempDir(), "config.yaml")
|
|
restarted := make(chan string, 1)
|
|
handler := wizardHandler(t, database, cfgPath, restarted)
|
|
|
|
// Same port/tls/upload/voice as the running config; only live-read
|
|
// values (name, motd) change.
|
|
rr := doRequest(t, handler, "POST", "/setup", "", map[string]any{
|
|
"username": "owner",
|
|
"password": "SecurePass123!",
|
|
"wizard": map[string]any{
|
|
"server_name": "Renamed Server",
|
|
"motd": "hi",
|
|
"port": 8443,
|
|
"tls_mode": "self_signed",
|
|
"upload_max_size_mb": 100,
|
|
"voice_quality": "medium",
|
|
},
|
|
})
|
|
if rr.Code != http.StatusCreated {
|
|
t.Fatalf("POST /setup = %d, want 201; body=%s", rr.Code, rr.Body.String())
|
|
}
|
|
|
|
var resp struct {
|
|
RestartRequired bool `json:"restart_required"`
|
|
RestartURL string `json:"restart_url"`
|
|
}
|
|
if err := json.Unmarshal(rr.Body.Bytes(), &resp); err != nil {
|
|
t.Fatalf("unmarshal: %v", err)
|
|
}
|
|
if resp.RestartRequired {
|
|
t.Error("restart_required = true, want false (no startup-only value changed)")
|
|
}
|
|
if resp.RestartURL != "" {
|
|
t.Errorf("restart_url = %q, want empty", resp.RestartURL)
|
|
}
|
|
select {
|
|
case <-restarted:
|
|
t.Error("restart hook invoked though nothing needed a restart")
|
|
case <-time.After(100 * time.Millisecond):
|
|
}
|
|
|
|
// Config is still written (server.name changed on disk).
|
|
cfg, err := config.Load(cfgPath)
|
|
if err != nil {
|
|
t.Fatalf("loading wizard-written config: %v", err)
|
|
}
|
|
if cfg.Server.Name != "Renamed Server" {
|
|
t.Errorf("config server name = %q, want Renamed Server", cfg.Server.Name)
|
|
}
|
|
}
|
|
|
|
// TestSetupWizard_IdentityFieldsStoredRawNotEscaped pins OC-0173: the wizard
|
|
// must store server_name/motd the same way handlePatchSettings does later
|
|
// (raw survivors, not HTML-entity-escaped), so a name set at first run and
|
|
// the identical name set afterwards through the admin Settings page produce
|
|
// the same stored value. Before the fix, wizardValidateIdentity ran these
|
|
// fields through the bare bluemonday sanitizer, which HTML-escapes
|
|
// survivors (' -> ', " -> ", & -> &) — see service.SanitizeText's
|
|
// doc comment, which the setup_handler.go username path already follows for
|
|
// exactly this reason.
|
|
func TestSetupWizard_IdentityFieldsStoredRawNotEscaped(t *testing.T) {
|
|
database := openAdminTestDB(t)
|
|
cfgPath := filepath.Join(t.TempDir(), "config.yaml")
|
|
restarted := make(chan string, 1)
|
|
handler := wizardHandler(t, database, cfgPath, restarted)
|
|
|
|
rr := doRequest(t, handler, "POST", "/setup", "", map[string]any{
|
|
"username": "owner",
|
|
"password": "SecurePass123!",
|
|
"wizard": map[string]any{
|
|
"server_name": "Bob's Place",
|
|
"motd": `Say "hi" & relax`,
|
|
},
|
|
})
|
|
if rr.Code != http.StatusCreated {
|
|
t.Fatalf("POST /setup = %d, want 201; body=%s", rr.Code, rr.Body.String())
|
|
}
|
|
|
|
if got, want := getSetting(t, database, "server_name"), "Bob's Place"; got != want {
|
|
t.Errorf("server_name = %q, want %q (stored HTML-escaped instead of raw)", got, want)
|
|
}
|
|
if got, want := getSetting(t, database, "motd"), `Say "hi" & relax`; got != want {
|
|
t.Errorf("motd = %q, want %q (stored HTML-escaped instead of raw)", got, want)
|
|
}
|
|
}
|
|
|
|
func TestSetupWizard_InvalidValuesRejectBeforeAccountCreation(t *testing.T) {
|
|
cases := map[string]map[string]any{
|
|
"port too low": {"port": 0},
|
|
"port too high": {"port": 70000},
|
|
"bad tls mode": {"tls_mode": "quantum"},
|
|
"acme without domain": {"tls_mode": "acme"},
|
|
"bad domain chars": {"tls_mode": "acme", "tls_domain": "not a domain!"},
|
|
"single-label domain": {"tls_mode": "acme", "tls_domain": "localhost"},
|
|
"upload zero": {"upload_max_size_mb": 0},
|
|
"upload too large": {"upload_max_size_mb": 20000},
|
|
"bad voice quality": {"voice_quality": "ultra"},
|
|
"empty server name": {"server_name": " "},
|
|
"tag-only server name": {"server_name": "<b></b>"},
|
|
}
|
|
|
|
for name, wizard := range cases {
|
|
t.Run(name, func(t *testing.T) {
|
|
database := openAdminTestDB(t)
|
|
cfgPath := filepath.Join(t.TempDir(), "config.yaml")
|
|
restarted := make(chan string, 1)
|
|
handler := wizardHandler(t, database, cfgPath, restarted)
|
|
|
|
rr := doRequest(t, handler, "POST", "/setup", "", map[string]any{
|
|
"username": "owner",
|
|
"password": "SecurePass123!",
|
|
"wizard": wizard,
|
|
})
|
|
if rr.Code != http.StatusBadRequest {
|
|
t.Fatalf("status = %d, want 400; body=%s", rr.Code, rr.Body.String())
|
|
}
|
|
count, err := database.UserCount(context.Background())
|
|
if err != nil {
|
|
t.Fatalf("UserCount: %v", err)
|
|
}
|
|
if count != 0 {
|
|
t.Errorf("user count = %d, want 0 — invalid wizard payload must reject before account creation", count)
|
|
}
|
|
if _, err := os.Stat(cfgPath); !os.IsNotExist(err) {
|
|
t.Error("config file written despite rejected payload")
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestSetupWizard_ConfigWriteFailureWarnsButCreatesAccount(t *testing.T) {
|
|
database := openAdminTestDB(t)
|
|
// Point at a directory that does not exist so the atomic write fails.
|
|
cfgPath := filepath.Join(t.TempDir(), "missing-dir", "config.yaml")
|
|
restarted := make(chan string, 1)
|
|
handler := wizardHandler(t, database, cfgPath, restarted)
|
|
|
|
rr := doRequest(t, handler, "POST", "/setup", "", map[string]any{
|
|
"username": "owner",
|
|
"password": "SecurePass123!",
|
|
"wizard": map[string]any{"port": 9000},
|
|
})
|
|
if rr.Code != http.StatusCreated {
|
|
t.Fatalf("POST /setup = %d, want 201 despite config failure; body=%s", rr.Code, rr.Body.String())
|
|
}
|
|
|
|
var resp struct {
|
|
Token string `json:"token"`
|
|
RestartRequired bool `json:"restart_required"`
|
|
Warnings []string `json:"warnings"`
|
|
}
|
|
if err := json.Unmarshal(rr.Body.Bytes(), &resp); err != nil {
|
|
t.Fatalf("unmarshal: %v", err)
|
|
}
|
|
if resp.Token == "" {
|
|
t.Error("token missing — the account must still be created")
|
|
}
|
|
if len(resp.Warnings) == 0 {
|
|
t.Error("warnings empty, want a config-write warning")
|
|
}
|
|
if resp.RestartRequired {
|
|
t.Error("restart_required = true, but the config was never written — restarting would change nothing")
|
|
}
|
|
select {
|
|
case <-restarted:
|
|
t.Error("restart hook invoked after a failed config write")
|
|
case <-time.After(100 * time.Millisecond):
|
|
}
|
|
|
|
count, err := database.UserCount(context.Background())
|
|
if err != nil {
|
|
t.Fatalf("UserCount: %v", err)
|
|
}
|
|
if count != 1 {
|
|
t.Errorf("user count = %d, want 1", count)
|
|
}
|
|
}
|
|
|
|
func TestSetupWizard_LegacyPayloadUnchangedBehaviour(t *testing.T) {
|
|
database := openAdminTestDB(t)
|
|
cfgPath := filepath.Join(t.TempDir(), "config.yaml")
|
|
restarted := make(chan string, 1)
|
|
handler := wizardHandler(t, database, cfgPath, restarted)
|
|
|
|
rr := doRequest(t, handler, "POST", "/setup", "", map[string]string{
|
|
"username": "owner",
|
|
"password": "SecurePass123!",
|
|
})
|
|
if rr.Code != http.StatusCreated {
|
|
t.Fatalf("legacy POST /setup = %d, want 201; body=%s", rr.Code, rr.Body.String())
|
|
}
|
|
|
|
var resp struct {
|
|
RestartRequired bool `json:"restart_required"`
|
|
Warnings []string `json:"warnings"`
|
|
}
|
|
if err := json.Unmarshal(rr.Body.Bytes(), &resp); err != nil {
|
|
t.Fatalf("unmarshal: %v", err)
|
|
}
|
|
if resp.RestartRequired || len(resp.Warnings) != 0 {
|
|
t.Error("legacy payload must not trigger restarts or warnings")
|
|
}
|
|
if _, err := os.Stat(cfgPath); !os.IsNotExist(err) {
|
|
t.Error("legacy payload must not write config.yaml")
|
|
}
|
|
select {
|
|
case <-restarted:
|
|
t.Error("legacy payload must not restart the server")
|
|
case <-time.After(100 * time.Millisecond):
|
|
}
|
|
}
|
|
|
|
func TestSetupStatus_DefaultsOnlyPreSetupAndSecretFree(t *testing.T) {
|
|
database := openAdminTestDB(t)
|
|
cfgPath := filepath.Join(t.TempDir(), "config.yaml")
|
|
restarted := make(chan string, 1)
|
|
handler := wizardHandler(t, database, cfgPath, restarted)
|
|
|
|
rr := doRequest(t, handler, "GET", "/setup/status", "", nil)
|
|
if rr.Code != http.StatusOK {
|
|
t.Fatalf("GET /setup/status = %d, want 200", rr.Code)
|
|
}
|
|
var resp struct {
|
|
NeedsSetup bool `json:"needs_setup"`
|
|
Defaults *struct {
|
|
ServerName string `json:"server_name"`
|
|
Motd string `json:"motd"`
|
|
Port int `json:"port"`
|
|
TLSMode string `json:"tls_mode"`
|
|
UploadMaxSizeMB int `json:"upload_max_size_mb"`
|
|
VoiceQuality string `json:"voice_quality"`
|
|
} `json:"defaults"`
|
|
}
|
|
if err := json.Unmarshal(rr.Body.Bytes(), &resp); err != nil {
|
|
t.Fatalf("unmarshal: %v", err)
|
|
}
|
|
if !resp.NeedsSetup || resp.Defaults == nil {
|
|
t.Fatalf("pre-setup status should carry defaults; body=%s", rr.Body.String())
|
|
}
|
|
// server_name/motd come from the seeded settings table, the rest from the
|
|
// running config.
|
|
if resp.Defaults.ServerName != "Test Server" {
|
|
t.Errorf("defaults.server_name = %q, want Test Server (DB value)", resp.Defaults.ServerName)
|
|
}
|
|
if resp.Defaults.Motd != "Hello" {
|
|
t.Errorf("defaults.motd = %q, want Hello (DB value)", resp.Defaults.Motd)
|
|
}
|
|
if resp.Defaults.Port != 8443 || resp.Defaults.TLSMode != "self_signed" ||
|
|
resp.Defaults.UploadMaxSizeMB != 100 || resp.Defaults.VoiceQuality != "medium" {
|
|
t.Errorf("config-derived defaults wrong: %+v", resp.Defaults)
|
|
}
|
|
// Never leak credentials through the unauthenticated status endpoint.
|
|
lower := strings.ToLower(rr.Body.String())
|
|
for _, needle := range []string{"livekit", "secret", "api_key", "token", "cidr"} {
|
|
if strings.Contains(lower, needle) {
|
|
t.Errorf("status response leaks %q: %s", needle, rr.Body.String())
|
|
}
|
|
}
|
|
|
|
// After setup completes, defaults disappear along with needs_setup.
|
|
rr2 := doRequest(t, handler, "POST", "/setup", "", map[string]string{
|
|
"username": "owner", "password": "SecurePass123!",
|
|
})
|
|
if rr2.Code != http.StatusCreated {
|
|
t.Fatalf("setup = %d, want 201", rr2.Code)
|
|
}
|
|
rr3 := doRequest(t, handler, "GET", "/setup/status", "", nil)
|
|
if !strings.Contains(rr3.Body.String(), `"needs_setup":false`) {
|
|
t.Errorf("post-setup status = %s, want needs_setup false", rr3.Body.String())
|
|
}
|
|
if strings.Contains(rr3.Body.String(), "defaults") {
|
|
t.Errorf("post-setup status still exposes defaults: %s", rr3.Body.String())
|
|
}
|
|
}
|
|
|
|
func TestSetupWizard_ForeignOriginBlocked(t *testing.T) {
|
|
database := openAdminTestDB(t)
|
|
cfgPath := filepath.Join(t.TempDir(), "config.yaml")
|
|
restarted := make(chan string, 1)
|
|
handler := wizardHandler(t, database, cfgPath, restarted)
|
|
|
|
body := map[string]any{
|
|
"username": "owner",
|
|
"password": "SecurePass123!",
|
|
"wizard": map[string]any{"port": 9000},
|
|
}
|
|
raw, err := json.Marshal(body)
|
|
if err != nil {
|
|
t.Fatalf("marshal: %v", err)
|
|
}
|
|
req := httptest.NewRequest("POST", "/setup", bytes.NewReader(raw))
|
|
req.Header.Set("Content-Type", "application/json")
|
|
req.Header.Set("Origin", "https://evil.example")
|
|
rr := httptest.NewRecorder()
|
|
handler.ServeHTTP(rr, req)
|
|
if rr.Code != http.StatusForbidden {
|
|
t.Fatalf("wizard POST from foreign origin = %d, want 403", rr.Code)
|
|
}
|
|
if _, err := os.Stat(cfgPath); !os.IsNotExist(err) {
|
|
t.Error("config file written from a cross-origin request")
|
|
}
|
|
}
|