/*
* Wire
* Copyright (C) 2022 Wire Swiss GmbH
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see http://www.gnu.org/licenses/.
*
*/
import {act, render, screen, waitFor} from '@testing-library/react';
import {User} from 'src/script/entity/User';
import {ContentViewModel} from 'src/script/view_model/ContentViewModel';
import {MainContent} from './MainContent';
import {withTheme} from '../../auth/util/test/TestUtil';
import {MainViewModel} from '../../view_model/MainViewModel';
import {RootProvider} from '../RootProvider';
import {ContentState, useAppState} from '../useAppState';
jest.mock('./panels/preferences/AccountPreferences', () => ({
AccountPreferences: () => AccountPreferences,
__esModule: true,
}));
describe('Preferences', () => {
const mainViewModel = {
content: {
repositories: {} as any,
} as ContentViewModel,
} as MainViewModel;
const defaultParams = {
openRightSidebar: jest.fn(),
selfUser: new User('selfUser'),
reloadApp: jest.fn(),
};
it('renders the right component according to view state', () => {
const {setContentState} = useAppState.getState();
jest.useFakeTimers();
render(
withTheme(
,
),
);
expect(screen.queryByText('accessibility.headings.preferencesAbout')).toBeNull();
act(() => {
setContentState(ContentState.PREFERENCES_ABOUT);
});
waitFor(() => screen.getByText('accessibility.headings.preferencesAbout'));
act(() => {
jest.advanceTimersByTime(1000);
});
expect(screen.queryByText('AccountPreferences')).toBeNull();
expect(screen.queryByText('accessibility.headings.preferencesAbout')).not.toBeNull();
jest.useRealTimers();
});
});