refactor(tmux): export sweepTmuxSessionsWith and add runtime tests

This commit is contained in:
YeonGyu-Kim
2026-04-28 10:44:56 +09:00
parent 96161cc0e6
commit c9e544a667
4 changed files with 189 additions and 36 deletions
@@ -0,0 +1,72 @@
import { beforeEach, describe, expect, it, mock } from "bun:test"
import type { TmuxCommandResult } from "../runner"
const staleSessionSweepSpecifier = import.meta.resolve("./stale-session-sweep")
const environmentSpecifier = import.meta.resolve("./environment")
const loggerSpecifier = import.meta.resolve("../../logger")
const runnerSpecifier = import.meta.resolve("../runner")
const sessionKillSpecifier = import.meta.resolve("./session-kill")
const tmuxPathResolverSpecifier = import.meta.resolve("../../../tools/interactive-bash/tmux-path-resolver")
const runTmuxCommandMock = mock(async (): Promise<TmuxCommandResult> => ({
success: true,
output: "",
stdout: "",
stderr: "",
exitCode: 0,
}))
const killTmuxSessionIfExistsMock = mock(async (): Promise<boolean> => true)
const isInsideTmuxMock = mock((): boolean => true)
const getTmuxPathMock = mock(async (): Promise<string | undefined> => "sh")
const logMock = mock(() => undefined)
async function loadSweepStaleOmoAgentSessions(): Promise<typeof import("./stale-session-sweep").sweepStaleOmoAgentSessions> {
const module = await import(`${staleSessionSweepSpecifier}?test=${crypto.randomUUID()}`)
return module.sweepStaleOmoAgentSessions
}
function registerModuleMocks(): void {
mock.module(environmentSpecifier, () => ({ isInsideTmux: isInsideTmuxMock }))
mock.module(loggerSpecifier, () => ({ log: logMock }))
mock.module(runnerSpecifier, () => ({ runTmuxCommand: runTmuxCommandMock }))
mock.module(sessionKillSpecifier, () => ({ killTmuxSessionIfExists: killTmuxSessionIfExistsMock }))
mock.module(tmuxPathResolverSpecifier, () => ({ getTmuxPath: getTmuxPathMock }))
}
describe("sweepStaleOmoAgentSessions runtime runner integration", () => {
beforeEach(() => {
registerModuleMocks()
runTmuxCommandMock.mockClear()
killTmuxSessionIfExistsMock.mockClear()
isInsideTmuxMock.mockClear()
getTmuxPathMock.mockClear()
logMock.mockClear()
runTmuxCommandMock.mockResolvedValue({
success: true,
output: "omo-agents-99991\nomo-agents-99992",
stdout: "omo-agents-99991\nomo-agents-99992",
stderr: "",
exitCode: 0,
})
killTmuxSessionIfExistsMock.mockResolvedValue(true)
isInsideTmuxMock.mockReturnValue(true)
getTmuxPathMock.mockResolvedValue("sh")
})
it("#given stale sessions listed by tmux #when sweepStaleOmoAgentSessions called #then delegates list-sessions to shared runner", async () => {
// given
const sweepStaleOmoAgentSessions = await loadSweepStaleOmoAgentSessions()
// when
const result = await sweepStaleOmoAgentSessions()
// then
expect(result).toBe(2)
expect(runTmuxCommandMock.mock.calls).toEqual([
["sh", ["list-sessions", "-F", "#{session_name}"]],
])
expect(killTmuxSessionIfExistsMock).toHaveBeenCalledTimes(2)
})
})
@@ -1,5 +1,5 @@
import { beforeEach, describe, expect, it, mock } from "bun:test"
import { sweepStaleOmoAgentSessionsWith, type SweepDeps } from "./stale-session-sweep"
import { sweepStaleOmoAgentSessionsWith, sweepTmuxSessionsWith, type SweepDeps } from "./stale-session-sweep"
type SweepFixture = {
deps: SweepDeps
@@ -152,3 +152,25 @@ describe("sweepStaleOmoAgentSessionsWith", () => {
expect(fixture.killed).toEqual(["omo-agents-99999"])
})
})
describe("sweepTmuxSessionsWith", () => {
let fixture: SweepFixture
beforeEach(() => {
fixture = createFixture()
})
it("#given custom predicate for team sessions #when shared sweep called #then only matching sessions are killed", async () => {
// given
fixture.setCandidates(["omo-team-A", "omo-team-B", "main", "omo-agents-99999"])
// when
const result = await sweepTmuxSessionsWith(fixture.deps, {
predicate: (sessionName) => sessionName.startsWith("omo-team-"),
})
// then
expect(result).toEqual(["omo-team-A", "omo-team-B"])
expect(fixture.killed).toEqual(["omo-team-A", "omo-team-B"])
})
})
@@ -1,5 +1,13 @@
const STALE_SESSION_PATTERN = /^omo-agents-(\d+)$/
function getErrorMessage(error: unknown): string {
if (error instanceof Error) {
return error.message
}
return String(error)
}
function isProcessAlive(pid: number): boolean {
try {
process.kill(pid, 0)
@@ -10,36 +18,48 @@ function isProcessAlive(pid: number): boolean {
}
}
async function listOmoAgentSessionsViaTmux(tmux: string): Promise<string[]> {
const { spawn } = await import("./spawn-process")
const proc = spawn([tmux, "list-sessions", "-F", "#{session_name}"], {
stdout: "pipe",
stderr: "pipe",
})
const [stdout, , exitCode] = await Promise.all([
new Response(proc.stdout).text(),
new Response(proc.stderr).text(),
proc.exited,
])
async function listTmuxSessionsViaTmux(tmux: string): Promise<string[]> {
const { runTmuxCommand } = await import("../runner")
const result = await runTmuxCommand(tmux, ["list-sessions", "-F", "#{session_name}"])
if (exitCode !== 0) {
if (result.exitCode !== 0) {
return []
}
return stdout
return result.output
.split("\n")
.map((line) => line.trim())
.filter((name) => STALE_SESSION_PATTERN.test(name))
.filter((name) => name.length > 0)
}
export type SweepDeps = {
export type SweepTmuxSessionsDeps = {
isInsideTmux: () => boolean
getTmuxPath: () => Promise<string | null | undefined>
listCandidateSessions: (tmux: string) => Promise<string[]>
killSession: (sessionName: string) => Promise<boolean>
log: (message: string, payload?: unknown) => void
}
export type SweepDeps = SweepTmuxSessionsDeps & {
processAlive: (pid: number) => boolean
currentPid: number
log: (message: string, payload?: unknown) => void
}
export type SweepTmuxSessionsOptions = {
prefix?: string
predicate?: (sessionName: string) => boolean
}
function matchesSweepOptions(sessionName: string, options: SweepTmuxSessionsOptions): boolean {
if (options.predicate) {
return options.predicate(sessionName)
}
if (options.prefix) {
return sessionName.startsWith(options.prefix)
}
return true
}
async function buildRuntimeDeps(): Promise<SweepDeps> {
@@ -53,7 +73,7 @@ async function buildRuntimeDeps(): Promise<SweepDeps> {
return {
isInsideTmux,
getTmuxPath,
listCandidateSessions: listOmoAgentSessionsViaTmux,
listCandidateSessions: listTmuxSessionsViaTmux,
killSession: killTmuxSessionIfExists,
processAlive: isProcessAlive,
currentPid: process.pid,
@@ -61,36 +81,75 @@ async function buildRuntimeDeps(): Promise<SweepDeps> {
}
}
export async function sweepStaleOmoAgentSessionsWith(deps: SweepDeps): Promise<number> {
export async function sweepTmuxSessionsWith(
deps: SweepTmuxSessionsDeps,
options: SweepTmuxSessionsOptions,
): Promise<string[]> {
if (!deps.isInsideTmux()) {
return 0
return []
}
const tmux = await deps.getTmuxPath()
if (!tmux) {
return 0
return []
}
const candidateSessions = await deps.listCandidateSessions(tmux)
let killedCount = 0
let candidateSessions: string[]
try {
candidateSessions = await deps.listCandidateSessions(tmux)
} catch (error) {
deps.log("[sweepTmuxSessionsWith] failed to list candidate sessions", {
error: getErrorMessage(error),
})
return []
}
const killedSessionNames: string[] = []
for (const sessionName of candidateSessions) {
const pidMatch = sessionName.match(STALE_SESSION_PATTERN)
if (!pidMatch) continue
if (!matchesSweepOptions(sessionName, options)) {
continue
}
const pid = Number.parseInt(pidMatch[1], 10)
if (!Number.isFinite(pid)) continue
if (pid === deps.currentPid) continue
if (deps.processAlive(pid)) continue
deps.log("[sweepStaleOmoAgentSessions] killing stale session", { sessionName, deadPid: pid })
const killed = await deps.killSession(sessionName)
if (killed) {
killedCount += 1
try {
const killed = await deps.killSession(sessionName)
if (killed) {
killedSessionNames.push(sessionName)
}
} catch (error) {
deps.log("[sweepTmuxSessionsWith] failed to kill stale session", {
error: getErrorMessage(error),
sessionName,
})
}
}
return killedCount
return killedSessionNames
}
export async function sweepStaleOmoAgentSessionsWith(deps: SweepDeps): Promise<number> {
const killedSessionNames = await sweepTmuxSessionsWith(deps, {
predicate: (sessionName) => {
const pidMatch = sessionName.match(STALE_SESSION_PATTERN)
if (!pidMatch) {
return false
}
const pid = Number.parseInt(pidMatch[1], 10)
if (!Number.isFinite(pid)) {
return false
}
if (pid === deps.currentPid) {
return false
}
return !deps.processAlive(pid)
},
})
return killedSessionNames.length
}
export async function sweepStaleOmoAgentSessions(): Promise<number> {