/* eslint-disable jest/require-top-level-describe */
import { render } from '@testing-library/react';
import React from 'react';
import { IconName } from '..';
import { ButtonBaseSize } from './button-base.types';
import { ButtonBase } from './button-base';
describe('ButtonBase', () => {
it('should render button element correctly and match snapshot', () => {
const { getByTestId, getByText, container } = render(
Button base,
);
expect(getByText('Button base')).toBeDefined();
expect(container.querySelector('button')).toBeDefined();
expect(getByTestId('button-base')).toHaveClass('mm-button-base');
expect(container).toMatchSnapshot();
});
it('should render anchor element correctly', () => {
const { getByTestId, container } = render(
,
);
expect(getByTestId('button-base')).toHaveClass('mm-button-base');
const anchor = container.getElementsByTagName('a').length;
expect(anchor).toBe(1);
});
it('should render anchor element correctly by href only being passed and href exists', () => {
const { getByTestId, container } = render(
Button Base
,
);
expect(getByTestId('button-base')).toHaveClass('mm-button-base');
expect(getByTestId('button-base')).toHaveAttribute('href', '/metamask');
const anchor = container.getElementsByTagName('a').length;
expect(anchor).toBe(1);
});
it('should render anchor element correctly by href and externalLink, href target and rel exist', () => {
const { getByTestId, container } = render(
Button Base
,
);
expect(getByTestId('button-base')).toHaveClass('mm-button-base');
expect(getByTestId('button-base')).toHaveAttribute(
'href',
'https://www.test.com/',
);
expect(getByTestId('button-base')).toHaveAttribute('target', '_blank');
expect(getByTestId('button-base')).toHaveAttribute(
'rel',
'noopener noreferrer',
);
const anchor = container.getElementsByTagName('a').length;
expect(anchor).toBe(1);
expect(container).toMatchSnapshot();
});
it('should render button as block', () => {
const { getByTestId } = render();
expect(getByTestId('block')).toHaveClass(`mm-button-base--block`);
});
it('should render with different size classes', () => {
const { getByTestId } = render(
<>
>,
);
expect(getByTestId(ButtonBaseSize.Sm)).toHaveClass(
`mm-button-base--size-${ButtonBaseSize.Sm}`,
);
expect(getByTestId(ButtonBaseSize.Md)).toHaveClass(
`mm-button-base--size-${ButtonBaseSize.Md}`,
);
expect(getByTestId(ButtonBaseSize.Lg)).toHaveClass(
`mm-button-base--size-${ButtonBaseSize.Lg}`,
);
});
it('should render with added classname', () => {
const { getByTestId } = render(
,
);
expect(getByTestId('classname')).toHaveClass('mm-button-base--test');
});
it('should render with different button states', () => {
const { getByTestId } = render(
<>
>,
);
expect(getByTestId('loading')).toHaveClass(`mm-button-base--loading`);
expect(getByTestId('disabled')).toHaveClass(`mm-button-base--disabled`);
});
it('should render with icon', () => {
const { getByTestId } = render(
,
);
expect(getByTestId('start-button-icon')).toBeDefined();
expect(getByTestId('end-button-icon')).toBeDefined();
});
});