mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
d2779c9ef1
Co-authored-by: Brad Decker <bhdecker84@gmail.com>
133 lines
4.2 KiB
JavaScript
133 lines
4.2 KiB
JavaScript
/* eslint-disable jest/require-top-level-describe */
|
|
import { render, screen } from '@testing-library/react';
|
|
import React from 'react';
|
|
|
|
import {
|
|
BackgroundColor,
|
|
BorderColor,
|
|
TextColor,
|
|
} from '../../../helpers/constants/design-system';
|
|
|
|
import { AvatarNetwork } from './avatar-network';
|
|
|
|
describe('AvatarNetwork', () => {
|
|
const args = {
|
|
name: 'ethereum',
|
|
src: './images/eth_logo.png',
|
|
showHalo: false,
|
|
};
|
|
|
|
it('should render correctly', () => {
|
|
const { getByTestId, container } = render(
|
|
<AvatarNetwork data-testid="avatar-network" />,
|
|
);
|
|
expect(getByTestId('avatar-network')).toBeDefined();
|
|
expect(container).toMatchSnapshot();
|
|
});
|
|
|
|
it('should render image of Avatar Network', () => {
|
|
render(<AvatarNetwork data-testid="avatar-network" {...args} />);
|
|
const image = screen.getByRole('img');
|
|
expect(image).toBeDefined();
|
|
expect(image).toHaveAttribute('src', args.src);
|
|
});
|
|
|
|
it('should render the first letter of the name prop if no src is provided', () => {
|
|
const { getByText } = render(
|
|
<AvatarNetwork data-testid="avatar-network" {...args} src="" />,
|
|
);
|
|
expect(getByText('e')).toBeDefined();
|
|
});
|
|
|
|
it('should render halo effect if showHalo is true and image url is there', () => {
|
|
render(<AvatarNetwork data-testid="avatar-network" {...args} showHalo />);
|
|
const image = screen.getAllByRole('img', { hidden: true });
|
|
expect(image[1]).toHaveClass(
|
|
'mm-avatar-network__network-image--size-reduced',
|
|
);
|
|
});
|
|
|
|
it('should render the first letter of the name prop when showHalo is true and no image url is provided', () => {
|
|
const { getByText } = render(
|
|
<AvatarNetwork {...args} src="" data-testid="avatar-network" showHalo />,
|
|
);
|
|
expect(getByText('e')).toBeDefined();
|
|
});
|
|
// className
|
|
it('should render with custom className', () => {
|
|
const { getByTestId } = render(
|
|
<AvatarNetwork data-testid="avatar-network" className="test-class" />,
|
|
);
|
|
expect(getByTestId('avatar-network')).toHaveClass('test-class');
|
|
});
|
|
// color
|
|
it('should render with different colors', () => {
|
|
const { getByTestId } = render(
|
|
<>
|
|
<AvatarNetwork
|
|
color={TextColor.successDefault}
|
|
data-testid={TextColor.successDefault}
|
|
/>
|
|
<AvatarNetwork
|
|
color={TextColor.errorDefault}
|
|
data-testid={TextColor.errorDefault}
|
|
/>
|
|
</>,
|
|
);
|
|
expect(getByTestId(TextColor.successDefault)).toHaveClass(
|
|
`box--color-${TextColor.successDefault}`,
|
|
);
|
|
expect(getByTestId(TextColor.errorDefault)).toHaveClass(
|
|
`box--color-${TextColor.errorDefault}`,
|
|
);
|
|
});
|
|
// background color
|
|
it('should render with different background colors', () => {
|
|
const { getByTestId } = render(
|
|
<>
|
|
<AvatarNetwork
|
|
backgroundColor={BackgroundColor.successDefault}
|
|
data-testid={BackgroundColor.successDefault}
|
|
/>
|
|
<AvatarNetwork
|
|
backgroundColor={BackgroundColor.errorDefault}
|
|
data-testid={BackgroundColor.errorDefault}
|
|
/>
|
|
</>,
|
|
);
|
|
expect(getByTestId(BackgroundColor.successDefault)).toHaveClass(
|
|
`box--background-color-${BackgroundColor.successDefault}`,
|
|
);
|
|
expect(getByTestId(BackgroundColor.errorDefault)).toHaveClass(
|
|
`box--background-color-${BackgroundColor.errorDefault}`,
|
|
);
|
|
});
|
|
// border color
|
|
it('should render with different border colors', () => {
|
|
const { getByTestId } = render(
|
|
<>
|
|
<AvatarNetwork
|
|
borderColor={BorderColor.successDefault}
|
|
data-testid={BorderColor.successDefault}
|
|
/>
|
|
<AvatarNetwork
|
|
borderColor={BorderColor.errorDefault}
|
|
data-testid={BorderColor.errorDefault}
|
|
/>
|
|
</>,
|
|
);
|
|
expect(getByTestId(BorderColor.successDefault)).toHaveClass(
|
|
`box--border-color-${BorderColor.successDefault}`,
|
|
);
|
|
expect(getByTestId(BorderColor.errorDefault)).toHaveClass(
|
|
`box--border-color-${BorderColor.errorDefault}`,
|
|
);
|
|
});
|
|
it('should forward a ref to the root html element', () => {
|
|
const ref = React.createRef();
|
|
render(<AvatarNetwork ref={ref} />);
|
|
expect(ref.current).not.toBeNull();
|
|
expect(ref.current.nodeName).toBe('DIV');
|
|
});
|
|
});
|