Fix translation language badges not updating after auto-translation (#54)

Co-authored-by: hugo <hugoms@me.com>
This commit is contained in:
Georg Bauer
2026-03-13 18:47:04 +01:00
committed by GitHub
parent 9bd0114012
commit f03b087c13
4 changed files with 83 additions and 0 deletions

View File

@@ -26,6 +26,8 @@ vi.mock('electron', () => ({
handle: vi.fn((channel: string, handler: (...args: any[]) => Promise<any>) => {
registeredHandlers.set(channel, handler);
}),
emit: vi.fn(),
on: vi.fn(),
},
dialog: {
showOpenDialog: vi.fn(),
@@ -3718,4 +3720,49 @@ describe('IPC Handlers', () => {
expect(mockTaskManager.runTask).not.toHaveBeenCalled();
});
});
describe('registerEventForwarding: post translation events', () => {
it('should forward postTranslationCreated to renderer', async () => {
const { registerEventForwarding } = await import('../../src/main/ipc/handlers');
mockPostEngine.on.mockClear();
registerEventForwarding(mockBundle as any);
const translationCreatedCalls = mockPostEngine.on.mock.calls.filter(
([event]: [string]) => event === 'postTranslationCreated'
);
expect(translationCreatedCalls.length).toBeGreaterThanOrEqual(1);
// Verify the handler calls ipcMain.emit to forward
const { ipcMain } = await import('electron');
(ipcMain.emit as any).mockClear();
const handler = translationCreatedCalls[translationCreatedCalls.length - 1][1];
handler({ id: 't1', translationFor: 'p1', language: 'fr' });
expect(ipcMain.emit).toHaveBeenCalledWith(
'forward-to-renderer',
'post:translationCreated',
{ id: 't1', translationFor: 'p1', language: 'fr' }
);
});
it('should forward postTranslationUpdated to renderer', async () => {
const { registerEventForwarding } = await import('../../src/main/ipc/handlers');
mockPostEngine.on.mockClear();
registerEventForwarding(mockBundle as any);
const translationUpdatedCalls = mockPostEngine.on.mock.calls.filter(
([event]: [string]) => event === 'postTranslationUpdated'
);
expect(translationUpdatedCalls.length).toBeGreaterThanOrEqual(1);
const { ipcMain } = await import('electron');
(ipcMain.emit as any).mockClear();
const handler = translationUpdatedCalls[translationUpdatedCalls.length - 1][1];
handler({ id: 't2', translationFor: 'p1', language: 'de' });
expect(ipcMain.emit).toHaveBeenCalledWith(
'forward-to-renderer',
'post:translationUpdated',
{ id: 't2', translationFor: 'p1', language: 'de' }
);
});
});
});