2025-05-16 23:18:52 +09:00
|
|
|
const fs = require('fs');
|
|
|
|
|
const request = require('supertest');
|
|
|
|
|
const { MongoMemoryServer } = require('mongodb-memory-server');
|
|
|
|
|
const mongoose = require('mongoose');
|
|
|
|
|
|
2025-08-26 12:10:18 -04:00
|
|
|
jest.mock('~/server/services/Config', () => ({
|
|
|
|
|
loadCustomConfig: jest.fn(() => Promise.resolve({})),
|
|
|
|
|
getAppConfig: jest.fn().mockResolvedValue({
|
|
|
|
|
paths: {
|
|
|
|
|
uploads: '/tmp',
|
|
|
|
|
dist: '/tmp/dist',
|
|
|
|
|
fonts: '/tmp/fonts',
|
|
|
|
|
assets: '/tmp/assets',
|
|
|
|
|
},
|
|
|
|
|
fileStrategy: 'local',
|
|
|
|
|
imageOutputType: 'PNG',
|
|
|
|
|
}),
|
|
|
|
|
setCachedTools: jest.fn(),
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
jest.mock('~/app/clients/tools', () => ({
|
|
|
|
|
createOpenAIImageTools: jest.fn(() => []),
|
|
|
|
|
createYouTubeTools: jest.fn(() => []),
|
|
|
|
|
manifestToolMap: {},
|
|
|
|
|
toolkits: [],
|
|
|
|
|
}));
|
2025-05-25 23:40:37 -04:00
|
|
|
|
2025-05-16 23:18:52 +09:00
|
|
|
describe('Server Configuration', () => {
|
|
|
|
|
// Increase the default timeout to allow for Mongo cleanup
|
|
|
|
|
jest.setTimeout(30_000);
|
|
|
|
|
|
|
|
|
|
let mongoServer;
|
|
|
|
|
let app;
|
|
|
|
|
|
|
|
|
|
/** Mocked fs.readFileSync for index.html */
|
|
|
|
|
const originalReadFileSync = fs.readFileSync;
|
|
|
|
|
beforeAll(() => {
|
|
|
|
|
fs.readFileSync = function (filepath, options) {
|
|
|
|
|
if (filepath.includes('index.html')) {
|
|
|
|
|
return '<!DOCTYPE html><html><head><title>LibreChat</title></head><body><div id="root"></div></body></html>';
|
|
|
|
|
}
|
|
|
|
|
return originalReadFileSync(filepath, options);
|
|
|
|
|
};
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
afterAll(() => {
|
|
|
|
|
// Restore original fs.readFileSync
|
|
|
|
|
fs.readFileSync = originalReadFileSync;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
beforeAll(async () => {
|
2025-08-26 12:10:18 -04:00
|
|
|
// Create the required directories and files for the test
|
|
|
|
|
const fs = require('fs');
|
|
|
|
|
const path = require('path');
|
|
|
|
|
|
|
|
|
|
const dirs = ['/tmp/dist', '/tmp/fonts', '/tmp/assets'];
|
|
|
|
|
dirs.forEach((dir) => {
|
|
|
|
|
if (!fs.existsSync(dir)) {
|
|
|
|
|
fs.mkdirSync(dir, { recursive: true });
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
fs.writeFileSync(
|
|
|
|
|
path.join('/tmp/dist', 'index.html'),
|
|
|
|
|
'<!DOCTYPE html><html><head><title>LibreChat</title></head><body><div id="root"></div></body></html>',
|
|
|
|
|
);
|
|
|
|
|
|
2025-05-16 23:18:52 +09:00
|
|
|
mongoServer = await MongoMemoryServer.create();
|
|
|
|
|
process.env.MONGO_URI = mongoServer.getUri();
|
|
|
|
|
process.env.PORT = '0'; // Use a random available port
|
|
|
|
|
app = require('~/server');
|
|
|
|
|
|
|
|
|
|
// Wait for the app to be healthy
|
|
|
|
|
await healthCheckPoll(app);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
afterAll(async () => {
|
|
|
|
|
await mongoServer.stop();
|
|
|
|
|
await mongoose.disconnect();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should return OK for /health', async () => {
|
|
|
|
|
const response = await request(app).get('/health');
|
|
|
|
|
expect(response.status).toBe(200);
|
|
|
|
|
expect(response.text).toBe('OK');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should not cache index page', async () => {
|
|
|
|
|
const response = await request(app).get('/');
|
|
|
|
|
expect(response.status).toBe(200);
|
|
|
|
|
expect(response.headers['cache-control']).toBe('no-cache, no-store, must-revalidate');
|
|
|
|
|
expect(response.headers['pragma']).toBe('no-cache');
|
|
|
|
|
expect(response.headers['expires']).toBe('0');
|
|
|
|
|
});
|
2025-07-05 00:51:46 +09:00
|
|
|
|
|
|
|
|
it('should return 500 for unknown errors via ErrorController', async () => {
|
|
|
|
|
// Testing the error handling here on top of unit tests to ensure the middleware is correctly integrated
|
|
|
|
|
|
|
|
|
|
// Mock MongoDB operations to fail
|
|
|
|
|
const originalFindOne = mongoose.models.User.findOne;
|
|
|
|
|
const mockError = new Error('MongoDB operation failed');
|
|
|
|
|
mongoose.models.User.findOne = jest.fn().mockImplementation(() => {
|
|
|
|
|
throw mockError;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
const response = await request(app).post('/api/auth/login').send({
|
|
|
|
|
email: 'test@example.com',
|
|
|
|
|
password: 'password123',
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
expect(response.status).toBe(500);
|
|
|
|
|
expect(response.text).toBe('An unknown error occurred.');
|
|
|
|
|
} finally {
|
|
|
|
|
// Restore original function
|
|
|
|
|
mongoose.models.User.findOne = originalFindOne;
|
|
|
|
|
}
|
|
|
|
|
});
|
2025-05-16 23:18:52 +09:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// Polls the /health endpoint every 30ms for up to 10 seconds to wait for the server to start completely
|
|
|
|
|
async function healthCheckPoll(app, retries = 0) {
|
|
|
|
|
const maxRetries = Math.floor(10000 / 30); // 10 seconds / 30ms
|
|
|
|
|
try {
|
|
|
|
|
const response = await request(app).get('/health');
|
|
|
|
|
if (response.status === 200) {
|
|
|
|
|
return; // App is healthy
|
|
|
|
|
}
|
2025-08-11 18:49:34 -04:00
|
|
|
} catch {
|
2025-05-16 23:18:52 +09:00
|
|
|
// Ignore connection errors during polling
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (retries < maxRetries) {
|
|
|
|
|
await new Promise((resolve) => setTimeout(resolve, 30));
|
|
|
|
|
await healthCheckPoll(app, retries + 1);
|
|
|
|
|
} else {
|
|
|
|
|
throw new Error('App did not become healthy within 10 seconds.');
|
|
|
|
|
}
|
|
|
|
|
}
|