mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-09-22 06:00:56 +02:00

* WIP: app.locals refactoring
WIP: appConfig
fix: update memory configuration retrieval to use getAppConfig based on user role
fix: update comment for AppConfig interface to clarify purpose
🏷️ refactor: Update tests to use getAppConfig for endpoint configurations
ci: Update AppService tests to initialize app config instead of app.locals
ci: Integrate getAppConfig into remaining tests
refactor: Update multer storage destination to use promise-based getAppConfig and improve error handling in tests
refactor: Rename initializeAppConfig to setAppConfig and update related tests
ci: Mock getAppConfig in various tests to provide default configurations
refactor: Update convertMCPToolsToPlugins to use mcpManager for server configuration and adjust related tests
chore: rename `Config/getAppConfig` -> `Config/app`
fix: streamline OpenAI image tools configuration by removing direct appConfig dependency and using function parameters
chore: correct parameter documentation for imageOutputType in ToolService.js
refactor: remove `getCustomConfig` dependency in config route
refactor: update domain validation to use appConfig for allowed domains
refactor: use appConfig registration property
chore: remove app parameter from AppService invocation
refactor: update AppConfig interface to correct registration and turnstile configurations
refactor: remove getCustomConfig dependency and use getAppConfig in PluginController, multer, and MCP services
refactor: replace getCustomConfig with getAppConfig in STTService, TTSService, and related files
refactor: replace getCustomConfig with getAppConfig in Conversation and Message models, update tempChatRetention functions to use AppConfig type
refactor: update getAppConfig calls in Conversation and Message models to include user role for temporary chat expiration
ci: update related tests
refactor: update getAppConfig call in getCustomConfigSpeech to include user role
fix: update appConfig usage to access allowedDomains from actions instead of registration
refactor: enhance AppConfig to include fileStrategies and update related file strategy logic
refactor: update imports to use normalizeEndpointName from @librechat/api and remove redundant definitions
chore: remove deprecated unused RunManager
refactor: get balance config primarily from appConfig
refactor: remove customConfig dependency for appConfig and streamline loadConfigModels logic
refactor: remove getCustomConfig usage and use app config in file citations
refactor: consolidate endpoint loading logic into loadEndpoints function
refactor: update appConfig access to use endpoints structure across various services
refactor: implement custom endpoints configuration and streamline endpoint loading logic
refactor: update getAppConfig call to include user role parameter
refactor: streamline endpoint configuration and enhance appConfig usage across services
refactor: replace getMCPAuthMap with getUserMCPAuthMap and remove unused getCustomConfig file
refactor: add type annotation for loadedEndpoints in loadEndpoints function
refactor: move /services/Files/images/parse to TS API
chore: add missing FILE_CITATIONS permission to IRole interface
refactor: restructure toolkits to TS API
refactor: separate manifest logic into its own module
refactor: consolidate tool loading logic into a new tools module for startup logic
refactor: move interface config logic to TS API
refactor: migrate checkEmailConfig to TypeScript and update imports
refactor: add FunctionTool interface and availableTools to AppConfig
refactor: decouple caching and DB operations from AppService, make part of consolidated `getAppConfig`
WIP: fix tests
* fix: rebase conflicts
* refactor: remove app.locals references
* refactor: replace getBalanceConfig with getAppConfig in various strategies and middleware
* refactor: replace appConfig?.balance with getBalanceConfig in various controllers and clients
* test: add balance configuration to titleConvo method in AgentClient tests
* chore: remove unused `openai-chat-tokens` package
* chore: remove unused imports in initializeMCPs.js
* refactor: update balance configuration to use getAppConfig instead of getBalanceConfig
* refactor: integrate configMiddleware for centralized configuration handling
* refactor: optimize email domain validation by removing unnecessary async calls
* refactor: simplify multer storage configuration by removing async calls
* refactor: reorder imports for better readability in user.js
* refactor: replace getAppConfig calls with req.config for improved performance
* chore: replace getAppConfig calls with req.config in tests for centralized configuration handling
* chore: remove unused override config
* refactor: add configMiddleware to endpoint route and replace getAppConfig with req.config
* chore: remove customConfig parameter from TTSService constructor
* refactor: pass appConfig from request to processFileCitations for improved configuration handling
* refactor: remove configMiddleware from endpoint route and retrieve appConfig directly in getEndpointsConfig if not in `req.config`
* test: add mockAppConfig to processFileCitations tests for improved configuration handling
* fix: pass req.config to hasCustomUserVars and call without await after synchronous refactor
* fix: type safety in useExportConversation
* refactor: retrieve appConfig using getAppConfig in PluginController and remove configMiddleware from plugins route, to avoid always retrieving when plugins are cached
* chore: change `MongoUser` typedef to `IUser`
* fix: Add `user` and `config` fields to ServerRequest and update JSDoc type annotations from Express.Request to ServerRequest
* fix: remove unused setAppConfig mock from Server configuration tests
570 lines
20 KiB
JavaScript
570 lines
20 KiB
JavaScript
const mongoose = require('mongoose');
|
|
const { v4: uuidv4 } = require('uuid');
|
|
const { EModelEndpoint } = require('librechat-data-provider');
|
|
const { MongoMemoryServer } = require('mongodb-memory-server');
|
|
const {
|
|
deleteNullOrEmptyConversations,
|
|
searchConversation,
|
|
getConvosByCursor,
|
|
getConvosQueried,
|
|
getConvoFiles,
|
|
getConvoTitle,
|
|
deleteConvos,
|
|
saveConvo,
|
|
getConvo,
|
|
} = require('./Conversation');
|
|
jest.mock('~/server/services/Config/app');
|
|
jest.mock('./Message');
|
|
const { getMessages, deleteMessages } = require('./Message');
|
|
|
|
const { Conversation } = require('~/db/models');
|
|
|
|
describe('Conversation Operations', () => {
|
|
let mongoServer;
|
|
let mockReq;
|
|
let mockConversationData;
|
|
|
|
beforeAll(async () => {
|
|
mongoServer = await MongoMemoryServer.create();
|
|
const mongoUri = mongoServer.getUri();
|
|
await mongoose.connect(mongoUri);
|
|
});
|
|
|
|
afterAll(async () => {
|
|
await mongoose.disconnect();
|
|
await mongoServer.stop();
|
|
});
|
|
|
|
beforeEach(async () => {
|
|
// Clear database
|
|
await Conversation.deleteMany({});
|
|
|
|
// Reset mocks
|
|
jest.clearAllMocks();
|
|
|
|
// Default mock implementations
|
|
getMessages.mockResolvedValue([]);
|
|
deleteMessages.mockResolvedValue({ deletedCount: 0 });
|
|
|
|
mockReq = {
|
|
user: { id: 'user123' },
|
|
body: {},
|
|
config: {
|
|
interfaceConfig: {
|
|
temporaryChatRetention: 24, // Default 24 hours
|
|
},
|
|
},
|
|
};
|
|
|
|
mockConversationData = {
|
|
conversationId: uuidv4(),
|
|
title: 'Test Conversation',
|
|
endpoint: EModelEndpoint.openAI,
|
|
};
|
|
});
|
|
|
|
describe('saveConvo', () => {
|
|
it('should save a conversation for an authenticated user', async () => {
|
|
const result = await saveConvo(mockReq, mockConversationData);
|
|
|
|
expect(result.conversationId).toBe(mockConversationData.conversationId);
|
|
expect(result.user).toBe('user123');
|
|
expect(result.title).toBe('Test Conversation');
|
|
expect(result.endpoint).toBe(EModelEndpoint.openAI);
|
|
|
|
// Verify the conversation was actually saved to the database
|
|
const savedConvo = await Conversation.findOne({
|
|
conversationId: mockConversationData.conversationId,
|
|
user: 'user123',
|
|
});
|
|
expect(savedConvo).toBeTruthy();
|
|
expect(savedConvo.title).toBe('Test Conversation');
|
|
});
|
|
|
|
it('should query messages when saving a conversation', async () => {
|
|
// Mock messages as ObjectIds
|
|
const mongoose = require('mongoose');
|
|
const mockMessages = [new mongoose.Types.ObjectId(), new mongoose.Types.ObjectId()];
|
|
getMessages.mockResolvedValue(mockMessages);
|
|
|
|
await saveConvo(mockReq, mockConversationData);
|
|
|
|
// Verify that getMessages was called with correct parameters
|
|
expect(getMessages).toHaveBeenCalledWith(
|
|
{ conversationId: mockConversationData.conversationId },
|
|
'_id',
|
|
);
|
|
});
|
|
|
|
it('should handle newConversationId when provided', async () => {
|
|
const newConversationId = uuidv4();
|
|
const result = await saveConvo(mockReq, {
|
|
...mockConversationData,
|
|
newConversationId,
|
|
});
|
|
|
|
expect(result.conversationId).toBe(newConversationId);
|
|
});
|
|
|
|
it('should handle unsetFields metadata', async () => {
|
|
const metadata = {
|
|
unsetFields: { someField: 1 },
|
|
};
|
|
|
|
await saveConvo(mockReq, mockConversationData, metadata);
|
|
|
|
const savedConvo = await Conversation.findOne({
|
|
conversationId: mockConversationData.conversationId,
|
|
});
|
|
expect(savedConvo.someField).toBeUndefined();
|
|
});
|
|
});
|
|
|
|
describe('isTemporary conversation handling', () => {
|
|
it('should save a conversation with expiredAt when isTemporary is true', async () => {
|
|
// Mock app config with 24 hour retention
|
|
mockReq.config.interfaceConfig.temporaryChatRetention = 24;
|
|
|
|
mockReq.body = { isTemporary: true };
|
|
|
|
const beforeSave = new Date();
|
|
const result = await saveConvo(mockReq, mockConversationData);
|
|
const afterSave = new Date();
|
|
|
|
expect(result.conversationId).toBe(mockConversationData.conversationId);
|
|
expect(result.expiredAt).toBeDefined();
|
|
expect(result.expiredAt).toBeInstanceOf(Date);
|
|
|
|
// Verify expiredAt is approximately 24 hours in the future
|
|
const expectedExpirationTime = new Date(beforeSave.getTime() + 24 * 60 * 60 * 1000);
|
|
const actualExpirationTime = new Date(result.expiredAt);
|
|
|
|
expect(actualExpirationTime.getTime()).toBeGreaterThanOrEqual(
|
|
expectedExpirationTime.getTime() - 1000,
|
|
);
|
|
expect(actualExpirationTime.getTime()).toBeLessThanOrEqual(
|
|
new Date(afterSave.getTime() + 24 * 60 * 60 * 1000 + 1000).getTime(),
|
|
);
|
|
});
|
|
|
|
it('should save a conversation without expiredAt when isTemporary is false', async () => {
|
|
mockReq.body = { isTemporary: false };
|
|
|
|
const result = await saveConvo(mockReq, mockConversationData);
|
|
|
|
expect(result.conversationId).toBe(mockConversationData.conversationId);
|
|
expect(result.expiredAt).toBeNull();
|
|
});
|
|
|
|
it('should save a conversation without expiredAt when isTemporary is not provided', async () => {
|
|
// No isTemporary in body
|
|
mockReq.body = {};
|
|
|
|
const result = await saveConvo(mockReq, mockConversationData);
|
|
|
|
expect(result.conversationId).toBe(mockConversationData.conversationId);
|
|
expect(result.expiredAt).toBeNull();
|
|
});
|
|
|
|
it('should use custom retention period from config', async () => {
|
|
// Mock app config with 48 hour retention
|
|
mockReq.config.interfaceConfig.temporaryChatRetention = 48;
|
|
|
|
mockReq.body = { isTemporary: true };
|
|
|
|
const beforeSave = new Date();
|
|
const result = await saveConvo(mockReq, mockConversationData);
|
|
|
|
expect(result.expiredAt).toBeDefined();
|
|
|
|
// Verify expiredAt is approximately 48 hours in the future
|
|
const expectedExpirationTime = new Date(beforeSave.getTime() + 48 * 60 * 60 * 1000);
|
|
const actualExpirationTime = new Date(result.expiredAt);
|
|
|
|
expect(actualExpirationTime.getTime()).toBeGreaterThanOrEqual(
|
|
expectedExpirationTime.getTime() - 1000,
|
|
);
|
|
expect(actualExpirationTime.getTime()).toBeLessThanOrEqual(
|
|
expectedExpirationTime.getTime() + 1000,
|
|
);
|
|
});
|
|
|
|
it('should handle minimum retention period (1 hour)', async () => {
|
|
// Mock app config with less than minimum retention
|
|
mockReq.config.interfaceConfig.temporaryChatRetention = 0.5; // Half hour - should be clamped to 1 hour
|
|
|
|
mockReq.body = { isTemporary: true };
|
|
|
|
const beforeSave = new Date();
|
|
const result = await saveConvo(mockReq, mockConversationData);
|
|
|
|
expect(result.expiredAt).toBeDefined();
|
|
|
|
// Verify expiredAt is approximately 1 hour in the future (minimum)
|
|
const expectedExpirationTime = new Date(beforeSave.getTime() + 1 * 60 * 60 * 1000);
|
|
const actualExpirationTime = new Date(result.expiredAt);
|
|
|
|
expect(actualExpirationTime.getTime()).toBeGreaterThanOrEqual(
|
|
expectedExpirationTime.getTime() - 1000,
|
|
);
|
|
expect(actualExpirationTime.getTime()).toBeLessThanOrEqual(
|
|
expectedExpirationTime.getTime() + 1000,
|
|
);
|
|
});
|
|
|
|
it('should handle maximum retention period (8760 hours)', async () => {
|
|
// Mock app config with more than maximum retention
|
|
mockReq.config.interfaceConfig.temporaryChatRetention = 10000; // Should be clamped to 8760 hours
|
|
|
|
mockReq.body = { isTemporary: true };
|
|
|
|
const beforeSave = new Date();
|
|
const result = await saveConvo(mockReq, mockConversationData);
|
|
|
|
expect(result.expiredAt).toBeDefined();
|
|
|
|
// Verify expiredAt is approximately 8760 hours (1 year) in the future
|
|
const expectedExpirationTime = new Date(beforeSave.getTime() + 8760 * 60 * 60 * 1000);
|
|
const actualExpirationTime = new Date(result.expiredAt);
|
|
|
|
expect(actualExpirationTime.getTime()).toBeGreaterThanOrEqual(
|
|
expectedExpirationTime.getTime() - 1000,
|
|
);
|
|
expect(actualExpirationTime.getTime()).toBeLessThanOrEqual(
|
|
expectedExpirationTime.getTime() + 1000,
|
|
);
|
|
});
|
|
|
|
it('should handle missing config gracefully', async () => {
|
|
// Simulate missing config - should use default retention period
|
|
delete mockReq.config;
|
|
|
|
mockReq.body = { isTemporary: true };
|
|
|
|
const beforeSave = new Date();
|
|
const result = await saveConvo(mockReq, mockConversationData);
|
|
const afterSave = new Date();
|
|
|
|
// Should still save the conversation with default retention period (30 days)
|
|
expect(result.conversationId).toBe(mockConversationData.conversationId);
|
|
expect(result.expiredAt).toBeDefined();
|
|
expect(result.expiredAt).toBeInstanceOf(Date);
|
|
|
|
// Verify expiredAt is approximately 30 days in the future (720 hours)
|
|
const expectedExpirationTime = new Date(beforeSave.getTime() + 720 * 60 * 60 * 1000);
|
|
const actualExpirationTime = new Date(result.expiredAt);
|
|
|
|
expect(actualExpirationTime.getTime()).toBeGreaterThanOrEqual(
|
|
expectedExpirationTime.getTime() - 1000,
|
|
);
|
|
expect(actualExpirationTime.getTime()).toBeLessThanOrEqual(
|
|
new Date(afterSave.getTime() + 720 * 60 * 60 * 1000 + 1000).getTime(),
|
|
);
|
|
});
|
|
|
|
it('should use default retention when config is not provided', async () => {
|
|
// Mock getAppConfig to return empty config
|
|
mockReq.config = {}; // Empty config
|
|
|
|
mockReq.body = { isTemporary: true };
|
|
|
|
const beforeSave = new Date();
|
|
const result = await saveConvo(mockReq, mockConversationData);
|
|
|
|
expect(result.expiredAt).toBeDefined();
|
|
|
|
// Default retention is 30 days (720 hours)
|
|
const expectedExpirationTime = new Date(beforeSave.getTime() + 30 * 24 * 60 * 60 * 1000);
|
|
const actualExpirationTime = new Date(result.expiredAt);
|
|
|
|
expect(actualExpirationTime.getTime()).toBeGreaterThanOrEqual(
|
|
expectedExpirationTime.getTime() - 1000,
|
|
);
|
|
expect(actualExpirationTime.getTime()).toBeLessThanOrEqual(
|
|
expectedExpirationTime.getTime() + 1000,
|
|
);
|
|
});
|
|
|
|
it('should update expiredAt when saving existing temporary conversation', async () => {
|
|
// First save a temporary conversation
|
|
mockReq.config.interfaceConfig.temporaryChatRetention = 24;
|
|
|
|
mockReq.body = { isTemporary: true };
|
|
const firstSave = await saveConvo(mockReq, mockConversationData);
|
|
const originalExpiredAt = firstSave.expiredAt;
|
|
|
|
// Wait a bit to ensure time difference
|
|
await new Promise((resolve) => setTimeout(resolve, 100));
|
|
|
|
// Save again with same conversationId but different title
|
|
const updatedData = { ...mockConversationData, title: 'Updated Title' };
|
|
const secondSave = await saveConvo(mockReq, updatedData);
|
|
|
|
// Should update title and create new expiredAt
|
|
expect(secondSave.title).toBe('Updated Title');
|
|
expect(secondSave.expiredAt).toBeDefined();
|
|
expect(new Date(secondSave.expiredAt).getTime()).toBeGreaterThan(
|
|
new Date(originalExpiredAt).getTime(),
|
|
);
|
|
});
|
|
|
|
it('should not set expiredAt when updating non-temporary conversation', async () => {
|
|
// First save a non-temporary conversation
|
|
mockReq.body = { isTemporary: false };
|
|
const firstSave = await saveConvo(mockReq, mockConversationData);
|
|
expect(firstSave.expiredAt).toBeNull();
|
|
|
|
// Update without isTemporary flag
|
|
mockReq.body = {};
|
|
const updatedData = { ...mockConversationData, title: 'Updated Title' };
|
|
const secondSave = await saveConvo(mockReq, updatedData);
|
|
|
|
expect(secondSave.title).toBe('Updated Title');
|
|
expect(secondSave.expiredAt).toBeNull();
|
|
});
|
|
|
|
it('should filter out expired conversations in getConvosByCursor', async () => {
|
|
// Create some test conversations
|
|
const nonExpiredConvo = await Conversation.create({
|
|
conversationId: uuidv4(),
|
|
user: 'user123',
|
|
title: 'Non-expired',
|
|
endpoint: EModelEndpoint.openAI,
|
|
expiredAt: null,
|
|
updatedAt: new Date(),
|
|
});
|
|
|
|
await Conversation.create({
|
|
conversationId: uuidv4(),
|
|
user: 'user123',
|
|
title: 'Future expired',
|
|
endpoint: EModelEndpoint.openAI,
|
|
expiredAt: new Date(Date.now() + 24 * 60 * 60 * 1000), // 24 hours from now
|
|
updatedAt: new Date(),
|
|
});
|
|
|
|
// Mock Meili search
|
|
Conversation.meiliSearch = jest.fn().mockResolvedValue({ hits: [] });
|
|
|
|
const result = await getConvosByCursor('user123');
|
|
|
|
// Should only return conversations with null or non-existent expiredAt
|
|
expect(result.conversations).toHaveLength(1);
|
|
expect(result.conversations[0].conversationId).toBe(nonExpiredConvo.conversationId);
|
|
});
|
|
|
|
it('should filter out expired conversations in getConvosQueried', async () => {
|
|
// Create test conversations
|
|
const nonExpiredConvo = await Conversation.create({
|
|
conversationId: uuidv4(),
|
|
user: 'user123',
|
|
title: 'Non-expired',
|
|
endpoint: EModelEndpoint.openAI,
|
|
expiredAt: null,
|
|
});
|
|
|
|
const expiredConvo = await Conversation.create({
|
|
conversationId: uuidv4(),
|
|
user: 'user123',
|
|
title: 'Expired',
|
|
endpoint: EModelEndpoint.openAI,
|
|
expiredAt: new Date(Date.now() + 24 * 60 * 60 * 1000),
|
|
});
|
|
|
|
const convoIds = [
|
|
{ conversationId: nonExpiredConvo.conversationId },
|
|
{ conversationId: expiredConvo.conversationId },
|
|
];
|
|
|
|
const result = await getConvosQueried('user123', convoIds);
|
|
|
|
// Should only return the non-expired conversation
|
|
expect(result.conversations).toHaveLength(1);
|
|
expect(result.conversations[0].conversationId).toBe(nonExpiredConvo.conversationId);
|
|
expect(result.convoMap[nonExpiredConvo.conversationId]).toBeDefined();
|
|
expect(result.convoMap[expiredConvo.conversationId]).toBeUndefined();
|
|
});
|
|
});
|
|
|
|
describe('searchConversation', () => {
|
|
it('should find a conversation by conversationId', async () => {
|
|
await Conversation.create({
|
|
conversationId: mockConversationData.conversationId,
|
|
user: 'user123',
|
|
title: 'Test',
|
|
endpoint: EModelEndpoint.openAI,
|
|
});
|
|
|
|
const result = await searchConversation(mockConversationData.conversationId);
|
|
|
|
expect(result).toBeTruthy();
|
|
expect(result.conversationId).toBe(mockConversationData.conversationId);
|
|
expect(result.user).toBe('user123');
|
|
expect(result.title).toBeUndefined(); // Only returns conversationId and user
|
|
});
|
|
|
|
it('should return null if conversation not found', async () => {
|
|
const result = await searchConversation('non-existent-id');
|
|
expect(result).toBeNull();
|
|
});
|
|
});
|
|
|
|
describe('getConvo', () => {
|
|
it('should retrieve a conversation for a user', async () => {
|
|
await Conversation.create({
|
|
conversationId: mockConversationData.conversationId,
|
|
user: 'user123',
|
|
title: 'Test Conversation',
|
|
endpoint: EModelEndpoint.openAI,
|
|
});
|
|
|
|
const result = await getConvo('user123', mockConversationData.conversationId);
|
|
|
|
expect(result.conversationId).toBe(mockConversationData.conversationId);
|
|
expect(result.user).toBe('user123');
|
|
expect(result.title).toBe('Test Conversation');
|
|
});
|
|
|
|
it('should return null if conversation not found', async () => {
|
|
const result = await getConvo('user123', 'non-existent-id');
|
|
expect(result).toBeNull();
|
|
});
|
|
});
|
|
|
|
describe('getConvoTitle', () => {
|
|
it('should return the conversation title', async () => {
|
|
await Conversation.create({
|
|
conversationId: mockConversationData.conversationId,
|
|
user: 'user123',
|
|
title: 'Test Title',
|
|
endpoint: EModelEndpoint.openAI,
|
|
});
|
|
|
|
const result = await getConvoTitle('user123', mockConversationData.conversationId);
|
|
expect(result).toBe('Test Title');
|
|
});
|
|
|
|
it('should return null if conversation has no title', async () => {
|
|
await Conversation.create({
|
|
conversationId: mockConversationData.conversationId,
|
|
user: 'user123',
|
|
title: null,
|
|
endpoint: EModelEndpoint.openAI,
|
|
});
|
|
|
|
const result = await getConvoTitle('user123', mockConversationData.conversationId);
|
|
expect(result).toBeNull();
|
|
});
|
|
|
|
it('should return "New Chat" if conversation not found', async () => {
|
|
const result = await getConvoTitle('user123', 'non-existent-id');
|
|
expect(result).toBe('New Chat');
|
|
});
|
|
});
|
|
|
|
describe('getConvoFiles', () => {
|
|
it('should return conversation files', async () => {
|
|
const files = ['file1', 'file2'];
|
|
await Conversation.create({
|
|
conversationId: mockConversationData.conversationId,
|
|
user: 'user123',
|
|
endpoint: EModelEndpoint.openAI,
|
|
files,
|
|
});
|
|
|
|
const result = await getConvoFiles(mockConversationData.conversationId);
|
|
expect(result).toEqual(files);
|
|
});
|
|
|
|
it('should return empty array if no files', async () => {
|
|
await Conversation.create({
|
|
conversationId: mockConversationData.conversationId,
|
|
user: 'user123',
|
|
endpoint: EModelEndpoint.openAI,
|
|
});
|
|
|
|
const result = await getConvoFiles(mockConversationData.conversationId);
|
|
expect(result).toEqual([]);
|
|
});
|
|
|
|
it('should return empty array if conversation not found', async () => {
|
|
const result = await getConvoFiles('non-existent-id');
|
|
expect(result).toEqual([]);
|
|
});
|
|
});
|
|
|
|
describe('deleteConvos', () => {
|
|
it('should delete conversations and associated messages', async () => {
|
|
await Conversation.create({
|
|
conversationId: mockConversationData.conversationId,
|
|
user: 'user123',
|
|
title: 'To Delete',
|
|
endpoint: EModelEndpoint.openAI,
|
|
});
|
|
|
|
deleteMessages.mockResolvedValue({ deletedCount: 5 });
|
|
|
|
const result = await deleteConvos('user123', {
|
|
conversationId: mockConversationData.conversationId,
|
|
});
|
|
|
|
expect(result.deletedCount).toBe(1);
|
|
expect(result.messages.deletedCount).toBe(5);
|
|
expect(deleteMessages).toHaveBeenCalledWith({
|
|
conversationId: { $in: [mockConversationData.conversationId] },
|
|
});
|
|
|
|
// Verify conversation was deleted
|
|
const deletedConvo = await Conversation.findOne({
|
|
conversationId: mockConversationData.conversationId,
|
|
});
|
|
expect(deletedConvo).toBeNull();
|
|
});
|
|
|
|
it('should throw error if no conversations found', async () => {
|
|
await expect(deleteConvos('user123', { conversationId: 'non-existent' })).rejects.toThrow(
|
|
'Conversation not found or already deleted.',
|
|
);
|
|
});
|
|
});
|
|
|
|
describe('deleteNullOrEmptyConversations', () => {
|
|
it('should delete conversations with null, empty, or missing conversationIds', async () => {
|
|
// Since conversationId is required by the schema, we can't create documents with null/missing IDs
|
|
// This test should verify the function works when such documents exist (e.g., from data corruption)
|
|
|
|
// For this test, let's create a valid conversation and verify the function doesn't delete it
|
|
await Conversation.create({
|
|
conversationId: mockConversationData.conversationId,
|
|
user: 'user4',
|
|
endpoint: EModelEndpoint.openAI,
|
|
});
|
|
|
|
deleteMessages.mockResolvedValue({ deletedCount: 0 });
|
|
|
|
const result = await deleteNullOrEmptyConversations();
|
|
|
|
expect(result.conversations.deletedCount).toBe(0); // No invalid conversations to delete
|
|
expect(result.messages.deletedCount).toBe(0);
|
|
|
|
// Verify valid conversation remains
|
|
const remainingConvos = await Conversation.find({});
|
|
expect(remainingConvos).toHaveLength(1);
|
|
expect(remainingConvos[0].conversationId).toBe(mockConversationData.conversationId);
|
|
});
|
|
});
|
|
|
|
describe('Error Handling', () => {
|
|
it('should handle database errors in saveConvo', async () => {
|
|
// Force a database error by disconnecting
|
|
await mongoose.disconnect();
|
|
|
|
const result = await saveConvo(mockReq, mockConversationData);
|
|
|
|
expect(result).toEqual({ message: 'Error saving conversation' });
|
|
|
|
// Reconnect for other tests
|
|
await mongoose.connect(mongoServer.getUri());
|
|
});
|
|
});
|
|
});
|