mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-26 12:29:06 +01:00
316 lines
9.3 KiB
JavaScript
316 lines
9.3 KiB
JavaScript
import { fireEvent, waitFor } from '@testing-library/react';
|
|
import React from 'react';
|
|
import configureMockStore from 'redux-mock-store';
|
|
import thunk from 'redux-thunk';
|
|
import copyToClipboard from 'copy-to-clipboard';
|
|
import { toHex } from '@metamask/controller-utils';
|
|
import { startNewDraftTransaction } from '../../../ducks/send';
|
|
import { renderWithProvider } from '../../../../test/lib/render-helpers';
|
|
import mockState from '../../../../test/data/mock-state.json';
|
|
import { DEFAULT_ROUTE, SEND_ROUTE } from '../../../helpers/constants/routes';
|
|
import { AssetType } from '../../../../shared/constants/transaction';
|
|
import {
|
|
removeAndIgnoreNft,
|
|
setRemoveNftMessage,
|
|
} from '../../../store/actions';
|
|
import {
|
|
CHAIN_IDS,
|
|
CURRENCY_SYMBOLS,
|
|
MAINNET_DISPLAY_NAME,
|
|
NETWORK_TYPES,
|
|
} from '../../../../shared/constants/network';
|
|
import NftDetails from './nft-details';
|
|
|
|
jest.mock('copy-to-clipboard');
|
|
|
|
const mockHistoryPush = jest.fn();
|
|
jest.mock('react-router-dom', () => ({
|
|
...jest.requireActual('react-router-dom'),
|
|
useLocation: jest.fn(() => ({ search: '' })),
|
|
useHistory: () => ({
|
|
push: mockHistoryPush,
|
|
}),
|
|
}));
|
|
|
|
jest.mock('../../../ducks/send/index.js', () => ({
|
|
...jest.requireActual('../../../ducks/send/index.js'),
|
|
startNewDraftTransaction: jest
|
|
.fn()
|
|
.mockReturnValue(jest.fn().mockResolvedValue()),
|
|
}));
|
|
|
|
jest.mock('../../../store/actions.ts', () => ({
|
|
...jest.requireActual('../../../store/actions.ts'),
|
|
checkAndUpdateSingleNftOwnershipStatus: jest.fn().mockReturnValue(jest.fn()),
|
|
removeAndIgnoreNft: jest.fn().mockReturnValue(jest.fn()),
|
|
setRemoveNftMessage: jest.fn().mockReturnValue(jest.fn()),
|
|
}));
|
|
|
|
describe('NFT Details', () => {
|
|
const mockStore = configureMockStore([thunk])(mockState);
|
|
|
|
const nfts =
|
|
mockState.metamask.allNfts[mockState.metamask.selectedAddress][toHex(5)];
|
|
|
|
const props = {
|
|
nft: nfts[5],
|
|
};
|
|
|
|
beforeEach(() => {
|
|
jest.clearAllMocks();
|
|
});
|
|
|
|
it('should match minimal props and state snapshot', () => {
|
|
const { container } = renderWithProvider(
|
|
<NftDetails {...props} />,
|
|
mockStore,
|
|
);
|
|
|
|
expect(container).toMatchSnapshot();
|
|
});
|
|
|
|
it(`should route to '/' route when the back button is clicked`, () => {
|
|
const { queryByTestId } = renderWithProvider(
|
|
<NftDetails {...props} />,
|
|
mockStore,
|
|
);
|
|
|
|
const backButton = queryByTestId('asset__back');
|
|
|
|
fireEvent.click(backButton);
|
|
|
|
expect(mockHistoryPush).toHaveBeenCalledWith(DEFAULT_ROUTE);
|
|
});
|
|
|
|
it(`should call removeAndIgnoreNFT with proper nft details and route to '/' when removing nft`, () => {
|
|
const { queryByTestId } = renderWithProvider(
|
|
<NftDetails {...props} />,
|
|
mockStore,
|
|
);
|
|
|
|
const openOptionMenuButton = queryByTestId('nft-options__button');
|
|
fireEvent.click(openOptionMenuButton);
|
|
|
|
const removeNftButton = queryByTestId('nft-item-remove');
|
|
fireEvent.click(removeNftButton);
|
|
|
|
expect(removeAndIgnoreNft).toHaveBeenCalledWith(
|
|
nfts[5].address,
|
|
nfts[5].tokenId,
|
|
);
|
|
expect(setRemoveNftMessage).toHaveBeenCalledWith('success');
|
|
expect(mockHistoryPush).toHaveBeenCalledWith(DEFAULT_ROUTE);
|
|
});
|
|
|
|
it('should copy nft address', async () => {
|
|
const { queryByTestId } = renderWithProvider(
|
|
<NftDetails {...props} />,
|
|
mockStore,
|
|
);
|
|
|
|
const copyAddressButton = queryByTestId('nft-address-copy');
|
|
fireEvent.click(copyAddressButton);
|
|
|
|
expect(copyToClipboard).toHaveBeenCalledWith(nfts[5].address);
|
|
});
|
|
|
|
it('should navigate to draft transaction send route with ERC721 data', async () => {
|
|
const { queryByTestId } = renderWithProvider(
|
|
<NftDetails {...props} />,
|
|
mockStore,
|
|
);
|
|
|
|
const nftSendButton = queryByTestId('nft-send-button');
|
|
fireEvent.click(nftSendButton);
|
|
|
|
await waitFor(() => {
|
|
expect(startNewDraftTransaction).toHaveBeenCalledWith({
|
|
type: AssetType.NFT,
|
|
details: nfts[5],
|
|
});
|
|
|
|
expect(mockHistoryPush).toHaveBeenCalledWith(SEND_ROUTE);
|
|
});
|
|
});
|
|
|
|
it('should not render send button if isCurrentlyOwned is false', () => {
|
|
const sixthNftProps = {
|
|
nft: nfts[6],
|
|
};
|
|
nfts[6].isCurrentlyOwned = false;
|
|
|
|
const { queryByTestId } = renderWithProvider(
|
|
<NftDetails {...sixthNftProps} />,
|
|
mockStore,
|
|
);
|
|
|
|
const nftSendButton = queryByTestId('nft-send-button');
|
|
expect(nftSendButton).not.toBeInTheDocument();
|
|
});
|
|
|
|
describe(`Alternative Networks' OpenSea Links`, () => {
|
|
it('should open opeasea link with goeli testnet chainId', async () => {
|
|
global.platform = { openTab: jest.fn() };
|
|
|
|
const { queryByTestId } = renderWithProvider(
|
|
<NftDetails {...props} />,
|
|
mockStore,
|
|
);
|
|
|
|
const openOptionMenuButton = queryByTestId('nft-options__button');
|
|
fireEvent.click(openOptionMenuButton);
|
|
|
|
const openOpenSea = queryByTestId('nft-options__view-on-opensea');
|
|
fireEvent.click(openOpenSea);
|
|
|
|
await waitFor(() => {
|
|
expect(global.platform.openTab).toHaveBeenCalledWith({
|
|
url: `https://testnets.opensea.io/assets/goerli/${nfts[5].address}/${nfts[5].tokenId}`,
|
|
});
|
|
});
|
|
});
|
|
|
|
it('should open tab to mainnet opensea url with nft info', async () => {
|
|
global.platform = { openTab: jest.fn() };
|
|
|
|
const mainnetState = {
|
|
...mockState,
|
|
metamask: {
|
|
...mockState.metamask,
|
|
providerConfig: {
|
|
chainId: CHAIN_IDS.MAINNET,
|
|
type: NETWORK_TYPES.MAINNET,
|
|
ticker: CURRENCY_SYMBOLS.ETH,
|
|
nickname: MAINNET_DISPLAY_NAME,
|
|
},
|
|
},
|
|
};
|
|
const mainnetMockStore = configureMockStore([thunk])(mainnetState);
|
|
|
|
const { queryByTestId } = renderWithProvider(
|
|
<NftDetails {...props} />,
|
|
mainnetMockStore,
|
|
);
|
|
|
|
const openOptionMenuButton = queryByTestId('nft-options__button');
|
|
fireEvent.click(openOptionMenuButton);
|
|
|
|
const openOpenSea = queryByTestId('nft-options__view-on-opensea');
|
|
fireEvent.click(openOpenSea);
|
|
|
|
await waitFor(() => {
|
|
expect(global.platform.openTab).toHaveBeenCalledWith({
|
|
url: `https://opensea.io/assets/ethereum/${nfts[5].address}/${nfts[5].tokenId}`,
|
|
});
|
|
});
|
|
});
|
|
|
|
it('should open tab to polygon opensea url with nft info', async () => {
|
|
const polygonState = {
|
|
...mockState,
|
|
metamask: {
|
|
...mockState.metamask,
|
|
providerConfig: {
|
|
chainId: '0x89',
|
|
type: 'rpc',
|
|
id: 'custom-mainnet',
|
|
},
|
|
networkConfigurations: {
|
|
testNetworkConfigurationId: {
|
|
rpcUrl: 'https://testrpc.com',
|
|
chainId: '0x89',
|
|
nickname: 'Custom Mainnet RPC',
|
|
type: 'rpc',
|
|
id: 'custom-mainnet',
|
|
},
|
|
},
|
|
},
|
|
};
|
|
const polygonMockStore = configureMockStore([thunk])(polygonState);
|
|
|
|
const { queryByTestId } = renderWithProvider(
|
|
<NftDetails {...props} />,
|
|
polygonMockStore,
|
|
);
|
|
|
|
const openOptionMenuButton = queryByTestId('nft-options__button');
|
|
fireEvent.click(openOptionMenuButton);
|
|
|
|
const openOpenSea = queryByTestId('nft-options__view-on-opensea');
|
|
fireEvent.click(openOpenSea);
|
|
|
|
await waitFor(() => {
|
|
expect(global.platform.openTab).toHaveBeenCalledWith({
|
|
url: `https://opensea.io/assets/matic/${nfts[5].address}/${nfts[5].tokenId}`,
|
|
});
|
|
});
|
|
});
|
|
|
|
it('should open tab to sepolia opensea url with nft info', async () => {
|
|
const sepoliaState = {
|
|
...mockState,
|
|
metamask: {
|
|
...mockState.metamask,
|
|
providerConfig: {
|
|
chainId: CHAIN_IDS.SEPOLIA,
|
|
type: NETWORK_TYPES.SEPOLIA,
|
|
},
|
|
},
|
|
};
|
|
const sepoliaMockStore = configureMockStore([thunk])(sepoliaState);
|
|
|
|
const { queryByTestId } = renderWithProvider(
|
|
<NftDetails {...props} />,
|
|
sepoliaMockStore,
|
|
);
|
|
|
|
const openOptionMenuButton = queryByTestId('nft-options__button');
|
|
fireEvent.click(openOptionMenuButton);
|
|
|
|
const openOpenSea = queryByTestId('nft-options__view-on-opensea');
|
|
fireEvent.click(openOpenSea);
|
|
|
|
await waitFor(() => {
|
|
expect(global.platform.openTab).toHaveBeenCalledWith({
|
|
url: `https://testnets.opensea.io/assets/sepolia/${nfts[5].address}/${nfts[5].tokenId}`,
|
|
});
|
|
});
|
|
});
|
|
|
|
it('should not render opensea redirect button', async () => {
|
|
const randomNetworkState = {
|
|
...mockState,
|
|
metamask: {
|
|
...mockState.metamask,
|
|
providerConfig: {
|
|
chainId: '0x99',
|
|
},
|
|
networkConfigurations: {
|
|
testNetworkConfigurationId: {
|
|
rpcUrl: 'https://testrpc.com',
|
|
chainId: '0x99',
|
|
nickname: 'Custom Mainnet RPC',
|
|
},
|
|
},
|
|
},
|
|
};
|
|
const randomNetworkMockStore = configureMockStore([thunk])(
|
|
randomNetworkState,
|
|
);
|
|
|
|
const { queryByTestId } = renderWithProvider(
|
|
<NftDetails {...props} />,
|
|
randomNetworkMockStore,
|
|
);
|
|
|
|
const openOptionMenuButton = queryByTestId('nft-options__button');
|
|
fireEvent.click(openOptionMenuButton);
|
|
|
|
const openOpenSea = queryByTestId('nft-options__view-on-opensea');
|
|
await waitFor(() => {
|
|
expect(openOpenSea).not.toBeInTheDocument();
|
|
});
|
|
});
|
|
});
|
|
});
|