1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/ui/components/component-library/button-secondary/button-secondary.test.js

104 lines
3.4 KiB
JavaScript

/* eslint-disable jest/require-top-level-describe */
import { render } from '@testing-library/react';
import React from 'react';
import { IconName } from '..';
import { ButtonSecondary } from './button-secondary';
import { BUTTON_SECONDARY_SIZES } from './button-secondary.constants';
describe('ButtonSecondary', () => {
it('should render button element correctly', () => {
const { getByText, getByTestId, container } = render(
<ButtonSecondary data-testid="button-secondary">
Button Secondary
</ButtonSecondary>,
);
expect(getByText('Button Secondary')).toBeDefined();
expect(container.querySelector('button')).toBeDefined();
expect(getByTestId('button-secondary')).toHaveClass('mm-button-base');
expect(container).toMatchSnapshot();
});
it('should render anchor element correctly', () => {
const { getByTestId, container } = render(
<ButtonSecondary as="a" data-testid="button-secondary" />,
);
expect(getByTestId('button-secondary')).toHaveClass('mm-button-base');
const anchor = container.getElementsByTagName('a').length;
expect(anchor).toBe(1);
});
it('should render button as block', () => {
const { getByTestId } = render(
<ButtonSecondary block data-testid="block" />,
);
expect(getByTestId('block')).toHaveClass(`mm-button-base--block`);
});
it('should render with added classname', () => {
const { getByTestId } = render(
<ButtonSecondary data-testid="classname" className="mm-button--test" />,
);
expect(getByTestId('classname')).toHaveClass('mm-button--test');
});
it('should render with different size classes', () => {
const { getByTestId } = render(
<>
<ButtonSecondary
size={BUTTON_SECONDARY_SIZES.SM}
data-testid={BUTTON_SECONDARY_SIZES.SM}
/>
<ButtonSecondary
size={BUTTON_SECONDARY_SIZES.MD}
data-testid={BUTTON_SECONDARY_SIZES.MD}
/>
<ButtonSecondary
size={BUTTON_SECONDARY_SIZES.LG}
data-testid={BUTTON_SECONDARY_SIZES.LG}
/>
</>,
);
expect(getByTestId(BUTTON_SECONDARY_SIZES.SM)).toHaveClass(
`mm-button-base--size-${BUTTON_SECONDARY_SIZES.SM}`,
);
expect(getByTestId(BUTTON_SECONDARY_SIZES.MD)).toHaveClass(
`mm-button-base--size-${BUTTON_SECONDARY_SIZES.MD}`,
);
expect(getByTestId(BUTTON_SECONDARY_SIZES.LG)).toHaveClass(
`mm-button-base--size-${BUTTON_SECONDARY_SIZES.LG}`,
);
});
it('should render as danger', () => {
const { getByTestId } = render(
<>
<ButtonSecondary danger data-testid="danger" />
</>,
);
expect(getByTestId('danger')).toHaveClass(
'mm-button-secondary--type-danger',
);
});
it('should render with different button states', () => {
const { getByTestId } = render(
<>
<ButtonSecondary loading data-testid="loading" />
<ButtonSecondary disabled data-testid="disabled" />
</>,
);
expect(getByTestId('loading')).toHaveClass(`mm-button-base--loading`);
expect(getByTestId('disabled')).toHaveClass(`mm-button-base--disabled`);
});
it('should render with icon', () => {
const { container } = render(
<ButtonSecondary data-testid="icon" startIconName={IconName.AddSquare} />,
);
const icons = container.getElementsByClassName('mm-icon').length;
expect(icons).toBe(1);
});
});