2021-04-28 21:53:59 +02:00
|
|
|
import mockState from '../../test/data/mock-state.json';
|
2021-10-13 16:25:27 +02:00
|
|
|
import { KEYRING_TYPES } from '../../shared/constants/hardware-wallets';
|
2021-03-16 22:00:08 +01:00
|
|
|
import * as selectors from './selectors';
|
2019-07-31 21:56:44 +02:00
|
|
|
|
2021-04-15 20:01:46 +02:00
|
|
|
describe('Selectors', () => {
|
|
|
|
describe('#getSelectedAddress', () => {
|
|
|
|
it('returns undefined if selectedAddress is undefined', () => {
|
|
|
|
expect(selectors.getSelectedAddress({ metamask: {} })).toBeUndefined();
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
2020-05-05 16:05:16 +02:00
|
|
|
|
2021-04-15 20:01:46 +02:00
|
|
|
it('returns selectedAddress', () => {
|
2021-02-04 19:15:23 +01:00
|
|
|
const selectedAddress = '0x0dcd5d886577d5081b0c52e242ef29e70be3e7bc';
|
2021-04-15 20:01:46 +02:00
|
|
|
expect(
|
2020-11-03 00:41:28 +01:00
|
|
|
selectors.getSelectedAddress({ metamask: { selectedAddress } }),
|
2021-04-15 20:01:46 +02:00
|
|
|
).toStrictEqual(selectedAddress);
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
|
|
|
});
|
2020-05-05 16:05:16 +02:00
|
|
|
|
2021-05-12 17:17:17 +02:00
|
|
|
describe('#isHardwareWallet', () => {
|
|
|
|
it('returns false if it is not a HW wallet', () => {
|
|
|
|
mockState.metamask.keyrings[0].type = 'Simple Key Pair';
|
|
|
|
expect(selectors.isHardwareWallet(mockState)).toBe(false);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('returns true if it is a Ledger HW wallet', () => {
|
2021-10-13 16:25:27 +02:00
|
|
|
mockState.metamask.keyrings[0].type = KEYRING_TYPES.LEDGER;
|
2021-05-12 17:17:17 +02:00
|
|
|
expect(selectors.isHardwareWallet(mockState)).toBe(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('returns true if it is a Trezor HW wallet', () => {
|
2021-10-13 16:25:27 +02:00
|
|
|
mockState.metamask.keyrings[0].type = KEYRING_TYPES.TREZOR;
|
2021-05-12 17:17:17 +02:00
|
|
|
expect(selectors.isHardwareWallet(mockState)).toBe(true);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('#getHardwareWalletType', () => {
|
|
|
|
it('returns undefined if it is not a HW wallet', () => {
|
|
|
|
mockState.metamask.keyrings[0].type = 'Simple Key Pair';
|
|
|
|
expect(selectors.getHardwareWalletType(mockState)).toBeUndefined();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('returns "Ledger Hardware" if it is a Ledger HW wallet', () => {
|
2021-10-13 16:25:27 +02:00
|
|
|
mockState.metamask.keyrings[0].type = KEYRING_TYPES.LEDGER;
|
2021-05-12 17:17:17 +02:00
|
|
|
expect(selectors.getHardwareWalletType(mockState)).toBe(
|
2021-10-13 16:25:27 +02:00
|
|
|
KEYRING_TYPES.LEDGER,
|
2021-05-12 17:17:17 +02:00
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('returns "Trezor Hardware" if it is a Trezor HW wallet', () => {
|
2021-10-13 16:25:27 +02:00
|
|
|
mockState.metamask.keyrings[0].type = KEYRING_TYPES.TREZOR;
|
2021-05-12 17:17:17 +02:00
|
|
|
expect(selectors.getHardwareWalletType(mockState)).toBe(
|
2021-10-13 16:25:27 +02:00
|
|
|
KEYRING_TYPES.TREZOR,
|
2021-05-12 17:17:17 +02:00
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2021-04-15 20:01:46 +02:00
|
|
|
it('returns selected identity', () => {
|
|
|
|
expect(selectors.getSelectedIdentity(mockState)).toStrictEqual({
|
2020-11-03 00:41:28 +01:00
|
|
|
address: '0x0dcd5d886577d5081b0c52e242ef29e70be3e7bc',
|
|
|
|
name: 'Test Account',
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
|
|
|
});
|
2020-05-05 16:05:16 +02:00
|
|
|
|
2021-04-15 20:01:46 +02:00
|
|
|
it('returns selected account', () => {
|
2021-02-04 19:15:23 +01:00
|
|
|
const account = selectors.getSelectedAccount(mockState);
|
2021-04-15 20:01:46 +02:00
|
|
|
expect(account.balance).toStrictEqual('0x0');
|
|
|
|
expect(account.address).toStrictEqual(
|
2020-12-03 16:46:22 +01:00
|
|
|
'0x0dcd5d886577d5081b0c52e242ef29e70be3e7bc',
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
|
|
|
});
|
2020-05-05 16:05:16 +02:00
|
|
|
|
2021-04-15 20:01:46 +02:00
|
|
|
describe('#getTokenExchangeRates', () => {
|
|
|
|
it('returns token exchange rates', () => {
|
2021-02-04 19:15:23 +01:00
|
|
|
const tokenExchangeRates = selectors.getTokenExchangeRates(mockState);
|
2021-04-15 20:01:46 +02:00
|
|
|
expect(tokenExchangeRates).toStrictEqual({
|
2020-05-29 00:08:11 +02:00
|
|
|
'0x108cf70c7d384c552f42c07c41c0e1e46d77ea0d': 0.00039345803819379796,
|
|
|
|
'0xd8f6a2ffb0fc5952d16c9768b71cfd35b6399aa5': 0.00008189274407698049,
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2020-05-05 16:05:16 +02:00
|
|
|
|
2021-09-30 13:57:59 +02:00
|
|
|
describe('#checkNetworkOrAccountNotSupports1559', () => {
|
|
|
|
it('returns false if network and account supports EIP-1559', () => {
|
|
|
|
const not1559Network = selectors.checkNetworkOrAccountNotSupports1559({
|
|
|
|
...mockState,
|
|
|
|
metamask: {
|
|
|
|
...mockState.metamask,
|
|
|
|
keyrings: [
|
|
|
|
{
|
2021-10-13 16:25:27 +02:00
|
|
|
type: KEYRING_TYPES.LEDGER,
|
2021-09-30 13:57:59 +02:00
|
|
|
accounts: ['0x0dcd5d886577d5081b0c52e242ef29e70be3e7bc'],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
});
|
|
|
|
expect(not1559Network).toStrictEqual(false);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('returns true if network does not support EIP-1559', () => {
|
|
|
|
let not1559Network = selectors.checkNetworkOrAccountNotSupports1559({
|
|
|
|
...mockState,
|
|
|
|
metamask: {
|
|
|
|
...mockState.metamask,
|
|
|
|
networkDetails: {
|
2021-12-09 03:46:54 +01:00
|
|
|
EIPS: { 1559: false },
|
2021-09-30 13:57:59 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
expect(not1559Network).toStrictEqual(true);
|
|
|
|
not1559Network = selectors.checkNetworkOrAccountNotSupports1559({
|
|
|
|
...mockState,
|
|
|
|
metamask: {
|
|
|
|
...mockState.metamask,
|
|
|
|
networkDetails: {
|
|
|
|
EIPS: { 1559: false },
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
expect(not1559Network).toStrictEqual(true);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2021-04-15 20:01:46 +02:00
|
|
|
describe('#getAddressBook', () => {
|
|
|
|
it('should return the address book', () => {
|
|
|
|
expect(selectors.getAddressBook(mockState)).toStrictEqual([
|
2020-11-03 00:41:28 +01:00
|
|
|
{
|
|
|
|
address: '0xc42edfcc21ed14dda456aa0756c153f7985d8813',
|
2022-09-29 05:26:01 +02:00
|
|
|
chainId: '0x5',
|
2020-11-03 00:41:28 +01:00
|
|
|
isEns: false,
|
|
|
|
memo: '',
|
|
|
|
name: 'Address Book Account 1',
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
]);
|
|
|
|
});
|
|
|
|
});
|
2020-05-05 16:05:16 +02:00
|
|
|
|
2021-04-15 20:01:46 +02:00
|
|
|
it('returns accounts with balance, address, and name from identity and accounts in state', () => {
|
2022-07-31 20:26:40 +02:00
|
|
|
const accountsWithSendEther =
|
|
|
|
selectors.accountsWithSendEtherInfoSelector(mockState);
|
2022-09-27 17:03:26 +02:00
|
|
|
expect(accountsWithSendEther).toHaveLength(4);
|
2021-04-15 20:01:46 +02:00
|
|
|
expect(accountsWithSendEther[0].balance).toStrictEqual('0x0');
|
|
|
|
expect(accountsWithSendEther[0].address).toStrictEqual(
|
2020-11-03 00:41:28 +01:00
|
|
|
'0x0dcd5d886577d5081b0c52e242ef29e70be3e7bc',
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2021-04-15 20:01:46 +02:00
|
|
|
expect(accountsWithSendEther[0].name).toStrictEqual('Test Account');
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
2020-05-05 16:05:16 +02:00
|
|
|
|
2021-04-15 20:01:46 +02:00
|
|
|
it('returns selected account with balance, address, and name from accountsWithSendEtherInfoSelector', () => {
|
2022-07-31 20:26:40 +02:00
|
|
|
const currentAccountwithSendEther =
|
|
|
|
selectors.getCurrentAccountWithSendEtherInfo(mockState);
|
2021-04-15 20:01:46 +02:00
|
|
|
expect(currentAccountwithSendEther.balance).toStrictEqual('0x0');
|
|
|
|
expect(currentAccountwithSendEther.address).toStrictEqual(
|
2020-11-03 00:41:28 +01:00
|
|
|
'0x0dcd5d886577d5081b0c52e242ef29e70be3e7bc',
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2021-04-15 20:01:46 +02:00
|
|
|
expect(currentAccountwithSendEther.name).toStrictEqual('Test Account');
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
2020-05-05 16:05:16 +02:00
|
|
|
|
2021-04-15 20:01:46 +02:00
|
|
|
it('#getGasIsLoading', () => {
|
2021-02-04 19:15:23 +01:00
|
|
|
const gasIsLoading = selectors.getGasIsLoading(mockState);
|
2021-04-15 20:01:46 +02:00
|
|
|
expect(gasIsLoading).toStrictEqual(false);
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
2020-05-05 16:05:16 +02:00
|
|
|
|
2021-04-15 20:01:46 +02:00
|
|
|
it('#getCurrentCurrency', () => {
|
2021-02-04 19:15:23 +01:00
|
|
|
const currentCurrency = selectors.getCurrentCurrency(mockState);
|
2021-04-15 20:01:46 +02:00
|
|
|
expect(currentCurrency).toStrictEqual('usd');
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
2020-05-05 16:05:16 +02:00
|
|
|
|
2021-04-15 20:01:46 +02:00
|
|
|
it('#getTotalUnapprovedCount', () => {
|
2021-02-04 19:15:23 +01:00
|
|
|
const totalUnapprovedCount = selectors.getTotalUnapprovedCount(mockState);
|
2021-04-15 20:01:46 +02:00
|
|
|
expect(totalUnapprovedCount).toStrictEqual(1);
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
2021-09-09 22:56:27 +02:00
|
|
|
|
|
|
|
it('#getUseTokenDetection', () => {
|
|
|
|
const useTokenDetection = selectors.getUseTokenDetection(mockState);
|
|
|
|
expect(useTokenDetection).toStrictEqual(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('#getTokenList', () => {
|
|
|
|
const tokenList = selectors.getTokenList(mockState);
|
|
|
|
expect(tokenList).toStrictEqual({
|
|
|
|
'0x2260fac5e5542a773aa44fbcfedf7c193bc2c599': {
|
|
|
|
address: '0x2260fac5e5542a773aa44fbcfedf7c193bc2c599',
|
|
|
|
symbol: 'WBTC',
|
|
|
|
decimals: 8,
|
|
|
|
name: 'Wrapped Bitcoin',
|
|
|
|
iconUrl: 'https://s3.amazonaws.com/airswap-token-images/WBTC.png',
|
|
|
|
aggregators: [
|
|
|
|
'airswapLight',
|
|
|
|
'bancor',
|
|
|
|
'cmc',
|
|
|
|
'coinGecko',
|
|
|
|
'kleros',
|
|
|
|
'oneInch',
|
|
|
|
'paraswap',
|
|
|
|
'pmm',
|
|
|
|
'totle',
|
|
|
|
'zapper',
|
|
|
|
'zerion',
|
|
|
|
'zeroEx',
|
|
|
|
],
|
|
|
|
occurrences: 12,
|
|
|
|
},
|
|
|
|
'0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e': {
|
|
|
|
address: '0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e',
|
|
|
|
symbol: 'YFI',
|
|
|
|
decimals: 18,
|
|
|
|
name: 'yearn.finance',
|
|
|
|
iconUrl:
|
|
|
|
'https://raw.githubusercontent.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0bc529c00C6401aEF6D220BE8C6Ea1667F6Ad93e/logo.png',
|
|
|
|
aggregators: [
|
|
|
|
'airswapLight',
|
|
|
|
'bancor',
|
|
|
|
'cmc',
|
|
|
|
'coinGecko',
|
|
|
|
'kleros',
|
|
|
|
'oneInch',
|
|
|
|
'paraswap',
|
|
|
|
'pmm',
|
|
|
|
'totle',
|
|
|
|
'zapper',
|
|
|
|
'zerion',
|
|
|
|
'zeroEx',
|
|
|
|
],
|
|
|
|
occurrences: 12,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
});
|
2021-11-11 20:18:50 +01:00
|
|
|
it('#getAdvancedGasFeeValues', () => {
|
|
|
|
const advancedGasFee = selectors.getAdvancedGasFeeValues(mockState);
|
|
|
|
expect(advancedGasFee).toStrictEqual({
|
2022-01-10 20:34:54 +01:00
|
|
|
maxBaseFee: '75',
|
2021-11-11 20:18:50 +01:00
|
|
|
priorityFee: '2',
|
|
|
|
});
|
|
|
|
});
|
|
|
|
it('#getIsAdvancedGasFeeDefault', () => {
|
2022-07-31 20:26:40 +02:00
|
|
|
const isAdvancedGasFeeDefault =
|
|
|
|
selectors.getIsAdvancedGasFeeDefault(mockState);
|
2021-11-11 20:18:50 +01:00
|
|
|
expect(isAdvancedGasFeeDefault).toStrictEqual(true);
|
|
|
|
});
|
2022-01-06 03:47:26 +01:00
|
|
|
it('#getAppIsLoading', () => {
|
|
|
|
const appIsLoading = selectors.getAppIsLoading(mockState);
|
|
|
|
expect(appIsLoading).toStrictEqual(false);
|
|
|
|
});
|
2022-06-01 19:09:13 +02:00
|
|
|
it('#getNotifications', () => {
|
|
|
|
const notifications = selectors.getNotifications(mockState);
|
|
|
|
|
|
|
|
expect(notifications).toStrictEqual([
|
|
|
|
mockState.metamask.notifications.test,
|
|
|
|
mockState.metamask.notifications.test2,
|
|
|
|
]);
|
|
|
|
});
|
|
|
|
it('#getUnreadNotificationsCount', () => {
|
2022-07-31 20:26:40 +02:00
|
|
|
const unreadNotificationCount =
|
|
|
|
selectors.getUnreadNotificationsCount(mockState);
|
2022-06-01 19:09:13 +02:00
|
|
|
|
|
|
|
expect(unreadNotificationCount).toStrictEqual(1);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('#getUnreadNotifications', () => {
|
|
|
|
const unreadNotifications = selectors.getUnreadNotifications(mockState);
|
|
|
|
|
|
|
|
expect(unreadNotifications).toStrictEqual([
|
|
|
|
mockState.metamask.notifications.test,
|
|
|
|
]);
|
|
|
|
});
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|