mcp-dbs

by cuongtl1992
Verified
import fs from 'fs'; import path from 'path'; import { Client } from '@modelcontextprotocol/sdk/client/index.js'; // Mock MongoDB before importing any file that uses it jest.mock('mongodb', () => { return { __esModule: true, default: { MongoClient: jest.fn(() => ({ connect: jest.fn(), db: jest.fn(), close: jest.fn() })) } }; }); // Now import server after the mock import { McpDatabaseServer } from '../src/server.js'; // We'll use the SQLite tests instead of creating complex MCP client tests // The functionality is already tested in sqlite.test.ts const DB_PATH = path.join(process.cwd(), 'test', 'server-test.db'); // Skip these tests for now since they need more work with the MCP client setup // These would be integration tests that we can add later describe.skip('McpDatabaseServer', () => { let server: McpDatabaseServer; // Remove test database file if it exists beforeAll(() => { if (fs.existsSync(DB_PATH)) { fs.unlinkSync(DB_PATH); } }); // Remove test database file after tests afterAll(() => { if (fs.existsSync(DB_PATH)) { fs.unlinkSync(DB_PATH); } }); test('should create a server instance', () => { server = new McpDatabaseServer(); expect(server).toBeDefined(); expect(server.getMcpServer()).toBeDefined(); }); });