import fs from 'fs'; import path from 'path'; import { MongoClient } from 'mongodb'; import type { Db } from 'mongodb'; const DEFAULT_MONGO_URI = 'mongodb://127.0.0.1:27017/LibreChat-e2e'; /** * e2e/setup/start-server.js writes the active Mongo URI (memory-Mongo port included) * here on boot. It honors `E2E_RUNTIME_ENV_PATH`, so resolve the same override the * server used before falling back to the default location. */ function getRuntimeEnvPath(): string { return ( process.env.E2E_RUNTIME_ENV_PATH ?? path.resolve(__dirname, '../.test-results/runtime-env.json') ); } function getMongoUri(): string { try { const env = JSON.parse(fs.readFileSync(getRuntimeEnvPath(), 'utf8')) as { MONGO_URI?: string }; if (env.MONGO_URI) { return env.MONGO_URI; } } catch { /* fall through to env/default */ } return process.env.MONGO_URI ?? DEFAULT_MONGO_URI; } async function resolveUserId(db: Db, userEmail: string): Promise { const user = await db.collection('users').findOne({ email: userEmail }); if (!user) { throw new Error(`E2E seed: user "${userEmail}" not found`); } return user._id.toString(); } /** Connect to the e2e MongoDB, run `fn`, and always close the client. */ export async function withMongo(fn: (db: Db) => Promise): Promise { const client = new MongoClient(getMongoUri()); await client.connect(); try { return await fn(client.db()); } finally { await client.close(); } } export interface SeedConvo { conversationId: string; title: string; /** Drives the sidebar date group ("Today", "Previous 7 days", ...). */ updatedAt: Date; } /** * Inserts conversation documents directly (bypassing mongoose timestamps) so their * `updatedAt` can be backdated into specific sidebar date groups. */ export async function seedConversations(userEmail: string, convos: SeedConvo[]): Promise { await withMongo(async (db) => { const userId = await resolveUserId(db, userEmail); const docs = convos.map((convo) => ({ conversationId: convo.conversationId, title: convo.title, user: userId, endpoint: 'openAI', isArchived: false, createdAt: convo.updatedAt, updatedAt: convo.updatedAt, __v: 0, })); await db.collection('conversations').insertMany(docs); }); } export async function deleteConversations(conversationIds: string[]): Promise { await withMongo(async (db) => { await db.collection('conversations').deleteMany({ conversationId: { $in: conversationIds } }); }); } /** Clears every conversation for the user so the seeded date groups are not pushed * below the virtualized viewport by rows left behind by other specs. */ export async function clearUserConversations(userEmail: string): Promise { await withMongo(async (db) => { const userId = await resolveUserId(db, userEmail); await db.collection('conversations').deleteMany({ user: userId }); }); }