mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-26 20:39:08 +01:00
d6b49ae383
The `HardwareKeyringTypes` constant has been renamed to `KeyringTypes` and moved to a separate constants module, to reflect that it contains more than just hardware wallet keyring types. This corrects a mistake made recently during a TypeScript conversion.
233 lines
6.5 KiB
JavaScript
233 lines
6.5 KiB
JavaScript
import React from 'react';
|
|
import configureMockStore from 'redux-mock-store';
|
|
import thunk from 'redux-thunk';
|
|
import { fireEvent, waitFor } from '@testing-library/react';
|
|
import { CHAIN_IDS } from '../../../../shared/constants/network';
|
|
import { renderWithProvider } from '../../../../test/jest/rendering';
|
|
import { KeyringType } from '../../../../shared/constants/keyring';
|
|
import TokenOverview from './token-overview';
|
|
|
|
// Mock BUYABLE_CHAINS_MAP
|
|
jest.mock('../../../../shared/constants/network', () => ({
|
|
...jest.requireActual('../../../../shared/constants/network'),
|
|
BUYABLE_CHAINS_MAP: {
|
|
// MAINNET
|
|
'0x1': {
|
|
nativeCurrency: 'ETH',
|
|
network: 'ethereum',
|
|
},
|
|
// POLYGON
|
|
'0x89': {
|
|
nativeCurrency: 'MATIC',
|
|
network: 'polygon',
|
|
},
|
|
},
|
|
}));
|
|
|
|
describe('TokenOverview', () => {
|
|
const mockStore = {
|
|
metamask: {
|
|
provider: {
|
|
type: 'test',
|
|
chainId: CHAIN_IDS.MAINNET,
|
|
},
|
|
preferences: {
|
|
useNativeCurrencyAsPrimaryCurrency: true,
|
|
},
|
|
identities: {
|
|
'0x1': {
|
|
address: '0x1',
|
|
},
|
|
},
|
|
selectedAddress: '0x1',
|
|
keyrings: [
|
|
{
|
|
type: KeyringType.hdKeyTree,
|
|
accounts: ['0x1', '0x2'],
|
|
},
|
|
{
|
|
type: KeyringType.ledger,
|
|
accounts: [],
|
|
},
|
|
],
|
|
contractExchangeRates: {},
|
|
},
|
|
};
|
|
|
|
const store = configureMockStore([thunk])(mockStore);
|
|
|
|
afterEach(() => {
|
|
store.clearActions();
|
|
});
|
|
|
|
describe('TokenOverview', () => {
|
|
beforeAll(() => {
|
|
jest.clearAllMocks();
|
|
Object.defineProperty(global, 'platform', {
|
|
value: {
|
|
openTab: jest.fn(),
|
|
},
|
|
});
|
|
});
|
|
|
|
const token = {
|
|
name: 'test',
|
|
isERC721: false,
|
|
address: '0x01',
|
|
symbol: 'test',
|
|
};
|
|
|
|
it('should not show a modal when token passed in props is not an ERC721', () => {
|
|
renderWithProvider(<TokenOverview token={token} />, store);
|
|
|
|
const actions = store.getActions();
|
|
expect(actions).toHaveLength(0);
|
|
});
|
|
|
|
it('should show ConvertTokenToNFT modal when token passed in props is an ERC721', () => {
|
|
const nftToken = {
|
|
...token,
|
|
isERC721: true,
|
|
};
|
|
renderWithProvider(<TokenOverview token={nftToken} />, store);
|
|
|
|
const actions = store.getActions();
|
|
expect(actions).toHaveLength(1);
|
|
expect(actions[0].type).toBe('UI_MODAL_OPEN');
|
|
expect(actions[0].payload).toStrictEqual({
|
|
name: 'CONVERT_TOKEN_TO_NFT',
|
|
tokenAddress: '0x01',
|
|
});
|
|
});
|
|
|
|
it('should always show the Buy button regardless of chain Id', () => {
|
|
const mockedStoreWithUnbuyableChainId = {
|
|
metamask: {
|
|
...mockStore.metamask,
|
|
provider: { type: 'test', chainId: CHAIN_IDS.PALM },
|
|
},
|
|
};
|
|
const mockedStore = configureMockStore([thunk])(
|
|
mockedStoreWithUnbuyableChainId,
|
|
);
|
|
|
|
const { queryByTestId } = renderWithProvider(
|
|
<TokenOverview token={token} />,
|
|
mockedStore,
|
|
);
|
|
const buyButton = queryByTestId('token-overview-buy');
|
|
expect(buyButton).toBeInTheDocument();
|
|
});
|
|
|
|
it('should always show the Buy button regardless of token type', () => {
|
|
const nftToken = {
|
|
...token,
|
|
isERC721: true,
|
|
};
|
|
|
|
const { queryByTestId } = renderWithProvider(
|
|
<TokenOverview token={nftToken} />,
|
|
store,
|
|
);
|
|
const buyButton = queryByTestId('token-overview-buy');
|
|
expect(buyButton).toBeInTheDocument();
|
|
});
|
|
|
|
it('should have the Buy token button disabled if chain id is not part of supported buyable chains', () => {
|
|
const mockedStoreWithUnbuyableChainId = {
|
|
metamask: {
|
|
...mockStore.metamask,
|
|
provider: { type: 'test', chainId: CHAIN_IDS.FANTOM },
|
|
},
|
|
};
|
|
const mockedStore = configureMockStore([thunk])(
|
|
mockedStoreWithUnbuyableChainId,
|
|
);
|
|
|
|
const { queryByTestId } = renderWithProvider(
|
|
<TokenOverview token={token} />,
|
|
mockedStore,
|
|
);
|
|
const buyButton = queryByTestId('token-overview-buy');
|
|
expect(buyButton).toBeInTheDocument();
|
|
expect(buyButton).toBeDisabled();
|
|
});
|
|
|
|
it('should have the Buy token button enabled if chain id is part of supported buyable chains', () => {
|
|
const mockedStoreWithBuyableChainId = {
|
|
metamask: {
|
|
...mockStore.metamask,
|
|
provider: { type: 'test', chainId: CHAIN_IDS.POLYGON },
|
|
},
|
|
};
|
|
const mockedStore = configureMockStore([thunk])(
|
|
mockedStoreWithBuyableChainId,
|
|
);
|
|
|
|
const { queryByTestId } = renderWithProvider(
|
|
<TokenOverview token={token} />,
|
|
mockedStore,
|
|
);
|
|
const buyButton = queryByTestId('token-overview-buy');
|
|
expect(buyButton).toBeInTheDocument();
|
|
expect(buyButton).not.toBeDisabled();
|
|
});
|
|
|
|
it('should have the Buy token button disabled for ERC721 tokens', () => {
|
|
const nftToken = {
|
|
...token,
|
|
isERC721: true,
|
|
};
|
|
|
|
const mockedStoreWithBuyableChainId = {
|
|
metamask: {
|
|
...mockStore.metamask,
|
|
provider: { type: 'test', chainId: CHAIN_IDS.POLYGON },
|
|
},
|
|
};
|
|
const mockedStore = configureMockStore([thunk])(
|
|
mockedStoreWithBuyableChainId,
|
|
);
|
|
|
|
const { queryByTestId } = renderWithProvider(
|
|
<TokenOverview token={nftToken} />,
|
|
mockedStore,
|
|
);
|
|
const buyButton = queryByTestId('token-overview-buy');
|
|
expect(buyButton).toBeInTheDocument();
|
|
expect(buyButton).toBeDisabled();
|
|
});
|
|
|
|
it('should open the buy crypto URL for a buyable chain ID', async () => {
|
|
const mockedStoreWithBuyableChainId = {
|
|
metamask: {
|
|
...mockStore.metamask,
|
|
provider: { type: 'test', chainId: CHAIN_IDS.POLYGON },
|
|
},
|
|
};
|
|
const mockedStore = configureMockStore([thunk])(
|
|
mockedStoreWithBuyableChainId,
|
|
);
|
|
|
|
const openTabSpy = jest.spyOn(global.platform, 'openTab');
|
|
|
|
const { queryByTestId } = renderWithProvider(
|
|
<TokenOverview token={token} />,
|
|
mockedStore,
|
|
);
|
|
const buyButton = queryByTestId('token-overview-buy');
|
|
expect(buyButton).toBeInTheDocument();
|
|
expect(buyButton).not.toBeDisabled();
|
|
|
|
fireEvent.click(buyButton);
|
|
expect(openTabSpy).toHaveBeenCalledTimes(1);
|
|
|
|
await waitFor(() =>
|
|
expect(openTabSpy).toHaveBeenCalledWith({
|
|
url: expect.stringContaining(`/buy?metamaskEntry=ext_buy_button`),
|
|
}),
|
|
);
|
|
});
|
|
});
|
|
});
|