2021-05-07 21:38:24 +02:00
|
|
|
import { strict as assert } from 'assert';
|
2021-02-04 19:15:23 +01:00
|
|
|
import sinon from 'sinon';
|
|
|
|
import proxyquire from 'proxyquire';
|
|
|
|
import nock from 'nock';
|
|
|
|
import { cloneDeep } from 'lodash';
|
2020-01-09 04:34:58 +01:00
|
|
|
|
2021-03-16 22:00:08 +01:00
|
|
|
import waitUntilCalled from '../../../test/lib/wait-until-called';
|
Replace shared mocks in incoming transaction controller tests (#9754)
The shared mocks used previously in the incoming transaction controller
tests have been replaced with functions that can generate a new mock
for each test.
We should avoid ever sharing mocks between tests. It's quite easy for
a mock to get accidentally mutated or not correctly "reset" for the
next test, leading to test inter-dependencies and misleading results.
In particular, it is unsafe to share a `sinon` fake (e.g. a spy or
stub) because they can't be fully reset between tests. Or at least it's
difficult to reset them property, and it can't be done while also
following their recommendations for preventing memory leaks.
The spy API and all related state can be reset with `resetHistory`,
which can be called between each test. However `sinon` also recommends
calling `restore` after each test, and this will cause `sinon` to drop
its internal reference to the fake object, meaning any subsequent call
to `resetHistory` would fail. This is intentional, as it's required to
prevent memory from building up during the test run, but it also means
that sharing `sinon` fakes is particularly difficult to do safely.
Instead we should never share mocks in the first place, which has other
benefits anyway.
This was discovered while writing tests for #9583. I mistakenly
believed that `sinon.restore()` would reset the spy state, and this was
responsible for many hours of debugging test failures.
2020-10-29 16:16:04 +01:00
|
|
|
import {
|
2023-02-14 19:35:42 +01:00
|
|
|
ETHERSCAN_SUPPORTED_NETWORKS,
|
2022-09-14 16:55:31 +02:00
|
|
|
CHAIN_IDS,
|
|
|
|
NETWORK_TYPES,
|
|
|
|
NETWORK_IDS,
|
2021-03-16 22:00:08 +01:00
|
|
|
} from '../../../shared/constants/network';
|
2020-11-07 08:38:12 +01:00
|
|
|
import {
|
2023-01-18 15:47:29 +01:00
|
|
|
TransactionType,
|
|
|
|
TransactionStatus,
|
2021-03-16 22:00:08 +01:00
|
|
|
} from '../../../shared/constants/transaction';
|
2021-06-10 21:27:03 +02:00
|
|
|
import { MILLISECOND } from '../../../shared/constants/time';
|
2020-08-19 18:27:05 +02:00
|
|
|
|
2021-03-16 22:00:08 +01:00
|
|
|
const IncomingTransactionsController = proxyquire('./incoming-transactions', {
|
2021-03-18 19:23:46 +01:00
|
|
|
'../../../shared/modules/random-id': { default: () => 54321 },
|
2021-03-16 22:00:08 +01:00
|
|
|
}).default;
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
const FAKE_CHAIN_ID = '0x1338';
|
|
|
|
const MOCK_SELECTED_ADDRESS = '0x0101';
|
2021-06-10 21:27:03 +02:00
|
|
|
const SET_STATE_TIMEOUT = MILLISECOND * 10;
|
Replace shared mocks in incoming transaction controller tests (#9754)
The shared mocks used previously in the incoming transaction controller
tests have been replaced with functions that can generate a new mock
for each test.
We should avoid ever sharing mocks between tests. It's quite easy for
a mock to get accidentally mutated or not correctly "reset" for the
next test, leading to test inter-dependencies and misleading results.
In particular, it is unsafe to share a `sinon` fake (e.g. a spy or
stub) because they can't be fully reset between tests. Or at least it's
difficult to reset them property, and it can't be done while also
following their recommendations for preventing memory leaks.
The spy API and all related state can be reset with `resetHistory`,
which can be called between each test. However `sinon` also recommends
calling `restore` after each test, and this will cause `sinon` to drop
its internal reference to the fake object, meaning any subsequent call
to `resetHistory` would fail. This is intentional, as it's required to
prevent memory from building up during the test run, but it also means
that sharing `sinon` fakes is particularly difficult to do safely.
Instead we should never share mocks in the first place, which has other
benefits anyway.
This was discovered while writing tests for #9583. I mistakenly
believed that `sinon.restore()` would reset the spy state, and this was
responsible for many hours of debugging test failures.
2020-10-29 16:16:04 +01:00
|
|
|
|
2021-03-19 22:54:30 +01:00
|
|
|
const EXISTING_INCOMING_TX = { id: 777, hash: '0x123456' };
|
|
|
|
const PREPOPULATED_INCOMING_TXS_BY_HASH = {
|
|
|
|
[EXISTING_INCOMING_TX.hash]: EXISTING_INCOMING_TX,
|
|
|
|
};
|
|
|
|
const PREPOPULATED_BLOCKS_BY_NETWORK = {
|
2022-09-14 16:55:31 +02:00
|
|
|
[CHAIN_IDS.GOERLI]: 1,
|
|
|
|
[CHAIN_IDS.MAINNET]: 3,
|
2022-09-14 20:26:45 +02:00
|
|
|
[CHAIN_IDS.SEPOLIA]: 6,
|
2021-03-19 22:54:30 +01:00
|
|
|
};
|
2023-02-14 19:35:42 +01:00
|
|
|
const EMPTY_BLOCKS_BY_NETWORK = Object.keys(
|
|
|
|
ETHERSCAN_SUPPORTED_NETWORKS,
|
|
|
|
).reduce((network, chainId) => {
|
|
|
|
network[chainId] = null;
|
|
|
|
return network;
|
|
|
|
}, {});
|
2021-03-19 22:54:30 +01:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
function getEmptyInitState() {
|
Replace shared mocks in incoming transaction controller tests (#9754)
The shared mocks used previously in the incoming transaction controller
tests have been replaced with functions that can generate a new mock
for each test.
We should avoid ever sharing mocks between tests. It's quite easy for
a mock to get accidentally mutated or not correctly "reset" for the
next test, leading to test inter-dependencies and misleading results.
In particular, it is unsafe to share a `sinon` fake (e.g. a spy or
stub) because they can't be fully reset between tests. Or at least it's
difficult to reset them property, and it can't be done while also
following their recommendations for preventing memory leaks.
The spy API and all related state can be reset with `resetHistory`,
which can be called between each test. However `sinon` also recommends
calling `restore` after each test, and this will cause `sinon` to drop
its internal reference to the fake object, meaning any subsequent call
to `resetHistory` would fail. This is intentional, as it's required to
prevent memory from building up during the test run, but it also means
that sharing `sinon` fakes is particularly difficult to do safely.
Instead we should never share mocks in the first place, which has other
benefits anyway.
This was discovered while writing tests for #9583. I mistakenly
believed that `sinon.restore()` would reset the spy state, and this was
responsible for many hours of debugging test failures.
2020-10-29 16:16:04 +01:00
|
|
|
return {
|
2019-08-16 20:54:10 +02:00
|
|
|
incomingTransactions: {},
|
2021-03-19 22:54:30 +01:00
|
|
|
incomingTxLastFetchedBlockByChainId: EMPTY_BLOCKS_BY_NETWORK,
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
Replace shared mocks in incoming transaction controller tests (#9754)
The shared mocks used previously in the incoming transaction controller
tests have been replaced with functions that can generate a new mock
for each test.
We should avoid ever sharing mocks between tests. It's quite easy for
a mock to get accidentally mutated or not correctly "reset" for the
next test, leading to test inter-dependencies and misleading results.
In particular, it is unsafe to share a `sinon` fake (e.g. a spy or
stub) because they can't be fully reset between tests. Or at least it's
difficult to reset them property, and it can't be done while also
following their recommendations for preventing memory leaks.
The spy API and all related state can be reset with `resetHistory`,
which can be called between each test. However `sinon` also recommends
calling `restore` after each test, and this will cause `sinon` to drop
its internal reference to the fake object, meaning any subsequent call
to `resetHistory` would fail. This is intentional, as it's required to
prevent memory from building up during the test run, but it also means
that sharing `sinon` fakes is particularly difficult to do safely.
Instead we should never share mocks in the first place, which has other
benefits anyway.
This was discovered while writing tests for #9583. I mistakenly
believed that `sinon.restore()` would reset the spy state, and this was
responsible for many hours of debugging test failures.
2020-10-29 16:16:04 +01:00
|
|
|
}
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
function getNonEmptyInitState() {
|
Replace shared mocks in incoming transaction controller tests (#9754)
The shared mocks used previously in the incoming transaction controller
tests have been replaced with functions that can generate a new mock
for each test.
We should avoid ever sharing mocks between tests. It's quite easy for
a mock to get accidentally mutated or not correctly "reset" for the
next test, leading to test inter-dependencies and misleading results.
In particular, it is unsafe to share a `sinon` fake (e.g. a spy or
stub) because they can't be fully reset between tests. Or at least it's
difficult to reset them property, and it can't be done while also
following their recommendations for preventing memory leaks.
The spy API and all related state can be reset with `resetHistory`,
which can be called between each test. However `sinon` also recommends
calling `restore` after each test, and this will cause `sinon` to drop
its internal reference to the fake object, meaning any subsequent call
to `resetHistory` would fail. This is intentional, as it's required to
prevent memory from building up during the test run, but it also means
that sharing `sinon` fakes is particularly difficult to do safely.
Instead we should never share mocks in the first place, which has other
benefits anyway.
This was discovered while writing tests for #9583. I mistakenly
believed that `sinon.restore()` would reset the spy state, and this was
responsible for many hours of debugging test failures.
2020-10-29 16:16:04 +01:00
|
|
|
return {
|
2021-03-19 22:54:30 +01:00
|
|
|
incomingTransactions: PREPOPULATED_INCOMING_TXS_BY_HASH,
|
|
|
|
incomingTxLastFetchedBlockByChainId: PREPOPULATED_BLOCKS_BY_NETWORK,
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
Replace shared mocks in incoming transaction controller tests (#9754)
The shared mocks used previously in the incoming transaction controller
tests have been replaced with functions that can generate a new mock
for each test.
We should avoid ever sharing mocks between tests. It's quite easy for
a mock to get accidentally mutated or not correctly "reset" for the
next test, leading to test inter-dependencies and misleading results.
In particular, it is unsafe to share a `sinon` fake (e.g. a spy or
stub) because they can't be fully reset between tests. Or at least it's
difficult to reset them property, and it can't be done while also
following their recommendations for preventing memory leaks.
The spy API and all related state can be reset with `resetHistory`,
which can be called between each test. However `sinon` also recommends
calling `restore` after each test, and this will cause `sinon` to drop
its internal reference to the fake object, meaning any subsequent call
to `resetHistory` would fail. This is intentional, as it's required to
prevent memory from building up during the test run, but it also means
that sharing `sinon` fakes is particularly difficult to do safely.
Instead we should never share mocks in the first place, which has other
benefits anyway.
This was discovered while writing tests for #9583. I mistakenly
believed that `sinon.restore()` would reset the spy state, and this was
responsible for many hours of debugging test failures.
2020-10-29 16:16:04 +01:00
|
|
|
}
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2021-03-19 22:54:30 +01:00
|
|
|
function getMockNetworkControllerMethods(chainId = FAKE_CHAIN_ID) {
|
Replace shared mocks in incoming transaction controller tests (#9754)
The shared mocks used previously in the incoming transaction controller
tests have been replaced with functions that can generate a new mock
for each test.
We should avoid ever sharing mocks between tests. It's quite easy for
a mock to get accidentally mutated or not correctly "reset" for the
next test, leading to test inter-dependencies and misleading results.
In particular, it is unsafe to share a `sinon` fake (e.g. a spy or
stub) because they can't be fully reset between tests. Or at least it's
difficult to reset them property, and it can't be done while also
following their recommendations for preventing memory leaks.
The spy API and all related state can be reset with `resetHistory`,
which can be called between each test. However `sinon` also recommends
calling `restore` after each test, and this will cause `sinon` to drop
its internal reference to the fake object, meaning any subsequent call
to `resetHistory` would fail. This is intentional, as it's required to
prevent memory from building up during the test run, but it also means
that sharing `sinon` fakes is particularly difficult to do safely.
Instead we should never share mocks in the first place, which has other
benefits anyway.
This was discovered while writing tests for #9583. I mistakenly
believed that `sinon.restore()` would reset the spy state, and this was
responsible for many hours of debugging test failures.
2020-10-29 16:16:04 +01:00
|
|
|
return {
|
2020-10-31 01:58:12 +01:00
|
|
|
getCurrentChainId: () => chainId,
|
2021-03-19 22:54:30 +01:00
|
|
|
onNetworkDidChange: sinon.spy(),
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
Replace shared mocks in incoming transaction controller tests (#9754)
The shared mocks used previously in the incoming transaction controller
tests have been replaced with functions that can generate a new mock
for each test.
We should avoid ever sharing mocks between tests. It's quite easy for
a mock to get accidentally mutated or not correctly "reset" for the
next test, leading to test inter-dependencies and misleading results.
In particular, it is unsafe to share a `sinon` fake (e.g. a spy or
stub) because they can't be fully reset between tests. Or at least it's
difficult to reset them property, and it can't be done while also
following their recommendations for preventing memory leaks.
The spy API and all related state can be reset with `resetHistory`,
which can be called between each test. However `sinon` also recommends
calling `restore` after each test, and this will cause `sinon` to drop
its internal reference to the fake object, meaning any subsequent call
to `resetHistory` would fail. This is intentional, as it's required to
prevent memory from building up during the test run, but it also means
that sharing `sinon` fakes is particularly difficult to do safely.
Instead we should never share mocks in the first place, which has other
benefits anyway.
This was discovered while writing tests for #9583. I mistakenly
believed that `sinon.restore()` would reset the spy state, and this was
responsible for many hours of debugging test failures.
2020-10-29 16:16:04 +01:00
|
|
|
}
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
function getMockPreferencesController({
|
|
|
|
showIncomingTransactions = true,
|
|
|
|
} = {}) {
|
Replace shared mocks in incoming transaction controller tests (#9754)
The shared mocks used previously in the incoming transaction controller
tests have been replaced with functions that can generate a new mock
for each test.
We should avoid ever sharing mocks between tests. It's quite easy for
a mock to get accidentally mutated or not correctly "reset" for the
next test, leading to test inter-dependencies and misleading results.
In particular, it is unsafe to share a `sinon` fake (e.g. a spy or
stub) because they can't be fully reset between tests. Or at least it's
difficult to reset them property, and it can't be done while also
following their recommendations for preventing memory leaks.
The spy API and all related state can be reset with `resetHistory`,
which can be called between each test. However `sinon` also recommends
calling `restore` after each test, and this will cause `sinon` to drop
its internal reference to the fake object, meaning any subsequent call
to `resetHistory` would fail. This is intentional, as it's required to
prevent memory from building up during the test run, but it also means
that sharing `sinon` fakes is particularly difficult to do safely.
Instead we should never share mocks in the first place, which has other
benefits anyway.
This was discovered while writing tests for #9583. I mistakenly
believed that `sinon.restore()` would reset the spy state, and this was
responsible for many hours of debugging test failures.
2020-10-29 16:16:04 +01:00
|
|
|
return {
|
|
|
|
getSelectedAddress: sinon.stub().returns(MOCK_SELECTED_ADDRESS),
|
2019-08-16 20:54:10 +02:00
|
|
|
store: {
|
2019-08-21 20:42:14 +02:00
|
|
|
getState: sinon.stub().returns({
|
|
|
|
featureFlags: {
|
Replace shared mocks in incoming transaction controller tests (#9754)
The shared mocks used previously in the incoming transaction controller
tests have been replaced with functions that can generate a new mock
for each test.
We should avoid ever sharing mocks between tests. It's quite easy for
a mock to get accidentally mutated or not correctly "reset" for the
next test, leading to test inter-dependencies and misleading results.
In particular, it is unsafe to share a `sinon` fake (e.g. a spy or
stub) because they can't be fully reset between tests. Or at least it's
difficult to reset them property, and it can't be done while also
following their recommendations for preventing memory leaks.
The spy API and all related state can be reset with `resetHistory`,
which can be called between each test. However `sinon` also recommends
calling `restore` after each test, and this will cause `sinon` to drop
its internal reference to the fake object, meaning any subsequent call
to `resetHistory` would fail. This is intentional, as it's required to
prevent memory from building up during the test run, but it also means
that sharing `sinon` fakes is particularly difficult to do safely.
Instead we should never share mocks in the first place, which has other
benefits anyway.
This was discovered while writing tests for #9583. I mistakenly
believed that `sinon.restore()` would reset the spy state, and this was
responsible for many hours of debugging test failures.
2020-10-29 16:16:04 +01:00
|
|
|
showIncomingTransactions,
|
2019-08-21 20:42:14 +02:00
|
|
|
},
|
|
|
|
}),
|
2019-08-16 20:54:10 +02:00
|
|
|
subscribe: sinon.spy(),
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
Replace shared mocks in incoming transaction controller tests (#9754)
The shared mocks used previously in the incoming transaction controller
tests have been replaced with functions that can generate a new mock
for each test.
We should avoid ever sharing mocks between tests. It's quite easy for
a mock to get accidentally mutated or not correctly "reset" for the
next test, leading to test inter-dependencies and misleading results.
In particular, it is unsafe to share a `sinon` fake (e.g. a spy or
stub) because they can't be fully reset between tests. Or at least it's
difficult to reset them property, and it can't be done while also
following their recommendations for preventing memory leaks.
The spy API and all related state can be reset with `resetHistory`,
which can be called between each test. However `sinon` also recommends
calling `restore` after each test, and this will cause `sinon` to drop
its internal reference to the fake object, meaning any subsequent call
to `resetHistory` would fail. This is intentional, as it's required to
prevent memory from building up during the test run, but it also means
that sharing `sinon` fakes is particularly difficult to do safely.
Instead we should never share mocks in the first place, which has other
benefits anyway.
This was discovered while writing tests for #9583. I mistakenly
believed that `sinon.restore()` would reset the spy state, and this was
responsible for many hours of debugging test failures.
2020-10-29 16:16:04 +01:00
|
|
|
}
|
|
|
|
|
2023-07-18 22:21:30 +02:00
|
|
|
function getMockOnboardingController({ completedOnboarding = true } = {}) {
|
2022-12-02 18:59:03 +01:00
|
|
|
return {
|
|
|
|
store: {
|
|
|
|
getState: sinon.stub().returns({
|
2023-07-18 22:21:30 +02:00
|
|
|
completedOnboarding,
|
2022-12-02 18:59:03 +01:00
|
|
|
}),
|
|
|
|
subscribe: sinon.spy(),
|
|
|
|
},
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
function getMockBlockTracker() {
|
Replace shared mocks in incoming transaction controller tests (#9754)
The shared mocks used previously in the incoming transaction controller
tests have been replaced with functions that can generate a new mock
for each test.
We should avoid ever sharing mocks between tests. It's quite easy for
a mock to get accidentally mutated or not correctly "reset" for the
next test, leading to test inter-dependencies and misleading results.
In particular, it is unsafe to share a `sinon` fake (e.g. a spy or
stub) because they can't be fully reset between tests. Or at least it's
difficult to reset them property, and it can't be done while also
following their recommendations for preventing memory leaks.
The spy API and all related state can be reset with `resetHistory`,
which can be called between each test. However `sinon` also recommends
calling `restore` after each test, and this will cause `sinon` to drop
its internal reference to the fake object, meaning any subsequent call
to `resetHistory` would fail. This is intentional, as it's required to
prevent memory from building up during the test run, but it also means
that sharing `sinon` fakes is particularly difficult to do safely.
Instead we should never share mocks in the first place, which has other
benefits anyway.
This was discovered while writing tests for #9583. I mistakenly
believed that `sinon.restore()` would reset the spy state, and this was
responsible for many hours of debugging test failures.
2020-10-29 16:16:04 +01:00
|
|
|
return {
|
|
|
|
addListener: sinon.stub().callsArgWithAsync(1, '0xa'),
|
|
|
|
removeListener: sinon.spy(),
|
|
|
|
testProperty: 'fakeBlockTracker',
|
|
|
|
getCurrentBlock: () => '0xa',
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
Replace shared mocks in incoming transaction controller tests (#9754)
The shared mocks used previously in the incoming transaction controller
tests have been replaced with functions that can generate a new mock
for each test.
We should avoid ever sharing mocks between tests. It's quite easy for
a mock to get accidentally mutated or not correctly "reset" for the
next test, leading to test inter-dependencies and misleading results.
In particular, it is unsafe to share a `sinon` fake (e.g. a spy or
stub) because they can't be fully reset between tests. Or at least it's
difficult to reset them property, and it can't be done while also
following their recommendations for preventing memory leaks.
The spy API and all related state can be reset with `resetHistory`,
which can be called between each test. However `sinon` also recommends
calling `restore` after each test, and this will cause `sinon` to drop
its internal reference to the fake object, meaning any subsequent call
to `resetHistory` would fail. This is intentional, as it's required to
prevent memory from building up during the test run, but it also means
that sharing `sinon` fakes is particularly difficult to do safely.
Instead we should never share mocks in the first place, which has other
benefits anyway.
This was discovered while writing tests for #9583. I mistakenly
believed that `sinon.restore()` would reset the spy state, and this was
responsible for many hours of debugging test failures.
2020-10-29 16:16:04 +01:00
|
|
|
}
|
|
|
|
|
2023-07-18 22:21:30 +02:00
|
|
|
function getDefaultControllerOpts() {
|
|
|
|
return {
|
|
|
|
blockTracker: getMockBlockTracker(),
|
|
|
|
...getMockNetworkControllerMethods(CHAIN_IDS.GOERLI),
|
|
|
|
preferencesController: getMockPreferencesController(),
|
|
|
|
onboardingController: getMockOnboardingController(),
|
|
|
|
initState: getEmptyInitState(),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-10-30 15:17:36 +01:00
|
|
|
/**
|
2021-03-19 22:54:30 +01:00
|
|
|
* @typedef {import(
|
|
|
|
* '../../../../app/scripts/controllers/incoming-transactions'
|
|
|
|
* ).EtherscanTransaction} EtherscanTransaction
|
2020-10-30 15:17:36 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a transaction object matching the expected format returned
|
|
|
|
* by the Etherscan API
|
2022-01-07 16:57:33 +01:00
|
|
|
*
|
2022-07-27 15:28:05 +02:00
|
|
|
* @param {object} [params] - options bag
|
2021-06-24 21:52:14 +02:00
|
|
|
* @param {string} [params.toAddress] - The hex-prefixed address of the recipient
|
|
|
|
* @param {number} [params.blockNumber] - The block number for the transaction
|
|
|
|
* @param {boolean} [params.useEIP1559] - Use EIP-1559 gas fields
|
2022-01-07 16:57:33 +01:00
|
|
|
* @param params.hash
|
|
|
|
* @returns {EtherscanTransaction}
|
2020-10-30 15:17:36 +01:00
|
|
|
*/
|
2021-06-24 21:52:14 +02:00
|
|
|
const getFakeEtherscanTransaction = ({
|
2020-11-03 00:41:28 +01:00
|
|
|
toAddress = MOCK_SELECTED_ADDRESS,
|
|
|
|
blockNumber = 10,
|
2021-06-24 21:52:14 +02:00
|
|
|
useEIP1559 = false,
|
|
|
|
hash = '0xfake',
|
|
|
|
} = {}) => {
|
|
|
|
if (useEIP1559) {
|
|
|
|
return {
|
|
|
|
blockNumber: blockNumber.toString(),
|
|
|
|
from: '0xfake',
|
|
|
|
gas: '0',
|
|
|
|
maxFeePerGas: '10',
|
|
|
|
maxPriorityFeePerGas: '1',
|
|
|
|
hash,
|
|
|
|
isError: '0',
|
|
|
|
nonce: '100',
|
|
|
|
timeStamp: '16000000000000',
|
|
|
|
to: toAddress,
|
|
|
|
value: '0',
|
|
|
|
};
|
|
|
|
}
|
2020-10-30 15:17:36 +01:00
|
|
|
return {
|
|
|
|
blockNumber: blockNumber.toString(),
|
|
|
|
from: '0xfake',
|
|
|
|
gas: '0',
|
|
|
|
gasPrice: '0',
|
|
|
|
hash: '0xfake',
|
|
|
|
isError: '0',
|
|
|
|
nonce: '100',
|
|
|
|
timeStamp: '16000000000000',
|
|
|
|
to: toAddress,
|
|
|
|
value: '0',
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
|
|
|
};
|
2020-10-30 15:17:36 +01:00
|
|
|
|
2021-03-19 22:54:30 +01:00
|
|
|
function nockEtherscanApiForAllChains(mockResponse) {
|
2023-02-14 19:35:42 +01:00
|
|
|
Object.values(ETHERSCAN_SUPPORTED_NETWORKS).forEach(
|
|
|
|
({ domain, subdomain }) => {
|
|
|
|
nock(`https://${domain}.${subdomain}`)
|
|
|
|
.get(/api.+/u)
|
|
|
|
.reply(200, JSON.stringify(mockResponse));
|
|
|
|
},
|
|
|
|
);
|
2021-03-19 22:54:30 +01:00
|
|
|
}
|
|
|
|
|
Replace shared mocks in incoming transaction controller tests (#9754)
The shared mocks used previously in the incoming transaction controller
tests have been replaced with functions that can generate a new mock
for each test.
We should avoid ever sharing mocks between tests. It's quite easy for
a mock to get accidentally mutated or not correctly "reset" for the
next test, leading to test inter-dependencies and misleading results.
In particular, it is unsafe to share a `sinon` fake (e.g. a spy or
stub) because they can't be fully reset between tests. Or at least it's
difficult to reset them property, and it can't be done while also
following their recommendations for preventing memory leaks.
The spy API and all related state can be reset with `resetHistory`,
which can be called between each test. However `sinon` also recommends
calling `restore` after each test, and this will cause `sinon` to drop
its internal reference to the fake object, meaning any subsequent call
to `resetHistory` would fail. This is intentional, as it's required to
prevent memory from building up during the test run, but it also means
that sharing `sinon` fakes is particularly difficult to do safely.
Instead we should never share mocks in the first place, which has other
benefits anyway.
This was discovered while writing tests for #9583. I mistakenly
believed that `sinon.restore()` would reset the spy state, and this was
responsible for many hours of debugging test failures.
2020-10-29 16:16:04 +01:00
|
|
|
describe('IncomingTransactionsController', function () {
|
|
|
|
afterEach(function () {
|
2021-02-04 19:15:23 +01:00
|
|
|
sinon.restore();
|
|
|
|
nock.cleanAll();
|
|
|
|
});
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2020-02-11 17:51:13 +01:00
|
|
|
describe('constructor', function () {
|
|
|
|
it('should set up correct store, listeners and properties in the constructor', function () {
|
2021-03-19 22:54:30 +01:00
|
|
|
const mockedNetworkMethods = getMockNetworkControllerMethods();
|
2020-11-03 00:41:28 +01:00
|
|
|
const incomingTransactionsController = new IncomingTransactionsController(
|
|
|
|
{
|
|
|
|
blockTracker: getMockBlockTracker(),
|
2021-03-19 22:54:30 +01:00
|
|
|
...mockedNetworkMethods,
|
2020-11-03 00:41:28 +01:00
|
|
|
preferencesController: getMockPreferencesController(),
|
2022-12-02 18:59:03 +01:00
|
|
|
onboardingController: getMockOnboardingController(),
|
2020-11-03 00:41:28 +01:00
|
|
|
initState: {},
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
|
|
|
sinon.spy(incomingTransactionsController, '_update');
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2021-03-19 22:54:30 +01:00
|
|
|
assert.deepStrictEqual(
|
2020-11-03 00:41:28 +01:00
|
|
|
incomingTransactionsController.store.getState(),
|
|
|
|
getEmptyInitState(),
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2021-03-19 22:54:30 +01:00
|
|
|
assert(mockedNetworkMethods.onNetworkDidChange.calledOnce);
|
2022-07-31 20:26:40 +02:00
|
|
|
const networkControllerListenerCallback =
|
|
|
|
mockedNetworkMethods.onNetworkDidChange.getCall(0).args[0];
|
2021-03-19 22:54:30 +01:00
|
|
|
assert.strictEqual(incomingTransactionsController._update.callCount, 0);
|
2021-02-04 19:15:23 +01:00
|
|
|
networkControllerListenerCallback('testNetworkType');
|
2021-03-19 22:54:30 +01:00
|
|
|
assert.strictEqual(incomingTransactionsController._update.callCount, 1);
|
|
|
|
assert.deepStrictEqual(
|
2020-11-03 00:41:28 +01:00
|
|
|
incomingTransactionsController._update.getCall(0).args[0],
|
2021-03-19 22:54:30 +01:00
|
|
|
'0x0101',
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
incomingTransactionsController._update.resetHistory();
|
|
|
|
});
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2020-02-11 17:51:13 +01:00
|
|
|
it('should set the store to a provided initial state', function () {
|
2020-11-03 00:41:28 +01:00
|
|
|
const incomingTransactionsController = new IncomingTransactionsController(
|
|
|
|
{
|
|
|
|
blockTracker: getMockBlockTracker(),
|
2021-03-19 22:54:30 +01:00
|
|
|
...getMockNetworkControllerMethods(),
|
2020-11-03 00:41:28 +01:00
|
|
|
preferencesController: getMockPreferencesController(),
|
2022-12-02 18:59:03 +01:00
|
|
|
onboardingController: getMockOnboardingController(),
|
2020-11-03 00:41:28 +01:00
|
|
|
initState: getNonEmptyInitState(),
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2021-03-19 22:54:30 +01:00
|
|
|
assert.deepStrictEqual(
|
2020-11-03 00:41:28 +01:00
|
|
|
incomingTransactionsController.store.getState(),
|
|
|
|
getNonEmptyInitState(),
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2020-10-30 15:17:36 +01:00
|
|
|
describe('update events', function () {
|
|
|
|
it('should set up a listener for the latest block', async function () {
|
2020-11-03 00:41:28 +01:00
|
|
|
const incomingTransactionsController = new IncomingTransactionsController(
|
|
|
|
{
|
|
|
|
blockTracker: getMockBlockTracker(),
|
2021-03-19 22:54:30 +01:00
|
|
|
...getMockNetworkControllerMethods(),
|
2020-11-03 00:41:28 +01:00
|
|
|
preferencesController: getMockPreferencesController(),
|
2022-12-02 18:59:03 +01:00
|
|
|
onboardingController: getMockOnboardingController(),
|
2020-11-03 00:41:28 +01:00
|
|
|
initState: {},
|
2023-07-18 22:21:30 +02:00
|
|
|
getCurrentChainId: () => CHAIN_IDS.GOERLI,
|
2020-11-03 00:41:28 +01:00
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2019-08-20 20:52:00 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
incomingTransactionsController.start();
|
2019-08-20 20:52:00 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
assert(
|
|
|
|
incomingTransactionsController.blockTracker.addListener.calledOnce,
|
|
|
|
);
|
2021-03-19 22:54:30 +01:00
|
|
|
assert.strictEqual(
|
2020-11-03 00:41:28 +01:00
|
|
|
incomingTransactionsController.blockTracker.addListener.getCall(0)
|
|
|
|
.args[0],
|
|
|
|
'latest',
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
|
|
|
});
|
2020-10-30 15:17:36 +01:00
|
|
|
|
|
|
|
it('should update upon latest block when started and on supported network', async function () {
|
2020-11-03 00:41:28 +01:00
|
|
|
const incomingTransactionsController = new IncomingTransactionsController(
|
|
|
|
{
|
|
|
|
blockTracker: getMockBlockTracker(),
|
2022-09-29 05:26:01 +02:00
|
|
|
...getMockNetworkControllerMethods(CHAIN_IDS.GOERLI),
|
2020-11-03 00:41:28 +01:00
|
|
|
preferencesController: getMockPreferencesController(),
|
2022-12-02 18:59:03 +01:00
|
|
|
onboardingController: getMockOnboardingController(),
|
2020-11-03 00:41:28 +01:00
|
|
|
initState: getNonEmptyInitState(),
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2022-07-31 20:26:40 +02:00
|
|
|
const startBlock =
|
|
|
|
getNonEmptyInitState().incomingTxLastFetchedBlockByChainId[
|
2022-09-29 05:26:01 +02:00
|
|
|
CHAIN_IDS.GOERLI
|
2022-07-31 20:26:40 +02:00
|
|
|
];
|
2022-09-29 05:26:01 +02:00
|
|
|
nock('https://api-goerli.etherscan.io')
|
2020-11-03 00:41:28 +01:00
|
|
|
.get(
|
|
|
|
`/api?module=account&action=txlist&address=${MOCK_SELECTED_ADDRESS}&tag=latest&page=1&startBlock=${startBlock}`,
|
|
|
|
)
|
2020-10-30 15:17:36 +01:00
|
|
|
.reply(
|
|
|
|
200,
|
|
|
|
JSON.stringify({
|
|
|
|
status: '1',
|
2021-06-24 21:52:14 +02:00
|
|
|
result: [
|
|
|
|
getFakeEtherscanTransaction(),
|
|
|
|
getFakeEtherscanTransaction({
|
|
|
|
hash: '0xfakeeip1559',
|
|
|
|
useEIP1559: true,
|
|
|
|
}),
|
|
|
|
],
|
2020-10-30 15:17:36 +01:00
|
|
|
}),
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-11-03 00:41:28 +01:00
|
|
|
const updateStateStub = sinon.stub(
|
|
|
|
incomingTransactionsController.store,
|
|
|
|
'updateState',
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-11-03 00:41:28 +01:00
|
|
|
const updateStateCalled = waitUntilCalled(
|
|
|
|
updateStateStub,
|
|
|
|
incomingTransactionsController.store,
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-10-30 15:17:36 +01:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
incomingTransactionsController.start();
|
|
|
|
await updateStateCalled();
|
2020-10-30 15:17:36 +01:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
const actualState = incomingTransactionsController.store.getState();
|
|
|
|
const generatedTxId = actualState?.incomingTransactions?.['0xfake']?.id;
|
2020-10-30 15:17:36 +01:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
const actualStateWithoutGenerated = cloneDeep(actualState);
|
|
|
|
delete actualStateWithoutGenerated?.incomingTransactions?.['0xfake']?.id;
|
2021-06-24 21:52:14 +02:00
|
|
|
delete actualStateWithoutGenerated?.incomingTransactions?.[
|
|
|
|
'0xfakeeip1559'
|
|
|
|
]?.id;
|
2020-10-30 15:17:36 +01:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
assert.ok(
|
|
|
|
typeof generatedTxId === 'number' && generatedTxId > 0,
|
|
|
|
'Generated transaction ID should be a positive number',
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-10-30 15:17:36 +01:00
|
|
|
assert.deepStrictEqual(
|
|
|
|
actualStateWithoutGenerated,
|
|
|
|
{
|
|
|
|
incomingTransactions: {
|
|
|
|
...getNonEmptyInitState().incomingTransactions,
|
|
|
|
'0xfake': {
|
|
|
|
blockNumber: '10',
|
|
|
|
hash: '0xfake',
|
2022-09-29 05:26:01 +02:00
|
|
|
metamaskNetworkId: NETWORK_IDS.GOERLI,
|
|
|
|
chainId: CHAIN_IDS.GOERLI,
|
2023-01-18 15:47:29 +01:00
|
|
|
status: TransactionStatus.confirmed,
|
2020-10-30 15:17:36 +01:00
|
|
|
time: 16000000000000000,
|
2023-01-18 15:47:29 +01:00
|
|
|
type: TransactionType.incoming,
|
2020-10-30 15:17:36 +01:00
|
|
|
txParams: {
|
|
|
|
from: '0xfake',
|
|
|
|
gas: '0x0',
|
|
|
|
gasPrice: '0x0',
|
|
|
|
nonce: '0x64',
|
|
|
|
to: '0x0101',
|
|
|
|
value: '0x0',
|
|
|
|
},
|
|
|
|
},
|
2021-06-24 21:52:14 +02:00
|
|
|
'0xfakeeip1559': {
|
|
|
|
blockNumber: '10',
|
|
|
|
hash: '0xfakeeip1559',
|
2022-09-29 05:26:01 +02:00
|
|
|
metamaskNetworkId: NETWORK_IDS.GOERLI,
|
|
|
|
chainId: CHAIN_IDS.GOERLI,
|
2023-01-18 15:47:29 +01:00
|
|
|
status: TransactionStatus.confirmed,
|
2021-06-24 21:52:14 +02:00
|
|
|
time: 16000000000000000,
|
2023-01-18 15:47:29 +01:00
|
|
|
type: TransactionType.incoming,
|
2021-06-24 21:52:14 +02:00
|
|
|
txParams: {
|
|
|
|
from: '0xfake',
|
|
|
|
gas: '0x0',
|
|
|
|
maxFeePerGas: '0xa',
|
|
|
|
maxPriorityFeePerGas: '0x1',
|
|
|
|
nonce: '0x64',
|
|
|
|
to: '0x0101',
|
|
|
|
value: '0x0',
|
|
|
|
},
|
|
|
|
},
|
2020-10-30 15:17:36 +01:00
|
|
|
},
|
2021-03-19 22:54:30 +01:00
|
|
|
incomingTxLastFetchedBlockByChainId: {
|
|
|
|
...getNonEmptyInitState().incomingTxLastFetchedBlockByChainId,
|
2022-09-29 05:26:01 +02:00
|
|
|
[CHAIN_IDS.GOERLI]: 11,
|
2020-10-30 15:17:36 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
'State should have been updated after first block was received',
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
|
|
|
});
|
2020-10-30 15:17:36 +01:00
|
|
|
|
2020-10-31 01:58:12 +01:00
|
|
|
it('should not update upon latest block when started and not on supported network', async function () {
|
2020-11-03 00:41:28 +01:00
|
|
|
const incomingTransactionsController = new IncomingTransactionsController(
|
|
|
|
{
|
|
|
|
blockTracker: getMockBlockTracker(),
|
2021-03-19 22:54:30 +01:00
|
|
|
...getMockNetworkControllerMethods(),
|
2020-11-03 00:41:28 +01:00
|
|
|
preferencesController: getMockPreferencesController(),
|
2022-12-02 18:59:03 +01:00
|
|
|
onboardingController: getMockOnboardingController(),
|
2020-11-03 00:41:28 +01:00
|
|
|
initState: getNonEmptyInitState(),
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-10-31 01:58:12 +01:00
|
|
|
// reply with a valid request for any supported network, so that this test has every opportunity to fail
|
2021-03-19 22:54:30 +01:00
|
|
|
nockEtherscanApiForAllChains({
|
|
|
|
status: '1',
|
|
|
|
result: [getFakeEtherscanTransaction()],
|
|
|
|
});
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
const updateStateStub = sinon.stub(
|
|
|
|
incomingTransactionsController.store,
|
|
|
|
'updateState',
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-11-03 00:41:28 +01:00
|
|
|
const updateStateCalled = waitUntilCalled(
|
|
|
|
updateStateStub,
|
|
|
|
incomingTransactionsController.store,
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-11-03 00:41:28 +01:00
|
|
|
const putStateStub = sinon.stub(
|
|
|
|
incomingTransactionsController.store,
|
|
|
|
'putState',
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-11-03 00:41:28 +01:00
|
|
|
const putStateCalled = waitUntilCalled(
|
|
|
|
putStateStub,
|
|
|
|
incomingTransactionsController.store,
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-10-30 15:17:36 +01:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
incomingTransactionsController.start();
|
2020-10-30 15:17:36 +01:00
|
|
|
|
2020-10-31 01:58:12 +01:00
|
|
|
try {
|
|
|
|
await Promise.race([
|
2020-12-04 18:17:57 +01:00
|
|
|
updateStateCalled(),
|
|
|
|
putStateCalled(),
|
2020-10-31 01:58:12 +01:00
|
|
|
new Promise((_, reject) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
setTimeout(() => reject(new Error('TIMEOUT')), SET_STATE_TIMEOUT);
|
2020-10-31 01:58:12 +01:00
|
|
|
}),
|
2021-02-04 19:15:23 +01:00
|
|
|
]);
|
|
|
|
assert.fail('Update state should not have been called');
|
2020-10-31 01:58:12 +01:00
|
|
|
} catch (error) {
|
2021-02-04 19:15:23 +01:00
|
|
|
assert(error.message === 'TIMEOUT', 'TIMEOUT error should be thrown');
|
2020-10-31 01:58:12 +01:00
|
|
|
}
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
2020-10-30 15:17:36 +01:00
|
|
|
|
|
|
|
it('should not update upon latest block when started and incoming transactions disabled', async function () {
|
2020-11-03 00:41:28 +01:00
|
|
|
const incomingTransactionsController = new IncomingTransactionsController(
|
|
|
|
{
|
|
|
|
blockTracker: getMockBlockTracker(),
|
2021-03-19 22:54:30 +01:00
|
|
|
...getMockNetworkControllerMethods(),
|
2020-11-03 00:41:28 +01:00
|
|
|
preferencesController: getMockPreferencesController({
|
|
|
|
showIncomingTransactions: false,
|
|
|
|
}),
|
2022-12-02 18:59:03 +01:00
|
|
|
onboardingController: getMockOnboardingController(),
|
2020-11-03 00:41:28 +01:00
|
|
|
initState: getNonEmptyInitState(),
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-10-30 15:17:36 +01:00
|
|
|
// reply with a valid request for any supported network, so that this test has every opportunity to fail
|
2021-03-19 22:54:30 +01:00
|
|
|
nockEtherscanApiForAllChains({
|
|
|
|
status: '1',
|
|
|
|
result: [getFakeEtherscanTransaction()],
|
|
|
|
});
|
2020-11-03 00:41:28 +01:00
|
|
|
const updateStateStub = sinon.stub(
|
|
|
|
incomingTransactionsController.store,
|
|
|
|
'updateState',
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-11-03 00:41:28 +01:00
|
|
|
const updateStateCalled = waitUntilCalled(
|
|
|
|
updateStateStub,
|
|
|
|
incomingTransactionsController.store,
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-11-03 00:41:28 +01:00
|
|
|
const putStateStub = sinon.stub(
|
|
|
|
incomingTransactionsController.store,
|
|
|
|
'putState',
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-11-03 00:41:28 +01:00
|
|
|
const putStateCalled = waitUntilCalled(
|
|
|
|
putStateStub,
|
|
|
|
incomingTransactionsController.store,
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-10-30 15:17:36 +01:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
incomingTransactionsController.start();
|
2020-10-30 15:17:36 +01:00
|
|
|
|
|
|
|
try {
|
|
|
|
await Promise.race([
|
2020-12-04 18:17:57 +01:00
|
|
|
updateStateCalled(),
|
|
|
|
putStateCalled(),
|
2020-10-30 15:17:36 +01:00
|
|
|
new Promise((_, reject) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
setTimeout(() => reject(new Error('TIMEOUT')), SET_STATE_TIMEOUT);
|
2020-10-30 15:17:36 +01:00
|
|
|
}),
|
2021-02-04 19:15:23 +01:00
|
|
|
]);
|
|
|
|
assert.fail('Update state should not have been called');
|
2020-10-30 15:17:36 +01:00
|
|
|
} catch (error) {
|
2021-02-04 19:15:23 +01:00
|
|
|
assert(error.message === 'TIMEOUT', 'TIMEOUT error should be thrown');
|
2020-10-30 15:17:36 +01:00
|
|
|
}
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
2020-10-30 15:17:36 +01:00
|
|
|
|
|
|
|
it('should not update upon latest block when not started', async function () {
|
2020-11-03 00:41:28 +01:00
|
|
|
const incomingTransactionsController = new IncomingTransactionsController(
|
|
|
|
{
|
|
|
|
blockTracker: getMockBlockTracker(),
|
2022-09-29 05:26:01 +02:00
|
|
|
...getMockNetworkControllerMethods(CHAIN_IDS.GOERLI),
|
2020-11-03 00:41:28 +01:00
|
|
|
preferencesController: getMockPreferencesController(),
|
2022-12-02 18:59:03 +01:00
|
|
|
onboardingController: getMockOnboardingController(),
|
2020-11-03 00:41:28 +01:00
|
|
|
initState: getNonEmptyInitState(),
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-10-30 15:17:36 +01:00
|
|
|
// reply with a valid request for any supported network, so that this test has every opportunity to fail
|
2021-03-19 22:54:30 +01:00
|
|
|
nockEtherscanApiForAllChains({
|
|
|
|
status: '1',
|
|
|
|
result: [getFakeEtherscanTransaction()],
|
|
|
|
});
|
2020-11-03 00:41:28 +01:00
|
|
|
const updateStateStub = sinon.stub(
|
|
|
|
incomingTransactionsController.store,
|
|
|
|
'updateState',
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-11-03 00:41:28 +01:00
|
|
|
const updateStateCalled = waitUntilCalled(
|
|
|
|
updateStateStub,
|
|
|
|
incomingTransactionsController.store,
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-11-03 00:41:28 +01:00
|
|
|
const putStateStub = sinon.stub(
|
|
|
|
incomingTransactionsController.store,
|
|
|
|
'putState',
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-11-03 00:41:28 +01:00
|
|
|
const putStateCalled = waitUntilCalled(
|
|
|
|
putStateStub,
|
|
|
|
incomingTransactionsController.store,
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-10-30 15:17:36 +01:00
|
|
|
|
|
|
|
try {
|
|
|
|
await Promise.race([
|
2020-12-04 18:17:57 +01:00
|
|
|
updateStateCalled(),
|
|
|
|
putStateCalled(),
|
2020-10-30 15:17:36 +01:00
|
|
|
new Promise((_, reject) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
setTimeout(() => reject(new Error('TIMEOUT')), SET_STATE_TIMEOUT);
|
2020-10-30 15:17:36 +01:00
|
|
|
}),
|
2021-02-04 19:15:23 +01:00
|
|
|
]);
|
|
|
|
assert.fail('Update state should not have been called');
|
2020-10-30 15:17:36 +01:00
|
|
|
} catch (error) {
|
2021-02-04 19:15:23 +01:00
|
|
|
assert(error.message === 'TIMEOUT', 'TIMEOUT error should be thrown');
|
2020-10-30 15:17:36 +01:00
|
|
|
}
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
2020-10-30 15:17:36 +01:00
|
|
|
|
|
|
|
it('should not update upon latest block when stopped', async function () {
|
2020-11-03 00:41:28 +01:00
|
|
|
const incomingTransactionsController = new IncomingTransactionsController(
|
|
|
|
{
|
|
|
|
blockTracker: getMockBlockTracker(),
|
2022-09-29 05:26:01 +02:00
|
|
|
...getMockNetworkControllerMethods(CHAIN_IDS.GOERLI),
|
2020-11-03 00:41:28 +01:00
|
|
|
preferencesController: getMockPreferencesController(),
|
2022-12-02 18:59:03 +01:00
|
|
|
onboardingController: getMockOnboardingController(),
|
2020-11-03 00:41:28 +01:00
|
|
|
initState: getNonEmptyInitState(),
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-10-30 15:17:36 +01:00
|
|
|
// reply with a valid request for any supported network, so that this test has every opportunity to fail
|
2021-03-19 22:54:30 +01:00
|
|
|
nockEtherscanApiForAllChains({
|
|
|
|
status: '1',
|
|
|
|
result: [getFakeEtherscanTransaction()],
|
|
|
|
});
|
2020-11-03 00:41:28 +01:00
|
|
|
const updateStateStub = sinon.stub(
|
|
|
|
incomingTransactionsController.store,
|
|
|
|
'updateState',
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-11-03 00:41:28 +01:00
|
|
|
const updateStateCalled = waitUntilCalled(
|
|
|
|
updateStateStub,
|
|
|
|
incomingTransactionsController.store,
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-11-03 00:41:28 +01:00
|
|
|
const putStateStub = sinon.stub(
|
|
|
|
incomingTransactionsController.store,
|
|
|
|
'putState',
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-11-03 00:41:28 +01:00
|
|
|
const putStateCalled = waitUntilCalled(
|
|
|
|
putStateStub,
|
|
|
|
incomingTransactionsController.store,
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-10-30 15:17:36 +01:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
incomingTransactionsController.stop();
|
2020-10-30 15:17:36 +01:00
|
|
|
|
|
|
|
try {
|
|
|
|
await Promise.race([
|
2020-12-04 18:17:57 +01:00
|
|
|
updateStateCalled(),
|
|
|
|
putStateCalled(),
|
2020-10-30 15:17:36 +01:00
|
|
|
new Promise((_, reject) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
setTimeout(() => reject(new Error('TIMEOUT')), SET_STATE_TIMEOUT);
|
2020-10-30 15:17:36 +01:00
|
|
|
}),
|
2021-02-04 19:15:23 +01:00
|
|
|
]);
|
|
|
|
assert.fail('Update state should not have been called');
|
2020-10-30 15:17:36 +01:00
|
|
|
} catch (error) {
|
2021-02-04 19:15:23 +01:00
|
|
|
assert(error.message === 'TIMEOUT', 'TIMEOUT error should be thrown');
|
2020-10-30 15:17:36 +01:00
|
|
|
}
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
2020-10-30 15:17:36 +01:00
|
|
|
|
|
|
|
it('should update when the selected address changes and on supported network', async function () {
|
2020-11-03 00:41:28 +01:00
|
|
|
const incomingTransactionsController = new IncomingTransactionsController(
|
|
|
|
{
|
|
|
|
blockTracker: getMockBlockTracker(),
|
2022-09-29 05:26:01 +02:00
|
|
|
...getMockNetworkControllerMethods(CHAIN_IDS.GOERLI),
|
2020-11-03 00:41:28 +01:00
|
|
|
preferencesController: getMockPreferencesController(),
|
2022-12-02 18:59:03 +01:00
|
|
|
onboardingController: getMockOnboardingController(),
|
2020-11-03 00:41:28 +01:00
|
|
|
initState: getNonEmptyInitState(),
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
|
|
|
const NEW_MOCK_SELECTED_ADDRESS = `${MOCK_SELECTED_ADDRESS}9`;
|
2022-07-31 20:26:40 +02:00
|
|
|
const startBlock =
|
|
|
|
getNonEmptyInitState().incomingTxLastFetchedBlockByChainId[
|
2022-09-29 05:26:01 +02:00
|
|
|
CHAIN_IDS.GOERLI
|
2022-07-31 20:26:40 +02:00
|
|
|
];
|
2022-09-29 05:26:01 +02:00
|
|
|
nock('https://api-goerli.etherscan.io')
|
2020-11-03 00:41:28 +01:00
|
|
|
.get(
|
|
|
|
`/api?module=account&action=txlist&address=${NEW_MOCK_SELECTED_ADDRESS}&tag=latest&page=1&startBlock=${startBlock}`,
|
|
|
|
)
|
2020-10-30 15:17:36 +01:00
|
|
|
.reply(
|
|
|
|
200,
|
|
|
|
JSON.stringify({
|
|
|
|
status: '1',
|
2021-06-24 21:52:14 +02:00
|
|
|
result: [
|
|
|
|
getFakeEtherscanTransaction({
|
|
|
|
toAddress: NEW_MOCK_SELECTED_ADDRESS,
|
|
|
|
}),
|
|
|
|
],
|
2020-10-30 15:17:36 +01:00
|
|
|
}),
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-11-03 00:41:28 +01:00
|
|
|
const updateStateStub = sinon.stub(
|
|
|
|
incomingTransactionsController.store,
|
|
|
|
'updateState',
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-11-03 00:41:28 +01:00
|
|
|
const updateStateCalled = waitUntilCalled(
|
|
|
|
updateStateStub,
|
|
|
|
incomingTransactionsController.store,
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-10-30 15:17:36 +01:00
|
|
|
|
2022-07-31 20:26:40 +02:00
|
|
|
const subscription =
|
|
|
|
incomingTransactionsController.preferencesController.store.subscribe.getCall(
|
|
|
|
1,
|
|
|
|
).args[0];
|
2020-10-30 15:17:36 +01:00
|
|
|
// The incoming transactions controller will always skip the first event
|
|
|
|
// We need to call subscription twice to test the event handling
|
|
|
|
// TODO: stop skipping the first event
|
2021-02-04 19:15:23 +01:00
|
|
|
await subscription({ selectedAddress: MOCK_SELECTED_ADDRESS });
|
|
|
|
await subscription({ selectedAddress: NEW_MOCK_SELECTED_ADDRESS });
|
|
|
|
await updateStateCalled();
|
2020-10-30 15:17:36 +01:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
const actualState = incomingTransactionsController.store.getState();
|
|
|
|
const generatedTxId = actualState?.incomingTransactions?.['0xfake']?.id;
|
2020-10-30 15:17:36 +01:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
const actualStateWithoutGenerated = cloneDeep(actualState);
|
|
|
|
delete actualStateWithoutGenerated?.incomingTransactions?.['0xfake']?.id;
|
2020-10-30 15:17:36 +01:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
assert.ok(
|
|
|
|
typeof generatedTxId === 'number' && generatedTxId > 0,
|
|
|
|
'Generated transaction ID should be a positive number',
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-10-30 15:17:36 +01:00
|
|
|
assert.deepStrictEqual(
|
|
|
|
actualStateWithoutGenerated,
|
|
|
|
{
|
|
|
|
incomingTransactions: {
|
|
|
|
...getNonEmptyInitState().incomingTransactions,
|
|
|
|
'0xfake': {
|
|
|
|
blockNumber: '10',
|
|
|
|
hash: '0xfake',
|
2022-09-29 05:26:01 +02:00
|
|
|
metamaskNetworkId: NETWORK_IDS.GOERLI,
|
|
|
|
chainId: CHAIN_IDS.GOERLI,
|
2023-01-18 15:47:29 +01:00
|
|
|
status: TransactionStatus.confirmed,
|
2020-10-30 15:17:36 +01:00
|
|
|
time: 16000000000000000,
|
2023-01-18 15:47:29 +01:00
|
|
|
type: TransactionType.incoming,
|
2020-10-30 15:17:36 +01:00
|
|
|
txParams: {
|
|
|
|
from: '0xfake',
|
|
|
|
gas: '0x0',
|
|
|
|
gasPrice: '0x0',
|
|
|
|
nonce: '0x64',
|
|
|
|
to: '0x01019',
|
|
|
|
value: '0x0',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-03-19 22:54:30 +01:00
|
|
|
incomingTxLastFetchedBlockByChainId: {
|
|
|
|
...getNonEmptyInitState().incomingTxLastFetchedBlockByChainId,
|
2022-09-29 05:26:01 +02:00
|
|
|
[CHAIN_IDS.GOERLI]: 11,
|
2020-10-30 15:17:36 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
'State should have been updated after first block was received',
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
|
|
|
});
|
2020-10-30 15:17:36 +01:00
|
|
|
|
2020-10-31 01:58:12 +01:00
|
|
|
it('should not update when the selected address changes and not on supported network', async function () {
|
2020-11-03 00:41:28 +01:00
|
|
|
const incomingTransactionsController = new IncomingTransactionsController(
|
|
|
|
{
|
|
|
|
blockTracker: { ...getMockBlockTracker() },
|
2021-03-19 22:54:30 +01:00
|
|
|
...getMockNetworkControllerMethods(),
|
2020-11-03 00:41:28 +01:00
|
|
|
preferencesController: getMockPreferencesController(),
|
2022-12-02 18:59:03 +01:00
|
|
|
onboardingController: getMockOnboardingController(),
|
2020-11-03 00:41:28 +01:00
|
|
|
initState: getNonEmptyInitState(),
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
|
|
|
const NEW_MOCK_SELECTED_ADDRESS = `${MOCK_SELECTED_ADDRESS}9`;
|
2020-10-30 15:17:36 +01:00
|
|
|
// reply with a valid request for any supported network, so that this test has every opportunity to fail
|
2021-03-19 22:54:30 +01:00
|
|
|
nockEtherscanApiForAllChains({
|
|
|
|
status: '1',
|
2021-06-24 21:52:14 +02:00
|
|
|
result: [
|
|
|
|
getFakeEtherscanTransaction({ toAddress: NEW_MOCK_SELECTED_ADDRESS }),
|
|
|
|
],
|
2021-03-19 22:54:30 +01:00
|
|
|
});
|
2020-11-03 00:41:28 +01:00
|
|
|
const updateStateStub = sinon.stub(
|
|
|
|
incomingTransactionsController.store,
|
|
|
|
'updateState',
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-11-03 00:41:28 +01:00
|
|
|
const updateStateCalled = waitUntilCalled(
|
|
|
|
updateStateStub,
|
|
|
|
incomingTransactionsController.store,
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-11-03 00:41:28 +01:00
|
|
|
const putStateStub = sinon.stub(
|
|
|
|
incomingTransactionsController.store,
|
|
|
|
'putState',
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-11-03 00:41:28 +01:00
|
|
|
const putStateCalled = waitUntilCalled(
|
|
|
|
putStateStub,
|
|
|
|
incomingTransactionsController.store,
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-10-30 15:17:36 +01:00
|
|
|
|
2022-07-31 20:26:40 +02:00
|
|
|
const subscription =
|
|
|
|
incomingTransactionsController.preferencesController.store.subscribe.getCall(
|
|
|
|
1,
|
|
|
|
).args[0];
|
2020-10-30 15:17:36 +01:00
|
|
|
// The incoming transactions controller will always skip the first event
|
|
|
|
// We need to call subscription twice to test the event handling
|
|
|
|
// TODO: stop skipping the first event
|
2021-02-04 19:15:23 +01:00
|
|
|
await subscription({ selectedAddress: MOCK_SELECTED_ADDRESS });
|
|
|
|
await subscription({ selectedAddress: NEW_MOCK_SELECTED_ADDRESS });
|
2020-10-30 15:17:36 +01:00
|
|
|
|
2020-10-31 01:58:12 +01:00
|
|
|
try {
|
|
|
|
await Promise.race([
|
2020-12-04 18:17:57 +01:00
|
|
|
updateStateCalled(),
|
|
|
|
putStateCalled(),
|
2020-10-31 01:58:12 +01:00
|
|
|
new Promise((_, reject) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
setTimeout(() => reject(new Error('TIMEOUT')), SET_STATE_TIMEOUT);
|
2020-10-31 01:58:12 +01:00
|
|
|
}),
|
2021-02-04 19:15:23 +01:00
|
|
|
]);
|
|
|
|
assert.fail('Update state should not have been called');
|
2020-10-31 01:58:12 +01:00
|
|
|
} catch (error) {
|
2021-02-04 19:15:23 +01:00
|
|
|
assert(error.message === 'TIMEOUT', 'TIMEOUT error should be thrown');
|
2020-10-31 01:58:12 +01:00
|
|
|
}
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
2020-10-30 15:17:36 +01:00
|
|
|
|
|
|
|
it('should update when switching to a supported network', async function () {
|
2022-09-14 16:55:31 +02:00
|
|
|
const mockedNetworkMethods = getMockNetworkControllerMethods(
|
2022-09-29 05:26:01 +02:00
|
|
|
CHAIN_IDS.GOERLI,
|
2022-09-14 16:55:31 +02:00
|
|
|
);
|
2020-11-03 00:41:28 +01:00
|
|
|
const incomingTransactionsController = new IncomingTransactionsController(
|
|
|
|
{
|
|
|
|
blockTracker: getMockBlockTracker(),
|
2021-03-19 22:54:30 +01:00
|
|
|
...mockedNetworkMethods,
|
2020-11-03 00:41:28 +01:00
|
|
|
preferencesController: getMockPreferencesController(),
|
2022-12-02 18:59:03 +01:00
|
|
|
onboardingController: getMockOnboardingController(),
|
2020-11-03 00:41:28 +01:00
|
|
|
initState: getNonEmptyInitState(),
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2022-07-31 20:26:40 +02:00
|
|
|
const startBlock =
|
|
|
|
getNonEmptyInitState().incomingTxLastFetchedBlockByChainId[
|
2022-09-29 05:26:01 +02:00
|
|
|
CHAIN_IDS.GOERLI
|
2022-07-31 20:26:40 +02:00
|
|
|
];
|
2022-09-29 05:26:01 +02:00
|
|
|
nock('https://api-goerli.etherscan.io')
|
2020-11-03 00:41:28 +01:00
|
|
|
.get(
|
|
|
|
`/api?module=account&action=txlist&address=${MOCK_SELECTED_ADDRESS}&tag=latest&page=1&startBlock=${startBlock}`,
|
|
|
|
)
|
2020-10-30 15:17:36 +01:00
|
|
|
.reply(
|
|
|
|
200,
|
|
|
|
JSON.stringify({
|
|
|
|
status: '1',
|
|
|
|
result: [getFakeEtherscanTransaction()],
|
|
|
|
}),
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-11-03 00:41:28 +01:00
|
|
|
const updateStateStub = sinon.stub(
|
|
|
|
incomingTransactionsController.store,
|
|
|
|
'updateState',
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-11-03 00:41:28 +01:00
|
|
|
const updateStateCalled = waitUntilCalled(
|
|
|
|
updateStateStub,
|
|
|
|
incomingTransactionsController.store,
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-10-30 15:17:36 +01:00
|
|
|
|
2022-07-31 20:26:40 +02:00
|
|
|
const subscription =
|
|
|
|
mockedNetworkMethods.onNetworkDidChange.getCall(0).args[0];
|
2022-09-29 05:26:01 +02:00
|
|
|
await subscription(CHAIN_IDS.GOERLI);
|
2021-02-04 19:15:23 +01:00
|
|
|
await updateStateCalled();
|
2020-10-30 15:17:36 +01:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
const actualState = incomingTransactionsController.store.getState();
|
|
|
|
const generatedTxId = actualState?.incomingTransactions?.['0xfake']?.id;
|
2020-10-30 15:17:36 +01:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
const actualStateWithoutGenerated = cloneDeep(actualState);
|
|
|
|
delete actualStateWithoutGenerated?.incomingTransactions?.['0xfake']?.id;
|
2020-10-30 15:17:36 +01:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
assert.ok(
|
|
|
|
typeof generatedTxId === 'number' && generatedTxId > 0,
|
|
|
|
'Generated transaction ID should be a positive number',
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-10-30 15:17:36 +01:00
|
|
|
assert.deepStrictEqual(
|
|
|
|
actualStateWithoutGenerated,
|
|
|
|
{
|
|
|
|
incomingTransactions: {
|
|
|
|
...getNonEmptyInitState().incomingTransactions,
|
|
|
|
'0xfake': {
|
|
|
|
blockNumber: '10',
|
|
|
|
hash: '0xfake',
|
2022-09-29 05:26:01 +02:00
|
|
|
metamaskNetworkId: NETWORK_IDS.GOERLI,
|
|
|
|
chainId: CHAIN_IDS.GOERLI,
|
2023-01-18 15:47:29 +01:00
|
|
|
status: TransactionStatus.confirmed,
|
2020-10-30 15:17:36 +01:00
|
|
|
time: 16000000000000000,
|
2023-01-18 15:47:29 +01:00
|
|
|
type: TransactionType.incoming,
|
2020-10-30 15:17:36 +01:00
|
|
|
txParams: {
|
|
|
|
from: '0xfake',
|
|
|
|
gas: '0x0',
|
|
|
|
gasPrice: '0x0',
|
|
|
|
nonce: '0x64',
|
|
|
|
to: '0x0101',
|
|
|
|
value: '0x0',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-03-19 22:54:30 +01:00
|
|
|
incomingTxLastFetchedBlockByChainId: {
|
|
|
|
...getNonEmptyInitState().incomingTxLastFetchedBlockByChainId,
|
2022-09-29 05:26:01 +02:00
|
|
|
[CHAIN_IDS.GOERLI]: 11,
|
2020-10-30 15:17:36 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
'State should have been updated after first block was received',
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
|
|
|
});
|
2020-10-30 15:17:36 +01:00
|
|
|
|
2020-10-31 01:58:12 +01:00
|
|
|
it('should not update when switching to an unsupported network', async function () {
|
2022-09-14 16:55:31 +02:00
|
|
|
const mockedNetworkMethods = getMockNetworkControllerMethods(
|
2022-09-29 05:26:01 +02:00
|
|
|
CHAIN_IDS.GOERLI,
|
2022-09-14 16:55:31 +02:00
|
|
|
);
|
2020-11-03 00:41:28 +01:00
|
|
|
const incomingTransactionsController = new IncomingTransactionsController(
|
|
|
|
{
|
|
|
|
blockTracker: getMockBlockTracker(),
|
2021-03-19 22:54:30 +01:00
|
|
|
...mockedNetworkMethods,
|
2020-11-03 00:41:28 +01:00
|
|
|
preferencesController: getMockPreferencesController(),
|
2022-12-02 18:59:03 +01:00
|
|
|
onboardingController: getMockOnboardingController(),
|
2020-11-03 00:41:28 +01:00
|
|
|
initState: getNonEmptyInitState(),
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-10-30 15:17:36 +01:00
|
|
|
// reply with a valid request for any supported network, so that this test has every opportunity to fail
|
2021-03-19 22:54:30 +01:00
|
|
|
nockEtherscanApiForAllChains({
|
|
|
|
status: '1',
|
|
|
|
result: [getFakeEtherscanTransaction()],
|
|
|
|
});
|
2020-11-03 00:41:28 +01:00
|
|
|
const updateStateStub = sinon.stub(
|
|
|
|
incomingTransactionsController.store,
|
|
|
|
'updateState',
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-11-03 00:41:28 +01:00
|
|
|
const updateStateCalled = waitUntilCalled(
|
|
|
|
updateStateStub,
|
|
|
|
incomingTransactionsController.store,
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-11-03 00:41:28 +01:00
|
|
|
const putStateStub = sinon.stub(
|
|
|
|
incomingTransactionsController.store,
|
|
|
|
'putState',
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-11-03 00:41:28 +01:00
|
|
|
const putStateCalled = waitUntilCalled(
|
|
|
|
putStateStub,
|
|
|
|
incomingTransactionsController.store,
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-10-30 15:17:36 +01:00
|
|
|
|
2022-07-31 20:26:40 +02:00
|
|
|
const subscription =
|
|
|
|
mockedNetworkMethods.onNetworkDidChange.getCall(0).args[0];
|
2020-10-30 15:17:36 +01:00
|
|
|
|
2021-03-19 22:54:30 +01:00
|
|
|
incomingTransactionsController.getCurrentChainId = () => FAKE_CHAIN_ID;
|
2021-02-04 19:15:23 +01:00
|
|
|
await subscription();
|
2020-10-30 15:17:36 +01:00
|
|
|
|
2020-10-31 01:58:12 +01:00
|
|
|
try {
|
|
|
|
await Promise.race([
|
2020-12-04 18:17:57 +01:00
|
|
|
updateStateCalled(),
|
|
|
|
putStateCalled(),
|
2020-10-31 01:58:12 +01:00
|
|
|
new Promise((_, reject) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
setTimeout(() => reject(new Error('TIMEOUT')), SET_STATE_TIMEOUT);
|
2020-10-31 01:58:12 +01:00
|
|
|
}),
|
2021-02-04 19:15:23 +01:00
|
|
|
]);
|
|
|
|
assert.fail('Update state should not have been called');
|
2020-10-31 01:58:12 +01:00
|
|
|
} catch (error) {
|
2021-02-04 19:15:23 +01:00
|
|
|
assert(error.message === 'TIMEOUT', 'TIMEOUT error should be thrown');
|
2020-10-31 01:58:12 +01:00
|
|
|
}
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
|
|
|
});
|
2019-08-20 20:52:00 +02:00
|
|
|
|
2023-07-18 22:21:30 +02:00
|
|
|
describe('block explorer lookup', function () {
|
|
|
|
let sandbox;
|
|
|
|
|
|
|
|
beforeEach(function () {
|
|
|
|
sandbox = sinon.createSandbox();
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(function () {
|
|
|
|
sandbox.restore();
|
|
|
|
});
|
|
|
|
|
|
|
|
function stubFetch() {
|
|
|
|
return sandbox.stub(window, 'fetch');
|
|
|
|
}
|
|
|
|
|
|
|
|
function assertStubNotCalled(stub) {
|
|
|
|
assert(stub.callCount === 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
async function triggerUpdate(incomingTransactionsController) {
|
|
|
|
const subscription =
|
|
|
|
incomingTransactionsController.preferencesController.store.subscribe.getCall(
|
|
|
|
1,
|
|
|
|
).args[0];
|
|
|
|
|
|
|
|
// Sets address causing a call to _update
|
|
|
|
await subscription({ selectedAddress: MOCK_SELECTED_ADDRESS });
|
|
|
|
}
|
|
|
|
|
|
|
|
it('should not happen when incoming transactions feature is disabled', async function () {
|
|
|
|
const incomingTransactionsController = new IncomingTransactionsController(
|
|
|
|
{
|
|
|
|
...getDefaultControllerOpts(),
|
|
|
|
preferencesController: getMockPreferencesController({
|
|
|
|
showIncomingTransactions: false,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
);
|
|
|
|
const fetchStub = stubFetch();
|
|
|
|
await triggerUpdate(incomingTransactionsController);
|
|
|
|
assertStubNotCalled(fetchStub);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should not happen when onboarding is in progress', async function () {
|
|
|
|
const incomingTransactionsController = new IncomingTransactionsController(
|
|
|
|
{
|
|
|
|
...getDefaultControllerOpts(),
|
|
|
|
onboardingController: getMockOnboardingController({
|
|
|
|
completedOnboarding: false,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
const fetchStub = stubFetch();
|
|
|
|
await triggerUpdate(incomingTransactionsController);
|
|
|
|
assertStubNotCalled(fetchStub);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should not happen when chain id is not supported', async function () {
|
|
|
|
const incomingTransactionsController = new IncomingTransactionsController(
|
|
|
|
{
|
|
|
|
...getDefaultControllerOpts(),
|
|
|
|
getCurrentChainId: () => FAKE_CHAIN_ID,
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
const fetchStub = stubFetch();
|
|
|
|
await triggerUpdate(incomingTransactionsController);
|
|
|
|
assertStubNotCalled(fetchStub);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should make api call when chain id, incoming features, and onboarding status are ok', async function () {
|
|
|
|
const incomingTransactionsController = new IncomingTransactionsController(
|
|
|
|
{
|
|
|
|
...getDefaultControllerOpts(),
|
|
|
|
getCurrentChainId: () => CHAIN_IDS.GOERLI,
|
|
|
|
onboardingController: getMockOnboardingController({
|
|
|
|
completedOnboarding: true,
|
|
|
|
}),
|
|
|
|
preferencesController: getMockPreferencesController({
|
|
|
|
showIncomingTransactions: true,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
const fetchStub = stubFetch();
|
|
|
|
await triggerUpdate(incomingTransactionsController);
|
|
|
|
assert(fetchStub.callCount === 1);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2021-03-19 22:54:30 +01:00
|
|
|
describe('_update', function () {
|
|
|
|
describe('when state is empty (initialized)', function () {
|
|
|
|
it('should use provided block number and update the latest block seen', async function () {
|
2022-07-31 20:26:40 +02:00
|
|
|
const incomingTransactionsController =
|
|
|
|
new IncomingTransactionsController({
|
2021-03-19 22:54:30 +01:00
|
|
|
blockTracker: getMockBlockTracker(),
|
2022-09-29 05:26:01 +02:00
|
|
|
...getMockNetworkControllerMethods(CHAIN_IDS.GOERLI),
|
2021-03-19 22:54:30 +01:00
|
|
|
preferencesController: getMockPreferencesController(),
|
2022-12-02 18:59:03 +01:00
|
|
|
onboardingController: getMockOnboardingController(),
|
2021-03-19 22:54:30 +01:00
|
|
|
initState: getEmptyInitState(),
|
2022-09-29 05:26:01 +02:00
|
|
|
getCurrentChainId: () => CHAIN_IDS.GOERLI,
|
2022-07-31 20:26:40 +02:00
|
|
|
});
|
2021-03-19 22:54:30 +01:00
|
|
|
sinon.spy(incomingTransactionsController.store, 'updateState');
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2021-03-19 22:54:30 +01:00
|
|
|
incomingTransactionsController._getNewIncomingTransactions = sinon
|
|
|
|
.stub()
|
|
|
|
.returns([]);
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2021-03-19 22:54:30 +01:00
|
|
|
await incomingTransactionsController._update('fakeAddress', 999);
|
|
|
|
assert(
|
|
|
|
incomingTransactionsController._getNewIncomingTransactions.calledOnce,
|
|
|
|
);
|
|
|
|
assert.deepStrictEqual(
|
|
|
|
incomingTransactionsController._getNewIncomingTransactions.getCall(0)
|
|
|
|
.args,
|
2022-09-29 05:26:01 +02:00
|
|
|
['fakeAddress', 999, CHAIN_IDS.GOERLI],
|
2021-03-19 22:54:30 +01:00
|
|
|
);
|
|
|
|
assert.deepStrictEqual(
|
|
|
|
incomingTransactionsController.store.updateState.getCall(0).args[0],
|
|
|
|
{
|
|
|
|
incomingTxLastFetchedBlockByChainId: {
|
|
|
|
...EMPTY_BLOCKS_BY_NETWORK,
|
2022-09-29 05:26:01 +02:00
|
|
|
[CHAIN_IDS.GOERLI]: 1000,
|
2021-03-19 22:54:30 +01:00
|
|
|
},
|
|
|
|
incomingTransactions: {},
|
|
|
|
},
|
|
|
|
);
|
|
|
|
});
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2021-03-19 22:54:30 +01:00
|
|
|
it('should update the last fetched block for network to highest block seen in incoming txs', async function () {
|
2022-07-31 20:26:40 +02:00
|
|
|
const incomingTransactionsController =
|
|
|
|
new IncomingTransactionsController({
|
2021-03-19 22:54:30 +01:00
|
|
|
blockTracker: getMockBlockTracker(),
|
2022-09-29 05:26:01 +02:00
|
|
|
...getMockNetworkControllerMethods(CHAIN_IDS.GOERLI),
|
2021-03-19 22:54:30 +01:00
|
|
|
preferencesController: getMockPreferencesController(),
|
2022-12-02 18:59:03 +01:00
|
|
|
onboardingController: getMockOnboardingController(),
|
2021-03-19 22:54:30 +01:00
|
|
|
initState: getEmptyInitState(),
|
2022-09-29 05:26:01 +02:00
|
|
|
getCurrentChainId: () => CHAIN_IDS.GOERLI,
|
2022-07-31 20:26:40 +02:00
|
|
|
});
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2021-03-19 22:54:30 +01:00
|
|
|
const NEW_TRANSACTION_ONE = {
|
|
|
|
id: 555,
|
|
|
|
hash: '0xfff',
|
|
|
|
blockNumber: 444,
|
|
|
|
};
|
|
|
|
const NEW_TRANSACTION_TWO = {
|
|
|
|
id: 556,
|
|
|
|
hash: '0xffa',
|
|
|
|
blockNumber: 443,
|
|
|
|
};
|
|
|
|
|
|
|
|
sinon.spy(incomingTransactionsController.store, 'updateState');
|
|
|
|
|
|
|
|
incomingTransactionsController._getNewIncomingTransactions = sinon
|
|
|
|
.stub()
|
|
|
|
.returns([NEW_TRANSACTION_ONE, NEW_TRANSACTION_TWO]);
|
|
|
|
await incomingTransactionsController._update('fakeAddress', 10);
|
|
|
|
|
|
|
|
assert(incomingTransactionsController.store.updateState.calledOnce);
|
|
|
|
|
|
|
|
assert.deepStrictEqual(
|
|
|
|
incomingTransactionsController._getNewIncomingTransactions.getCall(0)
|
|
|
|
.args,
|
2022-09-29 05:26:01 +02:00
|
|
|
['fakeAddress', 10, CHAIN_IDS.GOERLI],
|
2021-03-19 22:54:30 +01:00
|
|
|
);
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2021-03-19 22:54:30 +01:00
|
|
|
assert.deepStrictEqual(
|
|
|
|
incomingTransactionsController.store.updateState.getCall(0).args[0],
|
|
|
|
{
|
|
|
|
incomingTxLastFetchedBlockByChainId: {
|
|
|
|
...EMPTY_BLOCKS_BY_NETWORK,
|
2022-09-29 05:26:01 +02:00
|
|
|
[CHAIN_IDS.GOERLI]: 445,
|
2021-03-19 22:54:30 +01:00
|
|
|
},
|
|
|
|
incomingTransactions: {
|
|
|
|
[NEW_TRANSACTION_ONE.hash]: NEW_TRANSACTION_ONE,
|
|
|
|
[NEW_TRANSACTION_TWO.hash]: NEW_TRANSACTION_TWO,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
);
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
2021-03-19 22:54:30 +01:00
|
|
|
});
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2021-03-19 22:54:30 +01:00
|
|
|
describe('when state is populated with prior data for network', function () {
|
|
|
|
it('should use the last fetched block for the current network and increment by 1 in state', async function () {
|
2022-07-31 20:26:40 +02:00
|
|
|
const incomingTransactionsController =
|
|
|
|
new IncomingTransactionsController({
|
2021-03-19 22:54:30 +01:00
|
|
|
blockTracker: getMockBlockTracker(),
|
2022-09-29 05:26:01 +02:00
|
|
|
...getMockNetworkControllerMethods(CHAIN_IDS.GOERLI),
|
2021-03-19 22:54:30 +01:00
|
|
|
preferencesController: getMockPreferencesController(),
|
2022-12-02 18:59:03 +01:00
|
|
|
onboardingController: getMockOnboardingController(),
|
2021-03-19 22:54:30 +01:00
|
|
|
initState: getNonEmptyInitState(),
|
2022-09-29 05:26:01 +02:00
|
|
|
getCurrentChainId: () => CHAIN_IDS.GOERLI,
|
2022-07-31 20:26:40 +02:00
|
|
|
});
|
2021-03-19 22:54:30 +01:00
|
|
|
sinon.spy(incomingTransactionsController.store, 'updateState');
|
|
|
|
incomingTransactionsController._getNewIncomingTransactions = sinon
|
|
|
|
.stub()
|
|
|
|
.returns([]);
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2021-03-19 22:54:30 +01:00
|
|
|
await incomingTransactionsController._update('fakeAddress', 999);
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2021-03-19 22:54:30 +01:00
|
|
|
assert(
|
|
|
|
incomingTransactionsController._getNewIncomingTransactions.calledOnce,
|
|
|
|
);
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2021-03-19 22:54:30 +01:00
|
|
|
assert.deepStrictEqual(
|
|
|
|
incomingTransactionsController._getNewIncomingTransactions.getCall(0)
|
|
|
|
.args,
|
2022-09-29 05:26:01 +02:00
|
|
|
['fakeAddress', 1, CHAIN_IDS.GOERLI],
|
2021-03-19 22:54:30 +01:00
|
|
|
);
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2021-03-19 22:54:30 +01:00
|
|
|
assert.deepStrictEqual(
|
|
|
|
incomingTransactionsController.store.updateState.getCall(0).args[0],
|
|
|
|
{
|
|
|
|
incomingTxLastFetchedBlockByChainId: {
|
|
|
|
...PREPOPULATED_BLOCKS_BY_NETWORK,
|
2022-09-29 05:26:01 +02:00
|
|
|
[CHAIN_IDS.GOERLI]:
|
|
|
|
PREPOPULATED_BLOCKS_BY_NETWORK[CHAIN_IDS.GOERLI] + 1,
|
2021-03-19 22:54:30 +01:00
|
|
|
},
|
|
|
|
incomingTransactions: PREPOPULATED_INCOMING_TXS_BY_HASH,
|
|
|
|
},
|
|
|
|
);
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
|
|
|
});
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2021-03-19 22:54:30 +01:00
|
|
|
it('should update the last fetched block for network to highest block seen in incoming txs', async function () {
|
2020-11-03 00:41:28 +01:00
|
|
|
const incomingTransactionsController = new IncomingTransactionsController(
|
|
|
|
{
|
|
|
|
blockTracker: getMockBlockTracker(),
|
2022-09-29 05:26:01 +02:00
|
|
|
...getMockNetworkControllerMethods(CHAIN_IDS.GOERLI),
|
2020-11-03 00:41:28 +01:00
|
|
|
preferencesController: getMockPreferencesController(),
|
2022-12-02 18:59:03 +01:00
|
|
|
onboardingController: getMockOnboardingController(),
|
2020-11-03 00:41:28 +01:00
|
|
|
initState: getNonEmptyInitState(),
|
2022-09-29 05:26:01 +02:00
|
|
|
getCurrentChainId: () => CHAIN_IDS.GOERLI,
|
2020-11-03 00:41:28 +01:00
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2021-03-19 22:54:30 +01:00
|
|
|
const NEW_TRANSACTION_ONE = {
|
|
|
|
id: 555,
|
|
|
|
hash: '0xfff',
|
|
|
|
blockNumber: 444,
|
|
|
|
};
|
|
|
|
const NEW_TRANSACTION_TWO = {
|
|
|
|
id: 556,
|
|
|
|
hash: '0xffa',
|
|
|
|
blockNumber: 443,
|
|
|
|
};
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
sinon.spy(incomingTransactionsController.store, 'updateState');
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2021-03-19 22:54:30 +01:00
|
|
|
incomingTransactionsController._getNewIncomingTransactions = sinon
|
|
|
|
.stub()
|
|
|
|
.returns([NEW_TRANSACTION_ONE, NEW_TRANSACTION_TWO]);
|
|
|
|
await incomingTransactionsController._update('fakeAddress', 10);
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
assert(incomingTransactionsController.store.updateState.calledOnce);
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2021-03-19 22:54:30 +01:00
|
|
|
assert.deepStrictEqual(
|
|
|
|
incomingTransactionsController._getNewIncomingTransactions.getCall(0)
|
|
|
|
.args,
|
2022-09-29 05:26:01 +02:00
|
|
|
['fakeAddress', 1, CHAIN_IDS.GOERLI],
|
2021-03-19 22:54:30 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
assert.deepStrictEqual(
|
2020-11-03 00:41:28 +01:00
|
|
|
incomingTransactionsController.store.updateState.getCall(0).args[0],
|
|
|
|
{
|
2021-03-19 22:54:30 +01:00
|
|
|
incomingTxLastFetchedBlockByChainId: {
|
|
|
|
...PREPOPULATED_BLOCKS_BY_NETWORK,
|
2022-09-29 05:26:01 +02:00
|
|
|
[CHAIN_IDS.GOERLI]: 445,
|
2020-11-03 00:41:28 +01:00
|
|
|
},
|
|
|
|
incomingTransactions: {
|
2021-03-19 22:54:30 +01:00
|
|
|
...PREPOPULATED_INCOMING_TXS_BY_HASH,
|
|
|
|
[NEW_TRANSACTION_ONE.hash]: NEW_TRANSACTION_ONE,
|
|
|
|
[NEW_TRANSACTION_TWO.hash]: NEW_TRANSACTION_TWO,
|
2020-11-03 00:41:28 +01:00
|
|
|
},
|
2019-08-16 20:54:10 +02:00
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2021-03-19 22:54:30 +01:00
|
|
|
describe('_getNewIncomingTransactions', function () {
|
|
|
|
const ADDRESS_TO_FETCH_FOR = '0xfakeaddress';
|
2021-06-24 21:52:14 +02:00
|
|
|
const FETCHED_TX = getFakeEtherscanTransaction({
|
|
|
|
toAddress: ADDRESS_TO_FETCH_FOR,
|
|
|
|
});
|
2020-11-03 00:41:28 +01:00
|
|
|
const mockFetch = sinon.stub().returns(
|
|
|
|
Promise.resolve({
|
2021-03-19 22:54:30 +01:00
|
|
|
json: () => Promise.resolve({ status: '1', result: [FETCHED_TX] }),
|
2020-11-03 00:41:28 +01:00
|
|
|
}),
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
|
|
|
let tempFetch;
|
2020-02-11 17:51:13 +01:00
|
|
|
beforeEach(function () {
|
2021-02-04 19:15:23 +01:00
|
|
|
tempFetch = window.fetch;
|
|
|
|
window.fetch = mockFetch;
|
|
|
|
});
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2020-02-11 17:51:13 +01:00
|
|
|
afterEach(function () {
|
2021-02-04 19:15:23 +01:00
|
|
|
window.fetch = tempFetch;
|
|
|
|
mockFetch.resetHistory();
|
|
|
|
});
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2021-03-19 22:54:30 +01:00
|
|
|
it('should call fetch with the expected url when passed an address, block number and supported chainId', async function () {
|
2020-11-03 00:41:28 +01:00
|
|
|
const incomingTransactionsController = new IncomingTransactionsController(
|
|
|
|
{
|
|
|
|
blockTracker: getMockBlockTracker(),
|
2022-09-29 05:26:01 +02:00
|
|
|
...getMockNetworkControllerMethods(CHAIN_IDS.GOERLI),
|
2020-11-03 00:41:28 +01:00
|
|
|
preferencesController: getMockPreferencesController(),
|
2022-12-02 18:59:03 +01:00
|
|
|
onboardingController: getMockOnboardingController(),
|
2020-11-03 00:41:28 +01:00
|
|
|
initState: getNonEmptyInitState(),
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2021-03-19 22:54:30 +01:00
|
|
|
await incomingTransactionsController._getNewIncomingTransactions(
|
|
|
|
ADDRESS_TO_FETCH_FOR,
|
2020-11-03 00:41:28 +01:00
|
|
|
'789',
|
2022-09-29 05:26:01 +02:00
|
|
|
CHAIN_IDS.GOERLI,
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
assert(mockFetch.calledOnce);
|
2021-03-19 22:54:30 +01:00
|
|
|
assert.strictEqual(
|
2020-11-03 00:41:28 +01:00
|
|
|
mockFetch.getCall(0).args[0],
|
2022-09-29 05:26:01 +02:00
|
|
|
`https://api-${NETWORK_TYPES.GOERLI}.etherscan.io/api?module=account&action=txlist&address=0xfakeaddress&tag=latest&page=1&startBlock=789`,
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
|
|
|
});
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2021-03-19 22:54:30 +01:00
|
|
|
it('should call fetch with the expected url when passed an address, block number and MAINNET chainId', async function () {
|
2020-11-03 00:41:28 +01:00
|
|
|
const incomingTransactionsController = new IncomingTransactionsController(
|
|
|
|
{
|
|
|
|
blockTracker: getMockBlockTracker(),
|
2022-09-14 16:55:31 +02:00
|
|
|
...getMockNetworkControllerMethods(CHAIN_IDS.MAINNET),
|
2020-11-03 00:41:28 +01:00
|
|
|
preferencesController: getMockPreferencesController(),
|
2022-12-02 18:59:03 +01:00
|
|
|
onboardingController: getMockOnboardingController(),
|
2020-11-03 00:41:28 +01:00
|
|
|
initState: getNonEmptyInitState(),
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2021-03-19 22:54:30 +01:00
|
|
|
await incomingTransactionsController._getNewIncomingTransactions(
|
|
|
|
ADDRESS_TO_FETCH_FOR,
|
2020-11-03 00:41:28 +01:00
|
|
|
'789',
|
2022-09-14 16:55:31 +02:00
|
|
|
CHAIN_IDS.MAINNET,
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
assert(mockFetch.calledOnce);
|
2021-03-19 22:54:30 +01:00
|
|
|
assert.strictEqual(
|
2020-11-03 00:41:28 +01:00
|
|
|
mockFetch.getCall(0).args[0],
|
|
|
|
`https://api.etherscan.io/api?module=account&action=txlist&address=0xfakeaddress&tag=latest&page=1&startBlock=789`,
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
|
|
|
});
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2021-03-19 22:54:30 +01:00
|
|
|
it('should call fetch with the expected url when passed an address and supported chainId, but a falsy block number', async function () {
|
2020-11-03 00:41:28 +01:00
|
|
|
const incomingTransactionsController = new IncomingTransactionsController(
|
|
|
|
{
|
|
|
|
blockTracker: getMockBlockTracker(),
|
2022-09-29 05:26:01 +02:00
|
|
|
...getMockNetworkControllerMethods(CHAIN_IDS.GOERLI),
|
2020-11-03 00:41:28 +01:00
|
|
|
preferencesController: getMockPreferencesController(),
|
2022-12-02 18:59:03 +01:00
|
|
|
onboardingController: getMockOnboardingController(),
|
2020-11-03 00:41:28 +01:00
|
|
|
initState: getNonEmptyInitState(),
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2021-03-19 22:54:30 +01:00
|
|
|
await incomingTransactionsController._getNewIncomingTransactions(
|
|
|
|
ADDRESS_TO_FETCH_FOR,
|
2020-11-03 00:41:28 +01:00
|
|
|
null,
|
2022-09-29 05:26:01 +02:00
|
|
|
CHAIN_IDS.GOERLI,
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
assert(mockFetch.calledOnce);
|
2021-03-19 22:54:30 +01:00
|
|
|
assert.strictEqual(
|
2020-11-03 00:41:28 +01:00
|
|
|
mockFetch.getCall(0).args[0],
|
2022-09-29 05:26:01 +02:00
|
|
|
`https://api-${NETWORK_TYPES.GOERLI}.etherscan.io/api?module=account&action=txlist&address=0xfakeaddress&tag=latest&page=1`,
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
|
|
|
});
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2021-03-19 22:54:30 +01:00
|
|
|
it('should return an array of normalized transactions', async function () {
|
2020-11-03 00:41:28 +01:00
|
|
|
const incomingTransactionsController = new IncomingTransactionsController(
|
|
|
|
{
|
|
|
|
blockTracker: getMockBlockTracker(),
|
2022-09-29 05:26:01 +02:00
|
|
|
...getMockNetworkControllerMethods(CHAIN_IDS.GOERLI),
|
2020-11-03 00:41:28 +01:00
|
|
|
preferencesController: getMockPreferencesController(),
|
2022-12-02 18:59:03 +01:00
|
|
|
onboardingController: getMockOnboardingController(),
|
2020-11-03 00:41:28 +01:00
|
|
|
initState: getNonEmptyInitState(),
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2022-07-31 20:26:40 +02:00
|
|
|
const result =
|
|
|
|
await incomingTransactionsController._getNewIncomingTransactions(
|
|
|
|
ADDRESS_TO_FETCH_FOR,
|
|
|
|
'789',
|
2022-09-29 05:26:01 +02:00
|
|
|
CHAIN_IDS.GOERLI,
|
2022-07-31 20:26:40 +02:00
|
|
|
);
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
assert(mockFetch.calledOnce);
|
2021-03-19 22:54:30 +01:00
|
|
|
assert.deepStrictEqual(result, [
|
|
|
|
incomingTransactionsController._normalizeTxFromEtherscan(
|
|
|
|
FETCHED_TX,
|
2022-09-29 05:26:01 +02:00
|
|
|
CHAIN_IDS.GOERLI,
|
2021-03-19 22:54:30 +01:00
|
|
|
),
|
|
|
|
]);
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2021-03-19 22:54:30 +01:00
|
|
|
it('should return empty tx array if status is 0', async function () {
|
|
|
|
const mockFetchStatusZero = sinon.stub().returns(
|
|
|
|
Promise.resolve({
|
|
|
|
json: () => Promise.resolve({ status: '0', result: [FETCHED_TX] }),
|
|
|
|
}),
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2021-03-19 22:54:30 +01:00
|
|
|
const tempFetchStatusZero = window.fetch;
|
|
|
|
window.fetch = mockFetchStatusZero;
|
2020-11-03 00:41:28 +01:00
|
|
|
const incomingTransactionsController = new IncomingTransactionsController(
|
|
|
|
{
|
|
|
|
blockTracker: getMockBlockTracker(),
|
2022-09-29 05:26:01 +02:00
|
|
|
...getMockNetworkControllerMethods(CHAIN_IDS.GOERLI),
|
2020-11-03 00:41:28 +01:00
|
|
|
preferencesController: getMockPreferencesController(),
|
2022-12-02 18:59:03 +01:00
|
|
|
onboardingController: getMockOnboardingController(),
|
2020-11-03 00:41:28 +01:00
|
|
|
initState: getNonEmptyInitState(),
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2022-07-31 20:26:40 +02:00
|
|
|
const result =
|
|
|
|
await incomingTransactionsController._getNewIncomingTransactions(
|
|
|
|
ADDRESS_TO_FETCH_FOR,
|
|
|
|
'789',
|
2022-09-29 05:26:01 +02:00
|
|
|
CHAIN_IDS.GOERLI,
|
2022-07-31 20:26:40 +02:00
|
|
|
);
|
2021-03-19 22:54:30 +01:00
|
|
|
assert.deepStrictEqual(result, []);
|
|
|
|
window.fetch = tempFetchStatusZero;
|
|
|
|
mockFetchStatusZero.reset();
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2021-03-19 22:54:30 +01:00
|
|
|
it('should return empty tx array if result array is empty', async function () {
|
|
|
|
const mockFetchEmptyResult = sinon.stub().returns(
|
|
|
|
Promise.resolve({
|
|
|
|
json: () => Promise.resolve({ status: '1', result: [] }),
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
const tempFetchEmptyResult = window.fetch;
|
|
|
|
window.fetch = mockFetchEmptyResult;
|
2020-11-03 00:41:28 +01:00
|
|
|
const incomingTransactionsController = new IncomingTransactionsController(
|
|
|
|
{
|
|
|
|
blockTracker: getMockBlockTracker(),
|
2022-09-29 05:26:01 +02:00
|
|
|
...getMockNetworkControllerMethods(CHAIN_IDS.GOERLI),
|
2020-11-03 00:41:28 +01:00
|
|
|
preferencesController: getMockPreferencesController(),
|
2022-12-02 18:59:03 +01:00
|
|
|
onboardingController: getMockOnboardingController(),
|
2020-11-03 00:41:28 +01:00
|
|
|
initState: getNonEmptyInitState(),
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2022-07-31 20:26:40 +02:00
|
|
|
const result =
|
|
|
|
await incomingTransactionsController._getNewIncomingTransactions(
|
|
|
|
ADDRESS_TO_FETCH_FOR,
|
|
|
|
'789',
|
2022-09-29 05:26:01 +02:00
|
|
|
CHAIN_IDS.GOERLI,
|
2022-07-31 20:26:40 +02:00
|
|
|
);
|
2021-03-19 22:54:30 +01:00
|
|
|
assert.deepStrictEqual(result, []);
|
|
|
|
window.fetch = tempFetchEmptyResult;
|
|
|
|
mockFetchEmptyResult.reset();
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
|
|
|
});
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2020-02-11 17:51:13 +01:00
|
|
|
describe('_normalizeTxFromEtherscan', function () {
|
|
|
|
it('should return the expected data when the tx is in error', function () {
|
2020-11-03 00:41:28 +01:00
|
|
|
const incomingTransactionsController = new IncomingTransactionsController(
|
|
|
|
{
|
|
|
|
blockTracker: getMockBlockTracker(),
|
2022-09-29 05:26:01 +02:00
|
|
|
...getMockNetworkControllerMethods(CHAIN_IDS.GOERLI),
|
2020-11-03 00:41:28 +01:00
|
|
|
preferencesController: getMockPreferencesController(),
|
2022-12-02 18:59:03 +01:00
|
|
|
onboardingController: getMockOnboardingController(),
|
2020-11-03 00:41:28 +01:00
|
|
|
initState: getNonEmptyInitState(),
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
const result = incomingTransactionsController._normalizeTxFromEtherscan(
|
|
|
|
{
|
|
|
|
timeStamp: '4444',
|
|
|
|
isError: '1',
|
|
|
|
blockNumber: 333,
|
|
|
|
from: '0xa',
|
|
|
|
gas: '11',
|
|
|
|
gasPrice: '12',
|
|
|
|
nonce: '13',
|
|
|
|
to: '0xe',
|
|
|
|
value: '15',
|
|
|
|
hash: '0xg',
|
|
|
|
},
|
2022-09-29 05:26:01 +02:00
|
|
|
CHAIN_IDS.GOERLI,
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2021-03-19 22:54:30 +01:00
|
|
|
assert.deepStrictEqual(result, {
|
2019-08-16 20:54:10 +02:00
|
|
|
blockNumber: 333,
|
|
|
|
id: 54321,
|
2022-09-29 05:26:01 +02:00
|
|
|
metamaskNetworkId: NETWORK_IDS.GOERLI,
|
|
|
|
chainId: CHAIN_IDS.GOERLI,
|
2023-01-18 15:47:29 +01:00
|
|
|
status: TransactionStatus.failed,
|
2019-08-16 20:54:10 +02:00
|
|
|
time: 4444000,
|
|
|
|
txParams: {
|
|
|
|
from: '0xa',
|
|
|
|
gas: '0xb',
|
|
|
|
gasPrice: '0xc',
|
|
|
|
nonce: '0xd',
|
|
|
|
to: '0xe',
|
|
|
|
value: '0xf',
|
|
|
|
},
|
|
|
|
hash: '0xg',
|
2023-01-18 15:47:29 +01:00
|
|
|
type: TransactionType.incoming,
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
|
|
|
});
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2020-02-11 17:51:13 +01:00
|
|
|
it('should return the expected data when the tx is not in error', function () {
|
2020-11-03 00:41:28 +01:00
|
|
|
const incomingTransactionsController = new IncomingTransactionsController(
|
|
|
|
{
|
|
|
|
blockTracker: getMockBlockTracker(),
|
2022-09-29 05:26:01 +02:00
|
|
|
...getMockNetworkControllerMethods(CHAIN_IDS.GOERLI),
|
2020-11-03 00:41:28 +01:00
|
|
|
preferencesController: getMockPreferencesController(),
|
2022-12-02 18:59:03 +01:00
|
|
|
onboardingController: getMockOnboardingController(),
|
2020-11-03 00:41:28 +01:00
|
|
|
initState: getNonEmptyInitState(),
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
const result = incomingTransactionsController._normalizeTxFromEtherscan(
|
|
|
|
{
|
|
|
|
timeStamp: '4444',
|
|
|
|
isError: '0',
|
|
|
|
blockNumber: 333,
|
|
|
|
from: '0xa',
|
|
|
|
gas: '11',
|
|
|
|
gasPrice: '12',
|
|
|
|
nonce: '13',
|
|
|
|
to: '0xe',
|
|
|
|
value: '15',
|
|
|
|
hash: '0xg',
|
|
|
|
},
|
2022-09-29 05:26:01 +02:00
|
|
|
CHAIN_IDS.GOERLI,
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2019-08-16 20:54:10 +02:00
|
|
|
|
2021-03-19 22:54:30 +01:00
|
|
|
assert.deepStrictEqual(result, {
|
2019-08-16 20:54:10 +02:00
|
|
|
blockNumber: 333,
|
|
|
|
id: 54321,
|
2022-09-29 05:26:01 +02:00
|
|
|
metamaskNetworkId: NETWORK_IDS.GOERLI,
|
|
|
|
chainId: CHAIN_IDS.GOERLI,
|
2023-01-18 15:47:29 +01:00
|
|
|
status: TransactionStatus.confirmed,
|
2019-08-16 20:54:10 +02:00
|
|
|
time: 4444000,
|
|
|
|
txParams: {
|
|
|
|
from: '0xa',
|
|
|
|
gas: '0xb',
|
|
|
|
gasPrice: '0xc',
|
|
|
|
nonce: '0xd',
|
|
|
|
to: '0xe',
|
|
|
|
value: '0xf',
|
|
|
|
},
|
|
|
|
hash: '0xg',
|
2023-01-18 15:47:29 +01:00
|
|
|
type: TransactionType.incoming,
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
|
|
|
});
|
2021-06-24 21:52:14 +02:00
|
|
|
|
|
|
|
it('should return the expected data when the tx uses EIP-1559 fields', function () {
|
|
|
|
const incomingTransactionsController = new IncomingTransactionsController(
|
|
|
|
{
|
|
|
|
blockTracker: getMockBlockTracker(),
|
2022-09-29 05:26:01 +02:00
|
|
|
...getMockNetworkControllerMethods(CHAIN_IDS.GOERLI),
|
2021-06-24 21:52:14 +02:00
|
|
|
preferencesController: getMockPreferencesController(),
|
2022-12-02 18:59:03 +01:00
|
|
|
onboardingController: getMockOnboardingController(),
|
2021-06-24 21:52:14 +02:00
|
|
|
initState: getNonEmptyInitState(),
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
const result = incomingTransactionsController._normalizeTxFromEtherscan(
|
|
|
|
{
|
|
|
|
timeStamp: '4444',
|
|
|
|
isError: '0',
|
|
|
|
blockNumber: 333,
|
|
|
|
from: '0xa',
|
|
|
|
gas: '11',
|
|
|
|
maxFeePerGas: '12',
|
|
|
|
maxPriorityFeePerGas: '1',
|
|
|
|
nonce: '13',
|
|
|
|
to: '0xe',
|
|
|
|
value: '15',
|
|
|
|
hash: '0xg',
|
|
|
|
},
|
2022-09-29 05:26:01 +02:00
|
|
|
CHAIN_IDS.GOERLI,
|
2021-06-24 21:52:14 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
assert.deepStrictEqual(result, {
|
|
|
|
blockNumber: 333,
|
|
|
|
id: 54321,
|
2022-09-29 05:26:01 +02:00
|
|
|
metamaskNetworkId: NETWORK_IDS.GOERLI,
|
|
|
|
chainId: CHAIN_IDS.GOERLI,
|
2023-01-18 15:47:29 +01:00
|
|
|
status: TransactionStatus.confirmed,
|
2021-06-24 21:52:14 +02:00
|
|
|
time: 4444000,
|
|
|
|
txParams: {
|
|
|
|
from: '0xa',
|
|
|
|
gas: '0xb',
|
|
|
|
maxFeePerGas: '0xc',
|
|
|
|
maxPriorityFeePerGas: '0x1',
|
|
|
|
nonce: '0xd',
|
|
|
|
to: '0xe',
|
|
|
|
value: '0xf',
|
|
|
|
},
|
|
|
|
hash: '0xg',
|
2023-01-18 15:47:29 +01:00
|
|
|
type: TransactionType.incoming,
|
2021-06-24 21:52:14 +02:00
|
|
|
});
|
|
|
|
});
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
|
|
|
});
|