mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +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
69 lines
2.1 KiB
JavaScript
69 lines
2.1 KiB
JavaScript
import React from 'react';
|
|
import { fireEvent } from '@testing-library/react';
|
|
import configureStore from '../../../store/store';
|
|
import '@testing-library/jest-dom/extend-expect';
|
|
import mockState from '../../../../test/data/mock-state.json';
|
|
import { renderWithProvider } from '../../../../test/lib/render-helpers';
|
|
import { NftItem } from '.';
|
|
|
|
const store = configureStore({
|
|
metamask: {
|
|
...mockState.metamask,
|
|
},
|
|
});
|
|
|
|
const noIpfsStore = configureStore({
|
|
metamask: {
|
|
...mockState.metamask,
|
|
ipfsGateway: '',
|
|
},
|
|
});
|
|
|
|
describe('NftItem component', () => {
|
|
jest.mock('../../../store/actions.ts', () => ({
|
|
getTokenStandardAndDetails: jest.fn().mockResolvedValue(),
|
|
}));
|
|
describe('render', () => {
|
|
const props = {
|
|
alt: 'Test Alt',
|
|
backgroundColor: 'red',
|
|
name: 'Test NFT',
|
|
src: 'test-src',
|
|
networkName: 'Test Network',
|
|
networkSrc: 'test-network-src',
|
|
tokenId: '1',
|
|
onClick: jest.fn(),
|
|
nftImageURL: '',
|
|
};
|
|
|
|
it('renders correctly with an image source', () => {
|
|
const { getByTestId } = renderWithProvider(<NftItem {...props} />, store);
|
|
|
|
expect(getByTestId('nft-item')).toBeInTheDocument();
|
|
expect(getByTestId('nft-network-badge')).toBeInTheDocument();
|
|
expect(getByTestId('nft-image')).toBeInTheDocument();
|
|
expect(getByTestId('nft-image')).toHaveAttribute('src', 'test-src');
|
|
});
|
|
|
|
it('renders correctly with default image when no ipfs is off and no image is provided', () => {
|
|
const { getByTestId, queryByTestId } = renderWithProvider(
|
|
<NftItem
|
|
{...props}
|
|
nftImageURL="ipfs://QmTSZUNt8AKyDabkyXXXP4oHWDnaVXgNdXoJGEyaYzLbeL"
|
|
/>,
|
|
noIpfsStore,
|
|
);
|
|
|
|
expect(queryByTestId('nft-image')).not.toBeInTheDocument();
|
|
expect(getByTestId('nft-default-image')).toBeInTheDocument();
|
|
});
|
|
|
|
it('calls onClick when the NFT image is clicked', () => {
|
|
const { getByTestId } = renderWithProvider(<NftItem {...props} />, store);
|
|
|
|
fireEvent.click(getByTestId('nft-image'));
|
|
expect(props.onClick).toHaveBeenCalled();
|
|
});
|
|
});
|
|
});
|