mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 09:57:02 +01:00
4c37448c97
* added ipfs toggle * added placeholder valur * fixed snapshot * updated tests * updated spec file * hide input if toggle is disabled * updated e2e tests for nft image * fixed view-ercc-1155 spec * updated e2e tests for nfts * added ipfs toggle modal * updated UI for ipfs * updated tests * updated classname * added placeholder image * lint fix * removed prop ipfsEnabled and used with selector * fixed ui for ipfs toggle * updated test * updated test to handle cases * nit fix * ensure default image height match nft image
96 lines
2.8 KiB
JavaScript
96 lines
2.8 KiB
JavaScript
import React from 'react';
|
|
import { fireEvent } from '@testing-library/react';
|
|
import configureMockStore from 'redux-mock-store';
|
|
import thunk from 'redux-thunk';
|
|
import { toHex } from '@metamask/controller-utils';
|
|
import mockState from '../../../../test/data/mock-state.json';
|
|
import { renderWithProvider } from '../../../../test/lib/render-helpers';
|
|
import { updateNftDropDownState } from '../../../store/actions';
|
|
import NftsItems from '.';
|
|
|
|
const mockHistoryPush = jest.fn();
|
|
|
|
jest.mock('react-router-dom', () => ({
|
|
...jest.requireActual('react-router-dom'),
|
|
useLocation: jest.fn(() => ({ search: '' })),
|
|
useHistory: () => ({
|
|
push: mockHistoryPush,
|
|
}),
|
|
}));
|
|
|
|
jest.mock('../../../store/actions.ts', () => ({
|
|
...jest.requireActual('../../../store/actions.ts'),
|
|
updateNftDropDownState: jest.fn().mockReturnValue(jest.fn()),
|
|
}));
|
|
|
|
describe('NFTs Item Component', () => {
|
|
const nfts =
|
|
mockState.metamask.allNfts[mockState.metamask.selectedAddress][toHex(5)];
|
|
const props = {
|
|
collections: {
|
|
'0x0dcd5d886577d5081b0c52e242ef29e70be3e7bc': {
|
|
nfts,
|
|
collectionImage: '',
|
|
collectionName: 'NFT Collection',
|
|
},
|
|
},
|
|
previouslyOwnedCollection: {
|
|
nfts: [],
|
|
},
|
|
};
|
|
|
|
const mockStore = configureMockStore([thunk])(mockState);
|
|
|
|
it('should expand NFT collection showing individual NFTs', async () => {
|
|
const { queryByTestId, queryAllByTestId } = renderWithProvider(
|
|
<NftsItems {...props} />,
|
|
mockStore,
|
|
);
|
|
|
|
const collectionExpanderButton = queryByTestId(
|
|
'collection-expander-button',
|
|
);
|
|
|
|
expect(queryAllByTestId('nft-wrapper')).toHaveLength(0);
|
|
|
|
fireEvent.click(collectionExpanderButton);
|
|
|
|
const expectedParams = {
|
|
'0x0dcd5d886577d5081b0c52e242ef29e70be3e7bc': {
|
|
'0x5': {
|
|
'0x495f947276749Ce646f68AC8c248420045cb7b5e': false,
|
|
'0x0dcd5d886577d5081b0c52e242ef29e70be3e7bc': true,
|
|
},
|
|
},
|
|
};
|
|
|
|
expect(updateNftDropDownState).toHaveBeenCalledWith(expectedParams);
|
|
|
|
// Force rerender component with state/store update
|
|
mockState.metamask.nftsDropdownState = expectedParams;
|
|
renderWithProvider(<NftsItems {...props} />, mockStore);
|
|
|
|
expect(queryAllByTestId('nft-wrapper')).toHaveLength(8);
|
|
});
|
|
|
|
it('should NFT click image', () => {
|
|
const { queryAllByTestId } = renderWithProvider(
|
|
<NftsItems {...props} />,
|
|
mockStore,
|
|
);
|
|
|
|
const nftImages = queryAllByTestId('nft-image');
|
|
const nftDefaultImages = queryAllByTestId('nft-default-image');
|
|
if (nftImages.length) {
|
|
fireEvent.click(nftImages[0]);
|
|
} else {
|
|
fireEvent.click(nftDefaultImages[0]);
|
|
}
|
|
|
|
const firstNft = nfts[0];
|
|
const nftRoute = `/asset/${firstNft.address}/${firstNft.tokenId}`;
|
|
|
|
expect(mockHistoryPush).toHaveBeenCalledWith(nftRoute);
|
|
});
|
|
});
|