mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-30 08:26:59 +02:00
4a88d6ff7a
Co-authored-by: Laurent Cozic <laurent22@users.noreply.github.com>
75 lines
1.7 KiB
TypeScript
75 lines
1.7 KiB
TypeScript
import { AppState, createAppDefaultWindowState } from './app.reducer';
|
|
import appReducer, { createAppDefaultState } from './app.reducer';
|
|
|
|
describe('app.reducer', () => {
|
|
|
|
it('should handle DIALOG_OPEN', async () => {
|
|
const state: AppState = createAppDefaultState({}, {});
|
|
|
|
let newState = appReducer(state, {
|
|
type: 'DIALOG_OPEN',
|
|
name: 'syncWizard',
|
|
});
|
|
|
|
expect(newState.dialogs.length).toBe(1);
|
|
expect(newState.dialogs[0].name).toBe('syncWizard');
|
|
|
|
expect(() => appReducer(newState, {
|
|
type: 'DIALOG_OPEN',
|
|
name: 'syncWizard',
|
|
})).toThrow();
|
|
|
|
newState = appReducer(newState, {
|
|
type: 'DIALOG_CLOSE',
|
|
name: 'syncWizard',
|
|
});
|
|
|
|
expect(newState.dialogs.length).toBe(0);
|
|
|
|
expect(() => appReducer(newState, {
|
|
type: 'DIALOG_CLOSE',
|
|
name: 'syncWizard',
|
|
})).toThrow();
|
|
|
|
newState = appReducer(newState, {
|
|
type: 'DIALOG_OPEN',
|
|
name: 'syncWizard',
|
|
});
|
|
|
|
newState = appReducer(newState, {
|
|
type: 'DIALOG_OPEN',
|
|
name: 'setPassword',
|
|
});
|
|
|
|
expect(newState.dialogs).toEqual([
|
|
{ name: 'syncWizard', props: {} },
|
|
{ name: 'setPassword', props: {} },
|
|
]);
|
|
});
|
|
|
|
it('showing a dialog in one window should hide dialogs with the same ID in background windows', () => {
|
|
const state: AppState = {
|
|
...createAppDefaultState({}, {}),
|
|
backgroundWindows: {
|
|
testWindow: {
|
|
...createAppDefaultWindowState(),
|
|
windowId: 'testWindow',
|
|
|
|
visibleDialogs: {
|
|
testDialog: true,
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
const newState = appReducer(state, {
|
|
type: 'VISIBLE_DIALOGS_ADD',
|
|
name: 'testDialog',
|
|
});
|
|
|
|
expect(newState.backgroundWindows.testWindow.visibleDialogs).toEqual({});
|
|
expect(newState.visibleDialogs).toEqual({ testDialog: true });
|
|
});
|
|
|
|
});
|