import * as React from 'react';
import { applyTheme } from 'bumbag/utils/applyTheme';
import { Radio } from '../Radio';
import render from '../../utils/_tests/render';
describe('props', () => {
it('should render correctly', () => {
const { container } = render();
expect(container.firstChild).toMatchSnapshot();
});
});
describe('variants', () => {
['default', 'ghost'].forEach((variant) => {
it(`should render correctly for ${variant} variant`, () => {
const { container } = render();
expect(container.firstChild).toMatchSnapshot();
});
});
});
describe('theming', () => {
it('Radio.styles.base should render correctly', () => {
const { container } = render(, {
theme: { Radio: { styles: { base: { backgroundColor: 'red' } } } },
});
expect(container.firstChild).toMatchSnapshot();
});
it('Radio.Icon.styles.base should render correctly', () => {
const { container } = render(, {
theme: { Radio: { Icon: { styles: { base: { backgroundColor: 'red' } } } } },
});
expect(container.firstChild).toMatchSnapshot();
});
it('Radio.CheckIcon.styles.base should render correctly', () => {
const { container } = render(, {
theme: { Radio: { CheckIcon: { styles: { base: { backgroundColor: 'red' } } } } },
});
expect(container.firstChild).toMatchSnapshot();
});
it('Radio.Label.styles.base should render correctly', () => {
const { container } = render(, {
theme: { Radio: { Label: { styles: { base: { backgroundColor: 'red' } } } } },
});
expect(container.firstChild).toMatchSnapshot();
});
});
describe('overrides', () => {
it('should render correctly', () => {
const { container } = render(
);
expect(container.firstChild).toMatchSnapshot();
});
});
describe('applyTheme', () => {
it('renders correctly', () => {
const Card = applyTheme(Radio, {
styles: {
base: {
backgroundColor: 'red',
},
},
defaultProps: {
altitude: '100',
padding: 'major-2',
},
});
const { container } = render();
expect(container.firstChild).toMatchSnapshot();
});
});
describe('variants', () => {
it('styles.base should render correctly', () => {
const { container } = render(, {
theme: {
Radio: {
variants: { test: { styles: { base: { backgroundColor: 'red' } } } },
},
},
});
expect(container.firstChild).toMatchSnapshot();
});
it('renders correctly for overrides', () => {
const { container } = render(
);
expect(container.firstChild).toMatchSnapshot();
});
it('renders correctly for applyTheme', () => {
const Card = applyTheme(Radio, {
defaultProps: {
altitude: '100',
padding: 'major-2',
},
variants: {
test: {
defaultProps: {
color: 'red',
},
},
},
});
const { container } = render();
expect(container.firstChild).toMatchSnapshot();
});
});
describe('modes', () => {
it('should render correctly when colorMode is set globally', () => {
const { container } = render(, {
colorMode: 'test',
theme: {
Radio: {
modes: {
test: {
styles: { base: { backgroundColor: 'red' } },
defaultProps: { color: 'primaryTint' },
},
},
},
},
});
expect(container.firstChild).toMatchSnapshot();
});
it('should render correctly when colorMode set as prop', () => {
const { container } = render(, {
theme: {
Radio: {
modes: {
test: {
styles: { base: { backgroundColor: 'red' } },
defaultProps: { color: 'primaryTint' },
},
},
},
},
});
expect(container.firstChild).toMatchSnapshot();
});
it('renders correctly for overrides', () => {
const { container } = render(
);
expect(container.firstChild).toMatchSnapshot();
});
it('renders correctly for applyTheme', () => {
const Card = applyTheme(Radio, {
defaultProps: {
altitude: '100',
padding: 'major-2',
},
modes: {
test: {
styles: { base: { backgroundColor: 'red' } },
defaultProps: { color: 'primaryTint' },
},
},
});
const { container } = render();
expect(container.firstChild).toMatchSnapshot();
});
});
describe('defaultProps', () => {
it('should render correctly for color', () => {
const { container } = render(, {
theme: { Radio: { defaultProps: { color: 'primary' } } },
});
expect(container.firstChild).toMatchSnapshot();
});
});