2021-02-16 21:31:16 +03:00
|
|
|
import { shallow, ShallowWrapper } from 'enzyme';
|
|
|
|
import { Mock } from 'ts-mockery';
|
2021-02-19 20:55:03 +03:00
|
|
|
import { faMoon, faSun } from '@fortawesome/free-solid-svg-icons';
|
|
|
|
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
|
2021-12-23 19:53:06 +03:00
|
|
|
import { Settings, UiSettings } from '../../src/settings/reducers/settings';
|
2021-12-25 12:49:12 +03:00
|
|
|
import { UserInterfaceSettings } from '../../src/settings/UserInterfaceSettings';
|
2021-02-16 21:31:16 +03:00
|
|
|
import ToggleSwitch from '../../src/utils/ToggleSwitch';
|
|
|
|
import { Theme } from '../../src/utils/theme';
|
|
|
|
|
2021-12-25 12:49:12 +03:00
|
|
|
describe('<UserInterfaceSettings />', () => {
|
2021-02-16 21:31:16 +03:00
|
|
|
let wrapper: ShallowWrapper;
|
|
|
|
const setUiSettings = jest.fn();
|
|
|
|
const createWrapper = (ui?: UiSettings) => {
|
2021-12-25 12:49:12 +03:00
|
|
|
wrapper = shallow(<UserInterfaceSettings settings={Mock.of<Settings>({ ui })} setUiSettings={setUiSettings} />);
|
2021-02-16 21:31:16 +03:00
|
|
|
|
|
|
|
return wrapper;
|
|
|
|
};
|
|
|
|
|
|
|
|
afterEach(() => wrapper?.unmount());
|
|
|
|
afterEach(jest.clearAllMocks);
|
|
|
|
|
|
|
|
it.each([
|
|
|
|
[{ theme: 'dark' as Theme }, true ],
|
|
|
|
[{ theme: 'light' as Theme }, false ],
|
|
|
|
[ undefined, false ],
|
2021-02-19 20:55:03 +03:00
|
|
|
])('toggles switch if theme is dark', (ui, expectedChecked) => {
|
2021-02-16 21:31:16 +03:00
|
|
|
const wrapper = createWrapper(ui);
|
|
|
|
const toggle = wrapper.find(ToggleSwitch);
|
|
|
|
|
|
|
|
expect(toggle.prop('checked')).toEqual(expectedChecked);
|
|
|
|
});
|
|
|
|
|
2021-02-19 20:55:03 +03:00
|
|
|
it.each([
|
|
|
|
[{ theme: 'dark' as Theme }, faMoon ],
|
|
|
|
[{ theme: 'light' as Theme }, faSun ],
|
|
|
|
[ undefined, faSun ],
|
|
|
|
])('shows different icons based on theme', (ui, expectedIcon) => {
|
|
|
|
const wrapper = createWrapper(ui);
|
|
|
|
const icon = wrapper.find(FontAwesomeIcon);
|
|
|
|
|
|
|
|
expect(icon.prop('icon')).toEqual(expectedIcon);
|
|
|
|
});
|
|
|
|
|
2021-02-16 21:31:16 +03:00
|
|
|
it.each([
|
|
|
|
[ true, 'dark' ],
|
|
|
|
[ false, 'light' ],
|
2021-09-25 09:20:56 +03:00
|
|
|
])('invokes setUiSettings when theme toggle value changes', (checked, theme) => {
|
2021-02-16 21:31:16 +03:00
|
|
|
const wrapper = createWrapper();
|
|
|
|
const toggle = wrapper.find(ToggleSwitch);
|
|
|
|
|
|
|
|
expect(setUiSettings).not.toHaveBeenCalled();
|
|
|
|
toggle.simulate('change', checked);
|
|
|
|
expect(setUiSettings).toHaveBeenCalledWith({ theme });
|
|
|
|
});
|
|
|
|
});
|