import assert from 'node:assert/strict'; import { mkdtemp, rm } from 'node:fs/promises'; import { tmpdir } from 'node:os'; import path from 'node:path'; import test from 'node:test'; import { closeConnection } from '@/modules/database/connection.js'; import { initializeDatabase } from '@/modules/database/init-db.js'; import { sessionsDb } from '@/modules/database/repositories/sessions.db.js'; async function withIsolatedDatabase(runTest: () => void | Promise): Promise { const previousDatabasePath = process.env.DATABASE_PATH; const tempDirectory = await mkdtemp(path.join(tmpdir(), 'sessions-db-')); const databasePath = path.join(tempDirectory, 'auth.db'); closeConnection(); process.env.DATABASE_PATH = databasePath; await initializeDatabase(); try { await runTest(); } finally { closeConnection(); if (previousDatabasePath === undefined) { delete process.env.DATABASE_PATH; } else { process.env.DATABASE_PATH = previousDatabasePath; } await rm(tempDirectory, { recursive: true, force: true }); } } test('session archive queries hide archived rows from active project views', async () => { await withIsolatedDatabase(() => { sessionsDb.createSession('session-active', 'claude', '/workspace/demo-project', 'Active Session'); sessionsDb.createSession('session-archived', 'claude', '/workspace/demo-project', 'Archived Session'); sessionsDb.updateSessionIsArchived('session-archived', true); const activeSessions = sessionsDb.getAllSessions(); const archivedSessions = sessionsDb.getArchivedSessions(); const activeProjectSessions = sessionsDb.getSessionsByProjectPath('/workspace/demo-project'); const allProjectSessions = sessionsDb.getSessionsByProjectPathIncludingArchived('/workspace/demo-project'); assert.deepEqual(activeSessions.map((session) => session.session_id), ['session-active']); assert.deepEqual(archivedSessions.map((session) => session.session_id), ['session-archived']); assert.deepEqual(activeProjectSessions.map((session) => session.session_id), ['session-active']); assert.deepEqual( allProjectSessions.map((session) => session.session_id).sort(), ['session-active', 'session-archived'], ); assert.equal(sessionsDb.countSessionsByProjectPath('/workspace/demo-project'), 1); }); }); test('createSession reactivates archived rows when the session becomes active again', async () => { await withIsolatedDatabase(() => { sessionsDb.createSession('session-reused', 'claude', '/workspace/demo-project', 'First Name'); sessionsDb.updateSessionIsArchived('session-reused', true); sessionsDb.createSession('session-reused', 'claude', '/workspace/demo-project', 'Updated Name'); const activeSessions = sessionsDb.getAllSessions(); const archivedSessions = sessionsDb.getArchivedSessions(); const restoredSession = sessionsDb.getSessionById('session-reused'); assert.equal(activeSessions.length, 1); assert.equal(activeSessions[0]?.session_id, 'session-reused'); assert.equal(activeSessions[0]?.custom_name, 'Updated Name'); assert.equal(archivedSessions.length, 0); assert.equal(restoredSession?.isArchived, 0); }); });