Skip to content

Commit 31ed128

Browse files
Fix error spread in non-batch bank sync (#4689)
1 parent 0f8a1ae commit 31ed128

File tree

3 files changed

+43
-1
lines changed

3 files changed

+43
-1
lines changed
+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
import { getBankSyncError } from '../shared/errors';
2+
import { ServerHandlers } from '../types/server-handlers';
3+
4+
import { installAPI } from './api';
5+
jest.mock('../shared/errors', () => ({
6+
getBankSyncError: jest.fn(error => `Bank sync error: ${error}`),
7+
}));
8+
9+
describe('API handlers', () => {
10+
const handlers = installAPI({} as unknown as ServerHandlers);
11+
12+
describe('api/bank-sync', () => {
13+
it('should sync a single account when accountId is provided', async () => {
14+
handlers['accounts-bank-sync'] = jest
15+
.fn()
16+
.mockResolvedValue({ errors: [] });
17+
18+
await handlers['api/bank-sync']({ accountId: 'account1' });
19+
expect(handlers['accounts-bank-sync']).toHaveBeenCalledWith({
20+
ids: ['account1'],
21+
});
22+
});
23+
24+
it('should handle errors in non batch sync', async () => {
25+
handlers['accounts-bank-sync'] = jest.fn().mockResolvedValue({
26+
errors: ['connection-failed'],
27+
});
28+
29+
await expect(
30+
handlers['api/bank-sync']({ accountId: 'account2' }),
31+
).rejects.toThrow('Bank sync error: connection-failed');
32+
33+
expect(getBankSyncError).toHaveBeenCalledWith('connection-failed');
34+
});
35+
});
36+
});

packages/loot-core/src/server/api.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ handlers['api/bank-sync'] = async function (args) {
258258
ids: [args.accountId],
259259
});
260260

261-
allErrors.push(errors);
261+
allErrors.push(...errors);
262262
} else {
263263
const accountsData = await handlers['accounts-get']();
264264
const accountIdsToSync = accountsData.map(a => a.id);

upcoming-release-notes/4689.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
category: Bugfix
3+
authors: [mariolamacchia]
4+
---
5+
6+
Fixed an issue in the bank sync API where errors weren't being properly collected during bank sync, which led to non-batch syncs to always fail.

0 commit comments

Comments
 (0)