This repository has been archived by the owner on Nov 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 363
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: history polling
next
/transactions remaining pending (#3992)
* fix: revert history loading into separate fns * fix: add tests * fix: remove test value * fix: add return type * fix: set history pointers conditionally * fix: no conditional pointers + clear on navigation * fix: remove dependencies
- Loading branch information
Showing
3 changed files
with
150 additions
and
75 deletions.
There are no files selected for viewing
79 changes: 79 additions & 0 deletions
79
src/logic/safe/store/actions/transactions/__tests__/loadGatewayTransactions.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
import * as gatewaySDK from '@gnosis.pm/safe-react-gateway-sdk' | ||
import { FilterType } from 'src/routes/safe/components/Transactions/TxList/Filter' | ||
import { _getHistoryPageUrl, _getTxHistory } from '../fetchTransactions/loadGatewayTransactions' | ||
|
||
jest.mock('@gnosis.pm/safe-react-gateway-sdk', () => { | ||
const original = jest.requireActual('@gnosis.pm/safe-react-gateway-sdk') | ||
return { | ||
...original, | ||
getIncomingTransfers: jest.fn, | ||
getMultisigTransactions: jest.fn, | ||
getModuleTransactions: jest.fn, | ||
getTransactionHistory: jest.fn, | ||
} | ||
}) | ||
|
||
describe('loadGatewayTransactions', () => { | ||
beforeEach(() => { | ||
jest.resetAllMocks() | ||
}) | ||
|
||
describe('getTxHistory', () => { | ||
it('fetches incoming transfers according to type', async () => { | ||
const spy = jest.spyOn(gatewaySDK, 'getIncomingTransfers') | ||
|
||
await _getTxHistory('4', '0x123', { type: FilterType.INCOMING, token_address: '0x456' }) | ||
|
||
expect(spy).toHaveBeenCalledWith('4', '0x123', { token_address: '0x456' }, undefined) | ||
}) | ||
|
||
it('fetches multisig transfers according to type', async () => { | ||
const spy = jest.spyOn(gatewaySDK, 'getMultisigTransactions') | ||
|
||
await _getTxHistory('4', '0x123', { type: FilterType.MULTISIG, to: '0x456' }) | ||
|
||
expect(spy).toHaveBeenCalledWith('4', '0x123', { to: '0x456', executed: 'true' }, undefined) | ||
}) | ||
|
||
it('fetches module transfers according to type', async () => { | ||
const spy = jest.spyOn(gatewaySDK, 'getModuleTransactions') | ||
|
||
await _getTxHistory('4', '0x123', { type: FilterType.MODULE, to: '0x456' }) | ||
|
||
expect(spy).toHaveBeenCalledWith('4', '0x123', { to: '0x456' }, undefined) | ||
}) | ||
|
||
it('fetches historical transfers by default', async () => { | ||
const spy = jest.spyOn(gatewaySDK, 'getTransactionHistory') | ||
|
||
await _getTxHistory('4', '0x123') | ||
|
||
expect(spy).toHaveBeenCalledWith('4', '0x123', undefined) | ||
}) | ||
}) | ||
|
||
describe('getHistoryPageUrl', () => { | ||
it('returns the pageUrl when a falsy pageUrl is provided', () => { | ||
// SDK types should allow for `null` in TransactionListPage['next' | 'previous'] as it's returned by gateway | ||
expect(_getHistoryPageUrl(null as unknown as undefined, { type: FilterType.INCOMING })).toBe(null) | ||
}) | ||
|
||
it('returns the pageUrl when a no filter is provided', () => { | ||
expect(_getHistoryPageUrl('http://test123.com', undefined)).toBe('http://test123.com') | ||
expect(_getHistoryPageUrl('http://test456.com', {})).toBe('http://test456.com') | ||
}) | ||
|
||
it('returns the pageUrl if it is an invalid URL', () => { | ||
expect(_getHistoryPageUrl('test123', { type: FilterType.INCOMING })).toBe('test123') | ||
}) | ||
|
||
it('appends only defined filter values to the pageUrl', () => { | ||
expect(_getHistoryPageUrl('http://test123.com', { type: FilterType.INCOMING, value: undefined })).toBe( | ||
'http://test123.com/?type=Incoming', | ||
) | ||
expect( | ||
_getHistoryPageUrl('http://test456.com', { type: FilterType.MULTISIG, execution_date__gte: undefined }), | ||
).toBe('http://test456.com/?type=Outgoing') | ||
}) | ||
}) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters