fix(worker): improve sendMessage error, add session-pool unit tests

This commit is contained in:
2026-05-27 17:14:56 +05:30
parent 0f30af6018
commit 9cdc41e23e
2 changed files with 80 additions and 1 deletions
@@ -0,0 +1,76 @@
import { WhatsAppSessionPool } from './session-pool';
// Mock createWhatsAppSession so we don't need a real WhatsApp connection
jest.mock('./session', () => ({
createWhatsAppSession: jest.fn().mockResolvedValue({
sendMessage: jest.fn().mockResolvedValue({}),
logout: jest.fn().mockResolvedValue({}),
}),
}));
describe('WhatsAppSessionPool', () => {
let pool: WhatsAppSessionPool;
beforeEach(() => {
pool = new WhatsAppSessionPool();
jest.clearAllMocks();
});
it('add() stores a session by accountId', async () => {
await pool.add('acc_1', './sessions/1', jest.fn(), jest.fn(), jest.fn());
expect(pool.get('acc_1')).toBeDefined();
});
it('get() returns undefined for unknown accountId', () => {
expect(pool.get('acc_unknown')).toBeUndefined();
});
it('getAll() returns the sessions map', async () => {
await pool.add('acc_1', './sessions/1', jest.fn(), jest.fn(), jest.fn());
expect(pool.getAll().size).toBe(1);
expect(pool.getAll().has('acc_1')).toBe(true);
});
it('sendMessage() throws with informative error when no session exists', async () => {
await expect(pool.sendMessage('acc_missing', '1234@g.us', 'hello')).rejects.toThrow(
'No active session for account acc_missing',
);
});
it('sendMessage() includes available accounts in error when others exist', async () => {
await pool.add('acc_1', './sessions/1', jest.fn(), jest.fn(), jest.fn());
await expect(pool.sendMessage('acc_missing', '1234@g.us', 'hello')).rejects.toThrow(
'Active accounts: [acc_1]',
);
});
it('remove() removes session from pool', async () => {
await pool.add('acc_1', './sessions/1', jest.fn(), jest.fn(), jest.fn());
expect(pool.get('acc_1')).toBeDefined();
await pool.remove('acc_1');
expect(pool.get('acc_1')).toBeUndefined();
});
it('remove() is a no-op for unknown accountId', async () => {
await expect(pool.remove('acc_unknown')).resolves.not.toThrow();
});
it('add() injects accountId into onMessage callback', async () => {
const onMessage = jest.fn();
const { createWhatsAppSession } = require('./session');
let capturedOnMessage: any;
(createWhatsAppSession as jest.Mock).mockImplementationOnce(
(_accountId: string, _path: string, cb: any) => {
capturedOnMessage = cb;
return Promise.resolve({ sendMessage: jest.fn(), logout: jest.fn() });
},
);
await pool.add('acc_1', './sessions/1', onMessage, jest.fn(), jest.fn());
const fakeMsg = { platformMsgId: 'abc', content: 'hi', sourceGroupJid: '1@g.us', senderJid: '2@s.whatsapp.net', accountId: 'acc_1' };
await capturedOnMessage(fakeMsg);
expect(onMessage).toHaveBeenCalledWith(fakeMsg, 'acc_1');
});
});
+4 -1
View File
@@ -42,7 +42,10 @@ export class WhatsAppSessionPool {
async sendMessage(accountId: string, groupJid: string, text: string): Promise<void> {
const sock = this.sessions.get(accountId);
if (!sock) throw new Error(`No active session for account ${accountId}`);
if (!sock) {
const available = Array.from(this.sessions.keys()).join(', ') || 'none';
throw new Error(`No active session for account ${accountId}. Active accounts: [${available}]`);
}
await sock.sendMessage(groupJid, { text });
}