mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-23 17:40:23 +03:00
50 lines
1.7 KiB
TypeScript
50 lines
1.7 KiB
TypeScript
import { render, screen } from '@testing-library/react';
|
|
import userEvent from '@testing-library/user-event';
|
|
import { Mock } from 'ts-mockery';
|
|
import { Settings, UiSettings } from '../../src/settings/reducers/settings';
|
|
import { UserInterfaceSettings } from '../../src/settings/UserInterfaceSettings';
|
|
import { Theme } from '../../src/utils/theme';
|
|
|
|
describe('<UserInterfaceSettings />', () => {
|
|
const setUiSettings = jest.fn();
|
|
const setUp = (ui?: UiSettings) => ({
|
|
user: userEvent.setup(),
|
|
...render(<UserInterfaceSettings settings={Mock.of<Settings>({ ui })} setUiSettings={setUiSettings} />),
|
|
});
|
|
|
|
afterEach(jest.clearAllMocks);
|
|
|
|
it.each([
|
|
[{ theme: 'dark' as Theme }, true],
|
|
[{ theme: 'light' as Theme }, false],
|
|
[undefined, false],
|
|
])('toggles switch if theme is dark', (ui, expectedChecked) => {
|
|
setUp(ui);
|
|
|
|
if (expectedChecked) {
|
|
expect(screen.getByLabelText('Use dark theme.')).toBeChecked();
|
|
} else {
|
|
expect(screen.getByLabelText('Use dark theme.')).not.toBeChecked();
|
|
}
|
|
});
|
|
|
|
it.each([
|
|
[{ theme: 'dark' as Theme }],
|
|
[{ theme: 'light' as Theme }],
|
|
[undefined],
|
|
])('shows different icons based on theme', (ui) => {
|
|
setUp(ui);
|
|
expect(screen.getByRole('img', { hidden: true })).toMatchSnapshot();
|
|
});
|
|
|
|
it.each([
|
|
['light' as Theme, 'dark' as Theme],
|
|
['dark' as Theme, 'light' as Theme],
|
|
])('invokes setUiSettings when theme toggle value changes', async (initialTheme, expectedTheme) => {
|
|
const { user } = setUp({ theme: initialTheme });
|
|
|
|
expect(setUiSettings).not.toHaveBeenCalled();
|
|
await user.click(screen.getByLabelText('Use dark theme.'));
|
|
expect(setUiSettings).toHaveBeenCalledWith({ theme: expectedTheme });
|
|
});
|
|
});
|