1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-21 17:37:01 +01:00

Fix #19647 - Allow importing multiple tokens (#20224)

This commit is contained in:
David Walsh 2023-08-03 09:20:34 -05:00 committed by GitHub
parent 72cc669ef6
commit 840eb632c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 68 additions and 25 deletions

View File

@ -0,0 +1,61 @@
const { strict: assert } = require('assert');
const {
withFixtures,
convertToHexValue,
regularDelayMs,
unlockWallet,
} = require('../helpers');
const FixtureBuilder = require('../fixture-builder');
describe('Import flow', function () {
const ganacheOptions = {
accounts: [
{
secretKey:
'0x7C9529A67102755B7E6102D6D950AC5D5863C98713805CEC576B945B15B71EAC',
balance: convertToHexValue(25000000000000000000),
},
],
};
it('allows importing multiple tokens from search', async function () {
await withFixtures(
{
fixtures: new FixtureBuilder().build(),
ganacheOptions,
title: this.test.title,
},
async ({ driver }) => {
await driver.navigate();
await unlockWallet(driver);
// Token list is only on mainnet
await driver.clickElement('[data-testid="network-display"]');
await driver.clickElement({ text: 'Ethereum Mainnet', tag: 'button' });
// Wait for network to change and token list to load from state
await driver.delay(regularDelayMs);
await driver.clickElement('[data-testid="import-token-button"]');
await driver.fill('input[placeholder="Search tokens"]', 'cha');
await driver.clickElement('.token-list__token');
await driver.clickElement('.token-list__token:nth-of-type(2)');
await driver.clickElement('.token-list__token:nth-of-type(3)');
await driver.clickElement({ css: 'button', text: 'Next' });
await driver.clickElement({ css: 'button', text: 'Import' });
await driver.clickElement('.asset-breadcrumb');
// Wait for "loading tokens" to be gone
await driver.waitForElementNotPresent(
'[data-testid="token-list-loading-message"]',
);
const items = await driver.findElements('.multichain-token-list-item');
assert.equal(items.length, 4);
},
);
});
});

View File

@ -36,6 +36,7 @@ export default function TokenList({ onTokenClick }) {
alignItems={AlignItems.center}
justifyContent={JustifyContent.center}
padding={7}
data-testid="token-list-loading-message"
>
{t('loadingTokens')}
</Box>

View File

@ -12,7 +12,7 @@ import { I18nContext } from '../../contexts/i18n';
import { MetaMetricsContext } from '../../contexts/metametrics';
import { getMostRecentOverviewPage } from '../../ducks/history/history';
import { getPendingTokens } from '../../ducks/metamask/metamask';
import { addTokens, clearPendingTokens } from '../../store/actions';
import { addImportedTokens, clearPendingTokens } from '../../store/actions';
import {
MetaMetricsEventCategory,
MetaMetricsEventName,
@ -37,9 +37,9 @@ const ConfirmImportToken = () => {
const pendingTokens = useSelector(getPendingTokens);
const handleAddTokens = useCallback(async () => {
await dispatch(addTokens(pendingTokens));
const addedTokenValues = Object.values(pendingTokens);
await dispatch(addImportedTokens(addedTokenValues));
const firstTokenAddress = addedTokenValues?.[0].address?.toLowerCase();
addedTokenValues.forEach((pendingToken) => {

View File

@ -5,7 +5,7 @@ import {
ASSET_ROUTE,
IMPORT_TOKEN_ROUTE,
} from '../../helpers/constants/routes';
import { addTokens, clearPendingTokens } from '../../store/actions';
import { addImportedTokens, clearPendingTokens } from '../../store/actions';
import configureStore from '../../store/store';
import { renderWithProvider } from '../../../test/jest';
import ConfirmImportToken from '.';
@ -26,7 +26,7 @@ const MOCK_PENDING_TOKENS = {
};
jest.mock('../../store/actions', () => ({
addTokens: jest.fn().mockReturnValue({ type: 'test' }),
addImportedTokens: jest.fn().mockReturnValue({ type: 'test' }),
clearPendingTokens: jest
.fn()
.mockReturnValue({ type: 'CLEAR_PENDING_TOKENS' }),
@ -118,7 +118,7 @@ describe('ConfirmImportToken Component', () => {
await fireEvent.click(importTokensBtn);
expect(addTokens).toHaveBeenCalled();
expect(addImportedTokens).toHaveBeenCalled();
expect(clearPendingTokens).toHaveBeenCalled();
expect(mockHistoryPush).toHaveBeenCalledTimes(1);
expect(mockHistoryPush).toHaveBeenCalledWith(

View File

@ -2043,25 +2043,6 @@ export async function getTokenStandardAndDetails(
]);
}
export function addTokens(
tokens: Token[] | { [address: string]: Token },
): ThunkAction<void, MetaMaskReduxState, unknown, AnyAction> {
return (dispatch: MetaMaskReduxDispatch) => {
if (Array.isArray(tokens)) {
return Promise.all(
tokens.map(({ address, symbol, decimals }) =>
dispatch(addToken(address, symbol, decimals)),
),
);
}
return Promise.all(
Object.entries(tokens).map(([_, { address, symbol, decimals }]) =>
dispatch(addToken(address, symbol, decimals)),
),
);
};
}
export function clearPendingTokens(): Action {
return {
type: actionConstants.CLEAR_PENDING_TOKENS,