File tree 3 files changed +43
-1
lines changed
packages/loot-core/src/server
3 files changed +43
-1
lines changed Original file line number Diff line number Diff line change
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
+ } ) ;
Original file line number Diff line number Diff line change @@ -258,7 +258,7 @@ handlers['api/bank-sync'] = async function (args) {
258
258
ids : [ args . accountId ] ,
259
259
} ) ;
260
260
261
- allErrors . push ( errors ) ;
261
+ allErrors . push ( ... errors ) ;
262
262
} else {
263
263
const accountsData = await handlers [ 'accounts-get' ] ( ) ;
264
264
const accountIdsToSync = accountsData . map ( a => a . id ) ;
Original file line number Diff line number Diff line change
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.
You can’t perform that action at this time.
0 commit comments