/* eslint-disable jest/require-top-level-describe */
import { render, screen } from '@testing-library/react';
import React from 'react';
import { AvatarFaviconSize } from './avatar-favicon.types';
import { AvatarFavicon } from '.';
describe('AvatarFavicon', () => {
const args = {
src: './images/eth_logo.png',
name: 'test',
};
it('should render correctly', () => {
const { getByTestId, container } = render(
,
);
expect(getByTestId('avatar-favicon')).toBeDefined();
expect(container).toMatchSnapshot();
});
it('should render image of Avatar Favicon', () => {
render();
const image = screen.getByRole('img');
expect(image).toBeDefined();
expect(image).toHaveAttribute('src', args.src);
});
it('should render fallback image if no ImageSource is provided', () => {
const { container } = render(
,
);
expect(container.getElementsByClassName('mm-icon')).toHaveLength(1);
});
it('should render fallback image with custom fallbackIconProps if no ImageSource is provided', () => {
const container = (
);
expect(container.props.fallbackIconProps['data-testid']).toStrictEqual(
'fallback-icon',
);
});
it('should render with different size classes', () => {
const { getByTestId } = render(
<>
>,
);
expect(getByTestId(AvatarFaviconSize.Xs)).toHaveClass(
`mm-avatar-base--size-${AvatarFaviconSize.Xs}`,
);
expect(getByTestId(AvatarFaviconSize.Sm)).toHaveClass(
`mm-avatar-base--size-${AvatarFaviconSize.Sm}`,
);
expect(getByTestId(AvatarFaviconSize.Md)).toHaveClass(
`mm-avatar-base--size-${AvatarFaviconSize.Md}`,
);
expect(getByTestId(AvatarFaviconSize.Lg)).toHaveClass(
`mm-avatar-base--size-${AvatarFaviconSize.Lg}`,
);
expect(getByTestId(AvatarFaviconSize.Xl)).toHaveClass(
`mm-avatar-base--size-${AvatarFaviconSize.Xl}`,
);
});
it('should render with custom classname', () => {
const { getByTestId } = render(
,
);
expect(getByTestId('classname')).toHaveClass('mm-avatar-favicon--test');
});
it('should forward a ref to the root html element', () => {
const ref = React.createRef();
render();
expect(ref.current).not.toBeNull();
expect(ref.current.nodeName).toBe('DIV');
});
});